Allow partial specialization of variable templates.
[official-gcc.git] / gcc / cp / pt.c
blob8e71fcb7cfca8a38ee96125d2c172286a4a872c1
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 "flags.h"
38 #include "cp-tree.h"
39 #include "c-family/c-common.h"
40 #include "c-family/c-objc.h"
41 #include "cp-objcp-common.h"
42 #include "tree-inline.h"
43 #include "decl.h"
44 #include "toplev.h"
45 #include "timevar.h"
46 #include "tree-iterator.h"
47 #include "type-utils.h"
48 #include "gimplify.h"
50 /* The type of functions taking a tree, and some additional data, and
51 returning an int. */
52 typedef int (*tree_fn_t) (tree, void*);
54 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
55 instantiations have been deferred, either because their definitions
56 were not yet available, or because we were putting off doing the work. */
57 struct GTY ((chain_next ("%h.next"))) pending_template {
58 struct pending_template *next;
59 struct tinst_level *tinst;
62 static GTY(()) struct pending_template *pending_templates;
63 static GTY(()) struct pending_template *last_pending_template;
65 int processing_template_parmlist;
66 static int template_header_count;
68 static GTY(()) tree saved_trees;
69 static vec<int> inline_parm_levels;
71 static GTY(()) struct tinst_level *current_tinst_level;
73 static GTY(()) tree saved_access_scope;
75 /* Live only within one (recursive) call to tsubst_expr. We use
76 this to pass the statement expression node from the STMT_EXPR
77 to the EXPR_STMT that is its result. */
78 static tree cur_stmt_expr;
80 /* True if we've recursed into fn_type_unification too many times. */
81 static bool excessive_deduction_depth;
83 struct GTY((for_user)) spec_entry
85 tree tmpl;
86 tree args;
87 tree spec;
90 struct spec_hasher : ggc_hasher<spec_entry *>
92 static hashval_t hash (spec_entry *);
93 static bool equal (spec_entry *, spec_entry *);
96 static GTY (()) hash_table<spec_hasher> *decl_specializations;
98 static GTY (()) hash_table<spec_hasher> *type_specializations;
100 /* Contains canonical template parameter types. The vector is indexed by
101 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
102 TREE_LIST, whose TREE_VALUEs contain the canonical template
103 parameters of various types and levels. */
104 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
106 #define UNIFY_ALLOW_NONE 0
107 #define UNIFY_ALLOW_MORE_CV_QUAL 1
108 #define UNIFY_ALLOW_LESS_CV_QUAL 2
109 #define UNIFY_ALLOW_DERIVED 4
110 #define UNIFY_ALLOW_INTEGER 8
111 #define UNIFY_ALLOW_OUTER_LEVEL 16
112 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
113 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
115 enum template_base_result {
116 tbr_incomplete_type,
117 tbr_ambiguous_baseclass,
118 tbr_success
121 static void push_access_scope (tree);
122 static void pop_access_scope (tree);
123 static bool resolve_overloaded_unification (tree, tree, tree, tree,
124 unification_kind_t, int,
125 bool);
126 static int try_one_overload (tree, tree, tree, tree, tree,
127 unification_kind_t, int, bool, bool);
128 static int unify (tree, tree, tree, tree, int, bool);
129 static void add_pending_template (tree);
130 static tree reopen_tinst_level (struct tinst_level *);
131 static tree tsubst_initializer_list (tree, tree);
132 static tree get_partial_spec_bindings (tree, tree, tree, tree);
133 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
134 bool, bool);
135 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
136 bool, bool);
137 static void tsubst_enum (tree, tree, tree);
138 static tree add_to_template_args (tree, tree);
139 static tree add_outermost_template_args (tree, tree);
140 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
141 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
142 tree);
143 static int type_unification_real (tree, tree, tree, const tree *,
144 unsigned int, int, unification_kind_t, int,
145 vec<deferred_access_check, va_gc> **,
146 bool);
147 static void note_template_header (int);
148 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
149 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
150 static tree convert_template_argument (tree, tree, tree,
151 tsubst_flags_t, int, tree);
152 static int for_each_template_parm (tree, tree_fn_t, void*,
153 hash_set<tree> *, bool);
154 static tree expand_template_argument_pack (tree);
155 static tree build_template_parm_index (int, int, int, tree, tree);
156 static bool inline_needs_template_parms (tree, bool);
157 static void push_inline_template_parms_recursive (tree, int);
158 static tree retrieve_local_specialization (tree);
159 static void register_local_specialization (tree, tree);
160 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
161 static int mark_template_parm (tree, void *);
162 static int template_parm_this_level_p (tree, void *);
163 static tree tsubst_friend_function (tree, tree);
164 static tree tsubst_friend_class (tree, tree);
165 static int can_complete_type_without_circularity (tree);
166 static tree get_bindings (tree, tree, tree, bool);
167 static int template_decl_level (tree);
168 static int check_cv_quals_for_unify (int, tree, tree);
169 static void template_parm_level_and_index (tree, int*, int*);
170 static int unify_pack_expansion (tree, tree, tree,
171 tree, unification_kind_t, bool, bool);
172 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
173 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
174 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
175 static void regenerate_decl_from_template (tree, tree);
176 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
177 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
178 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
179 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
180 static bool check_specialization_scope (void);
181 static tree process_partial_specialization (tree);
182 static void set_current_access_from_decl (tree);
183 static enum template_base_result get_template_base (tree, tree, tree, tree,
184 bool , tree *);
185 static tree try_class_unification (tree, tree, tree, tree, bool);
186 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
187 tree, tree);
188 static bool template_template_parm_bindings_ok_p (tree, tree);
189 static int template_args_equal (tree, tree);
190 static void tsubst_default_arguments (tree, tsubst_flags_t);
191 static tree for_each_template_parm_r (tree *, int *, void *);
192 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
193 static void copy_default_args_to_explicit_spec (tree);
194 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
195 static bool dependent_template_arg_p (tree);
196 static bool any_template_arguments_need_structural_equality_p (tree);
197 static bool dependent_type_p_r (tree);
198 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
199 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
200 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
201 static tree tsubst_decl (tree, tree, tsubst_flags_t);
202 static void perform_typedefs_access_check (tree tmpl, tree targs);
203 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
204 location_t);
205 static tree listify (tree);
206 static tree listify_autos (tree, tree);
207 static tree template_parm_to_arg (tree t);
208 static tree current_template_args (void);
209 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
210 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
212 /* Make the current scope suitable for access checking when we are
213 processing T. T can be FUNCTION_DECL for instantiated function
214 template, VAR_DECL for static member variable, or TYPE_DECL for
215 alias template (needed by instantiate_decl). */
217 static void
218 push_access_scope (tree t)
220 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
221 || TREE_CODE (t) == TYPE_DECL);
223 if (DECL_FRIEND_CONTEXT (t))
224 push_nested_class (DECL_FRIEND_CONTEXT (t));
225 else if (DECL_CLASS_SCOPE_P (t))
226 push_nested_class (DECL_CONTEXT (t));
227 else
228 push_to_top_level ();
230 if (TREE_CODE (t) == FUNCTION_DECL)
232 saved_access_scope = tree_cons
233 (NULL_TREE, current_function_decl, saved_access_scope);
234 current_function_decl = t;
238 /* Restore the scope set up by push_access_scope. T is the node we
239 are processing. */
241 static void
242 pop_access_scope (tree t)
244 if (TREE_CODE (t) == FUNCTION_DECL)
246 current_function_decl = TREE_VALUE (saved_access_scope);
247 saved_access_scope = TREE_CHAIN (saved_access_scope);
250 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
251 pop_nested_class ();
252 else
253 pop_from_top_level ();
256 /* Do any processing required when DECL (a member template
257 declaration) is finished. Returns the TEMPLATE_DECL corresponding
258 to DECL, unless it is a specialization, in which case the DECL
259 itself is returned. */
261 tree
262 finish_member_template_decl (tree decl)
264 if (decl == error_mark_node)
265 return error_mark_node;
267 gcc_assert (DECL_P (decl));
269 if (TREE_CODE (decl) == TYPE_DECL)
271 tree type;
273 type = TREE_TYPE (decl);
274 if (type == error_mark_node)
275 return error_mark_node;
276 if (MAYBE_CLASS_TYPE_P (type)
277 && CLASSTYPE_TEMPLATE_INFO (type)
278 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
280 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
281 check_member_template (tmpl);
282 return tmpl;
284 return NULL_TREE;
286 else if (TREE_CODE (decl) == FIELD_DECL)
287 error ("data member %qD cannot be a member template", decl);
288 else if (DECL_TEMPLATE_INFO (decl))
290 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
292 check_member_template (DECL_TI_TEMPLATE (decl));
293 return DECL_TI_TEMPLATE (decl);
295 else
296 return decl;
298 else
299 error ("invalid member template declaration %qD", decl);
301 return error_mark_node;
304 /* Create a template info node. */
306 tree
307 build_template_info (tree template_decl, tree template_args)
309 tree result = make_node (TEMPLATE_INFO);
310 TI_TEMPLATE (result) = template_decl;
311 TI_ARGS (result) = template_args;
312 return result;
315 /* Return the template info node corresponding to T, whatever T is. */
317 tree
318 get_template_info (const_tree t)
320 tree tinfo = NULL_TREE;
322 if (!t || t == error_mark_node)
323 return NULL;
325 if (TREE_CODE (t) == NAMESPACE_DECL)
326 return NULL;
328 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
329 tinfo = DECL_TEMPLATE_INFO (t);
331 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
332 t = TREE_TYPE (t);
334 if (OVERLOAD_TYPE_P (t))
335 tinfo = TYPE_TEMPLATE_INFO (t);
336 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
337 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
339 return tinfo;
342 /* Returns the template nesting level of the indicated class TYPE.
344 For example, in:
345 template <class T>
346 struct A
348 template <class U>
349 struct B {};
352 A<T>::B<U> has depth two, while A<T> has depth one.
353 Both A<T>::B<int> and A<int>::B<U> have depth one, if
354 they are instantiations, not specializations.
356 This function is guaranteed to return 0 if passed NULL_TREE so
357 that, for example, `template_class_depth (current_class_type)' is
358 always safe. */
361 template_class_depth (tree type)
363 int depth;
365 for (depth = 0;
366 type && TREE_CODE (type) != NAMESPACE_DECL;
367 type = (TREE_CODE (type) == FUNCTION_DECL)
368 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
370 tree tinfo = get_template_info (type);
372 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
373 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
374 ++depth;
377 return depth;
380 /* Subroutine of maybe_begin_member_template_processing.
381 Returns true if processing DECL needs us to push template parms. */
383 static bool
384 inline_needs_template_parms (tree decl, bool nsdmi)
386 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
387 return false;
389 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
390 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
393 /* Subroutine of maybe_begin_member_template_processing.
394 Push the template parms in PARMS, starting from LEVELS steps into the
395 chain, and ending at the beginning, since template parms are listed
396 innermost first. */
398 static void
399 push_inline_template_parms_recursive (tree parmlist, int levels)
401 tree parms = TREE_VALUE (parmlist);
402 int i;
404 if (levels > 1)
405 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
407 ++processing_template_decl;
408 current_template_parms
409 = tree_cons (size_int (processing_template_decl),
410 parms, current_template_parms);
411 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
413 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
414 NULL);
415 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
417 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
419 if (error_operand_p (parm))
420 continue;
422 gcc_assert (DECL_P (parm));
424 switch (TREE_CODE (parm))
426 case TYPE_DECL:
427 case TEMPLATE_DECL:
428 pushdecl (parm);
429 break;
431 case PARM_DECL:
433 /* Make a CONST_DECL as is done in process_template_parm.
434 It is ugly that we recreate this here; the original
435 version built in process_template_parm is no longer
436 available. */
437 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
438 CONST_DECL, DECL_NAME (parm),
439 TREE_TYPE (parm));
440 DECL_ARTIFICIAL (decl) = 1;
441 TREE_CONSTANT (decl) = 1;
442 TREE_READONLY (decl) = 1;
443 DECL_INITIAL (decl) = DECL_INITIAL (parm);
444 SET_DECL_TEMPLATE_PARM_P (decl);
445 pushdecl (decl);
447 break;
449 default:
450 gcc_unreachable ();
455 /* Restore the template parameter context for a member template, a
456 friend template defined in a class definition, or a non-template
457 member of template class. */
459 void
460 maybe_begin_member_template_processing (tree decl)
462 tree parms;
463 int levels = 0;
464 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
466 if (nsdmi)
468 tree ctx = DECL_CONTEXT (decl);
469 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
470 /* Disregard full specializations (c++/60999). */
471 && uses_template_parms (ctx)
472 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
475 if (inline_needs_template_parms (decl, nsdmi))
477 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
478 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
480 if (DECL_TEMPLATE_SPECIALIZATION (decl))
482 --levels;
483 parms = TREE_CHAIN (parms);
486 push_inline_template_parms_recursive (parms, levels);
489 /* Remember how many levels of template parameters we pushed so that
490 we can pop them later. */
491 inline_parm_levels.safe_push (levels);
494 /* Undo the effects of maybe_begin_member_template_processing. */
496 void
497 maybe_end_member_template_processing (void)
499 int i;
500 int last;
502 if (inline_parm_levels.length () == 0)
503 return;
505 last = inline_parm_levels.pop ();
506 for (i = 0; i < last; ++i)
508 --processing_template_decl;
509 current_template_parms = TREE_CHAIN (current_template_parms);
510 poplevel (0, 0, 0);
514 /* Return a new template argument vector which contains all of ARGS,
515 but has as its innermost set of arguments the EXTRA_ARGS. */
517 static tree
518 add_to_template_args (tree args, tree extra_args)
520 tree new_args;
521 int extra_depth;
522 int i;
523 int j;
525 if (args == NULL_TREE || extra_args == error_mark_node)
526 return extra_args;
528 extra_depth = TMPL_ARGS_DEPTH (extra_args);
529 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
531 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
532 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
534 for (j = 1; j <= extra_depth; ++j, ++i)
535 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
537 return new_args;
540 /* Like add_to_template_args, but only the outermost ARGS are added to
541 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
542 (EXTRA_ARGS) levels are added. This function is used to combine
543 the template arguments from a partial instantiation with the
544 template arguments used to attain the full instantiation from the
545 partial instantiation. */
547 static tree
548 add_outermost_template_args (tree args, tree extra_args)
550 tree new_args;
552 /* If there are more levels of EXTRA_ARGS than there are ARGS,
553 something very fishy is going on. */
554 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
556 /* If *all* the new arguments will be the EXTRA_ARGS, just return
557 them. */
558 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
559 return extra_args;
561 /* For the moment, we make ARGS look like it contains fewer levels. */
562 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
564 new_args = add_to_template_args (args, extra_args);
566 /* Now, we restore ARGS to its full dimensions. */
567 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
569 return new_args;
572 /* Return the N levels of innermost template arguments from the ARGS. */
574 tree
575 get_innermost_template_args (tree args, int n)
577 tree new_args;
578 int extra_levels;
579 int i;
581 gcc_assert (n >= 0);
583 /* If N is 1, just return the innermost set of template arguments. */
584 if (n == 1)
585 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
587 /* If we're not removing anything, just return the arguments we were
588 given. */
589 extra_levels = TMPL_ARGS_DEPTH (args) - n;
590 gcc_assert (extra_levels >= 0);
591 if (extra_levels == 0)
592 return args;
594 /* Make a new set of arguments, not containing the outer arguments. */
595 new_args = make_tree_vec (n);
596 for (i = 1; i <= n; ++i)
597 SET_TMPL_ARGS_LEVEL (new_args, i,
598 TMPL_ARGS_LEVEL (args, i + extra_levels));
600 return new_args;
603 /* The inverse of get_innermost_template_args: Return all but the innermost
604 EXTRA_LEVELS levels of template arguments from the ARGS. */
606 static tree
607 strip_innermost_template_args (tree args, int extra_levels)
609 tree new_args;
610 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
611 int i;
613 gcc_assert (n >= 0);
615 /* If N is 1, just return the outermost set of template arguments. */
616 if (n == 1)
617 return TMPL_ARGS_LEVEL (args, 1);
619 /* If we're not removing anything, just return the arguments we were
620 given. */
621 gcc_assert (extra_levels >= 0);
622 if (extra_levels == 0)
623 return args;
625 /* Make a new set of arguments, not containing the inner arguments. */
626 new_args = make_tree_vec (n);
627 for (i = 1; i <= n; ++i)
628 SET_TMPL_ARGS_LEVEL (new_args, i,
629 TMPL_ARGS_LEVEL (args, i));
631 return new_args;
634 /* We've got a template header coming up; push to a new level for storing
635 the parms. */
637 void
638 begin_template_parm_list (void)
640 /* We use a non-tag-transparent scope here, which causes pushtag to
641 put tags in this scope, rather than in the enclosing class or
642 namespace scope. This is the right thing, since we want
643 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
644 global template class, push_template_decl handles putting the
645 TEMPLATE_DECL into top-level scope. For a nested template class,
646 e.g.:
648 template <class T> struct S1 {
649 template <class T> struct S2 {};
652 pushtag contains special code to call pushdecl_with_scope on the
653 TEMPLATE_DECL for S2. */
654 begin_scope (sk_template_parms, NULL);
655 ++processing_template_decl;
656 ++processing_template_parmlist;
657 note_template_header (0);
660 /* This routine is called when a specialization is declared. If it is
661 invalid to declare a specialization here, an error is reported and
662 false is returned, otherwise this routine will return true. */
664 static bool
665 check_specialization_scope (void)
667 tree scope = current_scope ();
669 /* [temp.expl.spec]
671 An explicit specialization shall be declared in the namespace of
672 which the template is a member, or, for member templates, in the
673 namespace of which the enclosing class or enclosing class
674 template is a member. An explicit specialization of a member
675 function, member class or static data member of a class template
676 shall be declared in the namespace of which the class template
677 is a member. */
678 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
680 error ("explicit specialization in non-namespace scope %qD", scope);
681 return false;
684 /* [temp.expl.spec]
686 In an explicit specialization declaration for a member of a class
687 template or a member template that appears in namespace scope,
688 the member template and some of its enclosing class templates may
689 remain unspecialized, except that the declaration shall not
690 explicitly specialize a class member template if its enclosing
691 class templates are not explicitly specialized as well. */
692 if (current_template_parms)
694 error ("enclosing class templates are not explicitly specialized");
695 return false;
698 return true;
701 /* We've just seen template <>. */
703 bool
704 begin_specialization (void)
706 begin_scope (sk_template_spec, NULL);
707 note_template_header (1);
708 return check_specialization_scope ();
711 /* Called at then end of processing a declaration preceded by
712 template<>. */
714 void
715 end_specialization (void)
717 finish_scope ();
718 reset_specialization ();
721 /* Any template <>'s that we have seen thus far are not referring to a
722 function specialization. */
724 void
725 reset_specialization (void)
727 processing_specialization = 0;
728 template_header_count = 0;
731 /* We've just seen a template header. If SPECIALIZATION is nonzero,
732 it was of the form template <>. */
734 static void
735 note_template_header (int specialization)
737 processing_specialization = specialization;
738 template_header_count++;
741 /* We're beginning an explicit instantiation. */
743 void
744 begin_explicit_instantiation (void)
746 gcc_assert (!processing_explicit_instantiation);
747 processing_explicit_instantiation = true;
751 void
752 end_explicit_instantiation (void)
754 gcc_assert (processing_explicit_instantiation);
755 processing_explicit_instantiation = false;
758 /* An explicit specialization or partial specialization of TMPL is being
759 declared. Check that the namespace in which the specialization is
760 occurring is permissible. Returns false iff it is invalid to
761 specialize TMPL in the current namespace. */
763 static bool
764 check_specialization_namespace (tree tmpl)
766 tree tpl_ns = decl_namespace_context (tmpl);
768 /* [tmpl.expl.spec]
770 An explicit specialization shall be declared in the namespace of
771 which the template is a member, or, for member templates, in the
772 namespace of which the enclosing class or enclosing class
773 template is a member. An explicit specialization of a member
774 function, member class or static data member of a class template
775 shall be declared in the namespace of which the class template is
776 a member. */
777 if (current_scope() != DECL_CONTEXT (tmpl)
778 && !at_namespace_scope_p ())
780 error ("specialization of %qD must appear at namespace scope", tmpl);
781 return false;
783 if (is_associated_namespace (current_namespace, tpl_ns))
784 /* Same or super-using namespace. */
785 return true;
786 else
788 permerror (input_location, "specialization of %qD in different namespace", tmpl);
789 permerror (input_location, " from definition of %q+#D", tmpl);
790 return false;
794 /* SPEC is an explicit instantiation. Check that it is valid to
795 perform this explicit instantiation in the current namespace. */
797 static void
798 check_explicit_instantiation_namespace (tree spec)
800 tree ns;
802 /* DR 275: An explicit instantiation shall appear in an enclosing
803 namespace of its template. */
804 ns = decl_namespace_context (spec);
805 if (!is_ancestor (current_namespace, ns))
806 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
807 "(which does not enclose namespace %qD)",
808 spec, current_namespace, ns);
811 /* The TYPE is being declared. If it is a template type, that means it
812 is a partial specialization. Do appropriate error-checking. */
814 tree
815 maybe_process_partial_specialization (tree type)
817 tree context;
819 if (type == error_mark_node)
820 return error_mark_node;
822 /* A lambda that appears in specialization context is not itself a
823 specialization. */
824 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
825 return type;
827 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
829 error ("name of class shadows template template parameter %qD",
830 TYPE_NAME (type));
831 return error_mark_node;
834 context = TYPE_CONTEXT (type);
836 if (TYPE_ALIAS_P (type))
838 if (TYPE_TEMPLATE_INFO (type)
839 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
840 error ("specialization of alias template %qD",
841 TYPE_TI_TEMPLATE (type));
842 else
843 error ("explicit specialization of non-template %qT", type);
844 return error_mark_node;
846 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
848 /* This is for ordinary explicit specialization and partial
849 specialization of a template class such as:
851 template <> class C<int>;
855 template <class T> class C<T*>;
857 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
859 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
860 && !COMPLETE_TYPE_P (type))
862 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type))
863 && !at_namespace_scope_p ())
864 return error_mark_node;
865 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
866 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
867 if (processing_template_decl)
869 if (push_template_decl (TYPE_MAIN_DECL (type))
870 == error_mark_node)
871 return error_mark_node;
874 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
875 error ("specialization of %qT after instantiation", type);
876 else if (errorcount && !processing_specialization
877 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
878 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
879 /* Trying to define a specialization either without a template<> header
880 or in an inappropriate place. We've already given an error, so just
881 bail now so we don't actually define the specialization. */
882 return error_mark_node;
884 else if (CLASS_TYPE_P (type)
885 && !CLASSTYPE_USE_TEMPLATE (type)
886 && CLASSTYPE_TEMPLATE_INFO (type)
887 && context && CLASS_TYPE_P (context)
888 && CLASSTYPE_TEMPLATE_INFO (context))
890 /* This is for an explicit specialization of member class
891 template according to [temp.expl.spec/18]:
893 template <> template <class U> class C<int>::D;
895 The context `C<int>' must be an implicit instantiation.
896 Otherwise this is just a member class template declared
897 earlier like:
899 template <> class C<int> { template <class U> class D; };
900 template <> template <class U> class C<int>::D;
902 In the first case, `C<int>::D' is a specialization of `C<T>::D'
903 while in the second case, `C<int>::D' is a primary template
904 and `C<T>::D' may not exist. */
906 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
907 && !COMPLETE_TYPE_P (type))
909 tree t;
910 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
912 if (current_namespace
913 != decl_namespace_context (tmpl))
915 permerror (input_location, "specializing %q#T in different namespace", type);
916 permerror (input_location, " from definition of %q+#D", tmpl);
919 /* Check for invalid specialization after instantiation:
921 template <> template <> class C<int>::D<int>;
922 template <> template <class U> class C<int>::D; */
924 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
925 t; t = TREE_CHAIN (t))
927 tree inst = TREE_VALUE (t);
928 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
929 || !COMPLETE_OR_OPEN_TYPE_P (inst))
931 /* We already have a full specialization of this partial
932 instantiation, or a full specialization has been
933 looked up but not instantiated. Reassign it to the
934 new member specialization template. */
935 spec_entry elt;
936 spec_entry *entry;
938 elt.tmpl = most_general_template (tmpl);
939 elt.args = CLASSTYPE_TI_ARGS (inst);
940 elt.spec = inst;
942 type_specializations->remove_elt (&elt);
944 elt.tmpl = tmpl;
945 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
947 spec_entry **slot
948 = type_specializations->find_slot (&elt, INSERT);
949 entry = ggc_alloc<spec_entry> ();
950 *entry = elt;
951 *slot = entry;
953 else
954 /* But if we've had an implicit instantiation, that's a
955 problem ([temp.expl.spec]/6). */
956 error ("specialization %qT after instantiation %qT",
957 type, inst);
960 /* Mark TYPE as a specialization. And as a result, we only
961 have one level of template argument for the innermost
962 class template. */
963 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
964 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
965 CLASSTYPE_TI_ARGS (type)
966 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
969 else if (processing_specialization)
971 /* Someday C++0x may allow for enum template specialization. */
972 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
973 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
974 pedwarn (input_location, OPT_Wpedantic, "template specialization "
975 "of %qD not allowed by ISO C++", type);
976 else
978 error ("explicit specialization of non-template %qT", type);
979 return error_mark_node;
983 return type;
986 /* Returns nonzero if we can optimize the retrieval of specializations
987 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
988 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
990 static inline bool
991 optimize_specialization_lookup_p (tree tmpl)
993 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
994 && DECL_CLASS_SCOPE_P (tmpl)
995 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
996 parameter. */
997 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
998 /* The optimized lookup depends on the fact that the
999 template arguments for the member function template apply
1000 purely to the containing class, which is not true if the
1001 containing class is an explicit or partial
1002 specialization. */
1003 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1004 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1005 && !DECL_CONV_FN_P (tmpl)
1006 /* It is possible to have a template that is not a member
1007 template and is not a member of a template class:
1009 template <typename T>
1010 struct S { friend A::f(); };
1012 Here, the friend function is a template, but the context does
1013 not have template information. The optimized lookup relies
1014 on having ARGS be the template arguments for both the class
1015 and the function template. */
1016 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1019 /* Retrieve the specialization (in the sense of [temp.spec] - a
1020 specialization is either an instantiation or an explicit
1021 specialization) of TMPL for the given template ARGS. If there is
1022 no such specialization, return NULL_TREE. The ARGS are a vector of
1023 arguments, or a vector of vectors of arguments, in the case of
1024 templates with more than one level of parameters.
1026 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1027 then we search for a partial specialization matching ARGS. This
1028 parameter is ignored if TMPL is not a class template.
1030 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1031 result is a NONTYPE_ARGUMENT_PACK. */
1033 static tree
1034 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1036 if (tmpl == NULL_TREE)
1037 return NULL_TREE;
1039 if (args == error_mark_node)
1040 return NULL_TREE;
1042 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1043 || TREE_CODE (tmpl) == FIELD_DECL);
1045 /* There should be as many levels of arguments as there are
1046 levels of parameters. */
1047 gcc_assert (TMPL_ARGS_DEPTH (args)
1048 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1049 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1050 : template_class_depth (DECL_CONTEXT (tmpl))));
1052 if (optimize_specialization_lookup_p (tmpl))
1054 tree class_template;
1055 tree class_specialization;
1056 vec<tree, va_gc> *methods;
1057 tree fns;
1058 int idx;
1060 /* The template arguments actually apply to the containing
1061 class. Find the class specialization with those
1062 arguments. */
1063 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1064 class_specialization
1065 = retrieve_specialization (class_template, args, 0);
1066 if (!class_specialization)
1067 return NULL_TREE;
1068 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1069 for the specialization. */
1070 idx = class_method_index_for_fn (class_specialization, tmpl);
1071 if (idx == -1)
1072 return NULL_TREE;
1073 /* Iterate through the methods with the indicated name, looking
1074 for the one that has an instance of TMPL. */
1075 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1076 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1078 tree fn = OVL_CURRENT (fns);
1079 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1080 /* using-declarations can add base methods to the method vec,
1081 and we don't want those here. */
1082 && DECL_CONTEXT (fn) == class_specialization)
1083 return fn;
1085 return NULL_TREE;
1087 else
1089 spec_entry *found;
1090 spec_entry elt;
1091 hash_table<spec_hasher> *specializations;
1093 elt.tmpl = tmpl;
1094 elt.args = args;
1095 elt.spec = NULL_TREE;
1097 if (DECL_CLASS_TEMPLATE_P (tmpl))
1098 specializations = type_specializations;
1099 else
1100 specializations = decl_specializations;
1102 if (hash == 0)
1103 hash = spec_hasher::hash (&elt);
1104 found = specializations->find_with_hash (&elt, hash);
1105 if (found)
1106 return found->spec;
1109 return NULL_TREE;
1112 /* Like retrieve_specialization, but for local declarations. */
1114 static tree
1115 retrieve_local_specialization (tree tmpl)
1117 if (local_specializations == NULL)
1118 return NULL_TREE;
1120 tree *slot = local_specializations->get (tmpl);
1121 return slot ? *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 spec_entry **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 = spec_hasher::hash (&elt);
1384 slot =
1385 decl_specializations->find_slot_with_hash (&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 || variable_template_p (tmpl))
1492 /* If TMPL is a forward declaration of a template function, keep a list
1493 of all specializations in case we need to reassign them to a friend
1494 template later in tsubst_friend_function.
1496 Also keep a list of all variable template instantiations so that
1497 process_partial_specialization can check whether a later partial
1498 specialization would have used it. */
1499 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1500 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1503 return spec;
1506 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1507 TMPL and ARGS members, ignores SPEC. */
1509 int comparing_specializations;
1511 bool
1512 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1514 int equal;
1516 ++comparing_specializations;
1517 equal = (e1->tmpl == e2->tmpl
1518 && comp_template_args (e1->args, e2->args));
1519 --comparing_specializations;
1521 return equal;
1524 /* Returns a hash for a template TMPL and template arguments ARGS. */
1526 static hashval_t
1527 hash_tmpl_and_args (tree tmpl, tree args)
1529 hashval_t val = DECL_UID (tmpl);
1530 return iterative_hash_template_arg (args, val);
1533 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1534 ignoring SPEC. */
1536 hashval_t
1537 spec_hasher::hash (spec_entry *e)
1539 return hash_tmpl_and_args (e->tmpl, e->args);
1542 /* Recursively calculate a hash value for a template argument ARG, for use
1543 in the hash tables of template specializations. */
1545 hashval_t
1546 iterative_hash_template_arg (tree arg, hashval_t val)
1548 unsigned HOST_WIDE_INT i;
1549 enum tree_code code;
1550 char tclass;
1552 if (arg == NULL_TREE)
1553 return iterative_hash_object (arg, val);
1555 if (!TYPE_P (arg))
1556 STRIP_NOPS (arg);
1558 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1559 /* We can get one of these when re-hashing a previous entry in the middle
1560 of substituting into a pack expansion. Just look through it. */
1561 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1563 code = TREE_CODE (arg);
1564 tclass = TREE_CODE_CLASS (code);
1566 val = iterative_hash_object (code, val);
1568 switch (code)
1570 case ERROR_MARK:
1571 return val;
1573 case IDENTIFIER_NODE:
1574 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1576 case TREE_VEC:
1578 int i, len = TREE_VEC_LENGTH (arg);
1579 for (i = 0; i < len; ++i)
1580 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1581 return val;
1584 case TYPE_PACK_EXPANSION:
1585 case EXPR_PACK_EXPANSION:
1586 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1587 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1589 case TYPE_ARGUMENT_PACK:
1590 case NONTYPE_ARGUMENT_PACK:
1591 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1593 case TREE_LIST:
1594 for (; arg; arg = TREE_CHAIN (arg))
1595 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1596 return val;
1598 case OVERLOAD:
1599 for (; arg; arg = OVL_NEXT (arg))
1600 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1601 return val;
1603 case CONSTRUCTOR:
1605 tree field, value;
1606 iterative_hash_template_arg (TREE_TYPE (arg), val);
1607 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1609 val = iterative_hash_template_arg (field, val);
1610 val = iterative_hash_template_arg (value, val);
1612 return val;
1615 case PARM_DECL:
1616 if (!DECL_ARTIFICIAL (arg))
1618 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1619 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1621 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1623 case TARGET_EXPR:
1624 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1626 case PTRMEM_CST:
1627 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1628 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1630 case TEMPLATE_PARM_INDEX:
1631 val = iterative_hash_template_arg
1632 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1633 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1634 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1636 case TRAIT_EXPR:
1637 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1638 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1639 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1641 case BASELINK:
1642 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1643 val);
1644 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1645 val);
1647 case MODOP_EXPR:
1648 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1649 code = TREE_CODE (TREE_OPERAND (arg, 1));
1650 val = iterative_hash_object (code, val);
1651 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1653 case LAMBDA_EXPR:
1654 /* A lambda can't appear in a template arg, but don't crash on
1655 erroneous input. */
1656 gcc_assert (seen_error ());
1657 return val;
1659 case CAST_EXPR:
1660 case IMPLICIT_CONV_EXPR:
1661 case STATIC_CAST_EXPR:
1662 case REINTERPRET_CAST_EXPR:
1663 case CONST_CAST_EXPR:
1664 case DYNAMIC_CAST_EXPR:
1665 case NEW_EXPR:
1666 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1667 /* Now hash operands as usual. */
1668 break;
1670 default:
1671 break;
1674 switch (tclass)
1676 case tcc_type:
1677 if (TYPE_CANONICAL (arg))
1678 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1679 val);
1680 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1681 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1682 /* Otherwise just compare the types during lookup. */
1683 return val;
1685 case tcc_declaration:
1686 case tcc_constant:
1687 return iterative_hash_expr (arg, val);
1689 default:
1690 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1692 unsigned n = cp_tree_operand_length (arg);
1693 for (i = 0; i < n; ++i)
1694 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1695 return val;
1698 gcc_unreachable ();
1699 return 0;
1702 /* Unregister the specialization SPEC as a specialization of TMPL.
1703 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1704 if the SPEC was listed as a specialization of TMPL.
1706 Note that SPEC has been ggc_freed, so we can't look inside it. */
1708 bool
1709 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1711 spec_entry *entry;
1712 spec_entry elt;
1714 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1715 elt.args = TI_ARGS (tinfo);
1716 elt.spec = NULL_TREE;
1718 entry = decl_specializations->find (&elt);
1719 if (entry != NULL)
1721 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1722 gcc_assert (new_spec != NULL_TREE);
1723 entry->spec = new_spec;
1724 return 1;
1727 return 0;
1730 /* Like register_specialization, but for local declarations. We are
1731 registering SPEC, an instantiation of TMPL. */
1733 static void
1734 register_local_specialization (tree spec, tree tmpl)
1736 local_specializations->put (tmpl, 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 (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
1883 error ("%qD is not a function template", fns);
1884 return error_mark_node;
1886 else if (VAR_P (decl) && !variable_template_p (fns))
1888 error ("%qD is not a variable template", fns);
1889 return error_mark_node;
1892 /* Count the number of template headers specified for this
1893 specialization. */
1894 header_count = 0;
1895 for (b = current_binding_level;
1896 b->kind == sk_template_parms;
1897 b = b->level_chain)
1898 ++header_count;
1900 if (variable_template_p (fns))
1901 templates = tree_cons (explicit_targs, fns, templates);
1902 else for (; fns; fns = OVL_NEXT (fns))
1904 tree fn = OVL_CURRENT (fns);
1906 if (TREE_CODE (fn) == TEMPLATE_DECL)
1908 tree decl_arg_types;
1909 tree fn_arg_types;
1910 tree insttype;
1912 /* In case of explicit specialization, we need to check if
1913 the number of template headers appearing in the specialization
1914 is correct. This is usually done in check_explicit_specialization,
1915 but the check done there cannot be exhaustive when specializing
1916 member functions. Consider the following code:
1918 template <> void A<int>::f(int);
1919 template <> template <> void A<int>::f(int);
1921 Assuming that A<int> is not itself an explicit specialization
1922 already, the first line specializes "f" which is a non-template
1923 member function, whilst the second line specializes "f" which
1924 is a template member function. So both lines are syntactically
1925 correct, and check_explicit_specialization does not reject
1926 them.
1928 Here, we can do better, as we are matching the specialization
1929 against the declarations. We count the number of template
1930 headers, and we check if they match TEMPLATE_COUNT + 1
1931 (TEMPLATE_COUNT is the number of qualifying template classes,
1932 plus there must be another header for the member template
1933 itself).
1935 Notice that if header_count is zero, this is not a
1936 specialization but rather a template instantiation, so there
1937 is no check we can perform here. */
1938 if (header_count && header_count != template_count + 1)
1939 continue;
1941 /* Check that the number of template arguments at the
1942 innermost level for DECL is the same as for FN. */
1943 if (current_binding_level->kind == sk_template_parms
1944 && !current_binding_level->explicit_spec_p
1945 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1946 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1947 (current_template_parms))))
1948 continue;
1950 /* DECL might be a specialization of FN. */
1951 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1952 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1954 /* For a non-static member function, we need to make sure
1955 that the const qualification is the same. Since
1956 get_bindings does not try to merge the "this" parameter,
1957 we must do the comparison explicitly. */
1958 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1959 && !same_type_p (TREE_VALUE (fn_arg_types),
1960 TREE_VALUE (decl_arg_types)))
1961 continue;
1963 /* Skip the "this" parameter and, for constructors of
1964 classes with virtual bases, the VTT parameter. A
1965 full specialization of a constructor will have a VTT
1966 parameter, but a template never will. */
1967 decl_arg_types
1968 = skip_artificial_parms_for (decl, decl_arg_types);
1969 fn_arg_types
1970 = skip_artificial_parms_for (fn, fn_arg_types);
1972 /* Function templates cannot be specializations; there are
1973 no partial specializations of functions. Therefore, if
1974 the type of DECL does not match FN, there is no
1975 match. */
1976 if (tsk == tsk_template)
1978 if (compparms (fn_arg_types, decl_arg_types))
1979 candidates = tree_cons (NULL_TREE, fn, candidates);
1980 continue;
1983 /* See whether this function might be a specialization of this
1984 template. Suppress access control because we might be trying
1985 to make this specialization a friend, and we have already done
1986 access control for the declaration of the specialization. */
1987 push_deferring_access_checks (dk_no_check);
1988 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1989 pop_deferring_access_checks ();
1991 if (!targs)
1992 /* We cannot deduce template arguments that when used to
1993 specialize TMPL will produce DECL. */
1994 continue;
1996 /* Make sure that the deduced arguments actually work. */
1997 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
1998 if (insttype == error_mark_node)
1999 continue;
2000 fn_arg_types
2001 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2002 if (!compparms (fn_arg_types, decl_arg_types))
2003 continue;
2005 /* Save this template, and the arguments deduced. */
2006 templates = tree_cons (targs, fn, templates);
2008 else if (need_member_template)
2009 /* FN is an ordinary member function, and we need a
2010 specialization of a member template. */
2012 else if (TREE_CODE (fn) != FUNCTION_DECL)
2013 /* We can get IDENTIFIER_NODEs here in certain erroneous
2014 cases. */
2016 else if (!DECL_FUNCTION_MEMBER_P (fn))
2017 /* This is just an ordinary non-member function. Nothing can
2018 be a specialization of that. */
2020 else if (DECL_ARTIFICIAL (fn))
2021 /* Cannot specialize functions that are created implicitly. */
2023 else
2025 tree decl_arg_types;
2027 /* This is an ordinary member function. However, since
2028 we're here, we can assume its enclosing class is a
2029 template class. For example,
2031 template <typename T> struct S { void f(); };
2032 template <> void S<int>::f() {}
2034 Here, S<int>::f is a non-template, but S<int> is a
2035 template class. If FN has the same type as DECL, we
2036 might be in business. */
2038 if (!DECL_TEMPLATE_INFO (fn))
2039 /* Its enclosing class is an explicit specialization
2040 of a template class. This is not a candidate. */
2041 continue;
2043 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2044 TREE_TYPE (TREE_TYPE (fn))))
2045 /* The return types differ. */
2046 continue;
2048 /* Adjust the type of DECL in case FN is a static member. */
2049 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2050 if (DECL_STATIC_FUNCTION_P (fn)
2051 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2052 decl_arg_types = TREE_CHAIN (decl_arg_types);
2054 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2055 decl_arg_types))
2056 /* They match! */
2057 candidates = tree_cons (NULL_TREE, fn, candidates);
2061 if (templates && TREE_CHAIN (templates))
2063 /* We have:
2065 [temp.expl.spec]
2067 It is possible for a specialization with a given function
2068 signature to be instantiated from more than one function
2069 template. In such cases, explicit specification of the
2070 template arguments must be used to uniquely identify the
2071 function template specialization being specialized.
2073 Note that here, there's no suggestion that we're supposed to
2074 determine which of the candidate templates is most
2075 specialized. However, we, also have:
2077 [temp.func.order]
2079 Partial ordering of overloaded function template
2080 declarations is used in the following contexts to select
2081 the function template to which a function template
2082 specialization refers:
2084 -- when an explicit specialization refers to a function
2085 template.
2087 So, we do use the partial ordering rules, at least for now.
2088 This extension can only serve to make invalid programs valid,
2089 so it's safe. And, there is strong anecdotal evidence that
2090 the committee intended the partial ordering rules to apply;
2091 the EDG front end has that behavior, and John Spicer claims
2092 that the committee simply forgot to delete the wording in
2093 [temp.expl.spec]. */
2094 tree tmpl = most_specialized_instantiation (templates);
2095 if (tmpl != error_mark_node)
2097 templates = tmpl;
2098 TREE_CHAIN (templates) = NULL_TREE;
2102 if (templates == NULL_TREE && candidates == NULL_TREE)
2104 error ("template-id %qD for %q+D does not match any template "
2105 "declaration", template_id, decl);
2106 if (header_count && header_count != template_count + 1)
2107 inform (input_location, "saw %d %<template<>%>, need %d for "
2108 "specializing a member function template",
2109 header_count, template_count + 1);
2110 return error_mark_node;
2112 else if ((templates && TREE_CHAIN (templates))
2113 || (candidates && TREE_CHAIN (candidates))
2114 || (templates && candidates))
2116 error ("ambiguous template specialization %qD for %q+D",
2117 template_id, decl);
2118 candidates = chainon (candidates, templates);
2119 print_candidates (candidates);
2120 return error_mark_node;
2123 /* We have one, and exactly one, match. */
2124 if (candidates)
2126 tree fn = TREE_VALUE (candidates);
2127 *targs_out = copy_node (DECL_TI_ARGS (fn));
2128 /* DECL is a re-declaration or partial instantiation of a template
2129 function. */
2130 if (TREE_CODE (fn) == TEMPLATE_DECL)
2131 return fn;
2132 /* It was a specialization of an ordinary member function in a
2133 template class. */
2134 return DECL_TI_TEMPLATE (fn);
2137 /* It was a specialization of a template. */
2138 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2139 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2141 *targs_out = copy_node (targs);
2142 SET_TMPL_ARGS_LEVEL (*targs_out,
2143 TMPL_ARGS_DEPTH (*targs_out),
2144 TREE_PURPOSE (templates));
2146 else
2147 *targs_out = TREE_PURPOSE (templates);
2148 return TREE_VALUE (templates);
2151 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2152 but with the default argument values filled in from those in the
2153 TMPL_TYPES. */
2155 static tree
2156 copy_default_args_to_explicit_spec_1 (tree spec_types,
2157 tree tmpl_types)
2159 tree new_spec_types;
2161 if (!spec_types)
2162 return NULL_TREE;
2164 if (spec_types == void_list_node)
2165 return void_list_node;
2167 /* Substitute into the rest of the list. */
2168 new_spec_types =
2169 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2170 TREE_CHAIN (tmpl_types));
2172 /* Add the default argument for this parameter. */
2173 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2174 TREE_VALUE (spec_types),
2175 new_spec_types);
2178 /* DECL is an explicit specialization. Replicate default arguments
2179 from the template it specializes. (That way, code like:
2181 template <class T> void f(T = 3);
2182 template <> void f(double);
2183 void g () { f (); }
2185 works, as required.) An alternative approach would be to look up
2186 the correct default arguments at the call-site, but this approach
2187 is consistent with how implicit instantiations are handled. */
2189 static void
2190 copy_default_args_to_explicit_spec (tree decl)
2192 tree tmpl;
2193 tree spec_types;
2194 tree tmpl_types;
2195 tree new_spec_types;
2196 tree old_type;
2197 tree new_type;
2198 tree t;
2199 tree object_type = NULL_TREE;
2200 tree in_charge = NULL_TREE;
2201 tree vtt = NULL_TREE;
2203 /* See if there's anything we need to do. */
2204 tmpl = DECL_TI_TEMPLATE (decl);
2205 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2206 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2207 if (TREE_PURPOSE (t))
2208 break;
2209 if (!t)
2210 return;
2212 old_type = TREE_TYPE (decl);
2213 spec_types = TYPE_ARG_TYPES (old_type);
2215 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2217 /* Remove the this pointer, but remember the object's type for
2218 CV quals. */
2219 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2220 spec_types = TREE_CHAIN (spec_types);
2221 tmpl_types = TREE_CHAIN (tmpl_types);
2223 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2225 /* DECL may contain more parameters than TMPL due to the extra
2226 in-charge parameter in constructors and destructors. */
2227 in_charge = spec_types;
2228 spec_types = TREE_CHAIN (spec_types);
2230 if (DECL_HAS_VTT_PARM_P (decl))
2232 vtt = spec_types;
2233 spec_types = TREE_CHAIN (spec_types);
2237 /* Compute the merged default arguments. */
2238 new_spec_types =
2239 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2241 /* Compute the new FUNCTION_TYPE. */
2242 if (object_type)
2244 if (vtt)
2245 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2246 TREE_VALUE (vtt),
2247 new_spec_types);
2249 if (in_charge)
2250 /* Put the in-charge parameter back. */
2251 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2252 TREE_VALUE (in_charge),
2253 new_spec_types);
2255 new_type = build_method_type_directly (object_type,
2256 TREE_TYPE (old_type),
2257 new_spec_types);
2259 else
2260 new_type = build_function_type (TREE_TYPE (old_type),
2261 new_spec_types);
2262 new_type = cp_build_type_attribute_variant (new_type,
2263 TYPE_ATTRIBUTES (old_type));
2264 new_type = build_exception_variant (new_type,
2265 TYPE_RAISES_EXCEPTIONS (old_type));
2267 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2268 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2270 TREE_TYPE (decl) = new_type;
2273 /* Return the number of template headers we expect to see for a definition
2274 or specialization of CTYPE or one of its non-template members. */
2277 num_template_headers_for_class (tree ctype)
2279 int num_templates = 0;
2281 while (ctype && CLASS_TYPE_P (ctype))
2283 /* You're supposed to have one `template <...>' for every
2284 template class, but you don't need one for a full
2285 specialization. For example:
2287 template <class T> struct S{};
2288 template <> struct S<int> { void f(); };
2289 void S<int>::f () {}
2291 is correct; there shouldn't be a `template <>' for the
2292 definition of `S<int>::f'. */
2293 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2294 /* If CTYPE does not have template information of any
2295 kind, then it is not a template, nor is it nested
2296 within a template. */
2297 break;
2298 if (explicit_class_specialization_p (ctype))
2299 break;
2300 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2301 ++num_templates;
2303 ctype = TYPE_CONTEXT (ctype);
2306 return num_templates;
2309 /* Do a simple sanity check on the template headers that precede the
2310 variable declaration DECL. */
2312 void
2313 check_template_variable (tree decl)
2315 tree ctx = CP_DECL_CONTEXT (decl);
2316 int wanted = num_template_headers_for_class (ctx);
2317 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2318 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2320 if (cxx_dialect < cxx14)
2321 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2322 "variable templates only available with "
2323 "-std=c++14 or -std=gnu++14");
2325 // Namespace-scope variable templates should have a template header.
2326 ++wanted;
2328 if (template_header_count > wanted)
2330 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2331 "too many template headers for %D (should be %d)",
2332 decl, wanted);
2333 if (warned && CLASS_TYPE_P (ctx)
2334 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2335 inform (DECL_SOURCE_LOCATION (decl),
2336 "members of an explicitly specialized class are defined "
2337 "without a template header");
2341 /* Check to see if the function just declared, as indicated in
2342 DECLARATOR, and in DECL, is a specialization of a function
2343 template. We may also discover that the declaration is an explicit
2344 instantiation at this point.
2346 Returns DECL, or an equivalent declaration that should be used
2347 instead if all goes well. Issues an error message if something is
2348 amiss. Returns error_mark_node if the error is not easily
2349 recoverable.
2351 FLAGS is a bitmask consisting of the following flags:
2353 2: The function has a definition.
2354 4: The function is a friend.
2356 The TEMPLATE_COUNT is the number of references to qualifying
2357 template classes that appeared in the name of the function. For
2358 example, in
2360 template <class T> struct S { void f(); };
2361 void S<int>::f();
2363 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2364 classes are not counted in the TEMPLATE_COUNT, so that in
2366 template <class T> struct S {};
2367 template <> struct S<int> { void f(); }
2368 template <> void S<int>::f();
2370 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2371 invalid; there should be no template <>.)
2373 If the function is a specialization, it is marked as such via
2374 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2375 is set up correctly, and it is added to the list of specializations
2376 for that template. */
2378 tree
2379 check_explicit_specialization (tree declarator,
2380 tree decl,
2381 int template_count,
2382 int flags)
2384 int have_def = flags & 2;
2385 int is_friend = flags & 4;
2386 int specialization = 0;
2387 int explicit_instantiation = 0;
2388 int member_specialization = 0;
2389 tree ctype = DECL_CLASS_CONTEXT (decl);
2390 tree dname = DECL_NAME (decl);
2391 tmpl_spec_kind tsk;
2393 if (is_friend)
2395 if (!processing_specialization)
2396 tsk = tsk_none;
2397 else
2398 tsk = tsk_excessive_parms;
2400 else
2401 tsk = current_tmpl_spec_kind (template_count);
2403 switch (tsk)
2405 case tsk_none:
2406 if (processing_specialization)
2408 specialization = 1;
2409 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2411 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2413 if (is_friend)
2414 /* This could be something like:
2416 template <class T> void f(T);
2417 class S { friend void f<>(int); } */
2418 specialization = 1;
2419 else
2421 /* This case handles bogus declarations like template <>
2422 template <class T> void f<int>(); */
2424 error ("template-id %qD in declaration of primary template",
2425 declarator);
2426 return decl;
2429 break;
2431 case tsk_invalid_member_spec:
2432 /* The error has already been reported in
2433 check_specialization_scope. */
2434 return error_mark_node;
2436 case tsk_invalid_expl_inst:
2437 error ("template parameter list used in explicit instantiation");
2439 /* Fall through. */
2441 case tsk_expl_inst:
2442 if (have_def)
2443 error ("definition provided for explicit instantiation");
2445 explicit_instantiation = 1;
2446 break;
2448 case tsk_excessive_parms:
2449 case tsk_insufficient_parms:
2450 if (tsk == tsk_excessive_parms)
2451 error ("too many template parameter lists in declaration of %qD",
2452 decl);
2453 else if (template_header_count)
2454 error("too few template parameter lists in declaration of %qD", decl);
2455 else
2456 error("explicit specialization of %qD must be introduced by "
2457 "%<template <>%>", decl);
2459 /* Fall through. */
2460 case tsk_expl_spec:
2461 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2462 /* In cases like template<> constexpr bool v = true;
2463 We'll give an error in check_template_variable. */
2464 break;
2466 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2467 if (ctype)
2468 member_specialization = 1;
2469 else
2470 specialization = 1;
2471 break;
2473 case tsk_template:
2474 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2476 /* This case handles bogus declarations like template <>
2477 template <class T> void f<int>(); */
2479 if (!uses_template_parms (declarator))
2480 error ("template-id %qD in declaration of primary template",
2481 declarator);
2482 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2484 /* Partial specialization of variable template. */
2485 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2486 specialization = 1;
2487 goto ok;
2489 else if (cxx_dialect < cxx14)
2490 error ("non-type partial specialization %qD "
2491 "is not allowed", declarator);
2492 else
2493 error ("non-class, non-variable partial specialization %qD "
2494 "is not allowed", declarator);
2495 return decl;
2496 ok:;
2499 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2500 /* This is a specialization of a member template, without
2501 specialization the containing class. Something like:
2503 template <class T> struct S {
2504 template <class U> void f (U);
2506 template <> template <class U> void S<int>::f(U) {}
2508 That's a specialization -- but of the entire template. */
2509 specialization = 1;
2510 break;
2512 default:
2513 gcc_unreachable ();
2516 if ((specialization || member_specialization)
2517 /* This doesn't apply to variable templates. */
2518 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2519 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2521 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2522 for (; t; t = TREE_CHAIN (t))
2523 if (TREE_PURPOSE (t))
2525 permerror (input_location,
2526 "default argument specified in explicit specialization");
2527 break;
2531 if (specialization || member_specialization || explicit_instantiation)
2533 tree tmpl = NULL_TREE;
2534 tree targs = NULL_TREE;
2535 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2537 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2538 if (!was_template_id)
2540 tree fns;
2542 gcc_assert (identifier_p (declarator));
2543 if (ctype)
2544 fns = dname;
2545 else
2547 /* If there is no class context, the explicit instantiation
2548 must be at namespace scope. */
2549 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2551 /* Find the namespace binding, using the declaration
2552 context. */
2553 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2554 false, true);
2555 if (fns == error_mark_node || !is_overloaded_fn (fns))
2557 error ("%qD is not a template function", dname);
2558 fns = error_mark_node;
2560 else
2562 tree fn = OVL_CURRENT (fns);
2563 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2564 CP_DECL_CONTEXT (fn)))
2565 error ("%qD is not declared in %qD",
2566 decl, current_namespace);
2570 declarator = lookup_template_function (fns, NULL_TREE);
2573 if (declarator == error_mark_node)
2574 return error_mark_node;
2576 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2578 if (!explicit_instantiation)
2579 /* A specialization in class scope. This is invalid,
2580 but the error will already have been flagged by
2581 check_specialization_scope. */
2582 return error_mark_node;
2583 else
2585 /* It's not valid to write an explicit instantiation in
2586 class scope, e.g.:
2588 class C { template void f(); }
2590 This case is caught by the parser. However, on
2591 something like:
2593 template class C { void f(); };
2595 (which is invalid) we can get here. The error will be
2596 issued later. */
2600 return decl;
2602 else if (ctype != NULL_TREE
2603 && (identifier_p (TREE_OPERAND (declarator, 0))))
2605 // We'll match variable templates in start_decl.
2606 if (VAR_P (decl))
2607 return decl;
2609 /* Find the list of functions in ctype that have the same
2610 name as the declared function. */
2611 tree name = TREE_OPERAND (declarator, 0);
2612 tree fns = NULL_TREE;
2613 int idx;
2615 if (constructor_name_p (name, ctype))
2617 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2619 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2620 : !CLASSTYPE_DESTRUCTORS (ctype))
2622 /* From [temp.expl.spec]:
2624 If such an explicit specialization for the member
2625 of a class template names an implicitly-declared
2626 special member function (clause _special_), the
2627 program is ill-formed.
2629 Similar language is found in [temp.explicit]. */
2630 error ("specialization of implicitly-declared special member function");
2631 return error_mark_node;
2634 name = is_constructor ? ctor_identifier : dtor_identifier;
2637 if (!DECL_CONV_FN_P (decl))
2639 idx = lookup_fnfields_1 (ctype, name);
2640 if (idx >= 0)
2641 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2643 else
2645 vec<tree, va_gc> *methods;
2646 tree ovl;
2648 /* For a type-conversion operator, we cannot do a
2649 name-based lookup. We might be looking for `operator
2650 int' which will be a specialization of `operator T'.
2651 So, we find *all* the conversion operators, and then
2652 select from them. */
2653 fns = NULL_TREE;
2655 methods = CLASSTYPE_METHOD_VEC (ctype);
2656 if (methods)
2657 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2658 methods->iterate (idx, &ovl);
2659 ++idx)
2661 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2662 /* There are no more conversion functions. */
2663 break;
2665 /* Glue all these conversion functions together
2666 with those we already have. */
2667 for (; ovl; ovl = OVL_NEXT (ovl))
2668 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2672 if (fns == NULL_TREE)
2674 error ("no member function %qD declared in %qT", name, ctype);
2675 return error_mark_node;
2677 else
2678 TREE_OPERAND (declarator, 0) = fns;
2681 /* Figure out what exactly is being specialized at this point.
2682 Note that for an explicit instantiation, even one for a
2683 member function, we cannot tell apriori whether the
2684 instantiation is for a member template, or just a member
2685 function of a template class. Even if a member template is
2686 being instantiated, the member template arguments may be
2687 elided if they can be deduced from the rest of the
2688 declaration. */
2689 tmpl = determine_specialization (declarator, decl,
2690 &targs,
2691 member_specialization,
2692 template_count,
2693 tsk);
2695 if (!tmpl || tmpl == error_mark_node)
2696 /* We couldn't figure out what this declaration was
2697 specializing. */
2698 return error_mark_node;
2699 else
2701 tree gen_tmpl = most_general_template (tmpl);
2703 if (explicit_instantiation)
2705 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2706 is done by do_decl_instantiation later. */
2708 int arg_depth = TMPL_ARGS_DEPTH (targs);
2709 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2711 if (arg_depth > parm_depth)
2713 /* If TMPL is not the most general template (for
2714 example, if TMPL is a friend template that is
2715 injected into namespace scope), then there will
2716 be too many levels of TARGS. Remove some of them
2717 here. */
2718 int i;
2719 tree new_targs;
2721 new_targs = make_tree_vec (parm_depth);
2722 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2723 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2724 = TREE_VEC_ELT (targs, i);
2725 targs = new_targs;
2728 return instantiate_template (tmpl, targs, tf_error);
2731 /* If we thought that the DECL was a member function, but it
2732 turns out to be specializing a static member function,
2733 make DECL a static member function as well. */
2734 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2735 && DECL_STATIC_FUNCTION_P (tmpl)
2736 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2737 revert_static_member_fn (decl);
2739 /* If this is a specialization of a member template of a
2740 template class, we want to return the TEMPLATE_DECL, not
2741 the specialization of it. */
2742 if (tsk == tsk_template && !was_template_id)
2744 tree result = DECL_TEMPLATE_RESULT (tmpl);
2745 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2746 DECL_INITIAL (result) = NULL_TREE;
2747 if (have_def)
2749 tree parm;
2750 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2751 DECL_SOURCE_LOCATION (result)
2752 = DECL_SOURCE_LOCATION (decl);
2753 /* We want to use the argument list specified in the
2754 definition, not in the original declaration. */
2755 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2756 for (parm = DECL_ARGUMENTS (result); parm;
2757 parm = DECL_CHAIN (parm))
2758 DECL_CONTEXT (parm) = result;
2760 return register_specialization (tmpl, gen_tmpl, targs,
2761 is_friend, 0);
2764 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2765 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2767 if (was_template_id)
2768 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
2770 /* Inherit default function arguments from the template
2771 DECL is specializing. */
2772 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
2773 copy_default_args_to_explicit_spec (decl);
2775 /* This specialization has the same protection as the
2776 template it specializes. */
2777 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2778 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2780 /* 7.1.1-1 [dcl.stc]
2782 A storage-class-specifier shall not be specified in an
2783 explicit specialization...
2785 The parser rejects these, so unless action is taken here,
2786 explicit function specializations will always appear with
2787 global linkage.
2789 The action recommended by the C++ CWG in response to C++
2790 defect report 605 is to make the storage class and linkage
2791 of the explicit specialization match the templated function:
2793 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2795 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2797 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2798 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2800 /* This specialization has the same linkage and visibility as
2801 the function template it specializes. */
2802 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2803 if (! TREE_PUBLIC (decl))
2805 DECL_INTERFACE_KNOWN (decl) = 1;
2806 DECL_NOT_REALLY_EXTERN (decl) = 1;
2808 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2809 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2811 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2812 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2816 /* If DECL is a friend declaration, declared using an
2817 unqualified name, the namespace associated with DECL may
2818 have been set incorrectly. For example, in:
2820 template <typename T> void f(T);
2821 namespace N {
2822 struct S { friend void f<int>(int); }
2825 we will have set the DECL_CONTEXT for the friend
2826 declaration to N, rather than to the global namespace. */
2827 if (DECL_NAMESPACE_SCOPE_P (decl))
2828 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2830 if (is_friend && !have_def)
2831 /* This is not really a declaration of a specialization.
2832 It's just the name of an instantiation. But, it's not
2833 a request for an instantiation, either. */
2834 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2835 else if (TREE_CODE (decl) == FUNCTION_DECL)
2836 /* A specialization is not necessarily COMDAT. */
2837 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
2838 && DECL_DECLARED_INLINE_P (decl));
2839 else if (TREE_CODE (decl) == VAR_DECL)
2840 DECL_COMDAT (decl) = false;
2842 /* Register this specialization so that we can find it
2843 again. */
2844 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2846 /* A 'structor should already have clones. */
2847 gcc_assert (decl == error_mark_node
2848 || variable_template_p (tmpl)
2849 || !(DECL_CONSTRUCTOR_P (decl)
2850 || DECL_DESTRUCTOR_P (decl))
2851 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
2855 return decl;
2858 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2859 parameters. These are represented in the same format used for
2860 DECL_TEMPLATE_PARMS. */
2863 comp_template_parms (const_tree parms1, const_tree parms2)
2865 const_tree p1;
2866 const_tree p2;
2868 if (parms1 == parms2)
2869 return 1;
2871 for (p1 = parms1, p2 = parms2;
2872 p1 != NULL_TREE && p2 != NULL_TREE;
2873 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2875 tree t1 = TREE_VALUE (p1);
2876 tree t2 = TREE_VALUE (p2);
2877 int i;
2879 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2880 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2882 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2883 return 0;
2885 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2887 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2888 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2890 /* If either of the template parameters are invalid, assume
2891 they match for the sake of error recovery. */
2892 if (error_operand_p (parm1) || error_operand_p (parm2))
2893 return 1;
2895 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2896 return 0;
2898 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2899 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2900 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2901 continue;
2902 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2903 return 0;
2907 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2908 /* One set of parameters has more parameters lists than the
2909 other. */
2910 return 0;
2912 return 1;
2915 /* Determine whether PARM is a parameter pack. */
2917 bool
2918 template_parameter_pack_p (const_tree parm)
2920 /* Determine if we have a non-type template parameter pack. */
2921 if (TREE_CODE (parm) == PARM_DECL)
2922 return (DECL_TEMPLATE_PARM_P (parm)
2923 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2924 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2925 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2927 /* If this is a list of template parameters, we could get a
2928 TYPE_DECL or a TEMPLATE_DECL. */
2929 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2930 parm = TREE_TYPE (parm);
2932 /* Otherwise it must be a type template parameter. */
2933 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2934 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2935 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2938 /* Determine if T is a function parameter pack. */
2940 bool
2941 function_parameter_pack_p (const_tree t)
2943 if (t && TREE_CODE (t) == PARM_DECL)
2944 return DECL_PACK_P (t);
2945 return false;
2948 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2949 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2951 tree
2952 get_function_template_decl (const_tree primary_func_tmpl_inst)
2954 if (! primary_func_tmpl_inst
2955 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2956 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2957 return NULL;
2959 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2962 /* Return true iff the function parameter PARAM_DECL was expanded
2963 from the function parameter pack PACK. */
2965 bool
2966 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2968 if (DECL_ARTIFICIAL (param_decl)
2969 || !function_parameter_pack_p (pack))
2970 return false;
2972 /* The parameter pack and its pack arguments have the same
2973 DECL_PARM_INDEX. */
2974 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2977 /* Determine whether ARGS describes a variadic template args list,
2978 i.e., one that is terminated by a template argument pack. */
2980 static bool
2981 template_args_variadic_p (tree args)
2983 int nargs;
2984 tree last_parm;
2986 if (args == NULL_TREE)
2987 return false;
2989 args = INNERMOST_TEMPLATE_ARGS (args);
2990 nargs = TREE_VEC_LENGTH (args);
2992 if (nargs == 0)
2993 return false;
2995 last_parm = TREE_VEC_ELT (args, nargs - 1);
2997 return ARGUMENT_PACK_P (last_parm);
3000 /* Generate a new name for the parameter pack name NAME (an
3001 IDENTIFIER_NODE) that incorporates its */
3003 static tree
3004 make_ith_pack_parameter_name (tree name, int i)
3006 /* Munge the name to include the parameter index. */
3007 #define NUMBUF_LEN 128
3008 char numbuf[NUMBUF_LEN];
3009 char* newname;
3010 int newname_len;
3012 if (name == NULL_TREE)
3013 return name;
3014 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3015 newname_len = IDENTIFIER_LENGTH (name)
3016 + strlen (numbuf) + 2;
3017 newname = (char*)alloca (newname_len);
3018 snprintf (newname, newname_len,
3019 "%s#%i", IDENTIFIER_POINTER (name), i);
3020 return get_identifier (newname);
3023 /* Return true if T is a primary function, class or alias template
3024 instantiation. */
3026 bool
3027 primary_template_instantiation_p (const_tree t)
3029 if (!t)
3030 return false;
3032 if (TREE_CODE (t) == FUNCTION_DECL)
3033 return DECL_LANG_SPECIFIC (t)
3034 && DECL_TEMPLATE_INSTANTIATION (t)
3035 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3036 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3037 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3038 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3039 else if (alias_template_specialization_p (t))
3040 return true;
3041 return false;
3044 /* Return true if PARM is a template template parameter. */
3046 bool
3047 template_template_parameter_p (const_tree parm)
3049 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3052 /* Return true iff PARM is a DECL representing a type template
3053 parameter. */
3055 bool
3056 template_type_parameter_p (const_tree parm)
3058 return (parm
3059 && (TREE_CODE (parm) == TYPE_DECL
3060 || TREE_CODE (parm) == TEMPLATE_DECL)
3061 && DECL_TEMPLATE_PARM_P (parm));
3064 /* Return the template parameters of T if T is a
3065 primary template instantiation, NULL otherwise. */
3067 tree
3068 get_primary_template_innermost_parameters (const_tree t)
3070 tree parms = NULL, template_info = NULL;
3072 if ((template_info = get_template_info (t))
3073 && primary_template_instantiation_p (t))
3074 parms = INNERMOST_TEMPLATE_PARMS
3075 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3077 return parms;
3080 /* Return the template parameters of the LEVELth level from the full list
3081 of template parameters PARMS. */
3083 tree
3084 get_template_parms_at_level (tree parms, int level)
3086 tree p;
3087 if (!parms
3088 || TREE_CODE (parms) != TREE_LIST
3089 || level > TMPL_PARMS_DEPTH (parms))
3090 return NULL_TREE;
3092 for (p = parms; p; p = TREE_CHAIN (p))
3093 if (TMPL_PARMS_DEPTH (p) == level)
3094 return p;
3096 return NULL_TREE;
3099 /* Returns the template arguments of T if T is a template instantiation,
3100 NULL otherwise. */
3102 tree
3103 get_template_innermost_arguments (const_tree t)
3105 tree args = NULL, template_info = NULL;
3107 if ((template_info = get_template_info (t))
3108 && TI_ARGS (template_info))
3109 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3111 return args;
3114 /* Return the argument pack elements of T if T is a template argument pack,
3115 NULL otherwise. */
3117 tree
3118 get_template_argument_pack_elems (const_tree t)
3120 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3121 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3122 return NULL;
3124 return ARGUMENT_PACK_ARGS (t);
3127 /* Structure used to track the progress of find_parameter_packs_r. */
3128 struct find_parameter_pack_data
3130 /* TREE_LIST that will contain all of the parameter packs found by
3131 the traversal. */
3132 tree* parameter_packs;
3134 /* Set of AST nodes that have been visited by the traversal. */
3135 hash_set<tree> *visited;
3138 /* Identifies all of the argument packs that occur in a template
3139 argument and appends them to the TREE_LIST inside DATA, which is a
3140 find_parameter_pack_data structure. This is a subroutine of
3141 make_pack_expansion and uses_parameter_packs. */
3142 static tree
3143 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3145 tree t = *tp;
3146 struct find_parameter_pack_data* ppd =
3147 (struct find_parameter_pack_data*)data;
3148 bool parameter_pack_p = false;
3150 /* Handle type aliases/typedefs. */
3151 if (TYPE_ALIAS_P (t))
3153 if (TYPE_TEMPLATE_INFO (t))
3154 cp_walk_tree (&TYPE_TI_ARGS (t),
3155 &find_parameter_packs_r,
3156 ppd, ppd->visited);
3157 *walk_subtrees = 0;
3158 return NULL_TREE;
3161 /* Identify whether this is a parameter pack or not. */
3162 switch (TREE_CODE (t))
3164 case TEMPLATE_PARM_INDEX:
3165 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3166 parameter_pack_p = true;
3167 break;
3169 case TEMPLATE_TYPE_PARM:
3170 t = TYPE_MAIN_VARIANT (t);
3171 case TEMPLATE_TEMPLATE_PARM:
3172 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3173 parameter_pack_p = true;
3174 break;
3176 case FIELD_DECL:
3177 case PARM_DECL:
3178 if (DECL_PACK_P (t))
3180 /* We don't want to walk into the type of a PARM_DECL,
3181 because we don't want to see the type parameter pack. */
3182 *walk_subtrees = 0;
3183 parameter_pack_p = true;
3185 break;
3187 /* Look through a lambda capture proxy to the field pack. */
3188 case VAR_DECL:
3189 if (DECL_HAS_VALUE_EXPR_P (t))
3191 tree v = DECL_VALUE_EXPR (t);
3192 cp_walk_tree (&v,
3193 &find_parameter_packs_r,
3194 ppd, ppd->visited);
3195 *walk_subtrees = 0;
3197 break;
3199 case BASES:
3200 parameter_pack_p = true;
3201 break;
3202 default:
3203 /* Not a parameter pack. */
3204 break;
3207 if (parameter_pack_p)
3209 /* Add this parameter pack to the list. */
3210 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3213 if (TYPE_P (t))
3214 cp_walk_tree (&TYPE_CONTEXT (t),
3215 &find_parameter_packs_r, ppd, ppd->visited);
3217 /* This switch statement will return immediately if we don't find a
3218 parameter pack. */
3219 switch (TREE_CODE (t))
3221 case TEMPLATE_PARM_INDEX:
3222 return NULL_TREE;
3224 case BOUND_TEMPLATE_TEMPLATE_PARM:
3225 /* Check the template itself. */
3226 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3227 &find_parameter_packs_r, ppd, ppd->visited);
3228 /* Check the template arguments. */
3229 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3230 ppd->visited);
3231 *walk_subtrees = 0;
3232 return NULL_TREE;
3234 case TEMPLATE_TYPE_PARM:
3235 case TEMPLATE_TEMPLATE_PARM:
3236 return NULL_TREE;
3238 case PARM_DECL:
3239 return NULL_TREE;
3241 case RECORD_TYPE:
3242 if (TYPE_PTRMEMFUNC_P (t))
3243 return NULL_TREE;
3244 /* Fall through. */
3246 case UNION_TYPE:
3247 case ENUMERAL_TYPE:
3248 if (TYPE_TEMPLATE_INFO (t))
3249 cp_walk_tree (&TYPE_TI_ARGS (t),
3250 &find_parameter_packs_r, ppd, ppd->visited);
3252 *walk_subtrees = 0;
3253 return NULL_TREE;
3255 case CONSTRUCTOR:
3256 case TEMPLATE_DECL:
3257 cp_walk_tree (&TREE_TYPE (t),
3258 &find_parameter_packs_r, ppd, ppd->visited);
3259 return NULL_TREE;
3261 case TYPENAME_TYPE:
3262 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3263 ppd, ppd->visited);
3264 *walk_subtrees = 0;
3265 return NULL_TREE;
3267 case TYPE_PACK_EXPANSION:
3268 case EXPR_PACK_EXPANSION:
3269 *walk_subtrees = 0;
3270 return NULL_TREE;
3272 case INTEGER_TYPE:
3273 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3274 ppd, ppd->visited);
3275 *walk_subtrees = 0;
3276 return NULL_TREE;
3278 case IDENTIFIER_NODE:
3279 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3280 ppd->visited);
3281 *walk_subtrees = 0;
3282 return NULL_TREE;
3284 default:
3285 return NULL_TREE;
3288 return NULL_TREE;
3291 /* Determines if the expression or type T uses any parameter packs. */
3292 bool
3293 uses_parameter_packs (tree t)
3295 tree parameter_packs = NULL_TREE;
3296 struct find_parameter_pack_data ppd;
3297 ppd.parameter_packs = &parameter_packs;
3298 ppd.visited = new hash_set<tree>;
3299 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3300 delete ppd.visited;
3301 return parameter_packs != NULL_TREE;
3304 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3305 representation a base-class initializer into a parameter pack
3306 expansion. If all goes well, the resulting node will be an
3307 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3308 respectively. */
3309 tree
3310 make_pack_expansion (tree arg)
3312 tree result;
3313 tree parameter_packs = NULL_TREE;
3314 bool for_types = false;
3315 struct find_parameter_pack_data ppd;
3317 if (!arg || arg == error_mark_node)
3318 return arg;
3320 if (TREE_CODE (arg) == TREE_LIST)
3322 /* The only time we will see a TREE_LIST here is for a base
3323 class initializer. In this case, the TREE_PURPOSE will be a
3324 _TYPE node (representing the base class expansion we're
3325 initializing) and the TREE_VALUE will be a TREE_LIST
3326 containing the initialization arguments.
3328 The resulting expansion looks somewhat different from most
3329 expansions. Rather than returning just one _EXPANSION, we
3330 return a TREE_LIST whose TREE_PURPOSE is a
3331 TYPE_PACK_EXPANSION containing the bases that will be
3332 initialized. The TREE_VALUE will be identical to the
3333 original TREE_VALUE, which is a list of arguments that will
3334 be passed to each base. We do not introduce any new pack
3335 expansion nodes into the TREE_VALUE (although it is possible
3336 that some already exist), because the TREE_PURPOSE and
3337 TREE_VALUE all need to be expanded together with the same
3338 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3339 resulting TREE_PURPOSE will mention the parameter packs in
3340 both the bases and the arguments to the bases. */
3341 tree purpose;
3342 tree value;
3343 tree parameter_packs = NULL_TREE;
3345 /* Determine which parameter packs will be used by the base
3346 class expansion. */
3347 ppd.visited = new hash_set<tree>;
3348 ppd.parameter_packs = &parameter_packs;
3349 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3350 &ppd, ppd.visited);
3352 if (parameter_packs == NULL_TREE)
3354 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3355 delete ppd.visited;
3356 return error_mark_node;
3359 if (TREE_VALUE (arg) != void_type_node)
3361 /* Collect the sets of parameter packs used in each of the
3362 initialization arguments. */
3363 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3365 /* Determine which parameter packs will be expanded in this
3366 argument. */
3367 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3368 &ppd, ppd.visited);
3372 delete ppd.visited;
3374 /* Create the pack expansion type for the base type. */
3375 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3376 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3377 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3379 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3380 they will rarely be compared to anything. */
3381 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3383 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3386 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3387 for_types = true;
3389 /* Build the PACK_EXPANSION_* node. */
3390 result = for_types
3391 ? cxx_make_type (TYPE_PACK_EXPANSION)
3392 : make_node (EXPR_PACK_EXPANSION);
3393 SET_PACK_EXPANSION_PATTERN (result, arg);
3394 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3396 /* Propagate type and const-expression information. */
3397 TREE_TYPE (result) = TREE_TYPE (arg);
3398 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3400 else
3401 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3402 they will rarely be compared to anything. */
3403 SET_TYPE_STRUCTURAL_EQUALITY (result);
3405 /* Determine which parameter packs will be expanded. */
3406 ppd.parameter_packs = &parameter_packs;
3407 ppd.visited = new hash_set<tree>;
3408 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3409 delete ppd.visited;
3411 /* Make sure we found some parameter packs. */
3412 if (parameter_packs == NULL_TREE)
3414 if (TYPE_P (arg))
3415 error ("expansion pattern %<%T%> contains no argument packs", arg);
3416 else
3417 error ("expansion pattern %<%E%> contains no argument packs", arg);
3418 return error_mark_node;
3420 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3422 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3424 return result;
3427 /* Checks T for any "bare" parameter packs, which have not yet been
3428 expanded, and issues an error if any are found. This operation can
3429 only be done on full expressions or types (e.g., an expression
3430 statement, "if" condition, etc.), because we could have expressions like:
3432 foo(f(g(h(args)))...)
3434 where "args" is a parameter pack. check_for_bare_parameter_packs
3435 should not be called for the subexpressions args, h(args),
3436 g(h(args)), or f(g(h(args))), because we would produce erroneous
3437 error messages.
3439 Returns TRUE and emits an error if there were bare parameter packs,
3440 returns FALSE otherwise. */
3441 bool
3442 check_for_bare_parameter_packs (tree t)
3444 tree parameter_packs = NULL_TREE;
3445 struct find_parameter_pack_data ppd;
3447 if (!processing_template_decl || !t || t == error_mark_node)
3448 return false;
3450 if (TREE_CODE (t) == TYPE_DECL)
3451 t = TREE_TYPE (t);
3453 ppd.parameter_packs = &parameter_packs;
3454 ppd.visited = new hash_set<tree>;
3455 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3456 delete ppd.visited;
3458 if (parameter_packs)
3460 error ("parameter packs not expanded with %<...%>:");
3461 while (parameter_packs)
3463 tree pack = TREE_VALUE (parameter_packs);
3464 tree name = NULL_TREE;
3466 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3467 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3468 name = TYPE_NAME (pack);
3469 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3470 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3471 else
3472 name = DECL_NAME (pack);
3474 if (name)
3475 inform (input_location, " %qD", name);
3476 else
3477 inform (input_location, " <anonymous>");
3479 parameter_packs = TREE_CHAIN (parameter_packs);
3482 return true;
3485 return false;
3488 /* Expand any parameter packs that occur in the template arguments in
3489 ARGS. */
3490 tree
3491 expand_template_argument_pack (tree args)
3493 tree result_args = NULL_TREE;
3494 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3495 int num_result_args = -1;
3496 int non_default_args_count = -1;
3498 /* First, determine if we need to expand anything, and the number of
3499 slots we'll need. */
3500 for (in_arg = 0; in_arg < nargs; ++in_arg)
3502 tree arg = TREE_VEC_ELT (args, in_arg);
3503 if (arg == NULL_TREE)
3504 return args;
3505 if (ARGUMENT_PACK_P (arg))
3507 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3508 if (num_result_args < 0)
3509 num_result_args = in_arg + num_packed;
3510 else
3511 num_result_args += num_packed;
3513 else
3515 if (num_result_args >= 0)
3516 num_result_args++;
3520 /* If no expansion is necessary, we're done. */
3521 if (num_result_args < 0)
3522 return args;
3524 /* Expand arguments. */
3525 result_args = make_tree_vec (num_result_args);
3526 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3527 non_default_args_count =
3528 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3529 for (in_arg = 0; in_arg < nargs; ++in_arg)
3531 tree arg = TREE_VEC_ELT (args, in_arg);
3532 if (ARGUMENT_PACK_P (arg))
3534 tree packed = ARGUMENT_PACK_ARGS (arg);
3535 int i, num_packed = TREE_VEC_LENGTH (packed);
3536 for (i = 0; i < num_packed; ++i, ++out_arg)
3537 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3538 if (non_default_args_count > 0)
3539 non_default_args_count += num_packed - 1;
3541 else
3543 TREE_VEC_ELT (result_args, out_arg) = arg;
3544 ++out_arg;
3547 if (non_default_args_count >= 0)
3548 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3549 return result_args;
3552 /* Checks if DECL shadows a template parameter.
3554 [temp.local]: A template-parameter shall not be redeclared within its
3555 scope (including nested scopes).
3557 Emits an error and returns TRUE if the DECL shadows a parameter,
3558 returns FALSE otherwise. */
3560 bool
3561 check_template_shadow (tree decl)
3563 tree olddecl;
3565 /* If we're not in a template, we can't possibly shadow a template
3566 parameter. */
3567 if (!current_template_parms)
3568 return true;
3570 /* Figure out what we're shadowing. */
3571 if (TREE_CODE (decl) == OVERLOAD)
3572 decl = OVL_CURRENT (decl);
3573 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3575 /* If there's no previous binding for this name, we're not shadowing
3576 anything, let alone a template parameter. */
3577 if (!olddecl)
3578 return true;
3580 /* If we're not shadowing a template parameter, we're done. Note
3581 that OLDDECL might be an OVERLOAD (or perhaps even an
3582 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3583 node. */
3584 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3585 return true;
3587 /* We check for decl != olddecl to avoid bogus errors for using a
3588 name inside a class. We check TPFI to avoid duplicate errors for
3589 inline member templates. */
3590 if (decl == olddecl
3591 || (DECL_TEMPLATE_PARM_P (decl)
3592 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3593 return true;
3595 /* Don't complain about the injected class name, as we've already
3596 complained about the class itself. */
3597 if (DECL_SELF_REFERENCE_P (decl))
3598 return false;
3600 error ("declaration of %q+#D", decl);
3601 error (" shadows template parm %q+#D", olddecl);
3602 return false;
3605 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3606 ORIG_LEVEL, DECL, and TYPE. */
3608 static tree
3609 build_template_parm_index (int index,
3610 int level,
3611 int orig_level,
3612 tree decl,
3613 tree type)
3615 tree t = make_node (TEMPLATE_PARM_INDEX);
3616 TEMPLATE_PARM_IDX (t) = index;
3617 TEMPLATE_PARM_LEVEL (t) = level;
3618 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3619 TEMPLATE_PARM_DECL (t) = decl;
3620 TREE_TYPE (t) = type;
3621 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3622 TREE_READONLY (t) = TREE_READONLY (decl);
3624 return t;
3627 /* Find the canonical type parameter for the given template type
3628 parameter. Returns the canonical type parameter, which may be TYPE
3629 if no such parameter existed. */
3631 static tree
3632 canonical_type_parameter (tree type)
3634 tree list;
3635 int idx = TEMPLATE_TYPE_IDX (type);
3636 if (!canonical_template_parms)
3637 vec_alloc (canonical_template_parms, idx+1);
3639 while (canonical_template_parms->length () <= (unsigned)idx)
3640 vec_safe_push (canonical_template_parms, NULL_TREE);
3642 list = (*canonical_template_parms)[idx];
3643 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3644 list = TREE_CHAIN (list);
3646 if (list)
3647 return TREE_VALUE (list);
3648 else
3650 (*canonical_template_parms)[idx]
3651 = tree_cons (NULL_TREE, type,
3652 (*canonical_template_parms)[idx]);
3653 return type;
3657 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3658 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3659 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3660 new one is created. */
3662 static tree
3663 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3664 tsubst_flags_t complain)
3666 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3667 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3668 != TEMPLATE_PARM_LEVEL (index) - levels)
3669 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3671 tree orig_decl = TEMPLATE_PARM_DECL (index);
3672 tree decl, t;
3674 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3675 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3676 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3677 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3678 DECL_ARTIFICIAL (decl) = 1;
3679 SET_DECL_TEMPLATE_PARM_P (decl);
3681 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3682 TEMPLATE_PARM_LEVEL (index) - levels,
3683 TEMPLATE_PARM_ORIG_LEVEL (index),
3684 decl, type);
3685 TEMPLATE_PARM_DESCENDANTS (index) = t;
3686 TEMPLATE_PARM_PARAMETER_PACK (t)
3687 = TEMPLATE_PARM_PARAMETER_PACK (index);
3689 /* Template template parameters need this. */
3690 if (TREE_CODE (decl) == TEMPLATE_DECL)
3691 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3692 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3693 args, complain);
3696 return TEMPLATE_PARM_DESCENDANTS (index);
3699 /* Process information from new template parameter PARM and append it
3700 to the LIST being built. This new parameter is a non-type
3701 parameter iff IS_NON_TYPE is true. This new parameter is a
3702 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3703 is in PARM_LOC. */
3705 tree
3706 process_template_parm (tree list, location_t parm_loc, tree parm,
3707 bool is_non_type, bool is_parameter_pack)
3709 tree decl = 0;
3710 tree defval;
3711 int idx = 0;
3713 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3714 defval = TREE_PURPOSE (parm);
3716 if (list)
3718 tree p = tree_last (list);
3720 if (p && TREE_VALUE (p) != error_mark_node)
3722 p = TREE_VALUE (p);
3723 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3724 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3725 else
3726 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3729 ++idx;
3732 if (is_non_type)
3734 parm = TREE_VALUE (parm);
3736 SET_DECL_TEMPLATE_PARM_P (parm);
3738 if (TREE_TYPE (parm) != error_mark_node)
3740 /* [temp.param]
3742 The top-level cv-qualifiers on the template-parameter are
3743 ignored when determining its type. */
3744 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3745 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3746 TREE_TYPE (parm) = error_mark_node;
3747 else if (uses_parameter_packs (TREE_TYPE (parm))
3748 && !is_parameter_pack
3749 /* If we're in a nested template parameter list, the template
3750 template parameter could be a parameter pack. */
3751 && processing_template_parmlist == 1)
3753 /* This template parameter is not a parameter pack, but it
3754 should be. Complain about "bare" parameter packs. */
3755 check_for_bare_parameter_packs (TREE_TYPE (parm));
3757 /* Recover by calling this a parameter pack. */
3758 is_parameter_pack = true;
3762 /* A template parameter is not modifiable. */
3763 TREE_CONSTANT (parm) = 1;
3764 TREE_READONLY (parm) = 1;
3765 decl = build_decl (parm_loc,
3766 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3767 TREE_CONSTANT (decl) = 1;
3768 TREE_READONLY (decl) = 1;
3769 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3770 = build_template_parm_index (idx, processing_template_decl,
3771 processing_template_decl,
3772 decl, TREE_TYPE (parm));
3774 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3775 = is_parameter_pack;
3777 else
3779 tree t;
3780 parm = TREE_VALUE (TREE_VALUE (parm));
3782 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3784 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3785 /* This is for distinguishing between real templates and template
3786 template parameters */
3787 TREE_TYPE (parm) = t;
3788 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3789 decl = parm;
3791 else
3793 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3794 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3795 decl = build_decl (parm_loc,
3796 TYPE_DECL, parm, t);
3799 TYPE_NAME (t) = decl;
3800 TYPE_STUB_DECL (t) = decl;
3801 parm = decl;
3802 TEMPLATE_TYPE_PARM_INDEX (t)
3803 = build_template_parm_index (idx, processing_template_decl,
3804 processing_template_decl,
3805 decl, TREE_TYPE (parm));
3806 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3807 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3809 DECL_ARTIFICIAL (decl) = 1;
3810 SET_DECL_TEMPLATE_PARM_P (decl);
3811 pushdecl (decl);
3812 parm = build_tree_list (defval, parm);
3813 return chainon (list, parm);
3816 /* The end of a template parameter list has been reached. Process the
3817 tree list into a parameter vector, converting each parameter into a more
3818 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3819 as PARM_DECLs. */
3821 tree
3822 end_template_parm_list (tree parms)
3824 int nparms;
3825 tree parm, next;
3826 tree saved_parmlist = make_tree_vec (list_length (parms));
3828 current_template_parms
3829 = tree_cons (size_int (processing_template_decl),
3830 saved_parmlist, current_template_parms);
3832 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3834 next = TREE_CHAIN (parm);
3835 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3836 TREE_CHAIN (parm) = NULL_TREE;
3839 --processing_template_parmlist;
3841 return saved_parmlist;
3844 /* end_template_decl is called after a template declaration is seen. */
3846 void
3847 end_template_decl (void)
3849 reset_specialization ();
3851 if (! processing_template_decl)
3852 return;
3854 /* This matches the pushlevel in begin_template_parm_list. */
3855 finish_scope ();
3857 --processing_template_decl;
3858 current_template_parms = TREE_CHAIN (current_template_parms);
3861 /* Takes a TREE_LIST representing a template parameter and convert it
3862 into an argument suitable to be passed to the type substitution
3863 functions. Note that If the TREE_LIST contains an error_mark
3864 node, the returned argument is error_mark_node. */
3866 static tree
3867 template_parm_to_arg (tree t)
3870 if (t == NULL_TREE
3871 || TREE_CODE (t) != TREE_LIST)
3872 return t;
3874 if (error_operand_p (TREE_VALUE (t)))
3875 return error_mark_node;
3877 t = TREE_VALUE (t);
3879 if (TREE_CODE (t) == TYPE_DECL
3880 || TREE_CODE (t) == TEMPLATE_DECL)
3882 t = TREE_TYPE (t);
3884 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3886 /* Turn this argument into a TYPE_ARGUMENT_PACK
3887 with a single element, which expands T. */
3888 tree vec = make_tree_vec (1);
3889 #ifdef ENABLE_CHECKING
3890 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3891 (vec, TREE_VEC_LENGTH (vec));
3892 #endif
3893 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3895 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3896 SET_ARGUMENT_PACK_ARGS (t, vec);
3899 else
3901 t = DECL_INITIAL (t);
3903 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3905 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3906 with a single element, which expands T. */
3907 tree vec = make_tree_vec (1);
3908 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3909 #ifdef ENABLE_CHECKING
3910 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3911 (vec, TREE_VEC_LENGTH (vec));
3912 #endif
3913 t = convert_from_reference (t);
3914 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3916 t = make_node (NONTYPE_ARGUMENT_PACK);
3917 SET_ARGUMENT_PACK_ARGS (t, vec);
3918 TREE_TYPE (t) = type;
3920 else
3921 t = convert_from_reference (t);
3923 return t;
3926 /* Given a set of template parameters, return them as a set of template
3927 arguments. The template parameters are represented as a TREE_VEC, in
3928 the form documented in cp-tree.h for template arguments. */
3930 static tree
3931 template_parms_to_args (tree parms)
3933 tree header;
3934 tree args = NULL_TREE;
3935 int length = TMPL_PARMS_DEPTH (parms);
3936 int l = length;
3938 /* If there is only one level of template parameters, we do not
3939 create a TREE_VEC of TREE_VECs. Instead, we return a single
3940 TREE_VEC containing the arguments. */
3941 if (length > 1)
3942 args = make_tree_vec (length);
3944 for (header = parms; header; header = TREE_CHAIN (header))
3946 tree a = copy_node (TREE_VALUE (header));
3947 int i;
3949 TREE_TYPE (a) = NULL_TREE;
3950 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3951 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3953 #ifdef ENABLE_CHECKING
3954 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3955 #endif
3957 if (length > 1)
3958 TREE_VEC_ELT (args, --l) = a;
3959 else
3960 args = a;
3963 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3964 /* This can happen for template parms of a template template
3965 parameter, e.g:
3967 template<template<class T, class U> class TT> struct S;
3969 Consider the level of the parms of TT; T and U both have
3970 level 2; TT has no template parm of level 1. So in this case
3971 the first element of full_template_args is NULL_TREE. If we
3972 leave it like this TMPL_ARGS_DEPTH on args returns 1 instead
3973 of 2. This will make tsubst wrongly consider that T and U
3974 have level 1. Instead, let's create a dummy vector as the
3975 first element of full_template_args so that TMPL_ARGS_DEPTH
3976 returns the correct depth for args. */
3977 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3978 return args;
3981 /* Within the declaration of a template, return the currently active
3982 template parameters as an argument TREE_VEC. */
3984 static tree
3985 current_template_args (void)
3987 return template_parms_to_args (current_template_parms);
3990 /* Update the declared TYPE by doing any lookups which were thought to be
3991 dependent, but are not now that we know the SCOPE of the declarator. */
3993 tree
3994 maybe_update_decl_type (tree orig_type, tree scope)
3996 tree type = orig_type;
3998 if (type == NULL_TREE)
3999 return type;
4001 if (TREE_CODE (orig_type) == TYPE_DECL)
4002 type = TREE_TYPE (type);
4004 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4005 && dependent_type_p (type)
4006 /* Don't bother building up the args in this case. */
4007 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4009 /* tsubst in the args corresponding to the template parameters,
4010 including auto if present. Most things will be unchanged, but
4011 make_typename_type and tsubst_qualified_id will resolve
4012 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4013 tree args = current_template_args ();
4014 tree auto_node = type_uses_auto (type);
4015 tree pushed;
4016 if (auto_node)
4018 tree auto_vec = make_tree_vec (1);
4019 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4020 args = add_to_template_args (args, auto_vec);
4022 pushed = push_scope (scope);
4023 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4024 if (pushed)
4025 pop_scope (scope);
4028 if (type == error_mark_node)
4029 return orig_type;
4031 if (TREE_CODE (orig_type) == TYPE_DECL)
4033 if (same_type_p (type, TREE_TYPE (orig_type)))
4034 type = orig_type;
4035 else
4036 type = TYPE_NAME (type);
4038 return type;
4041 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4042 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
4043 a member template. Used by push_template_decl below. */
4045 static tree
4046 build_template_decl (tree decl, tree parms, bool member_template_p)
4048 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4049 DECL_TEMPLATE_PARMS (tmpl) = parms;
4050 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4051 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4052 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4054 return tmpl;
4057 struct template_parm_data
4059 /* The level of the template parameters we are currently
4060 processing. */
4061 int level;
4063 /* The index of the specialization argument we are currently
4064 processing. */
4065 int current_arg;
4067 /* An array whose size is the number of template parameters. The
4068 elements are nonzero if the parameter has been used in any one
4069 of the arguments processed so far. */
4070 int* parms;
4072 /* An array whose size is the number of template arguments. The
4073 elements are nonzero if the argument makes use of template
4074 parameters of this level. */
4075 int* arg_uses_template_parms;
4078 /* Subroutine of push_template_decl used to see if each template
4079 parameter in a partial specialization is used in the explicit
4080 argument list. If T is of the LEVEL given in DATA (which is
4081 treated as a template_parm_data*), then DATA->PARMS is marked
4082 appropriately. */
4084 static int
4085 mark_template_parm (tree t, void* data)
4087 int level;
4088 int idx;
4089 struct template_parm_data* tpd = (struct template_parm_data*) data;
4091 template_parm_level_and_index (t, &level, &idx);
4093 if (level == tpd->level)
4095 tpd->parms[idx] = 1;
4096 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4099 /* Return zero so that for_each_template_parm will continue the
4100 traversal of the tree; we want to mark *every* template parm. */
4101 return 0;
4104 /* Process the partial specialization DECL. */
4106 static tree
4107 process_partial_specialization (tree decl)
4109 tree type = TREE_TYPE (decl);
4110 tree tinfo = get_template_info (decl);
4111 tree maintmpl = TI_TEMPLATE (tinfo);
4112 tree specargs = TI_ARGS (tinfo);
4113 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4114 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4115 tree inner_parms;
4116 tree inst;
4117 int nargs = TREE_VEC_LENGTH (inner_args);
4118 int ntparms;
4119 int i;
4120 bool did_error_intro = false;
4121 struct template_parm_data tpd;
4122 struct template_parm_data tpd2;
4124 gcc_assert (current_template_parms);
4126 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4127 ntparms = TREE_VEC_LENGTH (inner_parms);
4129 /* We check that each of the template parameters given in the
4130 partial specialization is used in the argument list to the
4131 specialization. For example:
4133 template <class T> struct S;
4134 template <class T> struct S<T*>;
4136 The second declaration is OK because `T*' uses the template
4137 parameter T, whereas
4139 template <class T> struct S<int>;
4141 is no good. Even trickier is:
4143 template <class T>
4144 struct S1
4146 template <class U>
4147 struct S2;
4148 template <class U>
4149 struct S2<T>;
4152 The S2<T> declaration is actually invalid; it is a
4153 full-specialization. Of course,
4155 template <class U>
4156 struct S2<T (*)(U)>;
4158 or some such would have been OK. */
4159 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4160 tpd.parms = XALLOCAVEC (int, ntparms);
4161 memset (tpd.parms, 0, sizeof (int) * ntparms);
4163 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4164 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4165 for (i = 0; i < nargs; ++i)
4167 tpd.current_arg = i;
4168 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4169 &mark_template_parm,
4170 &tpd,
4171 NULL,
4172 /*include_nondeduced_p=*/false);
4174 for (i = 0; i < ntparms; ++i)
4175 if (tpd.parms[i] == 0)
4177 /* One of the template parms was not used in a deduced context in the
4178 specialization. */
4179 if (!did_error_intro)
4181 error ("template parameters not deducible in "
4182 "partial specialization:");
4183 did_error_intro = true;
4186 inform (input_location, " %qD",
4187 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4190 if (did_error_intro)
4191 return error_mark_node;
4193 /* [temp.class.spec]
4195 The argument list of the specialization shall not be identical to
4196 the implicit argument list of the primary template. */
4197 tree main_args
4198 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4199 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args)))
4200 error ("partial specialization %qD does not specialize "
4201 "any template arguments", decl);
4203 /* A partial specialization that replaces multiple parameters of the
4204 primary template with a pack expansion is less specialized for those
4205 parameters. */
4206 if (nargs < DECL_NTPARMS (maintmpl))
4208 error ("partial specialization is not more specialized than the "
4209 "primary template because it replaces multiple parameters "
4210 "with a pack expansion");
4211 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4212 return decl;
4215 /* [temp.class.spec]
4217 A partially specialized non-type argument expression shall not
4218 involve template parameters of the partial specialization except
4219 when the argument expression is a simple identifier.
4221 The type of a template parameter corresponding to a specialized
4222 non-type argument shall not be dependent on a parameter of the
4223 specialization.
4225 Also, we verify that pack expansions only occur at the
4226 end of the argument list. */
4227 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4228 tpd2.parms = 0;
4229 for (i = 0; i < nargs; ++i)
4231 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4232 tree arg = TREE_VEC_ELT (inner_args, i);
4233 tree packed_args = NULL_TREE;
4234 int j, len = 1;
4236 if (ARGUMENT_PACK_P (arg))
4238 /* Extract the arguments from the argument pack. We'll be
4239 iterating over these in the following loop. */
4240 packed_args = ARGUMENT_PACK_ARGS (arg);
4241 len = TREE_VEC_LENGTH (packed_args);
4244 for (j = 0; j < len; j++)
4246 if (packed_args)
4247 /* Get the Jth argument in the parameter pack. */
4248 arg = TREE_VEC_ELT (packed_args, j);
4250 if (PACK_EXPANSION_P (arg))
4252 /* Pack expansions must come at the end of the
4253 argument list. */
4254 if ((packed_args && j < len - 1)
4255 || (!packed_args && i < nargs - 1))
4257 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4258 error ("parameter pack argument %qE must be at the "
4259 "end of the template argument list", arg);
4260 else
4261 error ("parameter pack argument %qT must be at the "
4262 "end of the template argument list", arg);
4266 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4267 /* We only care about the pattern. */
4268 arg = PACK_EXPANSION_PATTERN (arg);
4270 if (/* These first two lines are the `non-type' bit. */
4271 !TYPE_P (arg)
4272 && TREE_CODE (arg) != TEMPLATE_DECL
4273 /* This next two lines are the `argument expression is not just a
4274 simple identifier' condition and also the `specialized
4275 non-type argument' bit. */
4276 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4277 && !(REFERENCE_REF_P (arg)
4278 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4280 if ((!packed_args && tpd.arg_uses_template_parms[i])
4281 || (packed_args && uses_template_parms (arg)))
4282 error ("template argument %qE involves template parameter(s)",
4283 arg);
4284 else
4286 /* Look at the corresponding template parameter,
4287 marking which template parameters its type depends
4288 upon. */
4289 tree type = TREE_TYPE (parm);
4291 if (!tpd2.parms)
4293 /* We haven't yet initialized TPD2. Do so now. */
4294 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4295 /* The number of parameters here is the number in the
4296 main template, which, as checked in the assertion
4297 above, is NARGS. */
4298 tpd2.parms = XALLOCAVEC (int, nargs);
4299 tpd2.level =
4300 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4303 /* Mark the template parameters. But this time, we're
4304 looking for the template parameters of the main
4305 template, not in the specialization. */
4306 tpd2.current_arg = i;
4307 tpd2.arg_uses_template_parms[i] = 0;
4308 memset (tpd2.parms, 0, sizeof (int) * nargs);
4309 for_each_template_parm (type,
4310 &mark_template_parm,
4311 &tpd2,
4312 NULL,
4313 /*include_nondeduced_p=*/false);
4315 if (tpd2.arg_uses_template_parms [i])
4317 /* The type depended on some template parameters.
4318 If they are fully specialized in the
4319 specialization, that's OK. */
4320 int j;
4321 int count = 0;
4322 for (j = 0; j < nargs; ++j)
4323 if (tpd2.parms[j] != 0
4324 && tpd.arg_uses_template_parms [j])
4325 ++count;
4326 if (count != 0)
4327 error_n (input_location, count,
4328 "type %qT of template argument %qE depends "
4329 "on a template parameter",
4330 "type %qT of template argument %qE depends "
4331 "on template parameters",
4332 type,
4333 arg);
4340 /* We should only get here once. */
4341 if (TREE_CODE (decl) == TYPE_DECL)
4342 gcc_assert (!COMPLETE_TYPE_P (type));
4344 tree tmpl = build_template_decl (decl, current_template_parms,
4345 DECL_MEMBER_TEMPLATE_P (maintmpl));
4346 TREE_TYPE (tmpl) = type;
4347 DECL_TEMPLATE_RESULT (tmpl) = decl;
4348 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4349 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4350 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4352 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4353 = tree_cons (specargs, tmpl,
4354 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4355 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4357 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4358 inst = TREE_CHAIN (inst))
4360 tree instance = TREE_VALUE (inst);
4361 if (TYPE_P (instance)
4362 ? (COMPLETE_TYPE_P (instance)
4363 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4364 : DECL_TEMPLATE_INSTANTIATION (instance))
4366 tree spec = most_specialized_partial_spec (instance, tf_none);
4367 if (spec && TREE_VALUE (spec) == tmpl)
4369 tree inst_decl = (DECL_P (instance)
4370 ? instance : TYPE_NAME (instance));
4371 permerror (input_location,
4372 "partial specialization of %qD after instantiation "
4373 "of %qD", decl, inst_decl);
4378 return decl;
4381 /* PARM is a template parameter of some form; return the corresponding
4382 TEMPLATE_PARM_INDEX. */
4384 static tree
4385 get_template_parm_index (tree parm)
4387 if (TREE_CODE (parm) == PARM_DECL
4388 || TREE_CODE (parm) == CONST_DECL)
4389 parm = DECL_INITIAL (parm);
4390 else if (TREE_CODE (parm) == TYPE_DECL
4391 || TREE_CODE (parm) == TEMPLATE_DECL)
4392 parm = TREE_TYPE (parm);
4393 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4394 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4395 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4396 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4397 return parm;
4400 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4401 parameter packs used by the template parameter PARM. */
4403 static void
4404 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4406 /* A type parm can't refer to another parm. */
4407 if (TREE_CODE (parm) == TYPE_DECL)
4408 return;
4409 else if (TREE_CODE (parm) == PARM_DECL)
4411 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4412 ppd, ppd->visited);
4413 return;
4416 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4418 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4419 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4420 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4423 /* PARM is a template parameter pack. Return any parameter packs used in
4424 its type or the type of any of its template parameters. If there are
4425 any such packs, it will be instantiated into a fixed template parameter
4426 list by partial instantiation rather than be fully deduced. */
4428 tree
4429 fixed_parameter_pack_p (tree parm)
4431 /* This can only be true in a member template. */
4432 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4433 return NULL_TREE;
4434 /* This can only be true for a parameter pack. */
4435 if (!template_parameter_pack_p (parm))
4436 return NULL_TREE;
4437 /* A type parm can't refer to another parm. */
4438 if (TREE_CODE (parm) == TYPE_DECL)
4439 return NULL_TREE;
4441 tree parameter_packs = NULL_TREE;
4442 struct find_parameter_pack_data ppd;
4443 ppd.parameter_packs = &parameter_packs;
4444 ppd.visited = new hash_set<tree>;
4446 fixed_parameter_pack_p_1 (parm, &ppd);
4448 delete ppd.visited;
4449 return parameter_packs;
4452 /* Check that a template declaration's use of default arguments and
4453 parameter packs is not invalid. Here, PARMS are the template
4454 parameters. IS_PRIMARY is true if DECL is the thing declared by
4455 a primary template. IS_PARTIAL is true if DECL is a partial
4456 specialization.
4458 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4459 declaration (but not a definition); 1 indicates a declaration, 2
4460 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4461 emitted for extraneous default arguments.
4463 Returns TRUE if there were no errors found, FALSE otherwise. */
4465 bool
4466 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4467 bool is_partial, int is_friend_decl)
4469 const char *msg;
4470 int last_level_to_check;
4471 tree parm_level;
4472 bool no_errors = true;
4474 /* [temp.param]
4476 A default template-argument shall not be specified in a
4477 function template declaration or a function template definition, nor
4478 in the template-parameter-list of the definition of a member of a
4479 class template. */
4481 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4482 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4483 /* You can't have a function template declaration in a local
4484 scope, nor you can you define a member of a class template in a
4485 local scope. */
4486 return true;
4488 if ((TREE_CODE (decl) == TYPE_DECL
4489 && TREE_TYPE (decl)
4490 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4491 || (TREE_CODE (decl) == FUNCTION_DECL
4492 && LAMBDA_FUNCTION_P (decl)))
4493 /* A lambda doesn't have an explicit declaration; don't complain
4494 about the parms of the enclosing class. */
4495 return true;
4497 if (current_class_type
4498 && !TYPE_BEING_DEFINED (current_class_type)
4499 && DECL_LANG_SPECIFIC (decl)
4500 && DECL_DECLARES_FUNCTION_P (decl)
4501 /* If this is either a friend defined in the scope of the class
4502 or a member function. */
4503 && (DECL_FUNCTION_MEMBER_P (decl)
4504 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4505 : DECL_FRIEND_CONTEXT (decl)
4506 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4507 : false)
4508 /* And, if it was a member function, it really was defined in
4509 the scope of the class. */
4510 && (!DECL_FUNCTION_MEMBER_P (decl)
4511 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4512 /* We already checked these parameters when the template was
4513 declared, so there's no need to do it again now. This function
4514 was defined in class scope, but we're processing its body now
4515 that the class is complete. */
4516 return true;
4518 /* Core issue 226 (C++0x only): the following only applies to class
4519 templates. */
4520 if (is_primary
4521 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4523 /* [temp.param]
4525 If a template-parameter has a default template-argument, all
4526 subsequent template-parameters shall have a default
4527 template-argument supplied. */
4528 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4530 tree inner_parms = TREE_VALUE (parm_level);
4531 int ntparms = TREE_VEC_LENGTH (inner_parms);
4532 int seen_def_arg_p = 0;
4533 int i;
4535 for (i = 0; i < ntparms; ++i)
4537 tree parm = TREE_VEC_ELT (inner_parms, i);
4539 if (parm == error_mark_node)
4540 continue;
4542 if (TREE_PURPOSE (parm))
4543 seen_def_arg_p = 1;
4544 else if (seen_def_arg_p
4545 && !template_parameter_pack_p (TREE_VALUE (parm)))
4547 error ("no default argument for %qD", TREE_VALUE (parm));
4548 /* For better subsequent error-recovery, we indicate that
4549 there should have been a default argument. */
4550 TREE_PURPOSE (parm) = error_mark_node;
4551 no_errors = false;
4553 else if (!is_partial
4554 && !is_friend_decl
4555 /* Don't complain about an enclosing partial
4556 specialization. */
4557 && parm_level == parms
4558 && TREE_CODE (decl) == TYPE_DECL
4559 && i < ntparms - 1
4560 && template_parameter_pack_p (TREE_VALUE (parm))
4561 /* A fixed parameter pack will be partially
4562 instantiated into a fixed length list. */
4563 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4565 /* A primary class template can only have one
4566 parameter pack, at the end of the template
4567 parameter list. */
4569 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4570 error ("parameter pack %qE must be at the end of the"
4571 " template parameter list", TREE_VALUE (parm));
4572 else
4573 error ("parameter pack %qT must be at the end of the"
4574 " template parameter list",
4575 TREE_TYPE (TREE_VALUE (parm)));
4577 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4578 = error_mark_node;
4579 no_errors = false;
4585 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4586 || is_partial
4587 || !is_primary
4588 || is_friend_decl)
4589 /* For an ordinary class template, default template arguments are
4590 allowed at the innermost level, e.g.:
4591 template <class T = int>
4592 struct S {};
4593 but, in a partial specialization, they're not allowed even
4594 there, as we have in [temp.class.spec]:
4596 The template parameter list of a specialization shall not
4597 contain default template argument values.
4599 So, for a partial specialization, or for a function template
4600 (in C++98/C++03), we look at all of them. */
4602 else
4603 /* But, for a primary class template that is not a partial
4604 specialization we look at all template parameters except the
4605 innermost ones. */
4606 parms = TREE_CHAIN (parms);
4608 /* Figure out what error message to issue. */
4609 if (is_friend_decl == 2)
4610 msg = G_("default template arguments may not be used in function template "
4611 "friend re-declaration");
4612 else if (is_friend_decl)
4613 msg = G_("default template arguments may not be used in function template "
4614 "friend declarations");
4615 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4616 msg = G_("default template arguments may not be used in function templates "
4617 "without -std=c++11 or -std=gnu++11");
4618 else if (is_partial)
4619 msg = G_("default template arguments may not be used in "
4620 "partial specializations");
4621 else
4622 msg = G_("default argument for template parameter for class enclosing %qD");
4624 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4625 /* If we're inside a class definition, there's no need to
4626 examine the parameters to the class itself. On the one
4627 hand, they will be checked when the class is defined, and,
4628 on the other, default arguments are valid in things like:
4629 template <class T = double>
4630 struct S { template <class U> void f(U); };
4631 Here the default argument for `S' has no bearing on the
4632 declaration of `f'. */
4633 last_level_to_check = template_class_depth (current_class_type) + 1;
4634 else
4635 /* Check everything. */
4636 last_level_to_check = 0;
4638 for (parm_level = parms;
4639 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4640 parm_level = TREE_CHAIN (parm_level))
4642 tree inner_parms = TREE_VALUE (parm_level);
4643 int i;
4644 int ntparms;
4646 ntparms = TREE_VEC_LENGTH (inner_parms);
4647 for (i = 0; i < ntparms; ++i)
4649 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4650 continue;
4652 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4654 if (msg)
4656 no_errors = false;
4657 if (is_friend_decl == 2)
4658 return no_errors;
4660 error (msg, decl);
4661 msg = 0;
4664 /* Clear out the default argument so that we are not
4665 confused later. */
4666 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4670 /* At this point, if we're still interested in issuing messages,
4671 they must apply to classes surrounding the object declared. */
4672 if (msg)
4673 msg = G_("default argument for template parameter for class "
4674 "enclosing %qD");
4677 return no_errors;
4680 /* Worker for push_template_decl_real, called via
4681 for_each_template_parm. DATA is really an int, indicating the
4682 level of the parameters we are interested in. If T is a template
4683 parameter of that level, return nonzero. */
4685 static int
4686 template_parm_this_level_p (tree t, void* data)
4688 int this_level = *(int *)data;
4689 int level;
4691 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4692 level = TEMPLATE_PARM_LEVEL (t);
4693 else
4694 level = TEMPLATE_TYPE_LEVEL (t);
4695 return level == this_level;
4698 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4699 parameters given by current_template_args, or reuses a
4700 previously existing one, if appropriate. Returns the DECL, or an
4701 equivalent one, if it is replaced via a call to duplicate_decls.
4703 If IS_FRIEND is true, DECL is a friend declaration. */
4705 tree
4706 push_template_decl_real (tree decl, bool is_friend)
4708 tree tmpl;
4709 tree args;
4710 tree info;
4711 tree ctx;
4712 bool is_primary;
4713 bool is_partial;
4714 int new_template_p = 0;
4715 /* True if the template is a member template, in the sense of
4716 [temp.mem]. */
4717 bool member_template_p = false;
4719 if (decl == error_mark_node || !current_template_parms)
4720 return error_mark_node;
4722 /* See if this is a partial specialization. */
4723 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
4724 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4725 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
4726 || (TREE_CODE (decl) == VAR_DECL
4727 && DECL_LANG_SPECIFIC (decl)
4728 && DECL_TEMPLATE_SPECIALIZATION (decl)
4729 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
4731 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4732 is_friend = true;
4734 if (is_friend)
4735 /* For a friend, we want the context of the friend function, not
4736 the type of which it is a friend. */
4737 ctx = CP_DECL_CONTEXT (decl);
4738 else if (CP_DECL_CONTEXT (decl)
4739 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4740 /* In the case of a virtual function, we want the class in which
4741 it is defined. */
4742 ctx = CP_DECL_CONTEXT (decl);
4743 else
4744 /* Otherwise, if we're currently defining some class, the DECL
4745 is assumed to be a member of the class. */
4746 ctx = current_scope ();
4748 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4749 ctx = NULL_TREE;
4751 if (!DECL_CONTEXT (decl))
4752 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4754 /* See if this is a primary template. */
4755 if (is_friend && ctx
4756 && uses_template_parms_level (ctx, processing_template_decl))
4757 /* A friend template that specifies a class context, i.e.
4758 template <typename T> friend void A<T>::f();
4759 is not primary. */
4760 is_primary = false;
4761 else if (TREE_CODE (decl) == TYPE_DECL
4762 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4763 is_primary = false;
4764 else
4765 is_primary = template_parm_scope_p ();
4767 if (is_primary)
4769 if (DECL_CLASS_SCOPE_P (decl))
4770 member_template_p = true;
4771 if (TREE_CODE (decl) == TYPE_DECL
4772 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4774 error ("template class without a name");
4775 return error_mark_node;
4777 else if (TREE_CODE (decl) == FUNCTION_DECL)
4779 if (member_template_p)
4781 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
4782 error ("member template %qD may not have virt-specifiers", decl);
4784 if (DECL_DESTRUCTOR_P (decl))
4786 /* [temp.mem]
4788 A destructor shall not be a member template. */
4789 error ("destructor %qD declared as member template", decl);
4790 return error_mark_node;
4792 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4793 && (!prototype_p (TREE_TYPE (decl))
4794 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4795 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4796 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4797 == void_list_node)))
4799 /* [basic.stc.dynamic.allocation]
4801 An allocation function can be a function
4802 template. ... Template allocation functions shall
4803 have two or more parameters. */
4804 error ("invalid template declaration of %qD", decl);
4805 return error_mark_node;
4808 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4809 && CLASS_TYPE_P (TREE_TYPE (decl)))
4810 /* OK */;
4811 else if (TREE_CODE (decl) == TYPE_DECL
4812 && TYPE_DECL_ALIAS_P (decl))
4813 /* alias-declaration */
4814 gcc_assert (!DECL_ARTIFICIAL (decl));
4815 else if (VAR_P (decl))
4816 /* C++14 variable template. */;
4817 else
4819 error ("template declaration of %q#D", decl);
4820 return error_mark_node;
4824 /* Check to see that the rules regarding the use of default
4825 arguments are not being violated. */
4826 check_default_tmpl_args (decl, current_template_parms,
4827 is_primary, is_partial, /*is_friend_decl=*/0);
4829 /* Ensure that there are no parameter packs in the type of this
4830 declaration that have not been expanded. */
4831 if (TREE_CODE (decl) == FUNCTION_DECL)
4833 /* Check each of the arguments individually to see if there are
4834 any bare parameter packs. */
4835 tree type = TREE_TYPE (decl);
4836 tree arg = DECL_ARGUMENTS (decl);
4837 tree argtype = TYPE_ARG_TYPES (type);
4839 while (arg && argtype)
4841 if (!DECL_PACK_P (arg)
4842 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4844 /* This is a PARM_DECL that contains unexpanded parameter
4845 packs. We have already complained about this in the
4846 check_for_bare_parameter_packs call, so just replace
4847 these types with ERROR_MARK_NODE. */
4848 TREE_TYPE (arg) = error_mark_node;
4849 TREE_VALUE (argtype) = error_mark_node;
4852 arg = DECL_CHAIN (arg);
4853 argtype = TREE_CHAIN (argtype);
4856 /* Check for bare parameter packs in the return type and the
4857 exception specifiers. */
4858 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4859 /* Errors were already issued, set return type to int
4860 as the frontend doesn't expect error_mark_node as
4861 the return type. */
4862 TREE_TYPE (type) = integer_type_node;
4863 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4864 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4866 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4867 && TYPE_DECL_ALIAS_P (decl))
4868 ? DECL_ORIGINAL_TYPE (decl)
4869 : TREE_TYPE (decl)))
4871 TREE_TYPE (decl) = error_mark_node;
4872 return error_mark_node;
4875 if (is_partial)
4876 return process_partial_specialization (decl);
4878 args = current_template_args ();
4880 if (!ctx
4881 || TREE_CODE (ctx) == FUNCTION_DECL
4882 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4883 || (TREE_CODE (decl) == TYPE_DECL
4884 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4885 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4887 if (DECL_LANG_SPECIFIC (decl)
4888 && DECL_TEMPLATE_INFO (decl)
4889 && DECL_TI_TEMPLATE (decl))
4890 tmpl = DECL_TI_TEMPLATE (decl);
4891 /* If DECL is a TYPE_DECL for a class-template, then there won't
4892 be DECL_LANG_SPECIFIC. The information equivalent to
4893 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4894 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4895 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4896 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4898 /* Since a template declaration already existed for this
4899 class-type, we must be redeclaring it here. Make sure
4900 that the redeclaration is valid. */
4901 redeclare_class_template (TREE_TYPE (decl),
4902 current_template_parms);
4903 /* We don't need to create a new TEMPLATE_DECL; just use the
4904 one we already had. */
4905 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4907 else
4909 tmpl = build_template_decl (decl, current_template_parms,
4910 member_template_p);
4911 new_template_p = 1;
4913 if (DECL_LANG_SPECIFIC (decl)
4914 && DECL_TEMPLATE_SPECIALIZATION (decl))
4916 /* A specialization of a member template of a template
4917 class. */
4918 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4919 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4920 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4924 else
4926 tree a, t, current, parms;
4927 int i;
4928 tree tinfo = get_template_info (decl);
4930 if (!tinfo)
4932 error ("template definition of non-template %q#D", decl);
4933 return error_mark_node;
4936 tmpl = TI_TEMPLATE (tinfo);
4938 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4939 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4940 && DECL_TEMPLATE_SPECIALIZATION (decl)
4941 && DECL_MEMBER_TEMPLATE_P (tmpl))
4943 tree new_tmpl;
4945 /* The declaration is a specialization of a member
4946 template, declared outside the class. Therefore, the
4947 innermost template arguments will be NULL, so we
4948 replace them with the arguments determined by the
4949 earlier call to check_explicit_specialization. */
4950 args = DECL_TI_ARGS (decl);
4952 new_tmpl
4953 = build_template_decl (decl, current_template_parms,
4954 member_template_p);
4955 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4956 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4957 DECL_TI_TEMPLATE (decl) = new_tmpl;
4958 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4959 DECL_TEMPLATE_INFO (new_tmpl)
4960 = build_template_info (tmpl, args);
4962 register_specialization (new_tmpl,
4963 most_general_template (tmpl),
4964 args,
4965 is_friend, 0);
4966 return decl;
4969 /* Make sure the template headers we got make sense. */
4971 parms = DECL_TEMPLATE_PARMS (tmpl);
4972 i = TMPL_PARMS_DEPTH (parms);
4973 if (TMPL_ARGS_DEPTH (args) != i)
4975 error ("expected %d levels of template parms for %q#D, got %d",
4976 i, decl, TMPL_ARGS_DEPTH (args));
4977 DECL_INTERFACE_KNOWN (decl) = 1;
4978 return error_mark_node;
4980 else
4981 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4983 a = TMPL_ARGS_LEVEL (args, i);
4984 t = INNERMOST_TEMPLATE_PARMS (parms);
4986 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
4988 if (current == decl)
4989 error ("got %d template parameters for %q#D",
4990 TREE_VEC_LENGTH (a), decl);
4991 else
4992 error ("got %d template parameters for %q#T",
4993 TREE_VEC_LENGTH (a), current);
4994 error (" but %d required", TREE_VEC_LENGTH (t));
4995 /* Avoid crash in import_export_decl. */
4996 DECL_INTERFACE_KNOWN (decl) = 1;
4997 return error_mark_node;
5000 if (current == decl)
5001 current = ctx;
5002 else if (current == NULL_TREE)
5003 /* Can happen in erroneous input. */
5004 break;
5005 else
5006 current = get_containing_scope (current);
5009 /* Check that the parms are used in the appropriate qualifying scopes
5010 in the declarator. */
5011 if (!comp_template_args
5012 (TI_ARGS (tinfo),
5013 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5015 error ("\
5016 template arguments to %qD do not match original template %qD",
5017 decl, DECL_TEMPLATE_RESULT (tmpl));
5018 if (!uses_template_parms (TI_ARGS (tinfo)))
5019 inform (input_location, "use template<> for an explicit specialization");
5020 /* Avoid crash in import_export_decl. */
5021 DECL_INTERFACE_KNOWN (decl) = 1;
5022 return error_mark_node;
5026 DECL_TEMPLATE_RESULT (tmpl) = decl;
5027 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5029 /* Push template declarations for global functions and types. Note
5030 that we do not try to push a global template friend declared in a
5031 template class; such a thing may well depend on the template
5032 parameters of the class. */
5033 if (new_template_p && !ctx
5034 && !(is_friend && template_class_depth (current_class_type) > 0))
5036 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5037 if (tmpl == error_mark_node)
5038 return error_mark_node;
5040 /* Hide template friend classes that haven't been declared yet. */
5041 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5043 DECL_ANTICIPATED (tmpl) = 1;
5044 DECL_FRIEND_P (tmpl) = 1;
5048 if (is_primary)
5050 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5051 int i;
5053 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5054 if (DECL_CONV_FN_P (tmpl))
5056 int depth = TMPL_PARMS_DEPTH (parms);
5058 /* It is a conversion operator. See if the type converted to
5059 depends on innermost template operands. */
5061 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5062 depth))
5063 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5066 /* Give template template parms a DECL_CONTEXT of the template
5067 for which they are a parameter. */
5068 parms = INNERMOST_TEMPLATE_PARMS (parms);
5069 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5071 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5072 if (TREE_CODE (parm) == TEMPLATE_DECL)
5073 DECL_CONTEXT (parm) = tmpl;
5077 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5078 back to its most general template. If TMPL is a specialization,
5079 ARGS may only have the innermost set of arguments. Add the missing
5080 argument levels if necessary. */
5081 if (DECL_TEMPLATE_INFO (tmpl))
5082 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5084 info = build_template_info (tmpl, args);
5086 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5087 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5088 else
5090 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5091 retrofit_lang_decl (decl);
5092 if (DECL_LANG_SPECIFIC (decl))
5093 DECL_TEMPLATE_INFO (decl) = info;
5096 if (flag_implicit_templates
5097 && !is_friend
5098 && TREE_PUBLIC (decl)
5099 && VAR_OR_FUNCTION_DECL_P (decl))
5100 /* Set DECL_COMDAT on template instantiations; if we force
5101 them to be emitted by explicit instantiation or -frepo,
5102 mark_needed will tell cgraph to do the right thing. */
5103 DECL_COMDAT (decl) = true;
5105 return DECL_TEMPLATE_RESULT (tmpl);
5108 tree
5109 push_template_decl (tree decl)
5111 return push_template_decl_real (decl, false);
5114 /* FN is an inheriting constructor that inherits from the constructor
5115 template INHERITED; turn FN into a constructor template with a matching
5116 template header. */
5118 tree
5119 add_inherited_template_parms (tree fn, tree inherited)
5121 tree inner_parms
5122 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5123 inner_parms = copy_node (inner_parms);
5124 tree parms
5125 = tree_cons (size_int (processing_template_decl + 1),
5126 inner_parms, current_template_parms);
5127 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5128 tree args = template_parms_to_args (parms);
5129 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5130 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5131 DECL_TEMPLATE_RESULT (tmpl) = fn;
5132 DECL_ARTIFICIAL (tmpl) = true;
5133 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5134 return tmpl;
5137 /* Called when a class template TYPE is redeclared with the indicated
5138 template PARMS, e.g.:
5140 template <class T> struct S;
5141 template <class T> struct S {}; */
5143 bool
5144 redeclare_class_template (tree type, tree parms)
5146 tree tmpl;
5147 tree tmpl_parms;
5148 int i;
5150 if (!TYPE_TEMPLATE_INFO (type))
5152 error ("%qT is not a template type", type);
5153 return false;
5156 tmpl = TYPE_TI_TEMPLATE (type);
5157 if (!PRIMARY_TEMPLATE_P (tmpl))
5158 /* The type is nested in some template class. Nothing to worry
5159 about here; there are no new template parameters for the nested
5160 type. */
5161 return true;
5163 if (!parms)
5165 error ("template specifiers not specified in declaration of %qD",
5166 tmpl);
5167 return false;
5170 parms = INNERMOST_TEMPLATE_PARMS (parms);
5171 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5173 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5175 error_n (input_location, TREE_VEC_LENGTH (parms),
5176 "redeclared with %d template parameter",
5177 "redeclared with %d template parameters",
5178 TREE_VEC_LENGTH (parms));
5179 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
5180 "previous declaration %q+D used %d template parameter",
5181 "previous declaration %q+D used %d template parameters",
5182 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5183 return false;
5186 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5188 tree tmpl_parm;
5189 tree parm;
5190 tree tmpl_default;
5191 tree parm_default;
5193 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5194 || TREE_VEC_ELT (parms, i) == error_mark_node)
5195 continue;
5197 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5198 if (error_operand_p (tmpl_parm))
5199 return false;
5201 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5202 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5203 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5205 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5206 TEMPLATE_DECL. */
5207 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5208 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5209 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5210 || (TREE_CODE (tmpl_parm) != PARM_DECL
5211 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5212 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5213 || (TREE_CODE (tmpl_parm) == PARM_DECL
5214 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5215 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5217 error ("template parameter %q+#D", tmpl_parm);
5218 error ("redeclared here as %q#D", parm);
5219 return false;
5222 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5224 /* We have in [temp.param]:
5226 A template-parameter may not be given default arguments
5227 by two different declarations in the same scope. */
5228 error_at (input_location, "redefinition of default argument for %q#D", parm);
5229 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5230 "original definition appeared here");
5231 return false;
5234 if (parm_default != NULL_TREE)
5235 /* Update the previous template parameters (which are the ones
5236 that will really count) with the new default value. */
5237 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5238 else if (tmpl_default != NULL_TREE)
5239 /* Update the new parameters, too; they'll be used as the
5240 parameters for any members. */
5241 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5244 return true;
5247 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5248 to be used when the caller has already checked
5249 (processing_template_decl
5250 && !instantiation_dependent_expression_p (expr)
5251 && potential_constant_expression (expr))
5252 and cleared processing_template_decl. */
5254 tree
5255 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5257 return tsubst_copy_and_build (expr,
5258 /*args=*/NULL_TREE,
5259 complain,
5260 /*in_decl=*/NULL_TREE,
5261 /*function_p=*/false,
5262 /*integral_constant_expression_p=*/true);
5265 /* Simplify EXPR if it is a non-dependent expression. Returns the
5266 (possibly simplified) expression. */
5268 tree
5269 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5271 if (expr == NULL_TREE)
5272 return NULL_TREE;
5274 /* If we're in a template, but EXPR isn't value dependent, simplify
5275 it. We're supposed to treat:
5277 template <typename T> void f(T[1 + 1]);
5278 template <typename T> void f(T[2]);
5280 as two declarations of the same function, for example. */
5281 if (processing_template_decl
5282 && !instantiation_dependent_expression_p (expr)
5283 && potential_constant_expression (expr))
5285 processing_template_decl_sentinel s;
5286 expr = instantiate_non_dependent_expr_internal (expr, complain);
5288 return expr;
5291 tree
5292 instantiate_non_dependent_expr (tree expr)
5294 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5297 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5298 template declaration, or a TYPE_DECL for an alias declaration. */
5300 bool
5301 alias_type_or_template_p (tree t)
5303 if (t == NULL_TREE)
5304 return false;
5305 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5306 || (TYPE_P (t)
5307 && TYPE_NAME (t)
5308 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5309 || DECL_ALIAS_TEMPLATE_P (t));
5312 /* Return TRUE iff T is a specialization of an alias template. */
5314 bool
5315 alias_template_specialization_p (const_tree t)
5317 if (t == NULL_TREE)
5318 return false;
5320 return (TYPE_P (t)
5321 && TYPE_TEMPLATE_INFO (t)
5322 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
5323 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5326 /* Return TRUE iff T is a specialization of an alias template with
5327 dependent template-arguments. */
5329 bool
5330 dependent_alias_template_spec_p (const_tree t)
5332 return (alias_template_specialization_p (t)
5333 && any_dependent_template_arguments_p (TYPE_TI_ARGS (t)));
5336 /* Return the number of innermost template parameters in TMPL. */
5338 static int
5339 num_innermost_template_parms (tree tmpl)
5341 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5342 return TREE_VEC_LENGTH (parms);
5345 /* Return either TMPL or another template that it is equivalent to under DR
5346 1286: An alias that just changes the name of a template is equivalent to
5347 the other template. */
5349 static tree
5350 get_underlying_template (tree tmpl)
5352 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5353 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5355 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5356 if (TYPE_TEMPLATE_INFO (result))
5358 tree sub = TYPE_TI_TEMPLATE (result);
5359 if (PRIMARY_TEMPLATE_P (sub)
5360 && (num_innermost_template_parms (tmpl)
5361 == num_innermost_template_parms (sub)))
5363 tree alias_args = INNERMOST_TEMPLATE_ARGS
5364 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5365 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5366 break;
5367 /* The alias type is equivalent to the pattern of the
5368 underlying template, so strip the alias. */
5369 tmpl = sub;
5370 continue;
5373 break;
5375 return tmpl;
5378 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5379 must be a function or a pointer-to-function type, as specified
5380 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5381 and check that the resulting function has external linkage. */
5383 static tree
5384 convert_nontype_argument_function (tree type, tree expr,
5385 tsubst_flags_t complain)
5387 tree fns = expr;
5388 tree fn, fn_no_ptr;
5389 linkage_kind linkage;
5391 fn = instantiate_type (type, fns, tf_none);
5392 if (fn == error_mark_node)
5393 return error_mark_node;
5395 fn_no_ptr = fn;
5396 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5397 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5398 if (BASELINK_P (fn_no_ptr))
5399 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5401 /* [temp.arg.nontype]/1
5403 A template-argument for a non-type, non-template template-parameter
5404 shall be one of:
5405 [...]
5406 -- the address of an object or function with external [C++11: or
5407 internal] linkage. */
5409 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5411 if (complain & tf_error)
5413 error ("%qE is not a valid template argument for type %qT",
5414 expr, type);
5415 if (TYPE_PTR_P (type))
5416 error ("it must be the address of a function with "
5417 "external linkage");
5418 else
5419 error ("it must be the name of a function with "
5420 "external linkage");
5422 return NULL_TREE;
5425 linkage = decl_linkage (fn_no_ptr);
5426 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5428 if (complain & tf_error)
5430 if (cxx_dialect >= cxx11)
5431 error ("%qE is not a valid template argument for type %qT "
5432 "because %qD has no linkage",
5433 expr, type, fn_no_ptr);
5434 else
5435 error ("%qE is not a valid template argument for type %qT "
5436 "because %qD does not have external linkage",
5437 expr, type, fn_no_ptr);
5439 return NULL_TREE;
5442 return fn;
5445 /* Subroutine of convert_nontype_argument.
5446 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5447 Emit an error otherwise. */
5449 static bool
5450 check_valid_ptrmem_cst_expr (tree type, tree expr,
5451 tsubst_flags_t complain)
5453 STRIP_NOPS (expr);
5454 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5455 return true;
5456 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5457 return true;
5458 if (processing_template_decl
5459 && TREE_CODE (expr) == ADDR_EXPR
5460 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5461 return true;
5462 if (complain & tf_error)
5464 error ("%qE is not a valid template argument for type %qT",
5465 expr, type);
5466 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5468 return false;
5471 /* Returns TRUE iff the address of OP is value-dependent.
5473 14.6.2.4 [temp.dep.temp]:
5474 A non-integral non-type template-argument is dependent if its type is
5475 dependent or it has either of the following forms
5476 qualified-id
5477 & qualified-id
5478 and contains a nested-name-specifier which specifies a class-name that
5479 names a dependent type.
5481 We generalize this to just say that the address of a member of a
5482 dependent class is value-dependent; the above doesn't cover the
5483 address of a static data member named with an unqualified-id. */
5485 static bool
5486 has_value_dependent_address (tree op)
5488 /* We could use get_inner_reference here, but there's no need;
5489 this is only relevant for template non-type arguments, which
5490 can only be expressed as &id-expression. */
5491 if (DECL_P (op))
5493 tree ctx = CP_DECL_CONTEXT (op);
5494 if (TYPE_P (ctx) && dependent_type_p (ctx))
5495 return true;
5498 return false;
5501 /* The next set of functions are used for providing helpful explanatory
5502 diagnostics for failed overload resolution. Their messages should be
5503 indented by two spaces for consistency with the messages in
5504 call.c */
5506 static int
5507 unify_success (bool /*explain_p*/)
5509 return 0;
5512 static int
5513 unify_parameter_deduction_failure (bool explain_p, tree parm)
5515 if (explain_p)
5516 inform (input_location,
5517 " couldn't deduce template parameter %qD", parm);
5518 return 1;
5521 static int
5522 unify_invalid (bool /*explain_p*/)
5524 return 1;
5527 static int
5528 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5530 if (explain_p)
5531 inform (input_location,
5532 " types %qT and %qT have incompatible cv-qualifiers",
5533 parm, arg);
5534 return 1;
5537 static int
5538 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5540 if (explain_p)
5541 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5542 return 1;
5545 static int
5546 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5548 if (explain_p)
5549 inform (input_location,
5550 " template parameter %qD is not a parameter pack, but "
5551 "argument %qD is",
5552 parm, arg);
5553 return 1;
5556 static int
5557 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5559 if (explain_p)
5560 inform (input_location,
5561 " template argument %qE does not match "
5562 "pointer-to-member constant %qE",
5563 arg, parm);
5564 return 1;
5567 static int
5568 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5570 if (explain_p)
5571 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5572 return 1;
5575 static int
5576 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5578 if (explain_p)
5579 inform (input_location,
5580 " inconsistent parameter pack deduction with %qT and %qT",
5581 old_arg, new_arg);
5582 return 1;
5585 static int
5586 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5588 if (explain_p)
5590 if (TYPE_P (parm))
5591 inform (input_location,
5592 " deduced conflicting types for parameter %qT (%qT and %qT)",
5593 parm, first, second);
5594 else
5595 inform (input_location,
5596 " deduced conflicting values for non-type parameter "
5597 "%qE (%qE and %qE)", parm, first, second);
5599 return 1;
5602 static int
5603 unify_vla_arg (bool explain_p, tree arg)
5605 if (explain_p)
5606 inform (input_location,
5607 " variable-sized array type %qT is not "
5608 "a valid template argument",
5609 arg);
5610 return 1;
5613 static int
5614 unify_method_type_error (bool explain_p, tree arg)
5616 if (explain_p)
5617 inform (input_location,
5618 " member function type %qT is not a valid template argument",
5619 arg);
5620 return 1;
5623 static int
5624 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
5626 if (explain_p)
5628 if (least_p)
5629 inform_n (input_location, wanted,
5630 " candidate expects at least %d argument, %d provided",
5631 " candidate expects at least %d arguments, %d provided",
5632 wanted, have);
5633 else
5634 inform_n (input_location, wanted,
5635 " candidate expects %d argument, %d provided",
5636 " candidate expects %d arguments, %d provided",
5637 wanted, have);
5639 return 1;
5642 static int
5643 unify_too_many_arguments (bool explain_p, int have, int wanted)
5645 return unify_arity (explain_p, have, wanted);
5648 static int
5649 unify_too_few_arguments (bool explain_p, int have, int wanted,
5650 bool least_p = false)
5652 return unify_arity (explain_p, have, wanted, least_p);
5655 static int
5656 unify_arg_conversion (bool explain_p, tree to_type,
5657 tree from_type, tree arg)
5659 if (explain_p)
5660 inform (EXPR_LOC_OR_LOC (arg, input_location),
5661 " cannot convert %qE (type %qT) to type %qT",
5662 arg, from_type, to_type);
5663 return 1;
5666 static int
5667 unify_no_common_base (bool explain_p, enum template_base_result r,
5668 tree parm, tree arg)
5670 if (explain_p)
5671 switch (r)
5673 case tbr_ambiguous_baseclass:
5674 inform (input_location, " %qT is an ambiguous base class of %qT",
5675 parm, arg);
5676 break;
5677 default:
5678 inform (input_location, " %qT is not derived from %qT", arg, parm);
5679 break;
5681 return 1;
5684 static int
5685 unify_inconsistent_template_template_parameters (bool explain_p)
5687 if (explain_p)
5688 inform (input_location,
5689 " template parameters of a template template argument are "
5690 "inconsistent with other deduced template arguments");
5691 return 1;
5694 static int
5695 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5697 if (explain_p)
5698 inform (input_location,
5699 " can't deduce a template for %qT from non-template type %qT",
5700 parm, arg);
5701 return 1;
5704 static int
5705 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5707 if (explain_p)
5708 inform (input_location,
5709 " template argument %qE does not match %qD", arg, parm);
5710 return 1;
5713 static int
5714 unify_overload_resolution_failure (bool explain_p, tree arg)
5716 if (explain_p)
5717 inform (input_location,
5718 " could not resolve address from overloaded function %qE",
5719 arg);
5720 return 1;
5723 /* Attempt to convert the non-type template parameter EXPR to the
5724 indicated TYPE. If the conversion is successful, return the
5725 converted value. If the conversion is unsuccessful, return
5726 NULL_TREE if we issued an error message, or error_mark_node if we
5727 did not. We issue error messages for out-and-out bad template
5728 parameters, but not simply because the conversion failed, since we
5729 might be just trying to do argument deduction. Both TYPE and EXPR
5730 must be non-dependent.
5732 The conversion follows the special rules described in
5733 [temp.arg.nontype], and it is much more strict than an implicit
5734 conversion.
5736 This function is called twice for each template argument (see
5737 lookup_template_class for a more accurate description of this
5738 problem). This means that we need to handle expressions which
5739 are not valid in a C++ source, but can be created from the
5740 first call (for instance, casts to perform conversions). These
5741 hacks can go away after we fix the double coercion problem. */
5743 static tree
5744 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5746 tree expr_type;
5748 /* Detect immediately string literals as invalid non-type argument.
5749 This special-case is not needed for correctness (we would easily
5750 catch this later), but only to provide better diagnostic for this
5751 common user mistake. As suggested by DR 100, we do not mention
5752 linkage issues in the diagnostic as this is not the point. */
5753 /* FIXME we're making this OK. */
5754 if (TREE_CODE (expr) == STRING_CST)
5756 if (complain & tf_error)
5757 error ("%qE is not a valid template argument for type %qT "
5758 "because string literals can never be used in this context",
5759 expr, type);
5760 return NULL_TREE;
5763 /* Add the ADDR_EXPR now for the benefit of
5764 value_dependent_expression_p. */
5765 if (TYPE_PTROBV_P (type)
5766 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5768 expr = decay_conversion (expr, complain);
5769 if (expr == error_mark_node)
5770 return error_mark_node;
5773 /* If we are in a template, EXPR may be non-dependent, but still
5774 have a syntactic, rather than semantic, form. For example, EXPR
5775 might be a SCOPE_REF, rather than the VAR_DECL to which the
5776 SCOPE_REF refers. Preserving the qualifying scope is necessary
5777 so that access checking can be performed when the template is
5778 instantiated -- but here we need the resolved form so that we can
5779 convert the argument. */
5780 bool non_dep = false;
5781 if (TYPE_REF_OBJ_P (type)
5782 && has_value_dependent_address (expr))
5783 /* If we want the address and it's value-dependent, don't fold. */;
5784 else if (!type_unknown_p (expr)
5785 && processing_template_decl
5786 && !instantiation_dependent_expression_p (expr)
5787 && potential_constant_expression (expr))
5788 non_dep = true;
5789 if (error_operand_p (expr))
5790 return error_mark_node;
5791 expr_type = TREE_TYPE (expr);
5792 if (TREE_CODE (type) == REFERENCE_TYPE)
5793 expr = mark_lvalue_use (expr);
5794 else
5795 expr = mark_rvalue_use (expr);
5797 /* If the argument is non-dependent, perform any conversions in
5798 non-dependent context as well. */
5799 processing_template_decl_sentinel s (non_dep);
5800 if (non_dep)
5801 expr = instantiate_non_dependent_expr_internal (expr, complain);
5803 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5804 to a non-type argument of "nullptr". */
5805 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5806 expr = convert (type, expr);
5808 /* In C++11, integral or enumeration non-type template arguments can be
5809 arbitrary constant expressions. Pointer and pointer to
5810 member arguments can be general constant expressions that evaluate
5811 to a null value, but otherwise still need to be of a specific form. */
5812 if (cxx_dialect >= cxx11)
5814 if (TREE_CODE (expr) == PTRMEM_CST)
5815 /* A PTRMEM_CST is already constant, and a valid template
5816 argument for a parameter of pointer to member type, we just want
5817 to leave it in that form rather than lower it to a
5818 CONSTRUCTOR. */;
5819 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5820 expr = maybe_constant_value (expr);
5821 else if (TYPE_PTR_OR_PTRMEM_P (type))
5823 tree folded = maybe_constant_value (expr);
5824 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5825 : null_member_pointer_value_p (folded))
5826 expr = folded;
5830 /* HACK: Due to double coercion, we can get a
5831 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5832 which is the tree that we built on the first call (see
5833 below when coercing to reference to object or to reference to
5834 function). We just strip everything and get to the arg.
5835 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5836 for examples. */
5837 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5839 tree probe_type, probe = expr;
5840 if (REFERENCE_REF_P (probe))
5841 probe = TREE_OPERAND (probe, 0);
5842 probe_type = TREE_TYPE (probe);
5843 if (TREE_CODE (probe) == NOP_EXPR)
5845 /* ??? Maybe we could use convert_from_reference here, but we
5846 would need to relax its constraints because the NOP_EXPR
5847 could actually change the type to something more cv-qualified,
5848 and this is not folded by convert_from_reference. */
5849 tree addr = TREE_OPERAND (probe, 0);
5850 if (TREE_CODE (probe_type) == REFERENCE_TYPE
5851 && TREE_CODE (addr) == ADDR_EXPR
5852 && TYPE_PTR_P (TREE_TYPE (addr))
5853 && (same_type_ignoring_top_level_qualifiers_p
5854 (TREE_TYPE (probe_type),
5855 TREE_TYPE (TREE_TYPE (addr)))))
5857 expr = TREE_OPERAND (addr, 0);
5858 expr_type = TREE_TYPE (probe_type);
5863 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5864 parameter is a pointer to object, through decay and
5865 qualification conversion. Let's strip everything. */
5866 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5868 tree probe = expr;
5869 STRIP_NOPS (probe);
5870 if (TREE_CODE (probe) == ADDR_EXPR
5871 && TYPE_PTR_P (TREE_TYPE (probe)))
5873 /* Skip the ADDR_EXPR only if it is part of the decay for
5874 an array. Otherwise, it is part of the original argument
5875 in the source code. */
5876 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
5877 probe = TREE_OPERAND (probe, 0);
5878 expr = probe;
5879 expr_type = TREE_TYPE (expr);
5883 /* [temp.arg.nontype]/5, bullet 1
5885 For a non-type template-parameter of integral or enumeration type,
5886 integral promotions (_conv.prom_) and integral conversions
5887 (_conv.integral_) are applied. */
5888 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5890 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5891 t = maybe_constant_value (t);
5892 if (t != error_mark_node)
5893 expr = t;
5895 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5896 return error_mark_node;
5898 /* Notice that there are constant expressions like '4 % 0' which
5899 do not fold into integer constants. */
5900 if (TREE_CODE (expr) != INTEGER_CST)
5902 if (complain & tf_error)
5904 int errs = errorcount, warns = warningcount + werrorcount;
5905 if (processing_template_decl
5906 && !require_potential_constant_expression (expr))
5907 return NULL_TREE;
5908 expr = cxx_constant_value (expr);
5909 if (errorcount > errs || warningcount + werrorcount > warns)
5910 inform (EXPR_LOC_OR_LOC (expr, input_location),
5911 "in template argument for type %qT ", type);
5912 if (expr == error_mark_node)
5913 return NULL_TREE;
5914 /* else cxx_constant_value complained but gave us
5915 a real constant, so go ahead. */
5916 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5918 else
5919 return NULL_TREE;
5922 /* Avoid typedef problems. */
5923 if (TREE_TYPE (expr) != type)
5924 expr = fold_convert (type, expr);
5926 /* [temp.arg.nontype]/5, bullet 2
5928 For a non-type template-parameter of type pointer to object,
5929 qualification conversions (_conv.qual_) and the array-to-pointer
5930 conversion (_conv.array_) are applied. */
5931 else if (TYPE_PTROBV_P (type))
5933 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5935 A template-argument for a non-type, non-template template-parameter
5936 shall be one of: [...]
5938 -- the name of a non-type template-parameter;
5939 -- the address of an object or function with external linkage, [...]
5940 expressed as "& id-expression" where the & is optional if the name
5941 refers to a function or array, or if the corresponding
5942 template-parameter is a reference.
5944 Here, we do not care about functions, as they are invalid anyway
5945 for a parameter of type pointer-to-object. */
5947 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5948 /* Non-type template parameters are OK. */
5950 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
5951 /* Null pointer values are OK in C++11. */;
5952 else if (TREE_CODE (expr) != ADDR_EXPR
5953 && TREE_CODE (expr_type) != ARRAY_TYPE)
5955 if (VAR_P (expr))
5957 if (complain & tf_error)
5958 error ("%qD is not a valid template argument "
5959 "because %qD is a variable, not the address of "
5960 "a variable", expr, expr);
5961 return NULL_TREE;
5963 if (POINTER_TYPE_P (expr_type))
5965 if (complain & tf_error)
5966 error ("%qE is not a valid template argument for %qT "
5967 "because it is not the address of a variable",
5968 expr, type);
5969 return NULL_TREE;
5971 /* Other values, like integer constants, might be valid
5972 non-type arguments of some other type. */
5973 return error_mark_node;
5975 else
5977 tree decl;
5979 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5980 ? TREE_OPERAND (expr, 0) : expr);
5981 if (!VAR_P (decl))
5983 if (complain & tf_error)
5984 error ("%qE is not a valid template argument of type %qT "
5985 "because %qE is not a variable", expr, type, decl);
5986 return NULL_TREE;
5988 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
5990 if (complain & tf_error)
5991 error ("%qE is not a valid template argument of type %qT "
5992 "because %qD does not have external linkage",
5993 expr, type, decl);
5994 return NULL_TREE;
5996 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
5998 if (complain & tf_error)
5999 error ("%qE is not a valid template argument of type %qT "
6000 "because %qD has no linkage", expr, type, decl);
6001 return NULL_TREE;
6005 expr = decay_conversion (expr, complain);
6006 if (expr == error_mark_node)
6007 return error_mark_node;
6009 expr = perform_qualification_conversions (type, expr);
6010 if (expr == error_mark_node)
6011 return error_mark_node;
6013 /* [temp.arg.nontype]/5, bullet 3
6015 For a non-type template-parameter of type reference to object, no
6016 conversions apply. The type referred to by the reference may be more
6017 cv-qualified than the (otherwise identical) type of the
6018 template-argument. The template-parameter is bound directly to the
6019 template-argument, which must be an lvalue. */
6020 else if (TYPE_REF_OBJ_P (type))
6022 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6023 expr_type))
6024 return error_mark_node;
6026 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6028 if (complain & tf_error)
6029 error ("%qE is not a valid template argument for type %qT "
6030 "because of conflicts in cv-qualification", expr, type);
6031 return NULL_TREE;
6034 if (!real_lvalue_p (expr))
6036 if (complain & tf_error)
6037 error ("%qE is not a valid template argument for type %qT "
6038 "because it is not an lvalue", expr, type);
6039 return NULL_TREE;
6042 /* [temp.arg.nontype]/1
6044 A template-argument for a non-type, non-template template-parameter
6045 shall be one of: [...]
6047 -- the address of an object or function with external linkage. */
6048 if (INDIRECT_REF_P (expr)
6049 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6051 expr = TREE_OPERAND (expr, 0);
6052 if (DECL_P (expr))
6054 if (complain & tf_error)
6055 error ("%q#D is not a valid template argument for type %qT "
6056 "because a reference variable does not have a constant "
6057 "address", expr, type);
6058 return NULL_TREE;
6062 if (!DECL_P (expr))
6064 if (complain & tf_error)
6065 error ("%qE is not a valid template argument for type %qT "
6066 "because it is not an object with external linkage",
6067 expr, type);
6068 return NULL_TREE;
6071 if (!DECL_EXTERNAL_LINKAGE_P (expr))
6073 if (complain & tf_error)
6074 error ("%qE is not a valid template argument for type %qT "
6075 "because object %qD has not external linkage",
6076 expr, type, expr);
6077 return NULL_TREE;
6080 expr = build_nop (type, build_address (expr));
6082 /* [temp.arg.nontype]/5, bullet 4
6084 For a non-type template-parameter of type pointer to function, only
6085 the function-to-pointer conversion (_conv.func_) is applied. If the
6086 template-argument represents a set of overloaded functions (or a
6087 pointer to such), the matching function is selected from the set
6088 (_over.over_). */
6089 else if (TYPE_PTRFN_P (type))
6091 /* If the argument is a template-id, we might not have enough
6092 context information to decay the pointer. */
6093 if (!type_unknown_p (expr_type))
6095 expr = decay_conversion (expr, complain);
6096 if (expr == error_mark_node)
6097 return error_mark_node;
6100 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6101 /* Null pointer values are OK in C++11. */
6102 return perform_qualification_conversions (type, expr);
6104 expr = convert_nontype_argument_function (type, expr, complain);
6105 if (!expr || expr == error_mark_node)
6106 return expr;
6108 /* [temp.arg.nontype]/5, bullet 5
6110 For a non-type template-parameter of type reference to function, no
6111 conversions apply. If the template-argument represents a set of
6112 overloaded functions, the matching function is selected from the set
6113 (_over.over_). */
6114 else if (TYPE_REFFN_P (type))
6116 if (TREE_CODE (expr) == ADDR_EXPR)
6118 if (complain & tf_error)
6120 error ("%qE is not a valid template argument for type %qT "
6121 "because it is a pointer", expr, type);
6122 inform (input_location, "try using %qE instead",
6123 TREE_OPERAND (expr, 0));
6125 return NULL_TREE;
6128 expr = convert_nontype_argument_function (type, expr, complain);
6129 if (!expr || expr == error_mark_node)
6130 return expr;
6132 expr = build_nop (type, build_address (expr));
6134 /* [temp.arg.nontype]/5, bullet 6
6136 For a non-type template-parameter of type pointer to member function,
6137 no conversions apply. If the template-argument represents a set of
6138 overloaded member functions, the matching member function is selected
6139 from the set (_over.over_). */
6140 else if (TYPE_PTRMEMFUNC_P (type))
6142 expr = instantiate_type (type, expr, tf_none);
6143 if (expr == error_mark_node)
6144 return error_mark_node;
6146 /* [temp.arg.nontype] bullet 1 says the pointer to member
6147 expression must be a pointer-to-member constant. */
6148 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6149 return error_mark_node;
6151 /* There is no way to disable standard conversions in
6152 resolve_address_of_overloaded_function (called by
6153 instantiate_type). It is possible that the call succeeded by
6154 converting &B::I to &D::I (where B is a base of D), so we need
6155 to reject this conversion here.
6157 Actually, even if there was a way to disable standard conversions,
6158 it would still be better to reject them here so that we can
6159 provide a superior diagnostic. */
6160 if (!same_type_p (TREE_TYPE (expr), type))
6162 if (complain & tf_error)
6164 error ("%qE is not a valid template argument for type %qT "
6165 "because it is of type %qT", expr, type,
6166 TREE_TYPE (expr));
6167 /* If we are just one standard conversion off, explain. */
6168 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6169 inform (input_location,
6170 "standard conversions are not allowed in this context");
6172 return NULL_TREE;
6175 /* [temp.arg.nontype]/5, bullet 7
6177 For a non-type template-parameter of type pointer to data member,
6178 qualification conversions (_conv.qual_) are applied. */
6179 else if (TYPE_PTRDATAMEM_P (type))
6181 /* [temp.arg.nontype] bullet 1 says the pointer to member
6182 expression must be a pointer-to-member constant. */
6183 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6184 return error_mark_node;
6186 expr = perform_qualification_conversions (type, expr);
6187 if (expr == error_mark_node)
6188 return expr;
6190 else if (NULLPTR_TYPE_P (type))
6192 if (expr != nullptr_node)
6194 if (complain & tf_error)
6195 error ("%qE is not a valid template argument for type %qT "
6196 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6197 return NULL_TREE;
6199 return expr;
6201 /* A template non-type parameter must be one of the above. */
6202 else
6203 gcc_unreachable ();
6205 /* Sanity check: did we actually convert the argument to the
6206 right type? */
6207 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6208 (type, TREE_TYPE (expr)));
6209 return convert_from_reference (expr);
6212 /* Subroutine of coerce_template_template_parms, which returns 1 if
6213 PARM_PARM and ARG_PARM match using the rule for the template
6214 parameters of template template parameters. Both PARM and ARG are
6215 template parameters; the rest of the arguments are the same as for
6216 coerce_template_template_parms.
6218 static int
6219 coerce_template_template_parm (tree parm,
6220 tree arg,
6221 tsubst_flags_t complain,
6222 tree in_decl,
6223 tree outer_args)
6225 if (arg == NULL_TREE || error_operand_p (arg)
6226 || parm == NULL_TREE || error_operand_p (parm))
6227 return 0;
6229 if (TREE_CODE (arg) != TREE_CODE (parm))
6230 return 0;
6232 switch (TREE_CODE (parm))
6234 case TEMPLATE_DECL:
6235 /* We encounter instantiations of templates like
6236 template <template <template <class> class> class TT>
6237 class C; */
6239 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6240 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6242 if (!coerce_template_template_parms
6243 (parmparm, argparm, complain, in_decl, outer_args))
6244 return 0;
6246 /* Fall through. */
6248 case TYPE_DECL:
6249 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6250 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6251 /* Argument is a parameter pack but parameter is not. */
6252 return 0;
6253 break;
6255 case PARM_DECL:
6256 /* The tsubst call is used to handle cases such as
6258 template <int> class C {};
6259 template <class T, template <T> class TT> class D {};
6260 D<int, C> d;
6262 i.e. the parameter list of TT depends on earlier parameters. */
6263 if (!uses_template_parms (TREE_TYPE (arg))
6264 && !same_type_p
6265 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
6266 TREE_TYPE (arg)))
6267 return 0;
6269 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6270 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6271 /* Argument is a parameter pack but parameter is not. */
6272 return 0;
6274 break;
6276 default:
6277 gcc_unreachable ();
6280 return 1;
6284 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6285 template template parameters. Both PARM_PARMS and ARG_PARMS are
6286 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6287 or PARM_DECL.
6289 Consider the example:
6290 template <class T> class A;
6291 template<template <class U> class TT> class B;
6293 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6294 the parameters to A, and OUTER_ARGS contains A. */
6296 static int
6297 coerce_template_template_parms (tree parm_parms,
6298 tree arg_parms,
6299 tsubst_flags_t complain,
6300 tree in_decl,
6301 tree outer_args)
6303 int nparms, nargs, i;
6304 tree parm, arg;
6305 int variadic_p = 0;
6307 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6308 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6310 nparms = TREE_VEC_LENGTH (parm_parms);
6311 nargs = TREE_VEC_LENGTH (arg_parms);
6313 /* Determine whether we have a parameter pack at the end of the
6314 template template parameter's template parameter list. */
6315 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6317 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6319 if (error_operand_p (parm))
6320 return 0;
6322 switch (TREE_CODE (parm))
6324 case TEMPLATE_DECL:
6325 case TYPE_DECL:
6326 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6327 variadic_p = 1;
6328 break;
6330 case PARM_DECL:
6331 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6332 variadic_p = 1;
6333 break;
6335 default:
6336 gcc_unreachable ();
6340 if (nargs != nparms
6341 && !(variadic_p && nargs >= nparms - 1))
6342 return 0;
6344 /* Check all of the template parameters except the parameter pack at
6345 the end (if any). */
6346 for (i = 0; i < nparms - variadic_p; ++i)
6348 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6349 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6350 continue;
6352 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6353 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6355 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6356 outer_args))
6357 return 0;
6361 if (variadic_p)
6363 /* Check each of the template parameters in the template
6364 argument against the template parameter pack at the end of
6365 the template template parameter. */
6366 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6367 return 0;
6369 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6371 for (; i < nargs; ++i)
6373 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6374 continue;
6376 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6378 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6379 outer_args))
6380 return 0;
6384 return 1;
6387 /* Verifies that the deduced template arguments (in TARGS) for the
6388 template template parameters (in TPARMS) represent valid bindings,
6389 by comparing the template parameter list of each template argument
6390 to the template parameter list of its corresponding template
6391 template parameter, in accordance with DR150. This
6392 routine can only be called after all template arguments have been
6393 deduced. It will return TRUE if all of the template template
6394 parameter bindings are okay, FALSE otherwise. */
6395 bool
6396 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6398 int i, ntparms = TREE_VEC_LENGTH (tparms);
6399 bool ret = true;
6401 /* We're dealing with template parms in this process. */
6402 ++processing_template_decl;
6404 targs = INNERMOST_TEMPLATE_ARGS (targs);
6406 for (i = 0; i < ntparms; ++i)
6408 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6409 tree targ = TREE_VEC_ELT (targs, i);
6411 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6413 tree packed_args = NULL_TREE;
6414 int idx, len = 1;
6416 if (ARGUMENT_PACK_P (targ))
6418 /* Look inside the argument pack. */
6419 packed_args = ARGUMENT_PACK_ARGS (targ);
6420 len = TREE_VEC_LENGTH (packed_args);
6423 for (idx = 0; idx < len; ++idx)
6425 tree targ_parms = NULL_TREE;
6427 if (packed_args)
6428 /* Extract the next argument from the argument
6429 pack. */
6430 targ = TREE_VEC_ELT (packed_args, idx);
6432 if (PACK_EXPANSION_P (targ))
6433 /* Look at the pattern of the pack expansion. */
6434 targ = PACK_EXPANSION_PATTERN (targ);
6436 /* Extract the template parameters from the template
6437 argument. */
6438 if (TREE_CODE (targ) == TEMPLATE_DECL)
6439 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6440 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6441 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6443 /* Verify that we can coerce the template template
6444 parameters from the template argument to the template
6445 parameter. This requires an exact match. */
6446 if (targ_parms
6447 && !coerce_template_template_parms
6448 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6449 targ_parms,
6450 tf_none,
6451 tparm,
6452 targs))
6454 ret = false;
6455 goto out;
6461 out:
6463 --processing_template_decl;
6464 return ret;
6467 /* Since type attributes aren't mangled, we need to strip them from
6468 template type arguments. */
6470 static tree
6471 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6473 tree mv;
6474 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6475 return arg;
6476 mv = TYPE_MAIN_VARIANT (arg);
6477 arg = strip_typedefs (arg);
6478 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6479 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6481 if (complain & tf_warning)
6482 warning (0, "ignoring attributes on template argument %qT", arg);
6483 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6484 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6486 return arg;
6489 /* Convert the indicated template ARG as necessary to match the
6490 indicated template PARM. Returns the converted ARG, or
6491 error_mark_node if the conversion was unsuccessful. Error and
6492 warning messages are issued under control of COMPLAIN. This
6493 conversion is for the Ith parameter in the parameter list. ARGS is
6494 the full set of template arguments deduced so far. */
6496 static tree
6497 convert_template_argument (tree parm,
6498 tree arg,
6499 tree args,
6500 tsubst_flags_t complain,
6501 int i,
6502 tree in_decl)
6504 tree orig_arg;
6505 tree val;
6506 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6508 if (TREE_CODE (arg) == TREE_LIST
6509 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6511 /* The template argument was the name of some
6512 member function. That's usually
6513 invalid, but static members are OK. In any
6514 case, grab the underlying fields/functions
6515 and issue an error later if required. */
6516 orig_arg = TREE_VALUE (arg);
6517 TREE_TYPE (arg) = unknown_type_node;
6520 orig_arg = arg;
6522 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6523 requires_type = (TREE_CODE (parm) == TYPE_DECL
6524 || requires_tmpl_type);
6526 /* When determining whether an argument pack expansion is a template,
6527 look at the pattern. */
6528 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6529 arg = PACK_EXPANSION_PATTERN (arg);
6531 /* Deal with an injected-class-name used as a template template arg. */
6532 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6534 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6535 if (TREE_CODE (t) == TEMPLATE_DECL)
6537 if (cxx_dialect >= cxx11)
6538 /* OK under DR 1004. */;
6539 else if (complain & tf_warning_or_error)
6540 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6541 " used as template template argument", TYPE_NAME (arg));
6542 else if (flag_pedantic_errors)
6543 t = arg;
6545 arg = t;
6549 is_tmpl_type =
6550 ((TREE_CODE (arg) == TEMPLATE_DECL
6551 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6552 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6553 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6554 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6556 if (is_tmpl_type
6557 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6558 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6559 arg = TYPE_STUB_DECL (arg);
6561 is_type = TYPE_P (arg) || is_tmpl_type;
6563 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6564 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6566 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6568 if (complain & tf_error)
6569 error ("invalid use of destructor %qE as a type", orig_arg);
6570 return error_mark_node;
6573 permerror (input_location,
6574 "to refer to a type member of a template parameter, "
6575 "use %<typename %E%>", orig_arg);
6577 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6578 TREE_OPERAND (arg, 1),
6579 typename_type,
6580 complain);
6581 arg = orig_arg;
6582 is_type = 1;
6584 if (is_type != requires_type)
6586 if (in_decl)
6588 if (complain & tf_error)
6590 error ("type/value mismatch at argument %d in template "
6591 "parameter list for %qD",
6592 i + 1, in_decl);
6593 if (is_type)
6594 inform (input_location,
6595 " expected a constant of type %qT, got %qT",
6596 TREE_TYPE (parm),
6597 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6598 else if (requires_tmpl_type)
6599 inform (input_location,
6600 " expected a class template, got %qE", orig_arg);
6601 else
6602 inform (input_location,
6603 " expected a type, got %qE", orig_arg);
6606 return error_mark_node;
6608 if (is_tmpl_type ^ requires_tmpl_type)
6610 if (in_decl && (complain & tf_error))
6612 error ("type/value mismatch at argument %d in template "
6613 "parameter list for %qD",
6614 i + 1, in_decl);
6615 if (is_tmpl_type)
6616 inform (input_location,
6617 " expected a type, got %qT", DECL_NAME (arg));
6618 else
6619 inform (input_location,
6620 " expected a class template, got %qT", orig_arg);
6622 return error_mark_node;
6625 if (is_type)
6627 if (requires_tmpl_type)
6629 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6630 val = orig_arg;
6631 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6632 /* The number of argument required is not known yet.
6633 Just accept it for now. */
6634 val = TREE_TYPE (arg);
6635 else
6637 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6638 tree argparm;
6640 /* Strip alias templates that are equivalent to another
6641 template. */
6642 arg = get_underlying_template (arg);
6643 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6645 if (coerce_template_template_parms (parmparm, argparm,
6646 complain, in_decl,
6647 args))
6649 val = arg;
6651 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6652 TEMPLATE_DECL. */
6653 if (val != error_mark_node)
6655 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6656 val = TREE_TYPE (val);
6657 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6658 val = make_pack_expansion (val);
6661 else
6663 if (in_decl && (complain & tf_error))
6665 error ("type/value mismatch at argument %d in "
6666 "template parameter list for %qD",
6667 i + 1, in_decl);
6668 inform (input_location,
6669 " expected a template of type %qD, got %qT",
6670 parm, orig_arg);
6673 val = error_mark_node;
6677 else
6678 val = orig_arg;
6679 /* We only form one instance of each template specialization.
6680 Therefore, if we use a non-canonical variant (i.e., a
6681 typedef), any future messages referring to the type will use
6682 the typedef, which is confusing if those future uses do not
6683 themselves also use the typedef. */
6684 if (TYPE_P (val))
6685 val = canonicalize_type_argument (val, complain);
6687 else
6689 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6691 if (invalid_nontype_parm_type_p (t, complain))
6692 return error_mark_node;
6694 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6696 if (same_type_p (t, TREE_TYPE (orig_arg)))
6697 val = orig_arg;
6698 else
6700 /* Not sure if this is reachable, but it doesn't hurt
6701 to be robust. */
6702 error ("type mismatch in nontype parameter pack");
6703 val = error_mark_node;
6706 else if (!dependent_template_arg_p (orig_arg)
6707 && !uses_template_parms (t))
6708 /* We used to call digest_init here. However, digest_init
6709 will report errors, which we don't want when complain
6710 is zero. More importantly, digest_init will try too
6711 hard to convert things: for example, `0' should not be
6712 converted to pointer type at this point according to
6713 the standard. Accepting this is not merely an
6714 extension, since deciding whether or not these
6715 conversions can occur is part of determining which
6716 function template to call, or whether a given explicit
6717 argument specification is valid. */
6718 val = convert_nontype_argument (t, orig_arg, complain);
6719 else
6720 val = strip_typedefs_expr (orig_arg);
6722 if (val == NULL_TREE)
6723 val = error_mark_node;
6724 else if (val == error_mark_node && (complain & tf_error))
6725 error ("could not convert template argument %qE to %qT", orig_arg, t);
6727 if (TREE_CODE (val) == SCOPE_REF)
6729 /* Strip typedefs from the SCOPE_REF. */
6730 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6731 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6732 complain);
6733 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6734 QUALIFIED_NAME_IS_TEMPLATE (val));
6738 return val;
6741 /* Coerces the remaining template arguments in INNER_ARGS (from
6742 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6743 Returns the coerced argument pack. PARM_IDX is the position of this
6744 parameter in the template parameter list. ARGS is the original
6745 template argument list. */
6746 static tree
6747 coerce_template_parameter_pack (tree parms,
6748 int parm_idx,
6749 tree args,
6750 tree inner_args,
6751 int arg_idx,
6752 tree new_args,
6753 int* lost,
6754 tree in_decl,
6755 tsubst_flags_t complain)
6757 tree parm = TREE_VEC_ELT (parms, parm_idx);
6758 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6759 tree packed_args;
6760 tree argument_pack;
6761 tree packed_parms = NULL_TREE;
6763 if (arg_idx > nargs)
6764 arg_idx = nargs;
6766 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
6768 /* When the template parameter is a non-type template parameter pack
6769 or template template parameter pack whose type or template
6770 parameters use parameter packs, we know exactly how many arguments
6771 we are looking for. Build a vector of the instantiated decls for
6772 these template parameters in PACKED_PARMS. */
6773 /* We can't use make_pack_expansion here because it would interpret a
6774 _DECL as a use rather than a declaration. */
6775 tree decl = TREE_VALUE (parm);
6776 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
6777 SET_PACK_EXPANSION_PATTERN (exp, decl);
6778 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
6779 SET_TYPE_STRUCTURAL_EQUALITY (exp);
6781 TREE_VEC_LENGTH (args)--;
6782 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
6783 TREE_VEC_LENGTH (args)++;
6785 if (packed_parms == error_mark_node)
6786 return error_mark_node;
6788 /* If we're doing a partial instantiation of a member template,
6789 verify that all of the types used for the non-type
6790 template parameter pack are, in fact, valid for non-type
6791 template parameters. */
6792 if (arg_idx < nargs
6793 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6795 int j, len = TREE_VEC_LENGTH (packed_parms);
6796 for (j = 0; j < len; ++j)
6798 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
6799 if (invalid_nontype_parm_type_p (t, complain))
6800 return error_mark_node;
6804 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
6806 else
6807 packed_args = make_tree_vec (nargs - arg_idx);
6809 /* Convert the remaining arguments, which will be a part of the
6810 parameter pack "parm". */
6811 for (; arg_idx < nargs; ++arg_idx)
6813 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6814 tree actual_parm = TREE_VALUE (parm);
6815 int pack_idx = arg_idx - parm_idx;
6817 if (packed_parms)
6819 /* Once we've packed as many args as we have types, stop. */
6820 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
6821 break;
6822 else if (PACK_EXPANSION_P (arg))
6823 /* We don't know how many args we have yet, just
6824 use the unconverted ones for now. */
6825 return NULL_TREE;
6826 else
6827 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
6830 if (arg == error_mark_node)
6832 if (complain & tf_error)
6833 error ("template argument %d is invalid", arg_idx + 1);
6835 else
6836 arg = convert_template_argument (actual_parm,
6837 arg, new_args, complain, parm_idx,
6838 in_decl);
6839 if (arg == error_mark_node)
6840 (*lost)++;
6841 TREE_VEC_ELT (packed_args, pack_idx) = arg;
6844 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
6845 && TREE_VEC_LENGTH (packed_args) > 0)
6847 if (complain & tf_error)
6848 error ("wrong number of template arguments (%d, should be %d)",
6849 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
6850 return error_mark_node;
6853 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6854 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6855 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6856 else
6858 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6859 TREE_TYPE (argument_pack)
6860 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6861 TREE_CONSTANT (argument_pack) = 1;
6864 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6865 #ifdef ENABLE_CHECKING
6866 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6867 TREE_VEC_LENGTH (packed_args));
6868 #endif
6869 return argument_pack;
6872 /* Returns the number of pack expansions in the template argument vector
6873 ARGS. */
6875 static int
6876 pack_expansion_args_count (tree args)
6878 int i;
6879 int count = 0;
6880 if (args)
6881 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6883 tree elt = TREE_VEC_ELT (args, i);
6884 if (elt && PACK_EXPANSION_P (elt))
6885 ++count;
6887 return count;
6890 /* Convert all template arguments to their appropriate types, and
6891 return a vector containing the innermost resulting template
6892 arguments. If any error occurs, return error_mark_node. Error and
6893 warning messages are issued under control of COMPLAIN.
6895 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6896 for arguments not specified in ARGS. Otherwise, if
6897 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6898 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6899 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6900 ARGS. */
6902 static tree
6903 coerce_template_parms (tree parms,
6904 tree args,
6905 tree in_decl,
6906 tsubst_flags_t complain,
6907 bool require_all_args,
6908 bool use_default_args)
6910 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6911 tree orig_inner_args;
6912 tree inner_args;
6913 tree new_args;
6914 tree new_inner_args;
6915 int saved_unevaluated_operand;
6916 int saved_inhibit_evaluation_warnings;
6918 /* When used as a boolean value, indicates whether this is a
6919 variadic template parameter list. Since it's an int, we can also
6920 subtract it from nparms to get the number of non-variadic
6921 parameters. */
6922 int variadic_p = 0;
6923 int variadic_args_p = 0;
6924 int post_variadic_parms = 0;
6926 /* Likewise for parameters with default arguments. */
6927 int default_p = 0;
6929 if (args == error_mark_node)
6930 return error_mark_node;
6932 nparms = TREE_VEC_LENGTH (parms);
6934 /* Determine if there are any parameter packs or default arguments. */
6935 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6937 tree parm = TREE_VEC_ELT (parms, parm_idx);
6938 if (variadic_p)
6939 ++post_variadic_parms;
6940 if (template_parameter_pack_p (TREE_VALUE (parm)))
6941 ++variadic_p;
6942 if (TREE_PURPOSE (parm))
6943 ++default_p;
6946 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
6947 /* If there are no parameters that follow a parameter pack, we need to
6948 expand any argument packs so that we can deduce a parameter pack from
6949 some non-packed args followed by an argument pack, as in variadic85.C.
6950 If there are such parameters, we need to leave argument packs intact
6951 so the arguments are assigned properly. This can happen when dealing
6952 with a nested class inside a partial specialization of a class
6953 template, as in variadic92.C, or when deducing a template parameter pack
6954 from a sub-declarator, as in variadic114.C. */
6955 if (!post_variadic_parms)
6956 inner_args = expand_template_argument_pack (inner_args);
6958 /* Count any pack expansion args. */
6959 variadic_args_p = pack_expansion_args_count (inner_args);
6961 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6962 if ((nargs > nparms && !variadic_p)
6963 || (nargs < nparms - variadic_p
6964 && require_all_args
6965 && !variadic_args_p
6966 && (!use_default_args
6967 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6968 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6970 if (complain & tf_error)
6972 if (variadic_p || default_p)
6974 nparms -= variadic_p + default_p;
6975 error ("wrong number of template arguments "
6976 "(%d, should be at least %d)", nargs, nparms);
6978 else
6979 error ("wrong number of template arguments "
6980 "(%d, should be %d)", nargs, nparms);
6982 if (in_decl)
6983 inform (input_location, "provided for %q+D", in_decl);
6986 return error_mark_node;
6988 /* We can't pass a pack expansion to a non-pack parameter of an alias
6989 template (DR 1430). */
6990 else if (in_decl && DECL_ALIAS_TEMPLATE_P (in_decl)
6991 && variadic_args_p
6992 && nargs - variadic_args_p < nparms - variadic_p)
6994 if (complain & tf_error)
6996 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
6998 tree arg = TREE_VEC_ELT (inner_args, i);
6999 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7001 if (PACK_EXPANSION_P (arg)
7002 && !template_parameter_pack_p (parm))
7004 error ("pack expansion argument for non-pack parameter "
7005 "%qD of alias template %qD", parm, in_decl);
7006 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7007 goto found;
7010 gcc_unreachable ();
7011 found:;
7013 return error_mark_node;
7016 /* We need to evaluate the template arguments, even though this
7017 template-id may be nested within a "sizeof". */
7018 saved_unevaluated_operand = cp_unevaluated_operand;
7019 cp_unevaluated_operand = 0;
7020 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7021 c_inhibit_evaluation_warnings = 0;
7022 new_inner_args = make_tree_vec (nparms);
7023 new_args = add_outermost_template_args (args, new_inner_args);
7024 int pack_adjust = 0;
7025 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7027 tree arg;
7028 tree parm;
7030 /* Get the Ith template parameter. */
7031 parm = TREE_VEC_ELT (parms, parm_idx);
7033 if (parm == error_mark_node)
7035 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7036 continue;
7039 /* Calculate the next argument. */
7040 if (arg_idx < nargs)
7041 arg = TREE_VEC_ELT (inner_args, arg_idx);
7042 else
7043 arg = NULL_TREE;
7045 if (template_parameter_pack_p (TREE_VALUE (parm))
7046 && !(arg && ARGUMENT_PACK_P (arg)))
7048 /* Some arguments will be placed in the
7049 template parameter pack PARM. */
7050 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7051 inner_args, arg_idx,
7052 new_args, &lost,
7053 in_decl, complain);
7055 if (arg == NULL_TREE)
7057 /* We don't know how many args we have yet, just use the
7058 unconverted (and still packed) ones for now. */
7059 new_inner_args = orig_inner_args;
7060 arg_idx = nargs;
7061 break;
7064 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7066 /* Store this argument. */
7067 if (arg == error_mark_node)
7069 lost++;
7070 /* We are done with all of the arguments. */
7071 arg_idx = nargs;
7073 else
7075 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7076 arg_idx += pack_adjust;
7079 continue;
7081 else if (arg)
7083 if (PACK_EXPANSION_P (arg))
7085 /* "If every valid specialization of a variadic template
7086 requires an empty template parameter pack, the template is
7087 ill-formed, no diagnostic required." So check that the
7088 pattern works with this parameter. */
7089 tree pattern = PACK_EXPANSION_PATTERN (arg);
7090 tree conv = convert_template_argument (TREE_VALUE (parm),
7091 pattern, new_args,
7092 complain, parm_idx,
7093 in_decl);
7094 if (conv == error_mark_node)
7096 inform (input_location, "so any instantiation with a "
7097 "non-empty parameter pack would be ill-formed");
7098 ++lost;
7100 else if (TYPE_P (conv) && !TYPE_P (pattern))
7101 /* Recover from missing typename. */
7102 TREE_VEC_ELT (inner_args, arg_idx)
7103 = make_pack_expansion (conv);
7105 /* We don't know how many args we have yet, just
7106 use the unconverted ones for now. */
7107 new_inner_args = inner_args;
7108 arg_idx = nargs;
7109 break;
7112 else if (require_all_args)
7114 /* There must be a default arg in this case. */
7115 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7116 complain, in_decl);
7117 /* The position of the first default template argument,
7118 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7119 Record that. */
7120 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7121 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7122 arg_idx - pack_adjust);
7124 else
7125 break;
7127 if (arg == error_mark_node)
7129 if (complain & tf_error)
7130 error ("template argument %d is invalid", arg_idx + 1);
7132 else if (!arg)
7133 /* This only occurs if there was an error in the template
7134 parameter list itself (which we would already have
7135 reported) that we are trying to recover from, e.g., a class
7136 template with a parameter list such as
7137 template<typename..., typename>. */
7138 ++lost;
7139 else
7140 arg = convert_template_argument (TREE_VALUE (parm),
7141 arg, new_args, complain,
7142 parm_idx, in_decl);
7144 if (arg == error_mark_node)
7145 lost++;
7146 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7148 cp_unevaluated_operand = saved_unevaluated_operand;
7149 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7151 if (variadic_p && arg_idx < nargs)
7153 if (complain & tf_error)
7155 error ("wrong number of template arguments "
7156 "(%d, should be %d)", nargs, arg_idx);
7157 if (in_decl)
7158 error ("provided for %q+D", in_decl);
7160 return error_mark_node;
7163 if (lost)
7164 return error_mark_node;
7166 #ifdef ENABLE_CHECKING
7167 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7168 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7169 TREE_VEC_LENGTH (new_inner_args));
7170 #endif
7172 return new_inner_args;
7175 /* Like coerce_template_parms. If PARMS represents all template
7176 parameters levels, this function returns a vector of vectors
7177 representing all the resulting argument levels. Note that in this
7178 case, only the innermost arguments are coerced because the
7179 outermost ones are supposed to have been coerced already.
7181 Otherwise, if PARMS represents only (the innermost) vector of
7182 parameters, this function returns a vector containing just the
7183 innermost resulting arguments. */
7185 static tree
7186 coerce_innermost_template_parms (tree parms,
7187 tree args,
7188 tree in_decl,
7189 tsubst_flags_t complain,
7190 bool require_all_args,
7191 bool use_default_args)
7193 int parms_depth = TMPL_PARMS_DEPTH (parms);
7194 int args_depth = TMPL_ARGS_DEPTH (args);
7195 tree coerced_args;
7197 if (parms_depth > 1)
7199 coerced_args = make_tree_vec (parms_depth);
7200 tree level;
7201 int cur_depth;
7203 for (level = parms, cur_depth = parms_depth;
7204 parms_depth > 0 && level != NULL_TREE;
7205 level = TREE_CHAIN (level), --cur_depth)
7207 tree l;
7208 if (cur_depth == args_depth)
7209 l = coerce_template_parms (TREE_VALUE (level),
7210 args, in_decl, complain,
7211 require_all_args,
7212 use_default_args);
7213 else
7214 l = TMPL_ARGS_LEVEL (args, cur_depth);
7216 if (l == error_mark_node)
7217 return error_mark_node;
7219 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7222 else
7223 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7224 args, in_decl, complain,
7225 require_all_args,
7226 use_default_args);
7227 return coerced_args;
7230 /* Returns 1 if template args OT and NT are equivalent. */
7232 static int
7233 template_args_equal (tree ot, tree nt)
7235 if (nt == ot)
7236 return 1;
7237 if (nt == NULL_TREE || ot == NULL_TREE)
7238 return false;
7240 if (TREE_CODE (nt) == TREE_VEC)
7241 /* For member templates */
7242 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7243 else if (PACK_EXPANSION_P (ot))
7244 return (PACK_EXPANSION_P (nt)
7245 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7246 PACK_EXPANSION_PATTERN (nt))
7247 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7248 PACK_EXPANSION_EXTRA_ARGS (nt)));
7249 else if (ARGUMENT_PACK_P (ot))
7251 int i, len;
7252 tree opack, npack;
7254 if (!ARGUMENT_PACK_P (nt))
7255 return 0;
7257 opack = ARGUMENT_PACK_ARGS (ot);
7258 npack = ARGUMENT_PACK_ARGS (nt);
7259 len = TREE_VEC_LENGTH (opack);
7260 if (TREE_VEC_LENGTH (npack) != len)
7261 return 0;
7262 for (i = 0; i < len; ++i)
7263 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7264 TREE_VEC_ELT (npack, i)))
7265 return 0;
7266 return 1;
7268 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7270 /* We get here probably because we are in the middle of substituting
7271 into the pattern of a pack expansion. In that case the
7272 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7273 interested in. So we want to use the initial pack argument for
7274 the comparison. */
7275 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7276 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7277 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7278 return template_args_equal (ot, nt);
7280 else if (TYPE_P (nt))
7282 if (!TYPE_P (ot))
7283 return false;
7284 /* Don't treat an alias template specialization with dependent
7285 arguments as equivalent to its underlying type when used as a
7286 template argument; we need them to hash differently. */
7287 bool ndep = dependent_alias_template_spec_p (nt);
7288 ++processing_template_decl;
7289 bool odep = dependent_alias_template_spec_p (ot);
7290 --processing_template_decl;
7291 if (ndep != odep)
7292 return false;
7293 else if (ndep)
7294 return (TYPE_TI_TEMPLATE (nt) == TYPE_TI_TEMPLATE (ot)
7295 && template_args_equal (TYPE_TI_ARGS (nt), TYPE_TI_ARGS (ot)));
7296 else
7297 return same_type_p (ot, nt);
7299 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7300 return 0;
7301 else
7302 return cp_tree_equal (ot, nt);
7305 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7306 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7307 NEWARG_PTR with the offending arguments if they are non-NULL. */
7309 static int
7310 comp_template_args_with_info (tree oldargs, tree newargs,
7311 tree *oldarg_ptr, tree *newarg_ptr)
7313 int i;
7315 if (oldargs == newargs)
7316 return 1;
7318 if (!oldargs || !newargs)
7319 return 0;
7321 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7322 return 0;
7324 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7326 tree nt = TREE_VEC_ELT (newargs, i);
7327 tree ot = TREE_VEC_ELT (oldargs, i);
7329 if (! template_args_equal (ot, nt))
7331 if (oldarg_ptr != NULL)
7332 *oldarg_ptr = ot;
7333 if (newarg_ptr != NULL)
7334 *newarg_ptr = nt;
7335 return 0;
7338 return 1;
7341 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7342 of template arguments. Returns 0 otherwise. */
7345 comp_template_args (tree oldargs, tree newargs)
7347 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7350 static void
7351 add_pending_template (tree d)
7353 tree ti = (TYPE_P (d)
7354 ? CLASSTYPE_TEMPLATE_INFO (d)
7355 : DECL_TEMPLATE_INFO (d));
7356 struct pending_template *pt;
7357 int level;
7359 if (TI_PENDING_TEMPLATE_FLAG (ti))
7360 return;
7362 /* We are called both from instantiate_decl, where we've already had a
7363 tinst_level pushed, and instantiate_template, where we haven't.
7364 Compensate. */
7365 level = !current_tinst_level || current_tinst_level->decl != d;
7367 if (level)
7368 push_tinst_level (d);
7370 pt = ggc_alloc<pending_template> ();
7371 pt->next = NULL;
7372 pt->tinst = current_tinst_level;
7373 if (last_pending_template)
7374 last_pending_template->next = pt;
7375 else
7376 pending_templates = pt;
7378 last_pending_template = pt;
7380 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7382 if (level)
7383 pop_tinst_level ();
7387 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7388 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7389 documentation for TEMPLATE_ID_EXPR. */
7391 tree
7392 lookup_template_function (tree fns, tree arglist)
7394 tree type;
7396 if (fns == error_mark_node || arglist == error_mark_node)
7397 return error_mark_node;
7399 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7401 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7403 error ("%q#D is not a function template", fns);
7404 return error_mark_node;
7407 if (BASELINK_P (fns))
7409 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7410 unknown_type_node,
7411 BASELINK_FUNCTIONS (fns),
7412 arglist);
7413 return fns;
7416 type = TREE_TYPE (fns);
7417 if (TREE_CODE (fns) == OVERLOAD || !type)
7418 type = unknown_type_node;
7420 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7423 /* Within the scope of a template class S<T>, the name S gets bound
7424 (in build_self_reference) to a TYPE_DECL for the class, not a
7425 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7426 or one of its enclosing classes, and that type is a template,
7427 return the associated TEMPLATE_DECL. Otherwise, the original
7428 DECL is returned.
7430 Also handle the case when DECL is a TREE_LIST of ambiguous
7431 injected-class-names from different bases. */
7433 tree
7434 maybe_get_template_decl_from_type_decl (tree decl)
7436 if (decl == NULL_TREE)
7437 return decl;
7439 /* DR 176: A lookup that finds an injected-class-name (10.2
7440 [class.member.lookup]) can result in an ambiguity in certain cases
7441 (for example, if it is found in more than one base class). If all of
7442 the injected-class-names that are found refer to specializations of
7443 the same class template, and if the name is followed by a
7444 template-argument-list, the reference refers to the class template
7445 itself and not a specialization thereof, and is not ambiguous. */
7446 if (TREE_CODE (decl) == TREE_LIST)
7448 tree t, tmpl = NULL_TREE;
7449 for (t = decl; t; t = TREE_CHAIN (t))
7451 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7452 if (!tmpl)
7453 tmpl = elt;
7454 else if (tmpl != elt)
7455 break;
7457 if (tmpl && t == NULL_TREE)
7458 return tmpl;
7459 else
7460 return decl;
7463 return (decl != NULL_TREE
7464 && DECL_SELF_REFERENCE_P (decl)
7465 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7466 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7469 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
7470 parameters, find the desired type.
7472 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
7474 IN_DECL, if non-NULL, is the template declaration we are trying to
7475 instantiate.
7477 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
7478 the class we are looking up.
7480 Issue error and warning messages under control of COMPLAIN.
7482 If the template class is really a local class in a template
7483 function, then the FUNCTION_CONTEXT is the function in which it is
7484 being instantiated.
7486 ??? Note that this function is currently called *twice* for each
7487 template-id: the first time from the parser, while creating the
7488 incomplete type (finish_template_type), and the second type during the
7489 real instantiation (instantiate_template_class). This is surely something
7490 that we want to avoid. It also causes some problems with argument
7491 coercion (see convert_nontype_argument for more information on this). */
7493 static tree
7494 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7495 int entering_scope, tsubst_flags_t complain)
7497 tree templ = NULL_TREE, parmlist;
7498 tree t;
7499 spec_entry **slot;
7500 spec_entry *entry;
7501 spec_entry elt;
7502 hashval_t hash;
7504 if (identifier_p (d1))
7506 tree value = innermost_non_namespace_value (d1);
7507 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7508 templ = value;
7509 else
7511 if (context)
7512 push_decl_namespace (context);
7513 templ = lookup_name (d1);
7514 templ = maybe_get_template_decl_from_type_decl (templ);
7515 if (context)
7516 pop_decl_namespace ();
7518 if (templ)
7519 context = DECL_CONTEXT (templ);
7521 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7523 tree type = TREE_TYPE (d1);
7525 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7526 an implicit typename for the second A. Deal with it. */
7527 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7528 type = TREE_TYPE (type);
7530 if (CLASSTYPE_TEMPLATE_INFO (type))
7532 templ = CLASSTYPE_TI_TEMPLATE (type);
7533 d1 = DECL_NAME (templ);
7536 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7537 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7539 templ = TYPE_TI_TEMPLATE (d1);
7540 d1 = DECL_NAME (templ);
7542 else if (DECL_TYPE_TEMPLATE_P (d1))
7544 templ = d1;
7545 d1 = DECL_NAME (templ);
7546 context = DECL_CONTEXT (templ);
7548 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
7550 templ = d1;
7551 d1 = DECL_NAME (templ);
7554 /* Issue an error message if we didn't find a template. */
7555 if (! templ)
7557 if (complain & tf_error)
7558 error ("%qT is not a template", d1);
7559 return error_mark_node;
7562 if (TREE_CODE (templ) != TEMPLATE_DECL
7563 /* Make sure it's a user visible template, if it was named by
7564 the user. */
7565 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7566 && !PRIMARY_TEMPLATE_P (templ)))
7568 if (complain & tf_error)
7570 error ("non-template type %qT used as a template", d1);
7571 if (in_decl)
7572 error ("for template declaration %q+D", in_decl);
7574 return error_mark_node;
7577 complain &= ~tf_user;
7579 /* An alias that just changes the name of a template is equivalent to the
7580 other template, so if any of the arguments are pack expansions, strip
7581 the alias to avoid problems with a pack expansion passed to a non-pack
7582 alias template parameter (DR 1430). */
7583 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
7584 templ = get_underlying_template (templ);
7586 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7588 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7589 template arguments */
7591 tree parm;
7592 tree arglist2;
7593 tree outer;
7595 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7597 /* Consider an example where a template template parameter declared as
7599 template <class T, class U = std::allocator<T> > class TT
7601 The template parameter level of T and U are one level larger than
7602 of TT. To proper process the default argument of U, say when an
7603 instantiation `TT<int>' is seen, we need to build the full
7604 arguments containing {int} as the innermost level. Outer levels,
7605 available when not appearing as default template argument, can be
7606 obtained from the arguments of the enclosing template.
7608 Suppose that TT is later substituted with std::vector. The above
7609 instantiation is `TT<int, std::allocator<T> >' with TT at
7610 level 1, and T at level 2, while the template arguments at level 1
7611 becomes {std::vector} and the inner level 2 is {int}. */
7613 outer = DECL_CONTEXT (templ);
7614 if (outer)
7615 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7616 else if (current_template_parms)
7617 /* This is an argument of the current template, so we haven't set
7618 DECL_CONTEXT yet. */
7619 outer = current_template_args ();
7621 if (outer)
7622 arglist = add_to_template_args (outer, arglist);
7624 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7625 complain,
7626 /*require_all_args=*/true,
7627 /*use_default_args=*/true);
7628 if (arglist2 == error_mark_node
7629 || (!uses_template_parms (arglist2)
7630 && check_instantiated_args (templ, arglist2, complain)))
7631 return error_mark_node;
7633 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7634 return parm;
7636 else
7638 tree template_type = TREE_TYPE (templ);
7639 tree gen_tmpl;
7640 tree type_decl;
7641 tree found = NULL_TREE;
7642 int arg_depth;
7643 int parm_depth;
7644 int is_dependent_type;
7645 int use_partial_inst_tmpl = false;
7647 if (template_type == error_mark_node)
7648 /* An error occurred while building the template TEMPL, and a
7649 diagnostic has most certainly been emitted for that
7650 already. Let's propagate that error. */
7651 return error_mark_node;
7653 gen_tmpl = most_general_template (templ);
7654 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7655 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7656 arg_depth = TMPL_ARGS_DEPTH (arglist);
7658 if (arg_depth == 1 && parm_depth > 1)
7660 /* We've been given an incomplete set of template arguments.
7661 For example, given:
7663 template <class T> struct S1 {
7664 template <class U> struct S2 {};
7665 template <class U> struct S2<U*> {};
7668 we will be called with an ARGLIST of `U*', but the
7669 TEMPLATE will be `template <class T> template
7670 <class U> struct S1<T>::S2'. We must fill in the missing
7671 arguments. */
7672 arglist
7673 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7674 arglist);
7675 arg_depth = TMPL_ARGS_DEPTH (arglist);
7678 /* Now we should have enough arguments. */
7679 gcc_assert (parm_depth == arg_depth);
7681 /* From here on, we're only interested in the most general
7682 template. */
7684 /* Calculate the BOUND_ARGS. These will be the args that are
7685 actually tsubst'd into the definition to create the
7686 instantiation. */
7687 if (parm_depth > 1)
7689 /* We have multiple levels of arguments to coerce, at once. */
7690 int i;
7691 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7693 tree bound_args = make_tree_vec (parm_depth);
7695 for (i = saved_depth,
7696 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7697 i > 0 && t != NULL_TREE;
7698 --i, t = TREE_CHAIN (t))
7700 tree a;
7701 if (i == saved_depth)
7702 a = coerce_template_parms (TREE_VALUE (t),
7703 arglist, gen_tmpl,
7704 complain,
7705 /*require_all_args=*/true,
7706 /*use_default_args=*/true);
7707 else
7708 /* Outer levels should have already been coerced. */
7709 a = TMPL_ARGS_LEVEL (arglist, i);
7711 /* Don't process further if one of the levels fails. */
7712 if (a == error_mark_node)
7714 /* Restore the ARGLIST to its full size. */
7715 TREE_VEC_LENGTH (arglist) = saved_depth;
7716 return error_mark_node;
7719 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7721 /* We temporarily reduce the length of the ARGLIST so
7722 that coerce_template_parms will see only the arguments
7723 corresponding to the template parameters it is
7724 examining. */
7725 TREE_VEC_LENGTH (arglist)--;
7728 /* Restore the ARGLIST to its full size. */
7729 TREE_VEC_LENGTH (arglist) = saved_depth;
7731 arglist = bound_args;
7733 else
7734 arglist
7735 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7736 INNERMOST_TEMPLATE_ARGS (arglist),
7737 gen_tmpl,
7738 complain,
7739 /*require_all_args=*/true,
7740 /*use_default_args=*/true);
7742 if (arglist == error_mark_node)
7743 /* We were unable to bind the arguments. */
7744 return error_mark_node;
7746 /* In the scope of a template class, explicit references to the
7747 template class refer to the type of the template, not any
7748 instantiation of it. For example, in:
7750 template <class T> class C { void f(C<T>); }
7752 the `C<T>' is just the same as `C'. Outside of the
7753 class, however, such a reference is an instantiation. */
7754 if ((entering_scope
7755 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7756 || currently_open_class (template_type))
7757 /* comp_template_args is expensive, check it last. */
7758 && comp_template_args (TYPE_TI_ARGS (template_type),
7759 arglist))
7760 return template_type;
7762 /* If we already have this specialization, return it. */
7763 elt.tmpl = gen_tmpl;
7764 elt.args = arglist;
7765 hash = spec_hasher::hash (&elt);
7766 entry = type_specializations->find_with_hash (&elt, hash);
7768 if (entry)
7769 return entry->spec;
7771 is_dependent_type = uses_template_parms (arglist);
7773 /* If the deduced arguments are invalid, then the binding
7774 failed. */
7775 if (!is_dependent_type
7776 && check_instantiated_args (gen_tmpl,
7777 INNERMOST_TEMPLATE_ARGS (arglist),
7778 complain))
7779 return error_mark_node;
7781 if (!is_dependent_type
7782 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7783 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7784 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7786 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7787 DECL_NAME (gen_tmpl),
7788 /*tag_scope=*/ts_global);
7789 return found;
7792 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7793 complain, in_decl);
7794 if (context == error_mark_node)
7795 return error_mark_node;
7797 if (!context)
7798 context = global_namespace;
7800 /* Create the type. */
7801 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7803 /* The user referred to a specialization of an alias
7804 template represented by GEN_TMPL.
7806 [temp.alias]/2 says:
7808 When a template-id refers to the specialization of an
7809 alias template, it is equivalent to the associated
7810 type obtained by substitution of its
7811 template-arguments for the template-parameters in the
7812 type-id of the alias template. */
7814 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7815 /* Note that the call above (by indirectly calling
7816 register_specialization in tsubst_decl) registers the
7817 TYPE_DECL representing the specialization of the alias
7818 template. So next time someone substitutes ARGLIST for
7819 the template parms into the alias template (GEN_TMPL),
7820 she'll get that TYPE_DECL back. */
7822 if (t == error_mark_node)
7823 return t;
7825 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7827 if (!is_dependent_type)
7829 set_current_access_from_decl (TYPE_NAME (template_type));
7830 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7831 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7832 arglist, complain, in_decl),
7833 SCOPED_ENUM_P (template_type), NULL);
7835 if (t == error_mark_node)
7836 return t;
7838 else
7840 /* We don't want to call start_enum for this type, since
7841 the values for the enumeration constants may involve
7842 template parameters. And, no one should be interested
7843 in the enumeration constants for such a type. */
7844 t = cxx_make_type (ENUMERAL_TYPE);
7845 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7847 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7848 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7849 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7851 else if (CLASS_TYPE_P (template_type))
7853 t = make_class_type (TREE_CODE (template_type));
7854 CLASSTYPE_DECLARED_CLASS (t)
7855 = CLASSTYPE_DECLARED_CLASS (template_type);
7856 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7857 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7859 /* A local class. Make sure the decl gets registered properly. */
7860 if (context == current_function_decl)
7861 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7863 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7864 /* This instantiation is another name for the primary
7865 template type. Set the TYPE_CANONICAL field
7866 appropriately. */
7867 TYPE_CANONICAL (t) = template_type;
7868 else if (any_template_arguments_need_structural_equality_p (arglist))
7869 /* Some of the template arguments require structural
7870 equality testing, so this template class requires
7871 structural equality testing. */
7872 SET_TYPE_STRUCTURAL_EQUALITY (t);
7874 else
7875 gcc_unreachable ();
7877 /* If we called start_enum or pushtag above, this information
7878 will already be set up. */
7879 if (!TYPE_NAME (t))
7881 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7883 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7884 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7885 DECL_SOURCE_LOCATION (type_decl)
7886 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7888 else
7889 type_decl = TYPE_NAME (t);
7891 if (CLASS_TYPE_P (template_type))
7893 TREE_PRIVATE (type_decl)
7894 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7895 TREE_PROTECTED (type_decl)
7896 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7897 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7899 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7900 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7904 if (OVERLOAD_TYPE_P (t)
7905 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7907 if (tree attributes
7908 = lookup_attribute ("abi_tag", TYPE_ATTRIBUTES (template_type)))
7910 if (!TREE_CHAIN (attributes))
7911 TYPE_ATTRIBUTES (t) = attributes;
7912 else
7913 TYPE_ATTRIBUTES (t)
7914 = build_tree_list (TREE_PURPOSE (attributes),
7915 TREE_VALUE (attributes));
7919 /* Let's consider the explicit specialization of a member
7920 of a class template specialization that is implicitly instantiated,
7921 e.g.:
7922 template<class T>
7923 struct S
7925 template<class U> struct M {}; //#0
7928 template<>
7929 template<>
7930 struct S<int>::M<char> //#1
7932 int i;
7934 [temp.expl.spec]/4 says this is valid.
7936 In this case, when we write:
7937 S<int>::M<char> m;
7939 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7940 the one of #0.
7942 When we encounter #1, we want to store the partial instantiation
7943 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
7945 For all cases other than this "explicit specialization of member of a
7946 class template", we just want to store the most general template into
7947 the CLASSTYPE_TI_TEMPLATE of M.
7949 This case of "explicit specialization of member of a class template"
7950 only happens when:
7951 1/ the enclosing class is an instantiation of, and therefore not
7952 the same as, the context of the most general template, and
7953 2/ we aren't looking at the partial instantiation itself, i.e.
7954 the innermost arguments are not the same as the innermost parms of
7955 the most general template.
7957 So it's only when 1/ and 2/ happens that we want to use the partial
7958 instantiation of the member template in lieu of its most general
7959 template. */
7961 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7962 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7963 /* the enclosing class must be an instantiation... */
7964 && CLASS_TYPE_P (context)
7965 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7967 tree partial_inst_args;
7968 TREE_VEC_LENGTH (arglist)--;
7969 ++processing_template_decl;
7970 partial_inst_args =
7971 tsubst (INNERMOST_TEMPLATE_ARGS
7972 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7973 arglist, complain, NULL_TREE);
7974 --processing_template_decl;
7975 TREE_VEC_LENGTH (arglist)++;
7976 use_partial_inst_tmpl =
7977 /*...and we must not be looking at the partial instantiation
7978 itself. */
7979 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7980 partial_inst_args);
7983 if (!use_partial_inst_tmpl)
7984 /* This case is easy; there are no member templates involved. */
7985 found = gen_tmpl;
7986 else
7988 /* This is a full instantiation of a member template. Find
7989 the partial instantiation of which this is an instance. */
7991 /* Temporarily reduce by one the number of levels in the ARGLIST
7992 so as to avoid comparing the last set of arguments. */
7993 TREE_VEC_LENGTH (arglist)--;
7994 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7995 TREE_VEC_LENGTH (arglist)++;
7996 /* FOUND is either a proper class type, or an alias
7997 template specialization. In the later case, it's a
7998 TYPE_DECL, resulting from the substituting of arguments
7999 for parameters in the TYPE_DECL of the alias template
8000 done earlier. So be careful while getting the template
8001 of FOUND. */
8002 found = TREE_CODE (found) == TYPE_DECL
8003 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8004 : CLASSTYPE_TI_TEMPLATE (found);
8007 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8009 elt.spec = t;
8010 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8011 entry = ggc_alloc<spec_entry> ();
8012 *entry = elt;
8013 *slot = entry;
8015 /* Note this use of the partial instantiation so we can check it
8016 later in maybe_process_partial_specialization. */
8017 DECL_TEMPLATE_INSTANTIATIONS (found)
8018 = tree_cons (arglist, t,
8019 DECL_TEMPLATE_INSTANTIATIONS (found));
8021 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8022 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8023 /* Now that the type has been registered on the instantiations
8024 list, we set up the enumerators. Because the enumeration
8025 constants may involve the enumeration type itself, we make
8026 sure to register the type first, and then create the
8027 constants. That way, doing tsubst_expr for the enumeration
8028 constants won't result in recursive calls here; we'll find
8029 the instantiation and exit above. */
8030 tsubst_enum (template_type, t, arglist);
8032 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8033 /* If the type makes use of template parameters, the
8034 code that generates debugging information will crash. */
8035 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8037 /* Possibly limit visibility based on template args. */
8038 TREE_PUBLIC (type_decl) = 1;
8039 determine_visibility (type_decl);
8041 inherit_targ_abi_tags (t);
8043 return t;
8047 /* Wrapper for lookup_template_class_1. */
8049 tree
8050 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8051 int entering_scope, tsubst_flags_t complain)
8053 tree ret;
8054 timevar_push (TV_TEMPLATE_INST);
8055 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8056 entering_scope, complain);
8057 timevar_pop (TV_TEMPLATE_INST);
8058 return ret;
8061 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST.
8062 The type of the expression is the unknown_type_node since the
8063 template-id could refer to an explicit or partial specialization. */
8065 tree
8066 lookup_template_variable (tree templ, tree arglist)
8068 tree type = unknown_type_node;
8069 tsubst_flags_t complain = tf_warning_or_error;
8070 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (templ));
8071 arglist = coerce_template_parms (parms, arglist, templ, complain,
8072 /*req_all*/true, /*use_default*/true);
8073 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8077 struct pair_fn_data
8079 tree_fn_t fn;
8080 void *data;
8081 /* True when we should also visit template parameters that occur in
8082 non-deduced contexts. */
8083 bool include_nondeduced_p;
8084 hash_set<tree> *visited;
8087 /* Called from for_each_template_parm via walk_tree. */
8089 static tree
8090 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8092 tree t = *tp;
8093 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8094 tree_fn_t fn = pfd->fn;
8095 void *data = pfd->data;
8097 if (TYPE_P (t)
8098 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
8099 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
8100 pfd->include_nondeduced_p))
8101 return error_mark_node;
8103 switch (TREE_CODE (t))
8105 case RECORD_TYPE:
8106 if (TYPE_PTRMEMFUNC_P (t))
8107 break;
8108 /* Fall through. */
8110 case UNION_TYPE:
8111 case ENUMERAL_TYPE:
8112 if (!TYPE_TEMPLATE_INFO (t))
8113 *walk_subtrees = 0;
8114 else if (for_each_template_parm (TYPE_TI_ARGS (t),
8115 fn, data, pfd->visited,
8116 pfd->include_nondeduced_p))
8117 return error_mark_node;
8118 break;
8120 case INTEGER_TYPE:
8121 if (for_each_template_parm (TYPE_MIN_VALUE (t),
8122 fn, data, pfd->visited,
8123 pfd->include_nondeduced_p)
8124 || for_each_template_parm (TYPE_MAX_VALUE (t),
8125 fn, data, pfd->visited,
8126 pfd->include_nondeduced_p))
8127 return error_mark_node;
8128 break;
8130 case METHOD_TYPE:
8131 /* Since we're not going to walk subtrees, we have to do this
8132 explicitly here. */
8133 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
8134 pfd->visited, pfd->include_nondeduced_p))
8135 return error_mark_node;
8136 /* Fall through. */
8138 case FUNCTION_TYPE:
8139 /* Check the return type. */
8140 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8141 pfd->include_nondeduced_p))
8142 return error_mark_node;
8144 /* Check the parameter types. Since default arguments are not
8145 instantiated until they are needed, the TYPE_ARG_TYPES may
8146 contain expressions that involve template parameters. But,
8147 no-one should be looking at them yet. And, once they're
8148 instantiated, they don't contain template parameters, so
8149 there's no point in looking at them then, either. */
8151 tree parm;
8153 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8154 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
8155 pfd->visited, pfd->include_nondeduced_p))
8156 return error_mark_node;
8158 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8159 want walk_tree walking into them itself. */
8160 *walk_subtrees = 0;
8162 break;
8164 case TYPEOF_TYPE:
8165 case UNDERLYING_TYPE:
8166 if (pfd->include_nondeduced_p
8167 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
8168 pfd->visited,
8169 pfd->include_nondeduced_p))
8170 return error_mark_node;
8171 break;
8173 case FUNCTION_DECL:
8174 case VAR_DECL:
8175 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
8176 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
8177 pfd->visited, pfd->include_nondeduced_p))
8178 return error_mark_node;
8179 /* Fall through. */
8181 case PARM_DECL:
8182 case CONST_DECL:
8183 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
8184 && for_each_template_parm (DECL_INITIAL (t), fn, data,
8185 pfd->visited, pfd->include_nondeduced_p))
8186 return error_mark_node;
8187 if (DECL_CONTEXT (t)
8188 && pfd->include_nondeduced_p
8189 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
8190 pfd->visited, pfd->include_nondeduced_p))
8191 return error_mark_node;
8192 break;
8194 case BOUND_TEMPLATE_TEMPLATE_PARM:
8195 /* Record template parameters such as `T' inside `TT<T>'. */
8196 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
8197 pfd->include_nondeduced_p))
8198 return error_mark_node;
8199 /* Fall through. */
8201 case TEMPLATE_TEMPLATE_PARM:
8202 case TEMPLATE_TYPE_PARM:
8203 case TEMPLATE_PARM_INDEX:
8204 if (fn && (*fn)(t, data))
8205 return error_mark_node;
8206 else if (!fn)
8207 return error_mark_node;
8208 break;
8210 case TEMPLATE_DECL:
8211 /* A template template parameter is encountered. */
8212 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
8213 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8214 pfd->include_nondeduced_p))
8215 return error_mark_node;
8217 /* Already substituted template template parameter */
8218 *walk_subtrees = 0;
8219 break;
8221 case TYPENAME_TYPE:
8222 if (!fn
8223 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
8224 data, pfd->visited,
8225 pfd->include_nondeduced_p))
8226 return error_mark_node;
8227 break;
8229 case CONSTRUCTOR:
8230 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8231 && pfd->include_nondeduced_p
8232 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
8233 (TREE_TYPE (t)), fn, data,
8234 pfd->visited, pfd->include_nondeduced_p))
8235 return error_mark_node;
8236 break;
8238 case INDIRECT_REF:
8239 case COMPONENT_REF:
8240 /* If there's no type, then this thing must be some expression
8241 involving template parameters. */
8242 if (!fn && !TREE_TYPE (t))
8243 return error_mark_node;
8244 break;
8246 case MODOP_EXPR:
8247 case CAST_EXPR:
8248 case IMPLICIT_CONV_EXPR:
8249 case REINTERPRET_CAST_EXPR:
8250 case CONST_CAST_EXPR:
8251 case STATIC_CAST_EXPR:
8252 case DYNAMIC_CAST_EXPR:
8253 case ARROW_EXPR:
8254 case DOTSTAR_EXPR:
8255 case TYPEID_EXPR:
8256 case PSEUDO_DTOR_EXPR:
8257 if (!fn)
8258 return error_mark_node;
8259 break;
8261 default:
8262 break;
8265 /* We didn't find any template parameters we liked. */
8266 return NULL_TREE;
8269 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8270 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8271 call FN with the parameter and the DATA.
8272 If FN returns nonzero, the iteration is terminated, and
8273 for_each_template_parm returns 1. Otherwise, the iteration
8274 continues. If FN never returns a nonzero value, the value
8275 returned by for_each_template_parm is 0. If FN is NULL, it is
8276 considered to be the function which always returns 1.
8278 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8279 parameters that occur in non-deduced contexts. When false, only
8280 visits those template parameters that can be deduced. */
8282 static int
8283 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8284 hash_set<tree> *visited,
8285 bool include_nondeduced_p)
8287 struct pair_fn_data pfd;
8288 int result;
8290 /* Set up. */
8291 pfd.fn = fn;
8292 pfd.data = data;
8293 pfd.include_nondeduced_p = include_nondeduced_p;
8295 /* Walk the tree. (Conceptually, we would like to walk without
8296 duplicates, but for_each_template_parm_r recursively calls
8297 for_each_template_parm, so we would need to reorganize a fair
8298 bit to use walk_tree_without_duplicates, so we keep our own
8299 visited list.) */
8300 if (visited)
8301 pfd.visited = visited;
8302 else
8303 pfd.visited = new hash_set<tree>;
8304 result = cp_walk_tree (&t,
8305 for_each_template_parm_r,
8306 &pfd,
8307 pfd.visited) != NULL_TREE;
8309 /* Clean up. */
8310 if (!visited)
8312 delete pfd.visited;
8313 pfd.visited = 0;
8316 return result;
8319 /* Returns true if T depends on any template parameter. */
8322 uses_template_parms (tree t)
8324 if (t == NULL_TREE)
8325 return false;
8327 bool dependent_p;
8328 int saved_processing_template_decl;
8330 saved_processing_template_decl = processing_template_decl;
8331 if (!saved_processing_template_decl)
8332 processing_template_decl = 1;
8333 if (TYPE_P (t))
8334 dependent_p = dependent_type_p (t);
8335 else if (TREE_CODE (t) == TREE_VEC)
8336 dependent_p = any_dependent_template_arguments_p (t);
8337 else if (TREE_CODE (t) == TREE_LIST)
8338 dependent_p = (uses_template_parms (TREE_VALUE (t))
8339 || uses_template_parms (TREE_CHAIN (t)));
8340 else if (TREE_CODE (t) == TYPE_DECL)
8341 dependent_p = dependent_type_p (TREE_TYPE (t));
8342 else if (DECL_P (t)
8343 || EXPR_P (t)
8344 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8345 || TREE_CODE (t) == OVERLOAD
8346 || BASELINK_P (t)
8347 || identifier_p (t)
8348 || TREE_CODE (t) == TRAIT_EXPR
8349 || TREE_CODE (t) == CONSTRUCTOR
8350 || CONSTANT_CLASS_P (t))
8351 dependent_p = (type_dependent_expression_p (t)
8352 || value_dependent_expression_p (t));
8353 else
8355 gcc_assert (t == error_mark_node);
8356 dependent_p = false;
8359 processing_template_decl = saved_processing_template_decl;
8361 return dependent_p;
8364 /* Returns true iff current_function_decl is an incompletely instantiated
8365 template. Useful instead of processing_template_decl because the latter
8366 is set to 0 during instantiate_non_dependent_expr. */
8368 bool
8369 in_template_function (void)
8371 tree fn = current_function_decl;
8372 bool ret;
8373 ++processing_template_decl;
8374 ret = (fn && DECL_LANG_SPECIFIC (fn)
8375 && DECL_TEMPLATE_INFO (fn)
8376 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8377 --processing_template_decl;
8378 return ret;
8381 /* Returns true if T depends on any template parameter with level LEVEL. */
8384 uses_template_parms_level (tree t, int level)
8386 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8387 /*include_nondeduced_p=*/true);
8390 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8391 ill-formed translation unit, i.e. a variable or function that isn't
8392 usable in a constant expression. */
8394 static inline bool
8395 neglectable_inst_p (tree d)
8397 return (DECL_P (d)
8398 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8399 : decl_maybe_constant_var_p (d)));
8402 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8403 neglectable and instantiated from within an erroneous instantiation. */
8405 static bool
8406 limit_bad_template_recursion (tree decl)
8408 struct tinst_level *lev = current_tinst_level;
8409 int errs = errorcount + sorrycount;
8410 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8411 return false;
8413 for (; lev; lev = lev->next)
8414 if (neglectable_inst_p (lev->decl))
8415 break;
8417 return (lev && errs > lev->errors);
8420 static int tinst_depth;
8421 extern int max_tinst_depth;
8422 int depth_reached;
8424 static GTY(()) struct tinst_level *last_error_tinst_level;
8426 /* We're starting to instantiate D; record the template instantiation context
8427 for diagnostics and to restore it later. */
8429 bool
8430 push_tinst_level (tree d)
8432 return push_tinst_level_loc (d, input_location);
8435 /* We're starting to instantiate D; record the template instantiation context
8436 at LOC for diagnostics and to restore it later. */
8438 bool
8439 push_tinst_level_loc (tree d, location_t loc)
8441 struct tinst_level *new_level;
8443 if (tinst_depth >= max_tinst_depth)
8445 fatal_error ("template instantiation depth exceeds maximum of %d"
8446 " (use -ftemplate-depth= to increase the maximum)",
8447 max_tinst_depth);
8448 return false;
8451 /* If the current instantiation caused problems, don't let it instantiate
8452 anything else. Do allow deduction substitution and decls usable in
8453 constant expressions. */
8454 if (limit_bad_template_recursion (d))
8455 return false;
8457 new_level = ggc_alloc<tinst_level> ();
8458 new_level->decl = d;
8459 new_level->locus = loc;
8460 new_level->errors = errorcount+sorrycount;
8461 new_level->in_system_header_p = in_system_header_at (input_location);
8462 new_level->next = current_tinst_level;
8463 current_tinst_level = new_level;
8465 ++tinst_depth;
8466 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
8467 depth_reached = tinst_depth;
8469 return true;
8472 /* We're done instantiating this template; return to the instantiation
8473 context. */
8475 void
8476 pop_tinst_level (void)
8478 /* Restore the filename and line number stashed away when we started
8479 this instantiation. */
8480 input_location = current_tinst_level->locus;
8481 current_tinst_level = current_tinst_level->next;
8482 --tinst_depth;
8485 /* We're instantiating a deferred template; restore the template
8486 instantiation context in which the instantiation was requested, which
8487 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
8489 static tree
8490 reopen_tinst_level (struct tinst_level *level)
8492 struct tinst_level *t;
8494 tinst_depth = 0;
8495 for (t = level; t; t = t->next)
8496 ++tinst_depth;
8498 current_tinst_level = level;
8499 pop_tinst_level ();
8500 if (current_tinst_level)
8501 current_tinst_level->errors = errorcount+sorrycount;
8502 return level->decl;
8505 /* Returns the TINST_LEVEL which gives the original instantiation
8506 context. */
8508 struct tinst_level *
8509 outermost_tinst_level (void)
8511 struct tinst_level *level = current_tinst_level;
8512 if (level)
8513 while (level->next)
8514 level = level->next;
8515 return level;
8518 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
8519 vector of template arguments, as for tsubst.
8521 Returns an appropriate tsubst'd friend declaration. */
8523 static tree
8524 tsubst_friend_function (tree decl, tree args)
8526 tree new_friend;
8528 if (TREE_CODE (decl) == FUNCTION_DECL
8529 && DECL_TEMPLATE_INSTANTIATION (decl)
8530 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8531 /* This was a friend declared with an explicit template
8532 argument list, e.g.:
8534 friend void f<>(T);
8536 to indicate that f was a template instantiation, not a new
8537 function declaration. Now, we have to figure out what
8538 instantiation of what template. */
8540 tree template_id, arglist, fns;
8541 tree new_args;
8542 tree tmpl;
8543 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8545 /* Friend functions are looked up in the containing namespace scope.
8546 We must enter that scope, to avoid finding member functions of the
8547 current class with same name. */
8548 push_nested_namespace (ns);
8549 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8550 tf_warning_or_error, NULL_TREE,
8551 /*integral_constant_expression_p=*/false);
8552 pop_nested_namespace (ns);
8553 arglist = tsubst (DECL_TI_ARGS (decl), args,
8554 tf_warning_or_error, NULL_TREE);
8555 template_id = lookup_template_function (fns, arglist);
8557 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8558 tmpl = determine_specialization (template_id, new_friend,
8559 &new_args,
8560 /*need_member_template=*/0,
8561 TREE_VEC_LENGTH (args),
8562 tsk_none);
8563 return instantiate_template (tmpl, new_args, tf_error);
8566 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8568 /* The NEW_FRIEND will look like an instantiation, to the
8569 compiler, but is not an instantiation from the point of view of
8570 the language. For example, we might have had:
8572 template <class T> struct S {
8573 template <class U> friend void f(T, U);
8576 Then, in S<int>, template <class U> void f(int, U) is not an
8577 instantiation of anything. */
8578 if (new_friend == error_mark_node)
8579 return error_mark_node;
8581 DECL_USE_TEMPLATE (new_friend) = 0;
8582 if (TREE_CODE (decl) == TEMPLATE_DECL)
8584 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8585 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8586 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8589 /* The mangled name for the NEW_FRIEND is incorrect. The function
8590 is not a template instantiation and should not be mangled like
8591 one. Therefore, we forget the mangling here; we'll recompute it
8592 later if we need it. */
8593 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8595 SET_DECL_RTL (new_friend, NULL);
8596 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8599 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8601 tree old_decl;
8602 tree new_friend_template_info;
8603 tree new_friend_result_template_info;
8604 tree ns;
8605 int new_friend_is_defn;
8607 /* We must save some information from NEW_FRIEND before calling
8608 duplicate decls since that function will free NEW_FRIEND if
8609 possible. */
8610 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8611 new_friend_is_defn =
8612 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8613 (template_for_substitution (new_friend)))
8614 != NULL_TREE);
8615 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8617 /* This declaration is a `primary' template. */
8618 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8620 new_friend_result_template_info
8621 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8623 else
8624 new_friend_result_template_info = NULL_TREE;
8626 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8627 if (new_friend_is_defn)
8628 DECL_INITIAL (new_friend) = error_mark_node;
8630 /* Inside pushdecl_namespace_level, we will push into the
8631 current namespace. However, the friend function should go
8632 into the namespace of the template. */
8633 ns = decl_namespace_context (new_friend);
8634 push_nested_namespace (ns);
8635 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8636 pop_nested_namespace (ns);
8638 if (old_decl == error_mark_node)
8639 return error_mark_node;
8641 if (old_decl != new_friend)
8643 /* This new friend declaration matched an existing
8644 declaration. For example, given:
8646 template <class T> void f(T);
8647 template <class U> class C {
8648 template <class T> friend void f(T) {}
8651 the friend declaration actually provides the definition
8652 of `f', once C has been instantiated for some type. So,
8653 old_decl will be the out-of-class template declaration,
8654 while new_friend is the in-class definition.
8656 But, if `f' was called before this point, the
8657 instantiation of `f' will have DECL_TI_ARGS corresponding
8658 to `T' but not to `U', references to which might appear
8659 in the definition of `f'. Previously, the most general
8660 template for an instantiation of `f' was the out-of-class
8661 version; now it is the in-class version. Therefore, we
8662 run through all specialization of `f', adding to their
8663 DECL_TI_ARGS appropriately. In particular, they need a
8664 new set of outer arguments, corresponding to the
8665 arguments for this class instantiation.
8667 The same situation can arise with something like this:
8669 friend void f(int);
8670 template <class T> class C {
8671 friend void f(T) {}
8674 when `C<int>' is instantiated. Now, `f(int)' is defined
8675 in the class. */
8677 if (!new_friend_is_defn)
8678 /* On the other hand, if the in-class declaration does
8679 *not* provide a definition, then we don't want to alter
8680 existing definitions. We can just leave everything
8681 alone. */
8683 else
8685 tree new_template = TI_TEMPLATE (new_friend_template_info);
8686 tree new_args = TI_ARGS (new_friend_template_info);
8688 /* Overwrite whatever template info was there before, if
8689 any, with the new template information pertaining to
8690 the declaration. */
8691 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8693 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8695 /* We should have called reregister_specialization in
8696 duplicate_decls. */
8697 gcc_assert (retrieve_specialization (new_template,
8698 new_args, 0)
8699 == old_decl);
8701 /* Instantiate it if the global has already been used. */
8702 if (DECL_ODR_USED (old_decl))
8703 instantiate_decl (old_decl, /*defer_ok=*/true,
8704 /*expl_inst_class_mem_p=*/false);
8706 else
8708 tree t;
8710 /* Indicate that the old function template is a partial
8711 instantiation. */
8712 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8713 = new_friend_result_template_info;
8715 gcc_assert (new_template
8716 == most_general_template (new_template));
8717 gcc_assert (new_template != old_decl);
8719 /* Reassign any specializations already in the hash table
8720 to the new more general template, and add the
8721 additional template args. */
8722 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8723 t != NULL_TREE;
8724 t = TREE_CHAIN (t))
8726 tree spec = TREE_VALUE (t);
8727 spec_entry elt;
8729 elt.tmpl = old_decl;
8730 elt.args = DECL_TI_ARGS (spec);
8731 elt.spec = NULL_TREE;
8733 decl_specializations->remove_elt (&elt);
8735 DECL_TI_ARGS (spec)
8736 = add_outermost_template_args (new_args,
8737 DECL_TI_ARGS (spec));
8739 register_specialization
8740 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8743 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8747 /* The information from NEW_FRIEND has been merged into OLD_DECL
8748 by duplicate_decls. */
8749 new_friend = old_decl;
8752 else
8754 tree context = DECL_CONTEXT (new_friend);
8755 bool dependent_p;
8757 /* In the code
8758 template <class T> class C {
8759 template <class U> friend void C1<U>::f (); // case 1
8760 friend void C2<T>::f (); // case 2
8762 we only need to make sure CONTEXT is a complete type for
8763 case 2. To distinguish between the two cases, we note that
8764 CONTEXT of case 1 remains dependent type after tsubst while
8765 this isn't true for case 2. */
8766 ++processing_template_decl;
8767 dependent_p = dependent_type_p (context);
8768 --processing_template_decl;
8770 if (!dependent_p
8771 && !complete_type_or_else (context, NULL_TREE))
8772 return error_mark_node;
8774 if (COMPLETE_TYPE_P (context))
8776 tree fn = new_friend;
8777 /* do_friend adds the TEMPLATE_DECL for any member friend
8778 template even if it isn't a member template, i.e.
8779 template <class T> friend A<T>::f();
8780 Look through it in that case. */
8781 if (TREE_CODE (fn) == TEMPLATE_DECL
8782 && !PRIMARY_TEMPLATE_P (fn))
8783 fn = DECL_TEMPLATE_RESULT (fn);
8784 /* Check to see that the declaration is really present, and,
8785 possibly obtain an improved declaration. */
8786 fn = check_classfn (context, fn, NULL_TREE);
8788 if (fn)
8789 new_friend = fn;
8793 return new_friend;
8796 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8797 template arguments, as for tsubst.
8799 Returns an appropriate tsubst'd friend type or error_mark_node on
8800 failure. */
8802 static tree
8803 tsubst_friend_class (tree friend_tmpl, tree args)
8805 tree friend_type;
8806 tree tmpl;
8807 tree context;
8809 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8811 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8812 return TREE_TYPE (t);
8815 context = CP_DECL_CONTEXT (friend_tmpl);
8817 if (context != global_namespace)
8819 if (TREE_CODE (context) == NAMESPACE_DECL)
8820 push_nested_namespace (context);
8821 else
8822 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8825 /* Look for a class template declaration. We look for hidden names
8826 because two friend declarations of the same template are the
8827 same. For example, in:
8829 struct A {
8830 template <typename> friend class F;
8832 template <typename> struct B {
8833 template <typename> friend class F;
8836 both F templates are the same. */
8837 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8838 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8840 /* But, if we don't find one, it might be because we're in a
8841 situation like this:
8843 template <class T>
8844 struct S {
8845 template <class U>
8846 friend struct S;
8849 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8850 for `S<int>', not the TEMPLATE_DECL. */
8851 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8853 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8854 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8857 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8859 /* The friend template has already been declared. Just
8860 check to see that the declarations match, and install any new
8861 default parameters. We must tsubst the default parameters,
8862 of course. We only need the innermost template parameters
8863 because that is all that redeclare_class_template will look
8864 at. */
8865 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8866 > TMPL_ARGS_DEPTH (args))
8868 tree parms;
8869 location_t saved_input_location;
8870 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8871 args, tf_warning_or_error);
8873 saved_input_location = input_location;
8874 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8875 redeclare_class_template (TREE_TYPE (tmpl), parms);
8876 input_location = saved_input_location;
8880 friend_type = TREE_TYPE (tmpl);
8882 else
8884 /* The friend template has not already been declared. In this
8885 case, the instantiation of the template class will cause the
8886 injection of this template into the global scope. */
8887 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8888 if (tmpl == error_mark_node)
8889 return error_mark_node;
8891 /* The new TMPL is not an instantiation of anything, so we
8892 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8893 the new type because that is supposed to be the corresponding
8894 template decl, i.e., TMPL. */
8895 DECL_USE_TEMPLATE (tmpl) = 0;
8896 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8897 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8898 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8899 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8901 /* Inject this template into the global scope. */
8902 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8905 if (context != global_namespace)
8907 if (TREE_CODE (context) == NAMESPACE_DECL)
8908 pop_nested_namespace (context);
8909 else
8910 pop_nested_class ();
8913 return friend_type;
8916 /* Returns zero if TYPE cannot be completed later due to circularity.
8917 Otherwise returns one. */
8919 static int
8920 can_complete_type_without_circularity (tree type)
8922 if (type == NULL_TREE || type == error_mark_node)
8923 return 0;
8924 else if (COMPLETE_TYPE_P (type))
8925 return 1;
8926 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8927 return can_complete_type_without_circularity (TREE_TYPE (type));
8928 else if (CLASS_TYPE_P (type)
8929 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8930 return 0;
8931 else
8932 return 1;
8935 static tree tsubst_omp_clauses (tree, bool, tree, tsubst_flags_t, tree);
8937 /* Apply any attributes which had to be deferred until instantiation
8938 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8939 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8941 static void
8942 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8943 tree args, tsubst_flags_t complain, tree in_decl)
8945 tree last_dep = NULL_TREE;
8946 tree t;
8947 tree *p;
8949 for (t = attributes; t; t = TREE_CHAIN (t))
8950 if (ATTR_IS_DEPENDENT (t))
8952 last_dep = t;
8953 attributes = copy_list (attributes);
8954 break;
8957 if (DECL_P (*decl_p))
8959 if (TREE_TYPE (*decl_p) == error_mark_node)
8960 return;
8961 p = &DECL_ATTRIBUTES (*decl_p);
8963 else
8964 p = &TYPE_ATTRIBUTES (*decl_p);
8966 if (last_dep)
8968 tree late_attrs = NULL_TREE;
8969 tree *q = &late_attrs;
8971 for (*p = attributes; *p; )
8973 t = *p;
8974 if (ATTR_IS_DEPENDENT (t))
8976 *p = TREE_CHAIN (t);
8977 TREE_CHAIN (t) = NULL_TREE;
8978 if ((flag_openmp || flag_cilkplus)
8979 && is_attribute_p ("omp declare simd",
8980 get_attribute_name (t))
8981 && TREE_VALUE (t))
8983 tree clauses = TREE_VALUE (TREE_VALUE (t));
8984 clauses = tsubst_omp_clauses (clauses, true, args,
8985 complain, in_decl);
8986 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
8987 clauses = finish_omp_clauses (clauses);
8988 tree parms = DECL_ARGUMENTS (*decl_p);
8989 clauses
8990 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
8991 if (clauses)
8992 TREE_VALUE (TREE_VALUE (t)) = clauses;
8993 else
8994 TREE_VALUE (t) = NULL_TREE;
8996 /* If the first attribute argument is an identifier, don't
8997 pass it through tsubst. Attributes like mode, format,
8998 cleanup and several target specific attributes expect it
8999 unmodified. */
9000 else if (attribute_takes_identifier_p (get_attribute_name (t))
9001 && TREE_VALUE (t))
9003 tree chain
9004 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
9005 in_decl,
9006 /*integral_constant_expression_p=*/false);
9007 if (chain != TREE_CHAIN (TREE_VALUE (t)))
9008 TREE_VALUE (t)
9009 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
9010 chain);
9012 else
9013 TREE_VALUE (t)
9014 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
9015 /*integral_constant_expression_p=*/false);
9016 *q = t;
9017 q = &TREE_CHAIN (t);
9019 else
9020 p = &TREE_CHAIN (t);
9023 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9027 /* Perform (or defer) access check for typedefs that were referenced
9028 from within the template TMPL code.
9029 This is a subroutine of instantiate_decl and instantiate_class_template.
9030 TMPL is the template to consider and TARGS is the list of arguments of
9031 that template. */
9033 static void
9034 perform_typedefs_access_check (tree tmpl, tree targs)
9036 location_t saved_location;
9037 unsigned i;
9038 qualified_typedef_usage_t *iter;
9040 if (!tmpl
9041 || (!CLASS_TYPE_P (tmpl)
9042 && TREE_CODE (tmpl) != FUNCTION_DECL))
9043 return;
9045 saved_location = input_location;
9046 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9048 tree type_decl = iter->typedef_decl;
9049 tree type_scope = iter->context;
9051 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9052 continue;
9054 if (uses_template_parms (type_decl))
9055 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9056 if (uses_template_parms (type_scope))
9057 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9059 /* Make access check error messages point to the location
9060 of the use of the typedef. */
9061 input_location = iter->locus;
9062 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9063 type_decl, type_decl,
9064 tf_warning_or_error);
9066 input_location = saved_location;
9069 static tree
9070 instantiate_class_template_1 (tree type)
9072 tree templ, args, pattern, t, member;
9073 tree typedecl;
9074 tree pbinfo;
9075 tree base_list;
9076 unsigned int saved_maximum_field_alignment;
9077 tree fn_context;
9079 if (type == error_mark_node)
9080 return error_mark_node;
9082 if (COMPLETE_OR_OPEN_TYPE_P (type)
9083 || uses_template_parms (type))
9084 return type;
9086 /* Figure out which template is being instantiated. */
9087 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9088 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9090 /* Determine what specialization of the original template to
9091 instantiate. */
9092 t = most_specialized_partial_spec (type, tf_warning_or_error);
9093 if (t == error_mark_node)
9095 TYPE_BEING_DEFINED (type) = 1;
9096 return error_mark_node;
9098 else if (t)
9100 /* This TYPE is actually an instantiation of a partial
9101 specialization. We replace the innermost set of ARGS with
9102 the arguments appropriate for substitution. For example,
9103 given:
9105 template <class T> struct S {};
9106 template <class T> struct S<T*> {};
9108 and supposing that we are instantiating S<int*>, ARGS will
9109 presently be {int*} -- but we need {int}. */
9110 pattern = TREE_TYPE (t);
9111 args = TREE_PURPOSE (t);
9113 else
9115 pattern = TREE_TYPE (templ);
9116 args = CLASSTYPE_TI_ARGS (type);
9119 /* If the template we're instantiating is incomplete, then clearly
9120 there's nothing we can do. */
9121 if (!COMPLETE_TYPE_P (pattern))
9122 return type;
9124 /* If we've recursively instantiated too many templates, stop. */
9125 if (! push_tinst_level (type))
9126 return type;
9128 /* Now we're really doing the instantiation. Mark the type as in
9129 the process of being defined. */
9130 TYPE_BEING_DEFINED (type) = 1;
9132 /* We may be in the middle of deferred access check. Disable
9133 it now. */
9134 push_deferring_access_checks (dk_no_deferred);
9136 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9137 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9138 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9139 fn_context = error_mark_node;
9140 if (!fn_context)
9141 push_to_top_level ();
9142 /* Use #pragma pack from the template context. */
9143 saved_maximum_field_alignment = maximum_field_alignment;
9144 maximum_field_alignment = TYPE_PRECISION (pattern);
9146 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9148 /* Set the input location to the most specialized template definition.
9149 This is needed if tsubsting causes an error. */
9150 typedecl = TYPE_MAIN_DECL (pattern);
9151 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9152 DECL_SOURCE_LOCATION (typedecl);
9154 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9155 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9156 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9157 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9158 if (ANON_AGGR_TYPE_P (pattern))
9159 SET_ANON_AGGR_TYPE_P (type);
9160 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9162 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9163 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9164 /* Adjust visibility for template arguments. */
9165 determine_visibility (TYPE_MAIN_DECL (type));
9167 if (CLASS_TYPE_P (type))
9168 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9170 pbinfo = TYPE_BINFO (pattern);
9172 /* We should never instantiate a nested class before its enclosing
9173 class; we need to look up the nested class by name before we can
9174 instantiate it, and that lookup should instantiate the enclosing
9175 class. */
9176 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9177 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9179 base_list = NULL_TREE;
9180 if (BINFO_N_BASE_BINFOS (pbinfo))
9182 tree pbase_binfo;
9183 tree pushed_scope;
9184 int i;
9186 /* We must enter the scope containing the type, as that is where
9187 the accessibility of types named in dependent bases are
9188 looked up from. */
9189 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9191 /* Substitute into each of the bases to determine the actual
9192 basetypes. */
9193 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9195 tree base;
9196 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9197 tree expanded_bases = NULL_TREE;
9198 int idx, len = 1;
9200 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9202 expanded_bases =
9203 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9204 args, tf_error, NULL_TREE);
9205 if (expanded_bases == error_mark_node)
9206 continue;
9208 len = TREE_VEC_LENGTH (expanded_bases);
9211 for (idx = 0; idx < len; idx++)
9213 if (expanded_bases)
9214 /* Extract the already-expanded base class. */
9215 base = TREE_VEC_ELT (expanded_bases, idx);
9216 else
9217 /* Substitute to figure out the base class. */
9218 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9219 NULL_TREE);
9221 if (base == error_mark_node)
9222 continue;
9224 base_list = tree_cons (access, base, base_list);
9225 if (BINFO_VIRTUAL_P (pbase_binfo))
9226 TREE_TYPE (base_list) = integer_type_node;
9230 /* The list is now in reverse order; correct that. */
9231 base_list = nreverse (base_list);
9233 if (pushed_scope)
9234 pop_scope (pushed_scope);
9236 /* Now call xref_basetypes to set up all the base-class
9237 information. */
9238 xref_basetypes (type, base_list);
9240 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9241 (int) ATTR_FLAG_TYPE_IN_PLACE,
9242 args, tf_error, NULL_TREE);
9243 fixup_attribute_variants (type);
9245 /* Now that our base classes are set up, enter the scope of the
9246 class, so that name lookups into base classes, etc. will work
9247 correctly. This is precisely analogous to what we do in
9248 begin_class_definition when defining an ordinary non-template
9249 class, except we also need to push the enclosing classes. */
9250 push_nested_class (type);
9252 /* Now members are processed in the order of declaration. */
9253 for (member = CLASSTYPE_DECL_LIST (pattern);
9254 member; member = TREE_CHAIN (member))
9256 tree t = TREE_VALUE (member);
9258 if (TREE_PURPOSE (member))
9260 if (TYPE_P (t))
9262 /* Build new CLASSTYPE_NESTED_UTDS. */
9264 tree newtag;
9265 bool class_template_p;
9267 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9268 && TYPE_LANG_SPECIFIC (t)
9269 && CLASSTYPE_IS_TEMPLATE (t));
9270 /* If the member is a class template, then -- even after
9271 substitution -- there may be dependent types in the
9272 template argument list for the class. We increment
9273 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9274 that function will assume that no types are dependent
9275 when outside of a template. */
9276 if (class_template_p)
9277 ++processing_template_decl;
9278 newtag = tsubst (t, args, tf_error, NULL_TREE);
9279 if (class_template_p)
9280 --processing_template_decl;
9281 if (newtag == error_mark_node)
9282 continue;
9284 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9286 tree name = TYPE_IDENTIFIER (t);
9288 if (class_template_p)
9289 /* Unfortunately, lookup_template_class sets
9290 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9291 instantiation (i.e., for the type of a member
9292 template class nested within a template class.)
9293 This behavior is required for
9294 maybe_process_partial_specialization to work
9295 correctly, but is not accurate in this case;
9296 the TAG is not an instantiation of anything.
9297 (The corresponding TEMPLATE_DECL is an
9298 instantiation, but the TYPE is not.) */
9299 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9301 /* Now, we call pushtag to put this NEWTAG into the scope of
9302 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9303 pushtag calling push_template_decl. We don't have to do
9304 this for enums because it will already have been done in
9305 tsubst_enum. */
9306 if (name)
9307 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9308 pushtag (name, newtag, /*tag_scope=*/ts_current);
9311 else if (DECL_DECLARES_FUNCTION_P (t))
9313 /* Build new TYPE_METHODS. */
9314 tree r;
9316 if (TREE_CODE (t) == TEMPLATE_DECL)
9317 ++processing_template_decl;
9318 r = tsubst (t, args, tf_error, NULL_TREE);
9319 if (TREE_CODE (t) == TEMPLATE_DECL)
9320 --processing_template_decl;
9321 set_current_access_from_decl (r);
9322 finish_member_declaration (r);
9323 /* Instantiate members marked with attribute used. */
9324 if (r != error_mark_node && DECL_PRESERVE_P (r))
9325 mark_used (r);
9326 if (TREE_CODE (r) == FUNCTION_DECL
9327 && DECL_OMP_DECLARE_REDUCTION_P (r))
9328 cp_check_omp_declare_reduction (r);
9330 else if (DECL_CLASS_TEMPLATE_P (t)
9331 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9332 /* A closure type for a lambda in a default argument for a
9333 member template. Ignore it; it will be instantiated with
9334 the default argument. */;
9335 else
9337 /* Build new TYPE_FIELDS. */
9338 if (TREE_CODE (t) == STATIC_ASSERT)
9340 tree condition;
9342 ++c_inhibit_evaluation_warnings;
9343 condition =
9344 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9345 tf_warning_or_error, NULL_TREE,
9346 /*integral_constant_expression_p=*/true);
9347 --c_inhibit_evaluation_warnings;
9349 finish_static_assert (condition,
9350 STATIC_ASSERT_MESSAGE (t),
9351 STATIC_ASSERT_SOURCE_LOCATION (t),
9352 /*member_p=*/true);
9354 else if (TREE_CODE (t) != CONST_DECL)
9356 tree r;
9357 tree vec = NULL_TREE;
9358 int len = 1;
9360 /* The file and line for this declaration, to
9361 assist in error message reporting. Since we
9362 called push_tinst_level above, we don't need to
9363 restore these. */
9364 input_location = DECL_SOURCE_LOCATION (t);
9366 if (TREE_CODE (t) == TEMPLATE_DECL)
9367 ++processing_template_decl;
9368 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9369 if (TREE_CODE (t) == TEMPLATE_DECL)
9370 --processing_template_decl;
9372 if (TREE_CODE (r) == TREE_VEC)
9374 /* A capture pack became multiple fields. */
9375 vec = r;
9376 len = TREE_VEC_LENGTH (vec);
9379 for (int i = 0; i < len; ++i)
9381 if (vec)
9382 r = TREE_VEC_ELT (vec, i);
9383 if (VAR_P (r))
9385 /* In [temp.inst]:
9387 [t]he initialization (and any associated
9388 side-effects) of a static data member does
9389 not occur unless the static data member is
9390 itself used in a way that requires the
9391 definition of the static data member to
9392 exist.
9394 Therefore, we do not substitute into the
9395 initialized for the static data member here. */
9396 finish_static_data_member_decl
9398 /*init=*/NULL_TREE,
9399 /*init_const_expr_p=*/false,
9400 /*asmspec_tree=*/NULL_TREE,
9401 /*flags=*/0);
9402 /* Instantiate members marked with attribute used. */
9403 if (r != error_mark_node && DECL_PRESERVE_P (r))
9404 mark_used (r);
9406 else if (TREE_CODE (r) == FIELD_DECL)
9408 /* Determine whether R has a valid type and can be
9409 completed later. If R is invalid, then its type
9410 is replaced by error_mark_node. */
9411 tree rtype = TREE_TYPE (r);
9412 if (can_complete_type_without_circularity (rtype))
9413 complete_type (rtype);
9415 if (!COMPLETE_TYPE_P (rtype))
9417 cxx_incomplete_type_error (r, rtype);
9418 TREE_TYPE (r) = error_mark_node;
9422 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
9423 such a thing will already have been added to the field
9424 list by tsubst_enum in finish_member_declaration in the
9425 CLASSTYPE_NESTED_UTDS case above. */
9426 if (!(TREE_CODE (r) == TYPE_DECL
9427 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
9428 && DECL_ARTIFICIAL (r)))
9430 set_current_access_from_decl (r);
9431 finish_member_declaration (r);
9437 else
9439 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
9440 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9442 /* Build new CLASSTYPE_FRIEND_CLASSES. */
9444 tree friend_type = t;
9445 bool adjust_processing_template_decl = false;
9447 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9449 /* template <class T> friend class C; */
9450 friend_type = tsubst_friend_class (friend_type, args);
9451 adjust_processing_template_decl = true;
9453 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
9455 /* template <class T> friend class C::D; */
9456 friend_type = tsubst (friend_type, args,
9457 tf_warning_or_error, NULL_TREE);
9458 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9459 friend_type = TREE_TYPE (friend_type);
9460 adjust_processing_template_decl = true;
9462 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
9463 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
9465 /* This could be either
9467 friend class T::C;
9469 when dependent_type_p is false or
9471 template <class U> friend class T::C;
9473 otherwise. */
9474 friend_type = tsubst (friend_type, args,
9475 tf_warning_or_error, NULL_TREE);
9476 /* Bump processing_template_decl for correct
9477 dependent_type_p calculation. */
9478 ++processing_template_decl;
9479 if (dependent_type_p (friend_type))
9480 adjust_processing_template_decl = true;
9481 --processing_template_decl;
9483 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
9484 && hidden_name_p (TYPE_NAME (friend_type)))
9486 /* friend class C;
9488 where C hasn't been declared yet. Let's lookup name
9489 from namespace scope directly, bypassing any name that
9490 come from dependent base class. */
9491 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
9493 /* The call to xref_tag_from_type does injection for friend
9494 classes. */
9495 push_nested_namespace (ns);
9496 friend_type =
9497 xref_tag_from_type (friend_type, NULL_TREE,
9498 /*tag_scope=*/ts_current);
9499 pop_nested_namespace (ns);
9501 else if (uses_template_parms (friend_type))
9502 /* friend class C<T>; */
9503 friend_type = tsubst (friend_type, args,
9504 tf_warning_or_error, NULL_TREE);
9505 /* Otherwise it's
9507 friend class C;
9509 where C is already declared or
9511 friend class C<int>;
9513 We don't have to do anything in these cases. */
9515 if (adjust_processing_template_decl)
9516 /* Trick make_friend_class into realizing that the friend
9517 we're adding is a template, not an ordinary class. It's
9518 important that we use make_friend_class since it will
9519 perform some error-checking and output cross-reference
9520 information. */
9521 ++processing_template_decl;
9523 if (friend_type != error_mark_node)
9524 make_friend_class (type, friend_type, /*complain=*/false);
9526 if (adjust_processing_template_decl)
9527 --processing_template_decl;
9529 else
9531 /* Build new DECL_FRIENDLIST. */
9532 tree r;
9534 /* The file and line for this declaration, to
9535 assist in error message reporting. Since we
9536 called push_tinst_level above, we don't need to
9537 restore these. */
9538 input_location = DECL_SOURCE_LOCATION (t);
9540 if (TREE_CODE (t) == TEMPLATE_DECL)
9542 ++processing_template_decl;
9543 push_deferring_access_checks (dk_no_check);
9546 r = tsubst_friend_function (t, args);
9547 add_friend (type, r, /*complain=*/false);
9548 if (TREE_CODE (t) == TEMPLATE_DECL)
9550 pop_deferring_access_checks ();
9551 --processing_template_decl;
9557 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
9559 tree decl = lambda_function (type);
9560 if (decl)
9562 if (!DECL_TEMPLATE_INFO (decl)
9563 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
9564 instantiate_decl (decl, false, false);
9566 /* We need to instantiate the capture list from the template
9567 after we've instantiated the closure members, but before we
9568 consider adding the conversion op. Also keep any captures
9569 that may have been added during instantiation of the op(). */
9570 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
9571 tree tmpl_cap
9572 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
9573 args, tf_warning_or_error, NULL_TREE,
9574 false, false);
9576 LAMBDA_EXPR_CAPTURE_LIST (expr)
9577 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
9579 maybe_add_lambda_conv_op (type);
9581 else
9582 gcc_assert (errorcount);
9585 /* Set the file and line number information to whatever is given for
9586 the class itself. This puts error messages involving generated
9587 implicit functions at a predictable point, and the same point
9588 that would be used for non-template classes. */
9589 input_location = DECL_SOURCE_LOCATION (typedecl);
9591 unreverse_member_declarations (type);
9592 finish_struct_1 (type);
9593 TYPE_BEING_DEFINED (type) = 0;
9595 /* We don't instantiate default arguments for member functions. 14.7.1:
9597 The implicit instantiation of a class template specialization causes
9598 the implicit instantiation of the declarations, but not of the
9599 definitions or default arguments, of the class member functions,
9600 member classes, static data members and member templates.... */
9602 /* Some typedefs referenced from within the template code need to be access
9603 checked at template instantiation time, i.e now. These types were
9604 added to the template at parsing time. Let's get those and perform
9605 the access checks then. */
9606 perform_typedefs_access_check (pattern, args);
9607 perform_deferred_access_checks (tf_warning_or_error);
9608 pop_nested_class ();
9609 maximum_field_alignment = saved_maximum_field_alignment;
9610 if (!fn_context)
9611 pop_from_top_level ();
9612 pop_deferring_access_checks ();
9613 pop_tinst_level ();
9615 /* The vtable for a template class can be emitted in any translation
9616 unit in which the class is instantiated. When there is no key
9617 method, however, finish_struct_1 will already have added TYPE to
9618 the keyed_classes list. */
9619 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9620 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9622 return type;
9625 /* Wrapper for instantiate_class_template_1. */
9627 tree
9628 instantiate_class_template (tree type)
9630 tree ret;
9631 timevar_push (TV_TEMPLATE_INST);
9632 ret = instantiate_class_template_1 (type);
9633 timevar_pop (TV_TEMPLATE_INST);
9634 return ret;
9637 static tree
9638 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9640 tree r;
9642 if (!t)
9643 r = t;
9644 else if (TYPE_P (t))
9645 r = tsubst (t, args, complain, in_decl);
9646 else
9648 if (!(complain & tf_warning))
9649 ++c_inhibit_evaluation_warnings;
9650 r = tsubst_expr (t, args, complain, in_decl,
9651 /*integral_constant_expression_p=*/true);
9652 if (!(complain & tf_warning))
9653 --c_inhibit_evaluation_warnings;
9655 return r;
9658 /* Given a function parameter pack TMPL_PARM and some function parameters
9659 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9660 and set *SPEC_P to point at the next point in the list. */
9662 static tree
9663 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9665 /* Collect all of the extra "packed" parameters into an
9666 argument pack. */
9667 tree parmvec;
9668 tree parmtypevec;
9669 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9670 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9671 tree spec_parm = *spec_p;
9672 int i, len;
9674 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9675 if (tmpl_parm
9676 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9677 break;
9679 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9680 parmvec = make_tree_vec (len);
9681 parmtypevec = make_tree_vec (len);
9682 spec_parm = *spec_p;
9683 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9685 TREE_VEC_ELT (parmvec, i) = spec_parm;
9686 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9689 /* Build the argument packs. */
9690 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9691 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9692 TREE_TYPE (argpack) = argtypepack;
9693 *spec_p = spec_parm;
9695 return argpack;
9698 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9699 NONTYPE_ARGUMENT_PACK. */
9701 static tree
9702 make_fnparm_pack (tree spec_parm)
9704 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9707 /* Return true iff the Ith element of the argument pack ARG_PACK is a
9708 pack expansion. */
9710 static bool
9711 argument_pack_element_is_expansion_p (tree arg_pack, int i)
9713 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
9714 if (i >= TREE_VEC_LENGTH (vec))
9715 return false;
9716 return PACK_EXPANSION_P (TREE_VEC_ELT (vec, i));
9720 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
9722 static tree
9723 make_argument_pack_select (tree arg_pack, unsigned index)
9725 tree aps = make_node (ARGUMENT_PACK_SELECT);
9727 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
9728 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9730 return aps;
9733 /* This is a subroutine of tsubst_pack_expansion.
9735 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
9736 mechanism to store the (non complete list of) arguments of the
9737 substitution and return a non substituted pack expansion, in order
9738 to wait for when we have enough arguments to really perform the
9739 substitution. */
9741 static bool
9742 use_pack_expansion_extra_args_p (tree parm_packs,
9743 int arg_pack_len,
9744 bool has_empty_arg)
9746 /* If one pack has an expansion and another pack has a normal
9747 argument or if one pack has an empty argument and an another
9748 one hasn't then tsubst_pack_expansion cannot perform the
9749 substitution and need to fall back on the
9750 PACK_EXPANSION_EXTRA mechanism. */
9751 if (parm_packs == NULL_TREE)
9752 return false;
9753 else if (has_empty_arg)
9754 return true;
9756 bool has_expansion_arg = false;
9757 for (int i = 0 ; i < arg_pack_len; ++i)
9759 bool has_non_expansion_arg = false;
9760 for (tree parm_pack = parm_packs;
9761 parm_pack;
9762 parm_pack = TREE_CHAIN (parm_pack))
9764 tree arg = TREE_VALUE (parm_pack);
9766 if (argument_pack_element_is_expansion_p (arg, i))
9767 has_expansion_arg = true;
9768 else
9769 has_non_expansion_arg = true;
9772 if (has_expansion_arg && has_non_expansion_arg)
9773 return true;
9775 return false;
9778 /* [temp.variadic]/6 says that:
9780 The instantiation of a pack expansion [...]
9781 produces a list E1,E2, ..., En, where N is the number of elements
9782 in the pack expansion parameters.
9784 This subroutine of tsubst_pack_expansion produces one of these Ei.
9786 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
9787 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
9788 PATTERN, and each TREE_VALUE is its corresponding argument pack.
9789 INDEX is the index 'i' of the element Ei to produce. ARGS,
9790 COMPLAIN, and IN_DECL are the same parameters as for the
9791 tsubst_pack_expansion function.
9793 The function returns the resulting Ei upon successful completion,
9794 or error_mark_node.
9796 Note that this function possibly modifies the ARGS parameter, so
9797 it's the responsibility of the caller to restore it. */
9799 static tree
9800 gen_elem_of_pack_expansion_instantiation (tree pattern,
9801 tree parm_packs,
9802 unsigned index,
9803 tree args /* This parm gets
9804 modified. */,
9805 tsubst_flags_t complain,
9806 tree in_decl)
9808 tree t;
9809 bool ith_elem_is_expansion = false;
9811 /* For each parameter pack, change the substitution of the parameter
9812 pack to the ith argument in its argument pack, then expand the
9813 pattern. */
9814 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
9816 tree parm = TREE_PURPOSE (pack);
9817 tree arg_pack = TREE_VALUE (pack);
9818 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
9820 ith_elem_is_expansion |=
9821 argument_pack_element_is_expansion_p (arg_pack, index);
9823 /* Select the Ith argument from the pack. */
9824 if (TREE_CODE (parm) == PARM_DECL
9825 || TREE_CODE (parm) == FIELD_DECL)
9827 if (index == 0)
9829 aps = make_argument_pack_select (arg_pack, index);
9830 mark_used (parm);
9831 register_local_specialization (aps, parm);
9833 else
9834 aps = retrieve_local_specialization (parm);
9836 else
9838 int idx, level;
9839 template_parm_level_and_index (parm, &level, &idx);
9841 if (index == 0)
9843 aps = make_argument_pack_select (arg_pack, index);
9844 /* Update the corresponding argument. */
9845 TMPL_ARG (args, level, idx) = aps;
9847 else
9848 /* Re-use the ARGUMENT_PACK_SELECT. */
9849 aps = TMPL_ARG (args, level, idx);
9851 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9854 /* Substitute into the PATTERN with the (possibly altered)
9855 arguments. */
9856 if (pattern == in_decl)
9857 /* Expanding a fixed parameter pack from
9858 coerce_template_parameter_pack. */
9859 t = tsubst_decl (pattern, args, complain);
9860 else if (!TYPE_P (pattern))
9861 t = tsubst_expr (pattern, args, complain, in_decl,
9862 /*integral_constant_expression_p=*/false);
9863 else
9864 t = tsubst (pattern, args, complain, in_decl);
9866 /* If the Ith argument pack element is a pack expansion, then
9867 the Ith element resulting from the substituting is going to
9868 be a pack expansion as well. */
9869 if (ith_elem_is_expansion)
9870 t = make_pack_expansion (t);
9872 return t;
9875 /* Substitute ARGS into T, which is an pack expansion
9876 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9877 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9878 (if only a partial substitution could be performed) or
9879 ERROR_MARK_NODE if there was an error. */
9880 tree
9881 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9882 tree in_decl)
9884 tree pattern;
9885 tree pack, packs = NULL_TREE;
9886 bool unsubstituted_packs = false;
9887 int i, len = -1;
9888 tree result;
9889 hash_map<tree, tree> *saved_local_specializations = NULL;
9890 bool need_local_specializations = false;
9891 int levels;
9893 gcc_assert (PACK_EXPANSION_P (t));
9894 pattern = PACK_EXPANSION_PATTERN (t);
9896 /* Add in any args remembered from an earlier partial instantiation. */
9897 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9899 levels = TMPL_ARGS_DEPTH (args);
9901 /* Determine the argument packs that will instantiate the parameter
9902 packs used in the expansion expression. While we're at it,
9903 compute the number of arguments to be expanded and make sure it
9904 is consistent. */
9905 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9906 pack = TREE_CHAIN (pack))
9908 tree parm_pack = TREE_VALUE (pack);
9909 tree arg_pack = NULL_TREE;
9910 tree orig_arg = NULL_TREE;
9911 int level = 0;
9913 if (TREE_CODE (parm_pack) == BASES)
9915 if (BASES_DIRECT (parm_pack))
9916 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9917 args, complain, in_decl, false));
9918 else
9919 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9920 args, complain, in_decl, false));
9922 if (TREE_CODE (parm_pack) == PARM_DECL)
9924 if (PACK_EXPANSION_LOCAL_P (t))
9925 arg_pack = retrieve_local_specialization (parm_pack);
9926 else
9928 /* We can't rely on local_specializations for a parameter
9929 name used later in a function declaration (such as in a
9930 late-specified return type). Even if it exists, it might
9931 have the wrong value for a recursive call. Just make a
9932 dummy decl, since it's only used for its type. */
9933 arg_pack = tsubst_decl (parm_pack, args, complain);
9934 if (arg_pack && DECL_PACK_P (arg_pack))
9935 /* Partial instantiation of the parm_pack, we can't build
9936 up an argument pack yet. */
9937 arg_pack = NULL_TREE;
9938 else
9939 arg_pack = make_fnparm_pack (arg_pack);
9940 need_local_specializations = true;
9943 else if (TREE_CODE (parm_pack) == FIELD_DECL)
9944 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
9945 else
9947 int idx;
9948 template_parm_level_and_index (parm_pack, &level, &idx);
9950 if (level <= levels)
9951 arg_pack = TMPL_ARG (args, level, idx);
9954 orig_arg = arg_pack;
9955 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9956 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9958 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9959 /* This can only happen if we forget to expand an argument
9960 pack somewhere else. Just return an error, silently. */
9962 result = make_tree_vec (1);
9963 TREE_VEC_ELT (result, 0) = error_mark_node;
9964 return result;
9967 if (arg_pack)
9969 int my_len =
9970 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9972 /* Don't bother trying to do a partial substitution with
9973 incomplete packs; we'll try again after deduction. */
9974 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9975 return t;
9977 if (len < 0)
9978 len = my_len;
9979 else if (len != my_len)
9981 if (!(complain & tf_error))
9982 /* Fail quietly. */;
9983 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9984 error ("mismatched argument pack lengths while expanding "
9985 "%<%T%>",
9986 pattern);
9987 else
9988 error ("mismatched argument pack lengths while expanding "
9989 "%<%E%>",
9990 pattern);
9991 return error_mark_node;
9994 /* Keep track of the parameter packs and their corresponding
9995 argument packs. */
9996 packs = tree_cons (parm_pack, arg_pack, packs);
9997 TREE_TYPE (packs) = orig_arg;
9999 else
10001 /* We can't substitute for this parameter pack. We use a flag as
10002 well as the missing_level counter because function parameter
10003 packs don't have a level. */
10004 unsubstituted_packs = true;
10008 /* If the expansion is just T..., return the matching argument pack. */
10009 if (!unsubstituted_packs
10010 && TREE_PURPOSE (packs) == pattern)
10012 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10013 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10014 || pack_expansion_args_count (args))
10015 return args;
10016 /* Otherwise use the normal path so we get convert_from_reference. */
10019 /* We cannot expand this expansion expression, because we don't have
10020 all of the argument packs we need. */
10021 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10023 /* We got some full packs, but we can't substitute them in until we
10024 have values for all the packs. So remember these until then. */
10026 t = make_pack_expansion (pattern);
10027 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10028 return t;
10030 else if (unsubstituted_packs)
10032 /* There were no real arguments, we're just replacing a parameter
10033 pack with another version of itself. Substitute into the
10034 pattern and return a PACK_EXPANSION_*. The caller will need to
10035 deal with that. */
10036 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10037 t = tsubst_expr (pattern, args, complain, in_decl,
10038 /*integral_constant_expression_p=*/false);
10039 else
10040 t = tsubst (pattern, args, complain, in_decl);
10041 t = make_pack_expansion (t);
10042 return t;
10045 gcc_assert (len >= 0);
10047 if (need_local_specializations)
10049 /* We're in a late-specified return type, so create our own local
10050 specializations map; the current map is either NULL or (in the
10051 case of recursive unification) might have bindings that we don't
10052 want to use or alter. */
10053 saved_local_specializations = local_specializations;
10054 local_specializations = new hash_map<tree, tree>;
10057 /* For each argument in each argument pack, substitute into the
10058 pattern. */
10059 result = make_tree_vec (len);
10060 for (i = 0; i < len; ++i)
10062 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10064 args, complain,
10065 in_decl);
10066 TREE_VEC_ELT (result, i) = t;
10067 if (t == error_mark_node)
10069 result = error_mark_node;
10070 break;
10074 /* Update ARGS to restore the substitution from parameter packs to
10075 their argument packs. */
10076 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10078 tree parm = TREE_PURPOSE (pack);
10080 if (TREE_CODE (parm) == PARM_DECL
10081 || TREE_CODE (parm) == FIELD_DECL)
10082 register_local_specialization (TREE_TYPE (pack), parm);
10083 else
10085 int idx, level;
10087 if (TREE_VALUE (pack) == NULL_TREE)
10088 continue;
10090 template_parm_level_and_index (parm, &level, &idx);
10092 /* Update the corresponding argument. */
10093 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10094 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10095 TREE_TYPE (pack);
10096 else
10097 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10101 if (need_local_specializations)
10103 delete local_specializations;
10104 local_specializations = saved_local_specializations;
10107 return result;
10110 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10111 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10112 parameter packs; all parms generated from a function parameter pack will
10113 have the same DECL_PARM_INDEX. */
10115 tree
10116 get_pattern_parm (tree parm, tree tmpl)
10118 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10119 tree patparm;
10121 if (DECL_ARTIFICIAL (parm))
10123 for (patparm = DECL_ARGUMENTS (pattern);
10124 patparm; patparm = DECL_CHAIN (patparm))
10125 if (DECL_ARTIFICIAL (patparm)
10126 && DECL_NAME (parm) == DECL_NAME (patparm))
10127 break;
10129 else
10131 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
10132 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
10133 gcc_assert (DECL_PARM_INDEX (patparm)
10134 == DECL_PARM_INDEX (parm));
10137 return patparm;
10140 /* Substitute ARGS into the vector or list of template arguments T. */
10142 static tree
10143 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10145 tree orig_t = t;
10146 int len, need_new = 0, i, expanded_len_adjust = 0, out;
10147 tree *elts;
10149 if (t == error_mark_node)
10150 return error_mark_node;
10152 len = TREE_VEC_LENGTH (t);
10153 elts = XALLOCAVEC (tree, len);
10155 for (i = 0; i < len; i++)
10157 tree orig_arg = TREE_VEC_ELT (t, i);
10158 tree new_arg;
10160 if (TREE_CODE (orig_arg) == TREE_VEC)
10161 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
10162 else if (PACK_EXPANSION_P (orig_arg))
10164 /* Substitute into an expansion expression. */
10165 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
10167 if (TREE_CODE (new_arg) == TREE_VEC)
10168 /* Add to the expanded length adjustment the number of
10169 expanded arguments. We subtract one from this
10170 measurement, because the argument pack expression
10171 itself is already counted as 1 in
10172 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
10173 the argument pack is empty. */
10174 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
10176 else if (ARGUMENT_PACK_P (orig_arg))
10178 /* Substitute into each of the arguments. */
10179 new_arg = TYPE_P (orig_arg)
10180 ? cxx_make_type (TREE_CODE (orig_arg))
10181 : make_node (TREE_CODE (orig_arg));
10183 SET_ARGUMENT_PACK_ARGS (
10184 new_arg,
10185 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
10186 args, complain, in_decl));
10188 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
10189 new_arg = error_mark_node;
10191 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
10192 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
10193 complain, in_decl);
10194 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
10196 if (TREE_TYPE (new_arg) == error_mark_node)
10197 new_arg = error_mark_node;
10200 else
10201 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
10203 if (new_arg == error_mark_node)
10204 return error_mark_node;
10206 elts[i] = new_arg;
10207 if (new_arg != orig_arg)
10208 need_new = 1;
10211 if (!need_new)
10212 return t;
10214 /* Make space for the expanded arguments coming from template
10215 argument packs. */
10216 t = make_tree_vec (len + expanded_len_adjust);
10217 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
10218 arguments for a member template.
10219 In that case each TREE_VEC in ORIG_T represents a level of template
10220 arguments, and ORIG_T won't carry any non defaulted argument count.
10221 It will rather be the nested TREE_VECs that will carry one.
10222 In other words, ORIG_T carries a non defaulted argument count only
10223 if it doesn't contain any nested TREE_VEC. */
10224 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
10226 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
10227 count += expanded_len_adjust;
10228 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
10230 for (i = 0, out = 0; i < len; i++)
10232 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
10233 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
10234 && TREE_CODE (elts[i]) == TREE_VEC)
10236 int idx;
10238 /* Now expand the template argument pack "in place". */
10239 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
10240 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
10242 else
10244 TREE_VEC_ELT (t, out) = elts[i];
10245 out++;
10249 return t;
10252 /* Return the result of substituting ARGS into the template parameters
10253 given by PARMS. If there are m levels of ARGS and m + n levels of
10254 PARMS, then the result will contain n levels of PARMS. For
10255 example, if PARMS is `template <class T> template <class U>
10256 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
10257 result will be `template <int*, double, class V>'. */
10259 static tree
10260 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
10262 tree r = NULL_TREE;
10263 tree* new_parms;
10265 /* When substituting into a template, we must set
10266 PROCESSING_TEMPLATE_DECL as the template parameters may be
10267 dependent if they are based on one-another, and the dependency
10268 predicates are short-circuit outside of templates. */
10269 ++processing_template_decl;
10271 for (new_parms = &r;
10272 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
10273 new_parms = &(TREE_CHAIN (*new_parms)),
10274 parms = TREE_CHAIN (parms))
10276 tree new_vec =
10277 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
10278 int i;
10280 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
10282 tree tuple;
10284 if (parms == error_mark_node)
10285 continue;
10287 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
10289 if (tuple == error_mark_node)
10290 continue;
10292 TREE_VEC_ELT (new_vec, i) =
10293 tsubst_template_parm (tuple, args, complain);
10296 *new_parms =
10297 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
10298 - TMPL_ARGS_DEPTH (args)),
10299 new_vec, NULL_TREE);
10302 --processing_template_decl;
10304 return r;
10307 /* Return the result of substituting ARGS into one template parameter
10308 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
10309 parameter and which TREE_PURPOSE is the default argument of the
10310 template parameter. */
10312 static tree
10313 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
10315 tree default_value, parm_decl;
10317 if (args == NULL_TREE
10318 || t == NULL_TREE
10319 || t == error_mark_node)
10320 return t;
10322 gcc_assert (TREE_CODE (t) == TREE_LIST);
10324 default_value = TREE_PURPOSE (t);
10325 parm_decl = TREE_VALUE (t);
10327 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
10328 if (TREE_CODE (parm_decl) == PARM_DECL
10329 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
10330 parm_decl = error_mark_node;
10331 default_value = tsubst_template_arg (default_value, args,
10332 complain, NULL_TREE);
10334 return build_tree_list (default_value, parm_decl);
10337 /* Substitute the ARGS into the indicated aggregate (or enumeration)
10338 type T. If T is not an aggregate or enumeration type, it is
10339 handled as if by tsubst. IN_DECL is as for tsubst. If
10340 ENTERING_SCOPE is nonzero, T is the context for a template which
10341 we are presently tsubst'ing. Return the substituted value. */
10343 static tree
10344 tsubst_aggr_type (tree t,
10345 tree args,
10346 tsubst_flags_t complain,
10347 tree in_decl,
10348 int entering_scope)
10350 if (t == NULL_TREE)
10351 return NULL_TREE;
10353 switch (TREE_CODE (t))
10355 case RECORD_TYPE:
10356 if (TYPE_PTRMEMFUNC_P (t))
10357 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
10359 /* Else fall through. */
10360 case ENUMERAL_TYPE:
10361 case UNION_TYPE:
10362 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
10364 tree argvec;
10365 tree context;
10366 tree r;
10367 int saved_unevaluated_operand;
10368 int saved_inhibit_evaluation_warnings;
10370 /* In "sizeof(X<I>)" we need to evaluate "I". */
10371 saved_unevaluated_operand = cp_unevaluated_operand;
10372 cp_unevaluated_operand = 0;
10373 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
10374 c_inhibit_evaluation_warnings = 0;
10376 /* First, determine the context for the type we are looking
10377 up. */
10378 context = TYPE_CONTEXT (t);
10379 if (context && TYPE_P (context))
10381 context = tsubst_aggr_type (context, args, complain,
10382 in_decl, /*entering_scope=*/1);
10383 /* If context is a nested class inside a class template,
10384 it may still need to be instantiated (c++/33959). */
10385 context = complete_type (context);
10388 /* Then, figure out what arguments are appropriate for the
10389 type we are trying to find. For example, given:
10391 template <class T> struct S;
10392 template <class T, class U> void f(T, U) { S<U> su; }
10394 and supposing that we are instantiating f<int, double>,
10395 then our ARGS will be {int, double}, but, when looking up
10396 S we only want {double}. */
10397 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
10398 complain, in_decl);
10399 if (argvec == error_mark_node)
10400 r = error_mark_node;
10401 else
10403 r = lookup_template_class (t, argvec, in_decl, context,
10404 entering_scope, complain);
10405 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
10408 cp_unevaluated_operand = saved_unevaluated_operand;
10409 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10411 return r;
10413 else
10414 /* This is not a template type, so there's nothing to do. */
10415 return t;
10417 default:
10418 return tsubst (t, args, complain, in_decl);
10422 /* Substitute into the default argument ARG (a default argument for
10423 FN), which has the indicated TYPE. */
10425 tree
10426 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
10428 tree saved_class_ptr = NULL_TREE;
10429 tree saved_class_ref = NULL_TREE;
10430 int errs = errorcount + sorrycount;
10432 /* This can happen in invalid code. */
10433 if (TREE_CODE (arg) == DEFAULT_ARG)
10434 return arg;
10436 /* This default argument came from a template. Instantiate the
10437 default argument here, not in tsubst. In the case of
10438 something like:
10440 template <class T>
10441 struct S {
10442 static T t();
10443 void f(T = t());
10446 we must be careful to do name lookup in the scope of S<T>,
10447 rather than in the current class. */
10448 push_access_scope (fn);
10449 /* The "this" pointer is not valid in a default argument. */
10450 if (cfun)
10452 saved_class_ptr = current_class_ptr;
10453 cp_function_chain->x_current_class_ptr = NULL_TREE;
10454 saved_class_ref = current_class_ref;
10455 cp_function_chain->x_current_class_ref = NULL_TREE;
10458 push_deferring_access_checks(dk_no_deferred);
10459 /* The default argument expression may cause implicitly defined
10460 member functions to be synthesized, which will result in garbage
10461 collection. We must treat this situation as if we were within
10462 the body of function so as to avoid collecting live data on the
10463 stack. */
10464 ++function_depth;
10465 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
10466 complain, NULL_TREE,
10467 /*integral_constant_expression_p=*/false);
10468 --function_depth;
10469 pop_deferring_access_checks();
10471 /* Restore the "this" pointer. */
10472 if (cfun)
10474 cp_function_chain->x_current_class_ptr = saved_class_ptr;
10475 cp_function_chain->x_current_class_ref = saved_class_ref;
10478 if (errorcount+sorrycount > errs
10479 && (complain & tf_warning_or_error))
10480 inform (input_location,
10481 " when instantiating default argument for call to %D", fn);
10483 /* Make sure the default argument is reasonable. */
10484 arg = check_default_argument (type, arg, complain);
10486 pop_access_scope (fn);
10488 return arg;
10491 /* Substitute into all the default arguments for FN. */
10493 static void
10494 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
10496 tree arg;
10497 tree tmpl_args;
10499 tmpl_args = DECL_TI_ARGS (fn);
10501 /* If this function is not yet instantiated, we certainly don't need
10502 its default arguments. */
10503 if (uses_template_parms (tmpl_args))
10504 return;
10505 /* Don't do this again for clones. */
10506 if (DECL_CLONED_FUNCTION_P (fn))
10507 return;
10509 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
10510 arg;
10511 arg = TREE_CHAIN (arg))
10512 if (TREE_PURPOSE (arg))
10513 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
10514 TREE_VALUE (arg),
10515 TREE_PURPOSE (arg),
10516 complain);
10519 /* Substitute the ARGS into the T, which is a _DECL. Return the
10520 result of the substitution. Issue error and warning messages under
10521 control of COMPLAIN. */
10523 static tree
10524 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
10526 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
10527 location_t saved_loc;
10528 tree r = NULL_TREE;
10529 tree in_decl = t;
10530 hashval_t hash = 0;
10532 /* Set the filename and linenumber to improve error-reporting. */
10533 saved_loc = input_location;
10534 input_location = DECL_SOURCE_LOCATION (t);
10536 switch (TREE_CODE (t))
10538 case TEMPLATE_DECL:
10540 /* We can get here when processing a member function template,
10541 member class template, or template template parameter. */
10542 tree decl = DECL_TEMPLATE_RESULT (t);
10543 tree spec;
10544 tree tmpl_args;
10545 tree full_args;
10547 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10549 /* Template template parameter is treated here. */
10550 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10551 if (new_type == error_mark_node)
10552 RETURN (error_mark_node);
10553 /* If we get a real template back, return it. This can happen in
10554 the context of most_specialized_partial_spec. */
10555 if (TREE_CODE (new_type) == TEMPLATE_DECL)
10556 return new_type;
10558 r = copy_decl (t);
10559 DECL_CHAIN (r) = NULL_TREE;
10560 TREE_TYPE (r) = new_type;
10561 DECL_TEMPLATE_RESULT (r)
10562 = build_decl (DECL_SOURCE_LOCATION (decl),
10563 TYPE_DECL, DECL_NAME (decl), new_type);
10564 DECL_TEMPLATE_PARMS (r)
10565 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10566 complain);
10567 TYPE_NAME (new_type) = r;
10568 break;
10571 /* We might already have an instance of this template.
10572 The ARGS are for the surrounding class type, so the
10573 full args contain the tsubst'd args for the context,
10574 plus the innermost args from the template decl. */
10575 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
10576 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
10577 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
10578 /* Because this is a template, the arguments will still be
10579 dependent, even after substitution. If
10580 PROCESSING_TEMPLATE_DECL is not set, the dependency
10581 predicates will short-circuit. */
10582 ++processing_template_decl;
10583 full_args = tsubst_template_args (tmpl_args, args,
10584 complain, in_decl);
10585 --processing_template_decl;
10586 if (full_args == error_mark_node)
10587 RETURN (error_mark_node);
10589 /* If this is a default template template argument,
10590 tsubst might not have changed anything. */
10591 if (full_args == tmpl_args)
10592 RETURN (t);
10594 hash = hash_tmpl_and_args (t, full_args);
10595 spec = retrieve_specialization (t, full_args, hash);
10596 if (spec != NULL_TREE)
10598 r = spec;
10599 break;
10602 /* Make a new template decl. It will be similar to the
10603 original, but will record the current template arguments.
10604 We also create a new function declaration, which is just
10605 like the old one, but points to this new template, rather
10606 than the old one. */
10607 r = copy_decl (t);
10608 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
10609 DECL_CHAIN (r) = NULL_TREE;
10611 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10613 if (TREE_CODE (decl) == TYPE_DECL
10614 && !TYPE_DECL_ALIAS_P (decl))
10616 tree new_type;
10617 ++processing_template_decl;
10618 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10619 --processing_template_decl;
10620 if (new_type == error_mark_node)
10621 RETURN (error_mark_node);
10623 TREE_TYPE (r) = new_type;
10624 /* For a partial specialization, we need to keep pointing to
10625 the primary template. */
10626 if (!DECL_TEMPLATE_SPECIALIZATION (t))
10627 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10628 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10629 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10630 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10632 else
10634 tree new_decl;
10635 ++processing_template_decl;
10636 new_decl = tsubst (decl, args, complain, in_decl);
10637 --processing_template_decl;
10638 if (new_decl == error_mark_node)
10639 RETURN (error_mark_node);
10641 DECL_TEMPLATE_RESULT (r) = new_decl;
10642 DECL_TI_TEMPLATE (new_decl) = r;
10643 TREE_TYPE (r) = TREE_TYPE (new_decl);
10644 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10645 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10648 SET_DECL_IMPLICIT_INSTANTIATION (r);
10649 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10650 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10652 /* The template parameters for this new template are all the
10653 template parameters for the old template, except the
10654 outermost level of parameters. */
10655 DECL_TEMPLATE_PARMS (r)
10656 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10657 complain);
10659 if (PRIMARY_TEMPLATE_P (t))
10660 DECL_PRIMARY_TEMPLATE (r) = r;
10662 if (TREE_CODE (decl) != TYPE_DECL && TREE_CODE (decl) != VAR_DECL)
10663 /* Record this non-type partial instantiation. */
10664 register_specialization (r, t,
10665 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10666 false, hash);
10668 break;
10670 case FUNCTION_DECL:
10672 tree ctx;
10673 tree argvec = NULL_TREE;
10674 tree *friends;
10675 tree gen_tmpl;
10676 tree type;
10677 int member;
10678 int args_depth;
10679 int parms_depth;
10681 /* Nobody should be tsubst'ing into non-template functions. */
10682 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10684 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10686 tree spec;
10687 bool dependent_p;
10689 /* If T is not dependent, just return it. We have to
10690 increment PROCESSING_TEMPLATE_DECL because
10691 value_dependent_expression_p assumes that nothing is
10692 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10693 ++processing_template_decl;
10694 dependent_p = value_dependent_expression_p (t);
10695 --processing_template_decl;
10696 if (!dependent_p)
10697 RETURN (t);
10699 /* Calculate the most general template of which R is a
10700 specialization, and the complete set of arguments used to
10701 specialize R. */
10702 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10703 argvec = tsubst_template_args (DECL_TI_ARGS
10704 (DECL_TEMPLATE_RESULT
10705 (DECL_TI_TEMPLATE (t))),
10706 args, complain, in_decl);
10707 if (argvec == error_mark_node)
10708 RETURN (error_mark_node);
10710 /* Check to see if we already have this specialization. */
10711 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10712 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10714 if (spec)
10716 r = spec;
10717 break;
10720 /* We can see more levels of arguments than parameters if
10721 there was a specialization of a member template, like
10722 this:
10724 template <class T> struct S { template <class U> void f(); }
10725 template <> template <class U> void S<int>::f(U);
10727 Here, we'll be substituting into the specialization,
10728 because that's where we can find the code we actually
10729 want to generate, but we'll have enough arguments for
10730 the most general template.
10732 We also deal with the peculiar case:
10734 template <class T> struct S {
10735 template <class U> friend void f();
10737 template <class U> void f() {}
10738 template S<int>;
10739 template void f<double>();
10741 Here, the ARGS for the instantiation of will be {int,
10742 double}. But, we only need as many ARGS as there are
10743 levels of template parameters in CODE_PATTERN. We are
10744 careful not to get fooled into reducing the ARGS in
10745 situations like:
10747 template <class T> struct S { template <class U> void f(U); }
10748 template <class T> template <> void S<T>::f(int) {}
10750 which we can spot because the pattern will be a
10751 specialization in this case. */
10752 args_depth = TMPL_ARGS_DEPTH (args);
10753 parms_depth =
10754 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10755 if (args_depth > parms_depth
10756 && !DECL_TEMPLATE_SPECIALIZATION (t))
10757 args = get_innermost_template_args (args, parms_depth);
10759 else
10761 /* This special case arises when we have something like this:
10763 template <class T> struct S {
10764 friend void f<int>(int, double);
10767 Here, the DECL_TI_TEMPLATE for the friend declaration
10768 will be an IDENTIFIER_NODE. We are being called from
10769 tsubst_friend_function, and we want only to create a
10770 new decl (R) with appropriate types so that we can call
10771 determine_specialization. */
10772 gen_tmpl = NULL_TREE;
10775 if (DECL_CLASS_SCOPE_P (t))
10777 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10778 member = 2;
10779 else
10780 member = 1;
10781 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10782 complain, t, /*entering_scope=*/1);
10784 else
10786 member = 0;
10787 ctx = DECL_CONTEXT (t);
10789 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10790 if (type == error_mark_node)
10791 RETURN (error_mark_node);
10793 /* If we hit excessive deduction depth, the type is bogus even if
10794 it isn't error_mark_node, so don't build a decl. */
10795 if (excessive_deduction_depth)
10796 RETURN (error_mark_node);
10798 /* We do NOT check for matching decls pushed separately at this
10799 point, as they may not represent instantiations of this
10800 template, and in any case are considered separate under the
10801 discrete model. */
10802 r = copy_decl (t);
10803 DECL_USE_TEMPLATE (r) = 0;
10804 TREE_TYPE (r) = type;
10805 /* Clear out the mangled name and RTL for the instantiation. */
10806 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10807 SET_DECL_RTL (r, NULL);
10808 /* Leave DECL_INITIAL set on deleted instantiations. */
10809 if (!DECL_DELETED_FN (r))
10810 DECL_INITIAL (r) = NULL_TREE;
10811 DECL_CONTEXT (r) = ctx;
10813 /* OpenMP UDRs have the only argument a reference to the declared
10814 type. We want to diagnose if the declared type is a reference,
10815 which is invalid, but as references to references are usually
10816 quietly merged, diagnose it here. */
10817 if (DECL_OMP_DECLARE_REDUCTION_P (t))
10819 tree argtype
10820 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
10821 argtype = tsubst (argtype, args, complain, in_decl);
10822 if (TREE_CODE (argtype) == REFERENCE_TYPE)
10823 error_at (DECL_SOURCE_LOCATION (t),
10824 "reference type %qT in "
10825 "%<#pragma omp declare reduction%>", argtype);
10826 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
10827 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
10828 argtype);
10831 if (member && DECL_CONV_FN_P (r))
10832 /* Type-conversion operator. Reconstruct the name, in
10833 case it's the name of one of the template's parameters. */
10834 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10836 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10837 complain, t);
10838 DECL_RESULT (r) = NULL_TREE;
10840 TREE_STATIC (r) = 0;
10841 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10842 DECL_EXTERNAL (r) = 1;
10843 /* If this is an instantiation of a function with internal
10844 linkage, we already know what object file linkage will be
10845 assigned to the instantiation. */
10846 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10847 DECL_DEFER_OUTPUT (r) = 0;
10848 DECL_CHAIN (r) = NULL_TREE;
10849 DECL_PENDING_INLINE_INFO (r) = 0;
10850 DECL_PENDING_INLINE_P (r) = 0;
10851 DECL_SAVED_TREE (r) = NULL_TREE;
10852 DECL_STRUCT_FUNCTION (r) = NULL;
10853 TREE_USED (r) = 0;
10854 /* We'll re-clone as appropriate in instantiate_template. */
10855 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10857 /* If we aren't complaining now, return on error before we register
10858 the specialization so that we'll complain eventually. */
10859 if ((complain & tf_error) == 0
10860 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10861 && !grok_op_properties (r, /*complain=*/false))
10862 RETURN (error_mark_node);
10864 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10865 this in the special friend case mentioned above where
10866 GEN_TMPL is NULL. */
10867 if (gen_tmpl)
10869 DECL_TEMPLATE_INFO (r)
10870 = build_template_info (gen_tmpl, argvec);
10871 SET_DECL_IMPLICIT_INSTANTIATION (r);
10873 tree new_r
10874 = register_specialization (r, gen_tmpl, argvec, false, hash);
10875 if (new_r != r)
10876 /* We instantiated this while substituting into
10877 the type earlier (template/friend54.C). */
10878 RETURN (new_r);
10880 /* We're not supposed to instantiate default arguments
10881 until they are called, for a template. But, for a
10882 declaration like:
10884 template <class T> void f ()
10885 { extern void g(int i = T()); }
10887 we should do the substitution when the template is
10888 instantiated. We handle the member function case in
10889 instantiate_class_template since the default arguments
10890 might refer to other members of the class. */
10891 if (!member
10892 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10893 && !uses_template_parms (argvec))
10894 tsubst_default_arguments (r, complain);
10896 else
10897 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10899 /* Copy the list of befriending classes. */
10900 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10901 *friends;
10902 friends = &TREE_CHAIN (*friends))
10904 *friends = copy_node (*friends);
10905 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10906 args, complain,
10907 in_decl);
10910 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10912 maybe_retrofit_in_chrg (r);
10913 if (DECL_CONSTRUCTOR_P (r))
10914 grok_ctor_properties (ctx, r);
10915 if (DECL_INHERITED_CTOR_BASE (r))
10916 deduce_inheriting_ctor (r);
10917 /* If this is an instantiation of a member template, clone it.
10918 If it isn't, that'll be handled by
10919 clone_constructors_and_destructors. */
10920 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10921 clone_function_decl (r, /*update_method_vec_p=*/0);
10923 else if ((complain & tf_error) != 0
10924 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10925 && !grok_op_properties (r, /*complain=*/true))
10926 RETURN (error_mark_node);
10928 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10929 SET_DECL_FRIEND_CONTEXT (r,
10930 tsubst (DECL_FRIEND_CONTEXT (t),
10931 args, complain, in_decl));
10933 /* Possibly limit visibility based on template args. */
10934 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10935 if (DECL_VISIBILITY_SPECIFIED (t))
10937 DECL_VISIBILITY_SPECIFIED (r) = 0;
10938 DECL_ATTRIBUTES (r)
10939 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10941 determine_visibility (r);
10942 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10943 && !processing_template_decl)
10944 defaulted_late_check (r);
10946 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10947 args, complain, in_decl);
10949 break;
10951 case PARM_DECL:
10953 tree type = NULL_TREE;
10954 int i, len = 1;
10955 tree expanded_types = NULL_TREE;
10956 tree prev_r = NULL_TREE;
10957 tree first_r = NULL_TREE;
10959 if (DECL_PACK_P (t))
10961 /* If there is a local specialization that isn't a
10962 parameter pack, it means that we're doing a "simple"
10963 substitution from inside tsubst_pack_expansion. Just
10964 return the local specialization (which will be a single
10965 parm). */
10966 tree spec = retrieve_local_specialization (t);
10967 if (spec
10968 && TREE_CODE (spec) == PARM_DECL
10969 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10970 RETURN (spec);
10972 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10973 the parameters in this function parameter pack. */
10974 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10975 complain, in_decl);
10976 if (TREE_CODE (expanded_types) == TREE_VEC)
10978 len = TREE_VEC_LENGTH (expanded_types);
10980 /* Zero-length parameter packs are boring. Just substitute
10981 into the chain. */
10982 if (len == 0)
10983 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10984 TREE_CHAIN (t)));
10986 else
10988 /* All we did was update the type. Make a note of that. */
10989 type = expanded_types;
10990 expanded_types = NULL_TREE;
10994 /* Loop through all of the parameters we'll build. When T is
10995 a function parameter pack, LEN is the number of expanded
10996 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10997 r = NULL_TREE;
10998 for (i = 0; i < len; ++i)
11000 prev_r = r;
11001 r = copy_node (t);
11002 if (DECL_TEMPLATE_PARM_P (t))
11003 SET_DECL_TEMPLATE_PARM_P (r);
11005 if (expanded_types)
11006 /* We're on the Ith parameter of the function parameter
11007 pack. */
11009 /* Get the Ith type. */
11010 type = TREE_VEC_ELT (expanded_types, i);
11012 /* Rename the parameter to include the index. */
11013 DECL_NAME (r)
11014 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11016 else if (!type)
11017 /* We're dealing with a normal parameter. */
11018 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11020 type = type_decays_to (type);
11021 TREE_TYPE (r) = type;
11022 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11024 if (DECL_INITIAL (r))
11026 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11027 DECL_INITIAL (r) = TREE_TYPE (r);
11028 else
11029 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11030 complain, in_decl);
11033 DECL_CONTEXT (r) = NULL_TREE;
11035 if (!DECL_TEMPLATE_PARM_P (r))
11036 DECL_ARG_TYPE (r) = type_passed_as (type);
11038 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11039 args, complain, in_decl);
11041 /* Keep track of the first new parameter we
11042 generate. That's what will be returned to the
11043 caller. */
11044 if (!first_r)
11045 first_r = r;
11047 /* Build a proper chain of parameters when substituting
11048 into a function parameter pack. */
11049 if (prev_r)
11050 DECL_CHAIN (prev_r) = r;
11053 /* If cp_unevaluated_operand is set, we're just looking for a
11054 single dummy parameter, so don't keep going. */
11055 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11056 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11057 complain, DECL_CHAIN (t));
11059 /* FIRST_R contains the start of the chain we've built. */
11060 r = first_r;
11062 break;
11064 case FIELD_DECL:
11066 tree type = NULL_TREE;
11067 tree vec = NULL_TREE;
11068 tree expanded_types = NULL_TREE;
11069 int len = 1;
11071 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11073 /* This field is a lambda capture pack. Return a TREE_VEC of
11074 the expanded fields to instantiate_class_template_1 and
11075 store them in the specializations hash table as a
11076 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11077 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11078 complain, in_decl);
11079 if (TREE_CODE (expanded_types) == TREE_VEC)
11081 len = TREE_VEC_LENGTH (expanded_types);
11082 vec = make_tree_vec (len);
11084 else
11086 /* All we did was update the type. Make a note of that. */
11087 type = expanded_types;
11088 expanded_types = NULL_TREE;
11092 for (int i = 0; i < len; ++i)
11094 r = copy_decl (t);
11095 if (expanded_types)
11097 type = TREE_VEC_ELT (expanded_types, i);
11098 DECL_NAME (r)
11099 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11101 else if (!type)
11102 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11104 if (type == error_mark_node)
11105 RETURN (error_mark_node);
11106 TREE_TYPE (r) = type;
11107 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11109 if (DECL_C_BIT_FIELD (r))
11110 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11111 non-bit-fields DECL_INITIAL is a non-static data member
11112 initializer, which gets deferred instantiation. */
11113 DECL_INITIAL (r)
11114 = tsubst_expr (DECL_INITIAL (t), args,
11115 complain, in_decl,
11116 /*integral_constant_expression_p=*/true);
11117 else if (DECL_INITIAL (t))
11119 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11120 NSDMI in perform_member_init. Still set DECL_INITIAL
11121 so that we know there is one. */
11122 DECL_INITIAL (r) = void_node;
11123 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
11124 retrofit_lang_decl (r);
11125 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11127 /* We don't have to set DECL_CONTEXT here; it is set by
11128 finish_member_declaration. */
11129 DECL_CHAIN (r) = NULL_TREE;
11131 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11132 args, complain, in_decl);
11134 if (vec)
11135 TREE_VEC_ELT (vec, i) = r;
11138 if (vec)
11140 r = vec;
11141 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
11142 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
11143 SET_ARGUMENT_PACK_ARGS (pack, vec);
11144 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
11145 TREE_TYPE (pack) = tpack;
11146 register_specialization (pack, t, args, false, 0);
11149 break;
11151 case USING_DECL:
11152 /* We reach here only for member using decls. We also need to check
11153 uses_template_parms because DECL_DEPENDENT_P is not set for a
11154 using-declaration that designates a member of the current
11155 instantiation (c++/53549). */
11156 if (DECL_DEPENDENT_P (t)
11157 || uses_template_parms (USING_DECL_SCOPE (t)))
11159 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
11160 complain, in_decl);
11161 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
11162 r = do_class_using_decl (inst_scope, name);
11163 if (!r)
11164 r = error_mark_node;
11165 else
11167 TREE_PROTECTED (r) = TREE_PROTECTED (t);
11168 TREE_PRIVATE (r) = TREE_PRIVATE (t);
11171 else
11173 r = copy_node (t);
11174 DECL_CHAIN (r) = NULL_TREE;
11176 break;
11178 case TYPE_DECL:
11179 case VAR_DECL:
11181 tree argvec = NULL_TREE;
11182 tree gen_tmpl = NULL_TREE;
11183 tree spec;
11184 tree tmpl = NULL_TREE;
11185 tree ctx;
11186 tree type = NULL_TREE;
11187 bool local_p;
11189 if (TREE_TYPE (t) == error_mark_node)
11190 RETURN (error_mark_node);
11192 if (TREE_CODE (t) == TYPE_DECL
11193 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
11195 /* If this is the canonical decl, we don't have to
11196 mess with instantiations, and often we can't (for
11197 typename, template type parms and such). Note that
11198 TYPE_NAME is not correct for the above test if
11199 we've copied the type for a typedef. */
11200 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11201 if (type == error_mark_node)
11202 RETURN (error_mark_node);
11203 r = TYPE_NAME (type);
11204 break;
11207 /* Check to see if we already have the specialization we
11208 need. */
11209 spec = NULL_TREE;
11210 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
11212 /* T is a static data member or namespace-scope entity.
11213 We have to substitute into namespace-scope variables
11214 (even though such entities are never templates) because
11215 of cases like:
11217 template <class T> void f() { extern T t; }
11219 where the entity referenced is not known until
11220 instantiation time. */
11221 local_p = false;
11222 ctx = DECL_CONTEXT (t);
11223 if (DECL_CLASS_SCOPE_P (t))
11225 ctx = tsubst_aggr_type (ctx, args,
11226 complain,
11227 in_decl, /*entering_scope=*/1);
11228 /* If CTX is unchanged, then T is in fact the
11229 specialization we want. That situation occurs when
11230 referencing a static data member within in its own
11231 class. We can use pointer equality, rather than
11232 same_type_p, because DECL_CONTEXT is always
11233 canonical... */
11234 if (ctx == DECL_CONTEXT (t)
11235 /* ... unless T is a member template; in which
11236 case our caller can be willing to create a
11237 specialization of that template represented
11238 by T. */
11239 && !(DECL_TI_TEMPLATE (t)
11240 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
11241 spec = t;
11244 if (!spec)
11246 tmpl = DECL_TI_TEMPLATE (t);
11247 gen_tmpl = most_general_template (tmpl);
11248 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
11249 if (argvec == error_mark_node)
11250 RETURN (error_mark_node);
11251 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11252 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11255 else
11257 /* A local variable. */
11258 local_p = true;
11259 /* Subsequent calls to pushdecl will fill this in. */
11260 ctx = NULL_TREE;
11261 spec = retrieve_local_specialization (t);
11263 /* If we already have the specialization we need, there is
11264 nothing more to do. */
11265 if (spec)
11267 r = spec;
11268 break;
11271 /* Create a new node for the specialization we need. */
11272 r = copy_decl (t);
11273 if (type == NULL_TREE)
11275 if (is_typedef_decl (t))
11276 type = DECL_ORIGINAL_TYPE (t);
11277 else
11278 type = TREE_TYPE (t);
11279 if (VAR_P (t)
11280 && VAR_HAD_UNKNOWN_BOUND (t)
11281 && type != error_mark_node)
11282 type = strip_array_domain (type);
11283 type = tsubst (type, args, complain, in_decl);
11285 if (VAR_P (r))
11287 /* Even if the original location is out of scope, the
11288 newly substituted one is not. */
11289 DECL_DEAD_FOR_LOCAL (r) = 0;
11290 DECL_INITIALIZED_P (r) = 0;
11291 DECL_TEMPLATE_INSTANTIATED (r) = 0;
11292 if (type == error_mark_node)
11293 RETURN (error_mark_node);
11294 if (TREE_CODE (type) == FUNCTION_TYPE)
11296 /* It may seem that this case cannot occur, since:
11298 typedef void f();
11299 void g() { f x; }
11301 declares a function, not a variable. However:
11303 typedef void f();
11304 template <typename T> void g() { T t; }
11305 template void g<f>();
11307 is an attempt to declare a variable with function
11308 type. */
11309 error ("variable %qD has function type",
11310 /* R is not yet sufficiently initialized, so we
11311 just use its name. */
11312 DECL_NAME (r));
11313 RETURN (error_mark_node);
11315 type = complete_type (type);
11316 /* Wait until cp_finish_decl to set this again, to handle
11317 circular dependency (template/instantiate6.C). */
11318 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
11319 type = check_var_type (DECL_NAME (r), type);
11321 if (DECL_HAS_VALUE_EXPR_P (t))
11323 tree ve = DECL_VALUE_EXPR (t);
11324 ve = tsubst_expr (ve, args, complain, in_decl,
11325 /*constant_expression_p=*/false);
11326 if (REFERENCE_REF_P (ve))
11328 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
11329 ve = TREE_OPERAND (ve, 0);
11331 SET_DECL_VALUE_EXPR (r, ve);
11333 if (TREE_STATIC (r) || DECL_EXTERNAL (r))
11334 set_decl_tls_model (r, decl_tls_model (t));
11336 else if (DECL_SELF_REFERENCE_P (t))
11337 SET_DECL_SELF_REFERENCE_P (r);
11338 TREE_TYPE (r) = type;
11339 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11340 DECL_CONTEXT (r) = ctx;
11341 /* Clear out the mangled name and RTL for the instantiation. */
11342 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11343 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11344 SET_DECL_RTL (r, NULL);
11345 /* The initializer must not be expanded until it is required;
11346 see [temp.inst]. */
11347 DECL_INITIAL (r) = NULL_TREE;
11348 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11349 SET_DECL_RTL (r, NULL);
11350 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
11351 if (VAR_P (r))
11353 /* Possibly limit visibility based on template args. */
11354 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11355 if (DECL_VISIBILITY_SPECIFIED (t))
11357 DECL_VISIBILITY_SPECIFIED (r) = 0;
11358 DECL_ATTRIBUTES (r)
11359 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11361 determine_visibility (r);
11364 if (!local_p)
11366 /* A static data member declaration is always marked
11367 external when it is declared in-class, even if an
11368 initializer is present. We mimic the non-template
11369 processing here. */
11370 DECL_EXTERNAL (r) = 1;
11372 register_specialization (r, gen_tmpl, argvec, false, hash);
11373 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
11374 SET_DECL_IMPLICIT_INSTANTIATION (r);
11376 else if (!cp_unevaluated_operand)
11377 register_local_specialization (r, t);
11379 DECL_CHAIN (r) = NULL_TREE;
11381 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
11382 /*flags=*/0,
11383 args, complain, in_decl);
11385 /* Preserve a typedef that names a type. */
11386 if (is_typedef_decl (r))
11388 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
11389 set_underlying_type (r);
11392 layout_decl (r, 0);
11394 break;
11396 default:
11397 gcc_unreachable ();
11399 #undef RETURN
11401 out:
11402 /* Restore the file and line information. */
11403 input_location = saved_loc;
11405 return r;
11408 /* Substitute into the ARG_TYPES of a function type.
11409 If END is a TREE_CHAIN, leave it and any following types
11410 un-substituted. */
11412 static tree
11413 tsubst_arg_types (tree arg_types,
11414 tree args,
11415 tree end,
11416 tsubst_flags_t complain,
11417 tree in_decl)
11419 tree remaining_arg_types;
11420 tree type = NULL_TREE;
11421 int i = 1;
11422 tree expanded_args = NULL_TREE;
11423 tree default_arg;
11425 if (!arg_types || arg_types == void_list_node || arg_types == end)
11426 return arg_types;
11428 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
11429 args, end, complain, in_decl);
11430 if (remaining_arg_types == error_mark_node)
11431 return error_mark_node;
11433 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
11435 /* For a pack expansion, perform substitution on the
11436 entire expression. Later on, we'll handle the arguments
11437 one-by-one. */
11438 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
11439 args, complain, in_decl);
11441 if (TREE_CODE (expanded_args) == TREE_VEC)
11442 /* So that we'll spin through the parameters, one by one. */
11443 i = TREE_VEC_LENGTH (expanded_args);
11444 else
11446 /* We only partially substituted into the parameter
11447 pack. Our type is TYPE_PACK_EXPANSION. */
11448 type = expanded_args;
11449 expanded_args = NULL_TREE;
11453 while (i > 0) {
11454 --i;
11456 if (expanded_args)
11457 type = TREE_VEC_ELT (expanded_args, i);
11458 else if (!type)
11459 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
11461 if (type == error_mark_node)
11462 return error_mark_node;
11463 if (VOID_TYPE_P (type))
11465 if (complain & tf_error)
11467 error ("invalid parameter type %qT", type);
11468 if (in_decl)
11469 error ("in declaration %q+D", in_decl);
11471 return error_mark_node;
11473 /* DR 657. */
11474 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
11475 return error_mark_node;
11477 /* Do array-to-pointer, function-to-pointer conversion, and ignore
11478 top-level qualifiers as required. */
11479 type = cv_unqualified (type_decays_to (type));
11481 /* We do not substitute into default arguments here. The standard
11482 mandates that they be instantiated only when needed, which is
11483 done in build_over_call. */
11484 default_arg = TREE_PURPOSE (arg_types);
11486 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
11488 /* We've instantiated a template before its default arguments
11489 have been parsed. This can happen for a nested template
11490 class, and is not an error unless we require the default
11491 argument in a call of this function. */
11492 remaining_arg_types =
11493 tree_cons (default_arg, type, remaining_arg_types);
11494 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
11496 else
11497 remaining_arg_types =
11498 hash_tree_cons (default_arg, type, remaining_arg_types);
11501 return remaining_arg_types;
11504 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
11505 *not* handle the exception-specification for FNTYPE, because the
11506 initial substitution of explicitly provided template parameters
11507 during argument deduction forbids substitution into the
11508 exception-specification:
11510 [temp.deduct]
11512 All references in the function type of the function template to the
11513 corresponding template parameters are replaced by the specified tem-
11514 plate argument values. If a substitution in a template parameter or
11515 in the function type of the function template results in an invalid
11516 type, type deduction fails. [Note: The equivalent substitution in
11517 exception specifications is done only when the function is instanti-
11518 ated, at which point a program is ill-formed if the substitution
11519 results in an invalid type.] */
11521 static tree
11522 tsubst_function_type (tree t,
11523 tree args,
11524 tsubst_flags_t complain,
11525 tree in_decl)
11527 tree return_type;
11528 tree arg_types = NULL_TREE;
11529 tree fntype;
11531 /* The TYPE_CONTEXT is not used for function/method types. */
11532 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
11534 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
11535 failure. */
11536 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
11538 if (late_return_type_p)
11540 /* Substitute the argument types. */
11541 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11542 complain, in_decl);
11543 if (arg_types == error_mark_node)
11544 return error_mark_node;
11546 tree save_ccp = current_class_ptr;
11547 tree save_ccr = current_class_ref;
11548 tree this_type = (TREE_CODE (t) == METHOD_TYPE
11549 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
11550 bool do_inject = this_type && CLASS_TYPE_P (this_type);
11551 if (do_inject)
11553 /* DR 1207: 'this' is in scope in the trailing return type. */
11554 inject_this_parameter (this_type, cp_type_quals (this_type));
11557 /* Substitute the return type. */
11558 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11560 if (do_inject)
11562 current_class_ptr = save_ccp;
11563 current_class_ref = save_ccr;
11566 else
11567 /* Substitute the return type. */
11568 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11570 if (return_type == error_mark_node)
11571 return error_mark_node;
11572 /* DR 486 clarifies that creation of a function type with an
11573 invalid return type is a deduction failure. */
11574 if (TREE_CODE (return_type) == ARRAY_TYPE
11575 || TREE_CODE (return_type) == FUNCTION_TYPE)
11577 if (complain & tf_error)
11579 if (TREE_CODE (return_type) == ARRAY_TYPE)
11580 error ("function returning an array");
11581 else
11582 error ("function returning a function");
11584 return error_mark_node;
11586 /* And DR 657. */
11587 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
11588 return error_mark_node;
11590 if (!late_return_type_p)
11592 /* Substitute the argument types. */
11593 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11594 complain, in_decl);
11595 if (arg_types == error_mark_node)
11596 return error_mark_node;
11599 /* Construct a new type node and return it. */
11600 if (TREE_CODE (t) == FUNCTION_TYPE)
11602 fntype = build_function_type (return_type, arg_types);
11603 fntype = apply_memfn_quals (fntype,
11604 type_memfn_quals (t),
11605 type_memfn_rqual (t));
11607 else
11609 tree r = TREE_TYPE (TREE_VALUE (arg_types));
11610 /* Don't pick up extra function qualifiers from the basetype. */
11611 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
11612 if (! MAYBE_CLASS_TYPE_P (r))
11614 /* [temp.deduct]
11616 Type deduction may fail for any of the following
11617 reasons:
11619 -- Attempting to create "pointer to member of T" when T
11620 is not a class type. */
11621 if (complain & tf_error)
11622 error ("creating pointer to member function of non-class type %qT",
11624 return error_mark_node;
11627 fntype = build_method_type_directly (r, return_type,
11628 TREE_CHAIN (arg_types));
11629 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
11631 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
11633 if (late_return_type_p)
11634 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
11636 return fntype;
11639 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
11640 ARGS into that specification, and return the substituted
11641 specification. If there is no specification, return NULL_TREE. */
11643 static tree
11644 tsubst_exception_specification (tree fntype,
11645 tree args,
11646 tsubst_flags_t complain,
11647 tree in_decl,
11648 bool defer_ok)
11650 tree specs;
11651 tree new_specs;
11653 specs = TYPE_RAISES_EXCEPTIONS (fntype);
11654 new_specs = NULL_TREE;
11655 if (specs && TREE_PURPOSE (specs))
11657 /* A noexcept-specifier. */
11658 tree expr = TREE_PURPOSE (specs);
11659 if (TREE_CODE (expr) == INTEGER_CST)
11660 new_specs = expr;
11661 else if (defer_ok)
11663 /* Defer instantiation of noexcept-specifiers to avoid
11664 excessive instantiations (c++/49107). */
11665 new_specs = make_node (DEFERRED_NOEXCEPT);
11666 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
11668 /* We already partially instantiated this member template,
11669 so combine the new args with the old. */
11670 DEFERRED_NOEXCEPT_PATTERN (new_specs)
11671 = DEFERRED_NOEXCEPT_PATTERN (expr);
11672 DEFERRED_NOEXCEPT_ARGS (new_specs)
11673 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
11675 else
11677 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
11678 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
11681 else
11682 new_specs = tsubst_copy_and_build
11683 (expr, args, complain, in_decl, /*function_p=*/false,
11684 /*integral_constant_expression_p=*/true);
11685 new_specs = build_noexcept_spec (new_specs, complain);
11687 else if (specs)
11689 if (! TREE_VALUE (specs))
11690 new_specs = specs;
11691 else
11692 while (specs)
11694 tree spec;
11695 int i, len = 1;
11696 tree expanded_specs = NULL_TREE;
11698 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
11700 /* Expand the pack expansion type. */
11701 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
11702 args, complain,
11703 in_decl);
11705 if (expanded_specs == error_mark_node)
11706 return error_mark_node;
11707 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11708 len = TREE_VEC_LENGTH (expanded_specs);
11709 else
11711 /* We're substituting into a member template, so
11712 we got a TYPE_PACK_EXPANSION back. Add that
11713 expansion and move on. */
11714 gcc_assert (TREE_CODE (expanded_specs)
11715 == TYPE_PACK_EXPANSION);
11716 new_specs = add_exception_specifier (new_specs,
11717 expanded_specs,
11718 complain);
11719 specs = TREE_CHAIN (specs);
11720 continue;
11724 for (i = 0; i < len; ++i)
11726 if (expanded_specs)
11727 spec = TREE_VEC_ELT (expanded_specs, i);
11728 else
11729 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11730 if (spec == error_mark_node)
11731 return spec;
11732 new_specs = add_exception_specifier (new_specs, spec,
11733 complain);
11736 specs = TREE_CHAIN (specs);
11739 return new_specs;
11742 /* Take the tree structure T and replace template parameters used
11743 therein with the argument vector ARGS. IN_DECL is an associated
11744 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11745 Issue error and warning messages under control of COMPLAIN. Note
11746 that we must be relatively non-tolerant of extensions here, in
11747 order to preserve conformance; if we allow substitutions that
11748 should not be allowed, we may allow argument deductions that should
11749 not succeed, and therefore report ambiguous overload situations
11750 where there are none. In theory, we could allow the substitution,
11751 but indicate that it should have failed, and allow our caller to
11752 make sure that the right thing happens, but we don't try to do this
11753 yet.
11755 This function is used for dealing with types, decls and the like;
11756 for expressions, use tsubst_expr or tsubst_copy. */
11758 tree
11759 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11761 enum tree_code code;
11762 tree type, r = NULL_TREE;
11764 if (t == NULL_TREE || t == error_mark_node
11765 || t == integer_type_node
11766 || t == void_type_node
11767 || t == char_type_node
11768 || t == unknown_type_node
11769 || TREE_CODE (t) == NAMESPACE_DECL
11770 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11771 return t;
11773 if (DECL_P (t))
11774 return tsubst_decl (t, args, complain);
11776 if (args == NULL_TREE)
11777 return t;
11779 code = TREE_CODE (t);
11781 if (code == IDENTIFIER_NODE)
11782 type = IDENTIFIER_TYPE_VALUE (t);
11783 else
11784 type = TREE_TYPE (t);
11786 gcc_assert (type != unknown_type_node);
11788 /* Reuse typedefs. We need to do this to handle dependent attributes,
11789 such as attribute aligned. */
11790 if (TYPE_P (t)
11791 && typedef_variant_p (t))
11793 tree decl = TYPE_NAME (t);
11795 if (alias_template_specialization_p (t))
11797 /* DECL represents an alias template and we want to
11798 instantiate it. */
11799 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11800 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11801 r = instantiate_alias_template (tmpl, gen_args, complain);
11803 else if (DECL_CLASS_SCOPE_P (decl)
11804 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11805 && uses_template_parms (DECL_CONTEXT (decl)))
11807 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11808 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11809 r = retrieve_specialization (tmpl, gen_args, 0);
11811 else if (DECL_FUNCTION_SCOPE_P (decl)
11812 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11813 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11814 r = retrieve_local_specialization (decl);
11815 else
11816 /* The typedef is from a non-template context. */
11817 return t;
11819 if (r)
11821 r = TREE_TYPE (r);
11822 r = cp_build_qualified_type_real
11823 (r, cp_type_quals (t) | cp_type_quals (r),
11824 complain | tf_ignore_bad_quals);
11825 return r;
11827 else
11829 /* We don't have an instantiation yet, so drop the typedef. */
11830 int quals = cp_type_quals (t);
11831 t = DECL_ORIGINAL_TYPE (decl);
11832 t = cp_build_qualified_type_real (t, quals,
11833 complain | tf_ignore_bad_quals);
11837 if (type
11838 && code != TYPENAME_TYPE
11839 && code != TEMPLATE_TYPE_PARM
11840 && code != IDENTIFIER_NODE
11841 && code != FUNCTION_TYPE
11842 && code != METHOD_TYPE)
11843 type = tsubst (type, args, complain, in_decl);
11844 if (type == error_mark_node)
11845 return error_mark_node;
11847 switch (code)
11849 case RECORD_TYPE:
11850 case UNION_TYPE:
11851 case ENUMERAL_TYPE:
11852 return tsubst_aggr_type (t, args, complain, in_decl,
11853 /*entering_scope=*/0);
11855 case ERROR_MARK:
11856 case IDENTIFIER_NODE:
11857 case VOID_TYPE:
11858 case REAL_TYPE:
11859 case COMPLEX_TYPE:
11860 case VECTOR_TYPE:
11861 case BOOLEAN_TYPE:
11862 case NULLPTR_TYPE:
11863 case LANG_TYPE:
11864 return t;
11866 case INTEGER_TYPE:
11867 if (t == integer_type_node)
11868 return t;
11870 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11871 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11872 return t;
11875 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11877 max = tsubst_expr (omax, args, complain, in_decl,
11878 /*integral_constant_expression_p=*/false);
11880 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11881 needed. */
11882 if (TREE_CODE (max) == NOP_EXPR
11883 && TREE_SIDE_EFFECTS (omax)
11884 && !TREE_TYPE (max))
11885 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11887 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11888 with TREE_SIDE_EFFECTS that indicates this is not an integral
11889 constant expression. */
11890 if (processing_template_decl
11891 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11893 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11894 TREE_SIDE_EFFECTS (max) = 1;
11897 return compute_array_index_type (NULL_TREE, max, complain);
11900 case TEMPLATE_TYPE_PARM:
11901 case TEMPLATE_TEMPLATE_PARM:
11902 case BOUND_TEMPLATE_TEMPLATE_PARM:
11903 case TEMPLATE_PARM_INDEX:
11905 int idx;
11906 int level;
11907 int levels;
11908 tree arg = NULL_TREE;
11910 r = NULL_TREE;
11912 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11913 template_parm_level_and_index (t, &level, &idx);
11915 levels = TMPL_ARGS_DEPTH (args);
11916 if (level <= levels)
11918 arg = TMPL_ARG (args, level, idx);
11920 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11922 /* See through ARGUMENT_PACK_SELECT arguments. */
11923 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11924 /* If the selected argument is an expansion E, that most
11925 likely means we were called from
11926 gen_elem_of_pack_expansion_instantiation during the
11927 substituting of pack an argument pack (which Ith
11928 element is a pack expansion, where I is
11929 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
11930 In this case, the Ith element resulting from this
11931 substituting is going to be a pack expansion, which
11932 pattern is the pattern of E. Let's return the
11933 pattern of E, and
11934 gen_elem_of_pack_expansion_instantiation will
11935 build the resulting pack expansion from it. */
11936 if (PACK_EXPANSION_P (arg))
11938 /* Make sure we aren't throwing away arg info. */
11939 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
11940 arg = PACK_EXPANSION_PATTERN (arg);
11945 if (arg == error_mark_node)
11946 return error_mark_node;
11947 else if (arg != NULL_TREE)
11949 if (ARGUMENT_PACK_P (arg))
11950 /* If ARG is an argument pack, we don't actually want to
11951 perform a substitution here, because substitutions
11952 for argument packs are only done
11953 element-by-element. We can get to this point when
11954 substituting the type of a non-type template
11955 parameter pack, when that type actually contains
11956 template parameter packs from an outer template, e.g.,
11958 template<typename... Types> struct A {
11959 template<Types... Values> struct B { };
11960 }; */
11961 return t;
11963 if (code == TEMPLATE_TYPE_PARM)
11965 int quals;
11966 gcc_assert (TYPE_P (arg));
11968 quals = cp_type_quals (arg) | cp_type_quals (t);
11970 return cp_build_qualified_type_real
11971 (arg, quals, complain | tf_ignore_bad_quals);
11973 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11975 /* We are processing a type constructed from a
11976 template template parameter. */
11977 tree argvec = tsubst (TYPE_TI_ARGS (t),
11978 args, complain, in_decl);
11979 if (argvec == error_mark_node)
11980 return error_mark_node;
11982 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11983 || TREE_CODE (arg) == TEMPLATE_DECL
11984 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11986 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11987 /* Consider this code:
11989 template <template <class> class Template>
11990 struct Internal {
11991 template <class Arg> using Bind = Template<Arg>;
11994 template <template <class> class Template, class Arg>
11995 using Instantiate = Template<Arg>; //#0
11997 template <template <class> class Template,
11998 class Argument>
11999 using Bind =
12000 Instantiate<Internal<Template>::template Bind,
12001 Argument>; //#1
12003 When #1 is parsed, the
12004 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12005 parameter `Template' in #0 matches the
12006 UNBOUND_CLASS_TEMPLATE representing the argument
12007 `Internal<Template>::template Bind'; We then want
12008 to assemble the type `Bind<Argument>' that can't
12009 be fully created right now, because
12010 `Internal<Template>' not being complete, the Bind
12011 template cannot be looked up in that context. So
12012 we need to "store" `Bind<Argument>' for later
12013 when the context of Bind becomes complete. Let's
12014 store that in a TYPENAME_TYPE. */
12015 return make_typename_type (TYPE_CONTEXT (arg),
12016 build_nt (TEMPLATE_ID_EXPR,
12017 TYPE_IDENTIFIER (arg),
12018 argvec),
12019 typename_type,
12020 complain);
12022 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
12023 are resolving nested-types in the signature of a
12024 member function templates. Otherwise ARG is a
12025 TEMPLATE_DECL and is the real template to be
12026 instantiated. */
12027 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12028 arg = TYPE_NAME (arg);
12030 r = lookup_template_class (arg,
12031 argvec, in_decl,
12032 DECL_CONTEXT (arg),
12033 /*entering_scope=*/0,
12034 complain);
12035 return cp_build_qualified_type_real
12036 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12038 else
12039 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12040 return convert_from_reference (unshare_expr (arg));
12043 if (level == 1)
12044 /* This can happen during the attempted tsubst'ing in
12045 unify. This means that we don't yet have any information
12046 about the template parameter in question. */
12047 return t;
12049 /* Early in template argument deduction substitution, we don't
12050 want to reduce the level of 'auto', or it will be confused
12051 with a normal template parm in subsequent deduction. */
12052 if (is_auto (t) && (complain & tf_partial))
12053 return t;
12055 /* If we get here, we must have been looking at a parm for a
12056 more deeply nested template. Make a new version of this
12057 template parameter, but with a lower level. */
12058 switch (code)
12060 case TEMPLATE_TYPE_PARM:
12061 case TEMPLATE_TEMPLATE_PARM:
12062 case BOUND_TEMPLATE_TEMPLATE_PARM:
12063 if (cp_type_quals (t))
12065 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12066 r = cp_build_qualified_type_real
12067 (r, cp_type_quals (t),
12068 complain | (code == TEMPLATE_TYPE_PARM
12069 ? tf_ignore_bad_quals : 0));
12071 else
12073 r = copy_type (t);
12074 TEMPLATE_TYPE_PARM_INDEX (r)
12075 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12076 r, levels, args, complain);
12077 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12078 TYPE_MAIN_VARIANT (r) = r;
12079 TYPE_POINTER_TO (r) = NULL_TREE;
12080 TYPE_REFERENCE_TO (r) = NULL_TREE;
12082 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12083 /* We have reduced the level of the template
12084 template parameter, but not the levels of its
12085 template parameters, so canonical_type_parameter
12086 will not be able to find the canonical template
12087 template parameter for this level. Thus, we
12088 require structural equality checking to compare
12089 TEMPLATE_TEMPLATE_PARMs. */
12090 SET_TYPE_STRUCTURAL_EQUALITY (r);
12091 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12092 SET_TYPE_STRUCTURAL_EQUALITY (r);
12093 else
12094 TYPE_CANONICAL (r) = canonical_type_parameter (r);
12096 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12098 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
12099 complain, in_decl);
12100 if (argvec == error_mark_node)
12101 return error_mark_node;
12103 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
12104 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
12107 break;
12109 case TEMPLATE_PARM_INDEX:
12110 r = reduce_template_parm_level (t, type, levels, args, complain);
12111 break;
12113 default:
12114 gcc_unreachable ();
12117 return r;
12120 case TREE_LIST:
12122 tree purpose, value, chain;
12124 if (t == void_list_node)
12125 return t;
12127 purpose = TREE_PURPOSE (t);
12128 if (purpose)
12130 purpose = tsubst (purpose, args, complain, in_decl);
12131 if (purpose == error_mark_node)
12132 return error_mark_node;
12134 value = TREE_VALUE (t);
12135 if (value)
12137 value = tsubst (value, args, complain, in_decl);
12138 if (value == error_mark_node)
12139 return error_mark_node;
12141 chain = TREE_CHAIN (t);
12142 if (chain && chain != void_type_node)
12144 chain = tsubst (chain, args, complain, in_decl);
12145 if (chain == error_mark_node)
12146 return error_mark_node;
12148 if (purpose == TREE_PURPOSE (t)
12149 && value == TREE_VALUE (t)
12150 && chain == TREE_CHAIN (t))
12151 return t;
12152 return hash_tree_cons (purpose, value, chain);
12155 case TREE_BINFO:
12156 /* We should never be tsubsting a binfo. */
12157 gcc_unreachable ();
12159 case TREE_VEC:
12160 /* A vector of template arguments. */
12161 gcc_assert (!type);
12162 return tsubst_template_args (t, args, complain, in_decl);
12164 case POINTER_TYPE:
12165 case REFERENCE_TYPE:
12167 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
12168 return t;
12170 /* [temp.deduct]
12172 Type deduction may fail for any of the following
12173 reasons:
12175 -- Attempting to create a pointer to reference type.
12176 -- Attempting to create a reference to a reference type or
12177 a reference to void.
12179 Core issue 106 says that creating a reference to a reference
12180 during instantiation is no longer a cause for failure. We
12181 only enforce this check in strict C++98 mode. */
12182 if ((TREE_CODE (type) == REFERENCE_TYPE
12183 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
12184 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
12186 static location_t last_loc;
12188 /* We keep track of the last time we issued this error
12189 message to avoid spewing a ton of messages during a
12190 single bad template instantiation. */
12191 if (complain & tf_error
12192 && last_loc != input_location)
12194 if (VOID_TYPE_P (type))
12195 error ("forming reference to void");
12196 else if (code == POINTER_TYPE)
12197 error ("forming pointer to reference type %qT", type);
12198 else
12199 error ("forming reference to reference type %qT", type);
12200 last_loc = input_location;
12203 return error_mark_node;
12205 else if (TREE_CODE (type) == FUNCTION_TYPE
12206 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
12207 || type_memfn_rqual (type) != REF_QUAL_NONE))
12209 if (complain & tf_error)
12211 if (code == POINTER_TYPE)
12212 error ("forming pointer to qualified function type %qT",
12213 type);
12214 else
12215 error ("forming reference to qualified function type %qT",
12216 type);
12218 return error_mark_node;
12220 else if (code == POINTER_TYPE)
12222 r = build_pointer_type (type);
12223 if (TREE_CODE (type) == METHOD_TYPE)
12224 r = build_ptrmemfunc_type (r);
12226 else if (TREE_CODE (type) == REFERENCE_TYPE)
12227 /* In C++0x, during template argument substitution, when there is an
12228 attempt to create a reference to a reference type, reference
12229 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
12231 "If a template-argument for a template-parameter T names a type
12232 that is a reference to a type A, an attempt to create the type
12233 'lvalue reference to cv T' creates the type 'lvalue reference to
12234 A,' while an attempt to create the type type rvalue reference to
12235 cv T' creates the type T"
12237 r = cp_build_reference_type
12238 (TREE_TYPE (type),
12239 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
12240 else
12241 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
12242 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
12244 if (cxx_dialect >= cxx14
12245 && !(TREE_CODE (t) == REFERENCE_TYPE && REFERENCE_VLA_OK (t))
12246 && array_of_runtime_bound_p (type)
12247 && (flag_iso || warn_vla > 0))
12249 if (complain & tf_warning_or_error)
12250 pedwarn
12251 (input_location, OPT_Wvla,
12252 code == REFERENCE_TYPE
12253 ? G_("cannot declare reference to array of runtime bound")
12254 : G_("cannot declare pointer to array of runtime bound"));
12255 else
12256 r = error_mark_node;
12259 if (r != error_mark_node)
12260 /* Will this ever be needed for TYPE_..._TO values? */
12261 layout_type (r);
12263 return r;
12265 case OFFSET_TYPE:
12267 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
12268 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
12270 /* [temp.deduct]
12272 Type deduction may fail for any of the following
12273 reasons:
12275 -- Attempting to create "pointer to member of T" when T
12276 is not a class type. */
12277 if (complain & tf_error)
12278 error ("creating pointer to member of non-class type %qT", r);
12279 return error_mark_node;
12281 if (TREE_CODE (type) == REFERENCE_TYPE)
12283 if (complain & tf_error)
12284 error ("creating pointer to member reference type %qT", type);
12285 return error_mark_node;
12287 if (VOID_TYPE_P (type))
12289 if (complain & tf_error)
12290 error ("creating pointer to member of type void");
12291 return error_mark_node;
12293 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
12294 if (TREE_CODE (type) == FUNCTION_TYPE)
12296 /* The type of the implicit object parameter gets its
12297 cv-qualifiers from the FUNCTION_TYPE. */
12298 tree memptr;
12299 tree method_type
12300 = build_memfn_type (type, r, type_memfn_quals (type),
12301 type_memfn_rqual (type));
12302 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
12303 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
12304 complain);
12306 else
12307 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
12308 cp_type_quals (t),
12309 complain);
12311 case FUNCTION_TYPE:
12312 case METHOD_TYPE:
12314 tree fntype;
12315 tree specs;
12316 fntype = tsubst_function_type (t, args, complain, in_decl);
12317 if (fntype == error_mark_node)
12318 return error_mark_node;
12320 /* Substitute the exception specification. */
12321 specs = tsubst_exception_specification (t, args, complain,
12322 in_decl, /*defer_ok*/true);
12323 if (specs == error_mark_node)
12324 return error_mark_node;
12325 if (specs)
12326 fntype = build_exception_variant (fntype, specs);
12327 return fntype;
12329 case ARRAY_TYPE:
12331 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
12332 if (domain == error_mark_node)
12333 return error_mark_node;
12335 /* As an optimization, we avoid regenerating the array type if
12336 it will obviously be the same as T. */
12337 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
12338 return t;
12340 /* These checks should match the ones in create_array_type_for_decl.
12342 [temp.deduct]
12344 The deduction may fail for any of the following reasons:
12346 -- Attempting to create an array with an element type that
12347 is void, a function type, or a reference type, or [DR337]
12348 an abstract class type. */
12349 if (VOID_TYPE_P (type)
12350 || TREE_CODE (type) == FUNCTION_TYPE
12351 || (TREE_CODE (type) == ARRAY_TYPE
12352 && TYPE_DOMAIN (type) == NULL_TREE)
12353 || TREE_CODE (type) == REFERENCE_TYPE)
12355 if (complain & tf_error)
12356 error ("creating array of %qT", type);
12357 return error_mark_node;
12360 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
12361 return error_mark_node;
12363 r = build_cplus_array_type (type, domain);
12365 if (TYPE_USER_ALIGN (t))
12367 TYPE_ALIGN (r) = TYPE_ALIGN (t);
12368 TYPE_USER_ALIGN (r) = 1;
12371 return r;
12374 case TYPENAME_TYPE:
12376 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12377 in_decl, /*entering_scope=*/1);
12378 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
12379 complain, in_decl);
12381 if (ctx == error_mark_node || f == error_mark_node)
12382 return error_mark_node;
12384 if (!MAYBE_CLASS_TYPE_P (ctx))
12386 if (complain & tf_error)
12387 error ("%qT is not a class, struct, or union type", ctx);
12388 return error_mark_node;
12390 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
12392 /* Normally, make_typename_type does not require that the CTX
12393 have complete type in order to allow things like:
12395 template <class T> struct S { typename S<T>::X Y; };
12397 But, such constructs have already been resolved by this
12398 point, so here CTX really should have complete type, unless
12399 it's a partial instantiation. */
12400 ctx = complete_type (ctx);
12401 if (!COMPLETE_TYPE_P (ctx))
12403 if (complain & tf_error)
12404 cxx_incomplete_type_error (NULL_TREE, ctx);
12405 return error_mark_node;
12409 f = make_typename_type (ctx, f, typename_type,
12410 complain | tf_keep_type_decl);
12411 if (f == error_mark_node)
12412 return f;
12413 if (TREE_CODE (f) == TYPE_DECL)
12415 complain |= tf_ignore_bad_quals;
12416 f = TREE_TYPE (f);
12419 if (TREE_CODE (f) != TYPENAME_TYPE)
12421 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
12423 if (complain & tf_error)
12424 error ("%qT resolves to %qT, which is not an enumeration type",
12425 t, f);
12426 else
12427 return error_mark_node;
12429 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
12431 if (complain & tf_error)
12432 error ("%qT resolves to %qT, which is is not a class type",
12433 t, f);
12434 else
12435 return error_mark_node;
12439 return cp_build_qualified_type_real
12440 (f, cp_type_quals (f) | cp_type_quals (t), complain);
12443 case UNBOUND_CLASS_TEMPLATE:
12445 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12446 in_decl, /*entering_scope=*/1);
12447 tree name = TYPE_IDENTIFIER (t);
12448 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
12450 if (ctx == error_mark_node || name == error_mark_node)
12451 return error_mark_node;
12453 if (parm_list)
12454 parm_list = tsubst_template_parms (parm_list, args, complain);
12455 return make_unbound_class_template (ctx, name, parm_list, complain);
12458 case TYPEOF_TYPE:
12460 tree type;
12462 ++cp_unevaluated_operand;
12463 ++c_inhibit_evaluation_warnings;
12465 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
12466 complain, in_decl,
12467 /*integral_constant_expression_p=*/false);
12469 --cp_unevaluated_operand;
12470 --c_inhibit_evaluation_warnings;
12472 type = finish_typeof (type);
12473 return cp_build_qualified_type_real (type,
12474 cp_type_quals (t)
12475 | cp_type_quals (type),
12476 complain);
12479 case DECLTYPE_TYPE:
12481 tree type;
12483 ++cp_unevaluated_operand;
12484 ++c_inhibit_evaluation_warnings;
12486 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
12487 complain|tf_decltype, in_decl,
12488 /*function_p*/false,
12489 /*integral_constant_expression*/false);
12491 --cp_unevaluated_operand;
12492 --c_inhibit_evaluation_warnings;
12494 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
12495 type = lambda_capture_field_type (type,
12496 DECLTYPE_FOR_INIT_CAPTURE (t));
12497 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
12498 type = lambda_proxy_type (type);
12499 else
12501 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
12502 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
12503 && EXPR_P (type))
12504 /* In a template ~id could be either a complement expression
12505 or an unqualified-id naming a destructor; if instantiating
12506 it produces an expression, it's not an id-expression or
12507 member access. */
12508 id = false;
12509 type = finish_decltype_type (type, id, complain);
12511 return cp_build_qualified_type_real (type,
12512 cp_type_quals (t)
12513 | cp_type_quals (type),
12514 complain | tf_ignore_bad_quals);
12517 case UNDERLYING_TYPE:
12519 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
12520 complain, in_decl);
12521 return finish_underlying_type (type);
12524 case TYPE_ARGUMENT_PACK:
12525 case NONTYPE_ARGUMENT_PACK:
12527 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
12528 tree packed_out =
12529 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
12530 args,
12531 complain,
12532 in_decl);
12533 SET_ARGUMENT_PACK_ARGS (r, packed_out);
12535 /* For template nontype argument packs, also substitute into
12536 the type. */
12537 if (code == NONTYPE_ARGUMENT_PACK)
12538 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
12540 return r;
12542 break;
12544 case VOID_CST:
12545 case INTEGER_CST:
12546 case REAL_CST:
12547 case STRING_CST:
12548 case PLUS_EXPR:
12549 case MINUS_EXPR:
12550 case NEGATE_EXPR:
12551 case NOP_EXPR:
12552 case INDIRECT_REF:
12553 case ADDR_EXPR:
12554 case CALL_EXPR:
12555 case ARRAY_REF:
12556 case SCOPE_REF:
12557 /* We should use one of the expression tsubsts for these codes. */
12558 gcc_unreachable ();
12560 default:
12561 sorry ("use of %qs in template", get_tree_code_name (code));
12562 return error_mark_node;
12566 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
12567 type of the expression on the left-hand side of the "." or "->"
12568 operator. */
12570 static tree
12571 tsubst_baselink (tree baselink, tree object_type,
12572 tree args, tsubst_flags_t complain, tree in_decl)
12574 tree name;
12575 tree qualifying_scope;
12576 tree fns;
12577 tree optype;
12578 tree template_args = 0;
12579 bool template_id_p = false;
12580 bool qualified = BASELINK_QUALIFIED_P (baselink);
12582 /* A baselink indicates a function from a base class. Both the
12583 BASELINK_ACCESS_BINFO and the base class referenced may
12584 indicate bases of the template class, rather than the
12585 instantiated class. In addition, lookups that were not
12586 ambiguous before may be ambiguous now. Therefore, we perform
12587 the lookup again. */
12588 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
12589 qualifying_scope = tsubst (qualifying_scope, args,
12590 complain, in_decl);
12591 fns = BASELINK_FUNCTIONS (baselink);
12592 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
12593 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
12595 template_id_p = true;
12596 template_args = TREE_OPERAND (fns, 1);
12597 fns = TREE_OPERAND (fns, 0);
12598 if (template_args)
12599 template_args = tsubst_template_args (template_args, args,
12600 complain, in_decl);
12602 name = DECL_NAME (get_first_fn (fns));
12603 if (IDENTIFIER_TYPENAME_P (name))
12604 name = mangle_conv_op_name_for_type (optype);
12605 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
12606 if (!baselink)
12607 return error_mark_node;
12609 /* If lookup found a single function, mark it as used at this
12610 point. (If it lookup found multiple functions the one selected
12611 later by overload resolution will be marked as used at that
12612 point.) */
12613 if (BASELINK_P (baselink))
12614 fns = BASELINK_FUNCTIONS (baselink);
12615 if (!template_id_p && !really_overloaded_fn (fns))
12616 mark_used (OVL_CURRENT (fns));
12618 /* Add back the template arguments, if present. */
12619 if (BASELINK_P (baselink) && template_id_p)
12620 BASELINK_FUNCTIONS (baselink)
12621 = build_nt (TEMPLATE_ID_EXPR,
12622 BASELINK_FUNCTIONS (baselink),
12623 template_args);
12624 /* Update the conversion operator type. */
12625 BASELINK_OPTYPE (baselink) = optype;
12627 if (!object_type)
12628 object_type = current_class_type;
12630 if (qualified)
12631 baselink = adjust_result_of_qualified_name_lookup (baselink,
12632 qualifying_scope,
12633 object_type);
12634 return baselink;
12637 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
12638 true if the qualified-id will be a postfix-expression in-and-of
12639 itself; false if more of the postfix-expression follows the
12640 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
12641 of "&". */
12643 static tree
12644 tsubst_qualified_id (tree qualified_id, tree args,
12645 tsubst_flags_t complain, tree in_decl,
12646 bool done, bool address_p)
12648 tree expr;
12649 tree scope;
12650 tree name;
12651 bool is_template;
12652 tree template_args;
12653 location_t loc = UNKNOWN_LOCATION;
12655 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
12657 /* Figure out what name to look up. */
12658 name = TREE_OPERAND (qualified_id, 1);
12659 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
12661 is_template = true;
12662 loc = EXPR_LOCATION (name);
12663 template_args = TREE_OPERAND (name, 1);
12664 if (template_args)
12665 template_args = tsubst_template_args (template_args, args,
12666 complain, in_decl);
12667 name = TREE_OPERAND (name, 0);
12669 else
12671 is_template = false;
12672 template_args = NULL_TREE;
12675 /* Substitute into the qualifying scope. When there are no ARGS, we
12676 are just trying to simplify a non-dependent expression. In that
12677 case the qualifying scope may be dependent, and, in any case,
12678 substituting will not help. */
12679 scope = TREE_OPERAND (qualified_id, 0);
12680 if (args)
12682 scope = tsubst (scope, args, complain, in_decl);
12683 expr = tsubst_copy (name, args, complain, in_decl);
12685 else
12686 expr = name;
12688 if (dependent_scope_p (scope))
12690 if (is_template)
12691 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
12692 return build_qualified_name (NULL_TREE, scope, expr,
12693 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
12696 if (!BASELINK_P (name) && !DECL_P (expr))
12698 if (TREE_CODE (expr) == BIT_NOT_EXPR)
12700 /* A BIT_NOT_EXPR is used to represent a destructor. */
12701 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
12703 error ("qualifying type %qT does not match destructor name ~%qT",
12704 scope, TREE_OPERAND (expr, 0));
12705 expr = error_mark_node;
12707 else
12708 expr = lookup_qualified_name (scope, complete_dtor_identifier,
12709 /*is_type_p=*/0, false);
12711 else
12712 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12713 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
12714 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
12716 if (complain & tf_error)
12718 error ("dependent-name %qE is parsed as a non-type, but "
12719 "instantiation yields a type", qualified_id);
12720 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
12722 return error_mark_node;
12726 if (DECL_P (expr))
12728 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
12729 scope);
12730 /* Remember that there was a reference to this entity. */
12731 mark_used (expr);
12734 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
12736 if (complain & tf_error)
12737 qualified_name_lookup_error (scope,
12738 TREE_OPERAND (qualified_id, 1),
12739 expr, input_location);
12740 return error_mark_node;
12743 if (is_template)
12744 expr = lookup_template_function (expr, template_args);
12746 if (expr == error_mark_node && complain & tf_error)
12747 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
12748 expr, input_location);
12749 else if (TYPE_P (scope))
12751 expr = (adjust_result_of_qualified_name_lookup
12752 (expr, scope, current_nonlambda_class_type ()));
12753 expr = (finish_qualified_id_expr
12754 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12755 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12756 /*template_arg_p=*/false, complain));
12759 /* Expressions do not generally have reference type. */
12760 if (TREE_CODE (expr) != SCOPE_REF
12761 /* However, if we're about to form a pointer-to-member, we just
12762 want the referenced member referenced. */
12763 && TREE_CODE (expr) != OFFSET_REF)
12764 expr = convert_from_reference (expr);
12766 return expr;
12769 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
12770 initializer, DECL is the substituted VAR_DECL. Other arguments are as
12771 for tsubst. */
12773 static tree
12774 tsubst_init (tree init, tree decl, tree args,
12775 tsubst_flags_t complain, tree in_decl)
12777 if (!init)
12778 return NULL_TREE;
12780 init = tsubst_expr (init, args, complain, in_decl, false);
12782 if (!init)
12784 /* If we had an initializer but it
12785 instantiated to nothing,
12786 value-initialize the object. This will
12787 only occur when the initializer was a
12788 pack expansion where the parameter packs
12789 used in that expansion were of length
12790 zero. */
12791 init = build_value_init (TREE_TYPE (decl),
12792 complain);
12793 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12794 init = get_target_expr_sfinae (init, complain);
12797 return init;
12800 /* Like tsubst, but deals with expressions. This function just replaces
12801 template parms; to finish processing the resultant expression, use
12802 tsubst_copy_and_build or tsubst_expr. */
12804 static tree
12805 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12807 enum tree_code code;
12808 tree r;
12810 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12811 return t;
12813 code = TREE_CODE (t);
12815 switch (code)
12817 case PARM_DECL:
12818 r = retrieve_local_specialization (t);
12820 if (r == NULL_TREE)
12822 /* We get here for a use of 'this' in an NSDMI. */
12823 if (DECL_NAME (t) == this_identifier
12824 && current_function_decl
12825 && DECL_CONSTRUCTOR_P (current_function_decl))
12826 return current_class_ptr;
12828 /* This can happen for a parameter name used later in a function
12829 declaration (such as in a late-specified return type). Just
12830 make a dummy decl, since it's only used for its type. */
12831 gcc_assert (cp_unevaluated_operand != 0);
12832 r = tsubst_decl (t, args, complain);
12833 /* Give it the template pattern as its context; its true context
12834 hasn't been instantiated yet and this is good enough for
12835 mangling. */
12836 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12839 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12840 r = ARGUMENT_PACK_SELECT_ARG (r);
12841 mark_used (r);
12842 return r;
12844 case CONST_DECL:
12846 tree enum_type;
12847 tree v;
12849 if (DECL_TEMPLATE_PARM_P (t))
12850 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12851 /* There is no need to substitute into namespace-scope
12852 enumerators. */
12853 if (DECL_NAMESPACE_SCOPE_P (t))
12854 return t;
12855 /* If ARGS is NULL, then T is known to be non-dependent. */
12856 if (args == NULL_TREE)
12857 return scalar_constant_value (t);
12859 /* Unfortunately, we cannot just call lookup_name here.
12860 Consider:
12862 template <int I> int f() {
12863 enum E { a = I };
12864 struct S { void g() { E e = a; } };
12867 When we instantiate f<7>::S::g(), say, lookup_name is not
12868 clever enough to find f<7>::a. */
12869 enum_type
12870 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12871 /*entering_scope=*/0);
12873 for (v = TYPE_VALUES (enum_type);
12874 v != NULL_TREE;
12875 v = TREE_CHAIN (v))
12876 if (TREE_PURPOSE (v) == DECL_NAME (t))
12877 return TREE_VALUE (v);
12879 /* We didn't find the name. That should never happen; if
12880 name-lookup found it during preliminary parsing, we
12881 should find it again here during instantiation. */
12882 gcc_unreachable ();
12884 return t;
12886 case FIELD_DECL:
12887 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12889 /* Check for a local specialization set up by
12890 tsubst_pack_expansion. */
12891 if (tree r = retrieve_local_specialization (t))
12893 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12894 r = ARGUMENT_PACK_SELECT_ARG (r);
12895 return r;
12898 /* When retrieving a capture pack from a generic lambda, remove the
12899 lambda call op's own template argument list from ARGS. Only the
12900 template arguments active for the closure type should be used to
12901 retrieve the pack specialization. */
12902 if (LAMBDA_FUNCTION_P (current_function_decl)
12903 && (template_class_depth (DECL_CONTEXT (t))
12904 != TMPL_ARGS_DEPTH (args)))
12905 args = strip_innermost_template_args (args, 1);
12907 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
12908 tsubst_decl put in the hash table. */
12909 return retrieve_specialization (t, args, 0);
12912 if (DECL_CONTEXT (t))
12914 tree ctx;
12916 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12917 /*entering_scope=*/1);
12918 if (ctx != DECL_CONTEXT (t))
12920 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12921 if (!r)
12923 if (complain & tf_error)
12924 error ("using invalid field %qD", t);
12925 return error_mark_node;
12927 return r;
12931 return t;
12933 case VAR_DECL:
12934 case FUNCTION_DECL:
12935 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12936 r = tsubst (t, args, complain, in_decl);
12937 else if (local_variable_p (t))
12939 r = retrieve_local_specialization (t);
12940 if (r == NULL_TREE)
12942 /* First try name lookup to find the instantiation. */
12943 r = lookup_name (DECL_NAME (t));
12944 if (r)
12946 /* Make sure that the one we found is the one we want. */
12947 tree ctx = tsubst (DECL_CONTEXT (t), args,
12948 complain, in_decl);
12949 if (ctx != DECL_CONTEXT (r))
12950 r = NULL_TREE;
12953 if (r)
12954 /* OK */;
12955 else
12957 /* This can happen for a variable used in a
12958 late-specified return type of a local lambda, or for a
12959 local static or constant. Building a new VAR_DECL
12960 should be OK in all those cases. */
12961 r = tsubst_decl (t, args, complain);
12962 if (decl_maybe_constant_var_p (r))
12964 /* We can't call cp_finish_decl, so handle the
12965 initializer by hand. */
12966 tree init = tsubst_init (DECL_INITIAL (t), r, args,
12967 complain, in_decl);
12968 if (!processing_template_decl)
12969 init = maybe_constant_init (init);
12970 if (processing_template_decl
12971 ? potential_constant_expression (init)
12972 : reduced_constant_expression_p (init))
12973 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
12974 = TREE_CONSTANT (r) = true;
12975 DECL_INITIAL (r) = init;
12977 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
12978 || decl_constant_var_p (r)
12979 || errorcount || sorrycount);
12980 if (!processing_template_decl)
12982 if (TREE_STATIC (r))
12983 rest_of_decl_compilation (r, toplevel_bindings_p (),
12984 at_eof);
12985 else if (decl_constant_var_p (r))
12986 /* A use of a local constant decays to its value.
12987 FIXME update for core DR 696. */
12988 r = scalar_constant_value (r);
12991 /* Remember this for subsequent uses. */
12992 if (local_specializations)
12993 register_local_specialization (r, t);
12996 else
12997 r = t;
12998 mark_used (r);
12999 return r;
13001 case NAMESPACE_DECL:
13002 return t;
13004 case OVERLOAD:
13005 /* An OVERLOAD will always be a non-dependent overload set; an
13006 overload set from function scope will just be represented with an
13007 IDENTIFIER_NODE, and from class scope with a BASELINK. */
13008 gcc_assert (!uses_template_parms (t));
13009 return t;
13011 case BASELINK:
13012 return tsubst_baselink (t, current_nonlambda_class_type (),
13013 args, complain, in_decl);
13015 case TEMPLATE_DECL:
13016 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13017 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13018 args, complain, in_decl);
13019 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13020 return tsubst (t, args, complain, in_decl);
13021 else if (DECL_CLASS_SCOPE_P (t)
13022 && uses_template_parms (DECL_CONTEXT (t)))
13024 /* Template template argument like the following example need
13025 special treatment:
13027 template <template <class> class TT> struct C {};
13028 template <class T> struct D {
13029 template <class U> struct E {};
13030 C<E> c; // #1
13032 D<int> d; // #2
13034 We are processing the template argument `E' in #1 for
13035 the template instantiation #2. Originally, `E' is a
13036 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13037 have to substitute this with one having context `D<int>'. */
13039 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13040 return lookup_field (context, DECL_NAME(t), 0, false);
13042 else
13043 /* Ordinary template template argument. */
13044 return t;
13046 case CAST_EXPR:
13047 case REINTERPRET_CAST_EXPR:
13048 case CONST_CAST_EXPR:
13049 case STATIC_CAST_EXPR:
13050 case DYNAMIC_CAST_EXPR:
13051 case IMPLICIT_CONV_EXPR:
13052 case CONVERT_EXPR:
13053 case NOP_EXPR:
13055 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13056 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13057 return build1 (code, type, op0);
13060 case SIZEOF_EXPR:
13061 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13064 tree expanded, op = TREE_OPERAND (t, 0);
13065 int len = 0;
13067 if (SIZEOF_EXPR_TYPE_P (t))
13068 op = TREE_TYPE (op);
13070 ++cp_unevaluated_operand;
13071 ++c_inhibit_evaluation_warnings;
13072 /* We only want to compute the number of arguments. */
13073 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13074 --cp_unevaluated_operand;
13075 --c_inhibit_evaluation_warnings;
13077 if (TREE_CODE (expanded) == TREE_VEC)
13078 len = TREE_VEC_LENGTH (expanded);
13080 if (expanded == error_mark_node)
13081 return error_mark_node;
13082 else if (PACK_EXPANSION_P (expanded)
13083 || (TREE_CODE (expanded) == TREE_VEC
13084 && len > 0
13085 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13087 if (TREE_CODE (expanded) == TREE_VEC)
13088 expanded = TREE_VEC_ELT (expanded, len - 1);
13090 if (TYPE_P (expanded))
13091 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13092 complain & tf_error);
13093 else
13094 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13095 complain & tf_error);
13097 else
13098 return build_int_cst (size_type_node, len);
13100 if (SIZEOF_EXPR_TYPE_P (t))
13102 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13103 args, complain, in_decl);
13104 r = build1 (NOP_EXPR, r, error_mark_node);
13105 r = build1 (SIZEOF_EXPR,
13106 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13107 SIZEOF_EXPR_TYPE_P (r) = 1;
13108 return r;
13110 /* Fall through */
13112 case INDIRECT_REF:
13113 case NEGATE_EXPR:
13114 case TRUTH_NOT_EXPR:
13115 case BIT_NOT_EXPR:
13116 case ADDR_EXPR:
13117 case UNARY_PLUS_EXPR: /* Unary + */
13118 case ALIGNOF_EXPR:
13119 case AT_ENCODE_EXPR:
13120 case ARROW_EXPR:
13121 case THROW_EXPR:
13122 case TYPEID_EXPR:
13123 case REALPART_EXPR:
13124 case IMAGPART_EXPR:
13125 case PAREN_EXPR:
13127 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13128 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13129 return build1 (code, type, op0);
13132 case COMPONENT_REF:
13134 tree object;
13135 tree name;
13137 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13138 name = TREE_OPERAND (t, 1);
13139 if (TREE_CODE (name) == BIT_NOT_EXPR)
13141 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13142 complain, in_decl);
13143 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13145 else if (TREE_CODE (name) == SCOPE_REF
13146 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
13148 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
13149 complain, in_decl);
13150 name = TREE_OPERAND (name, 1);
13151 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13152 complain, in_decl);
13153 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13154 name = build_qualified_name (/*type=*/NULL_TREE,
13155 base, name,
13156 /*template_p=*/false);
13158 else if (BASELINK_P (name))
13159 name = tsubst_baselink (name,
13160 non_reference (TREE_TYPE (object)),
13161 args, complain,
13162 in_decl);
13163 else
13164 name = tsubst_copy (name, args, complain, in_decl);
13165 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
13168 case PLUS_EXPR:
13169 case MINUS_EXPR:
13170 case MULT_EXPR:
13171 case TRUNC_DIV_EXPR:
13172 case CEIL_DIV_EXPR:
13173 case FLOOR_DIV_EXPR:
13174 case ROUND_DIV_EXPR:
13175 case EXACT_DIV_EXPR:
13176 case BIT_AND_EXPR:
13177 case BIT_IOR_EXPR:
13178 case BIT_XOR_EXPR:
13179 case TRUNC_MOD_EXPR:
13180 case FLOOR_MOD_EXPR:
13181 case TRUTH_ANDIF_EXPR:
13182 case TRUTH_ORIF_EXPR:
13183 case TRUTH_AND_EXPR:
13184 case TRUTH_OR_EXPR:
13185 case RSHIFT_EXPR:
13186 case LSHIFT_EXPR:
13187 case RROTATE_EXPR:
13188 case LROTATE_EXPR:
13189 case EQ_EXPR:
13190 case NE_EXPR:
13191 case MAX_EXPR:
13192 case MIN_EXPR:
13193 case LE_EXPR:
13194 case GE_EXPR:
13195 case LT_EXPR:
13196 case GT_EXPR:
13197 case COMPOUND_EXPR:
13198 case DOTSTAR_EXPR:
13199 case MEMBER_REF:
13200 case PREDECREMENT_EXPR:
13201 case PREINCREMENT_EXPR:
13202 case POSTDECREMENT_EXPR:
13203 case POSTINCREMENT_EXPR:
13205 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13206 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13207 return build_nt (code, op0, op1);
13210 case SCOPE_REF:
13212 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13213 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13214 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
13215 QUALIFIED_NAME_IS_TEMPLATE (t));
13218 case ARRAY_REF:
13220 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13221 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13222 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
13225 case CALL_EXPR:
13227 int n = VL_EXP_OPERAND_LENGTH (t);
13228 tree result = build_vl_exp (CALL_EXPR, n);
13229 int i;
13230 for (i = 0; i < n; i++)
13231 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
13232 complain, in_decl);
13233 return result;
13236 case COND_EXPR:
13237 case MODOP_EXPR:
13238 case PSEUDO_DTOR_EXPR:
13239 case VEC_PERM_EXPR:
13241 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13242 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13243 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13244 r = build_nt (code, op0, op1, op2);
13245 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13246 return r;
13249 case NEW_EXPR:
13251 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13252 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13253 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13254 r = build_nt (code, op0, op1, op2);
13255 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
13256 return r;
13259 case DELETE_EXPR:
13261 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13262 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13263 r = build_nt (code, op0, op1);
13264 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
13265 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
13266 return r;
13269 case TEMPLATE_ID_EXPR:
13271 /* Substituted template arguments */
13272 tree fn = TREE_OPERAND (t, 0);
13273 tree targs = TREE_OPERAND (t, 1);
13275 fn = tsubst_copy (fn, args, complain, in_decl);
13276 if (targs)
13277 targs = tsubst_template_args (targs, args, complain, in_decl);
13279 return lookup_template_function (fn, targs);
13282 case TREE_LIST:
13284 tree purpose, value, chain;
13286 if (t == void_list_node)
13287 return t;
13289 purpose = TREE_PURPOSE (t);
13290 if (purpose)
13291 purpose = tsubst_copy (purpose, args, complain, in_decl);
13292 value = TREE_VALUE (t);
13293 if (value)
13294 value = tsubst_copy (value, args, complain, in_decl);
13295 chain = TREE_CHAIN (t);
13296 if (chain && chain != void_type_node)
13297 chain = tsubst_copy (chain, args, complain, in_decl);
13298 if (purpose == TREE_PURPOSE (t)
13299 && value == TREE_VALUE (t)
13300 && chain == TREE_CHAIN (t))
13301 return t;
13302 return tree_cons (purpose, value, chain);
13305 case RECORD_TYPE:
13306 case UNION_TYPE:
13307 case ENUMERAL_TYPE:
13308 case INTEGER_TYPE:
13309 case TEMPLATE_TYPE_PARM:
13310 case TEMPLATE_TEMPLATE_PARM:
13311 case BOUND_TEMPLATE_TEMPLATE_PARM:
13312 case TEMPLATE_PARM_INDEX:
13313 case POINTER_TYPE:
13314 case REFERENCE_TYPE:
13315 case OFFSET_TYPE:
13316 case FUNCTION_TYPE:
13317 case METHOD_TYPE:
13318 case ARRAY_TYPE:
13319 case TYPENAME_TYPE:
13320 case UNBOUND_CLASS_TEMPLATE:
13321 case TYPEOF_TYPE:
13322 case DECLTYPE_TYPE:
13323 case TYPE_DECL:
13324 return tsubst (t, args, complain, in_decl);
13326 case USING_DECL:
13327 t = DECL_NAME (t);
13328 /* Fall through. */
13329 case IDENTIFIER_NODE:
13330 if (IDENTIFIER_TYPENAME_P (t))
13332 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13333 return mangle_conv_op_name_for_type (new_type);
13335 else
13336 return t;
13338 case CONSTRUCTOR:
13339 /* This is handled by tsubst_copy_and_build. */
13340 gcc_unreachable ();
13342 case VA_ARG_EXPR:
13344 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13345 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13346 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
13349 case CLEANUP_POINT_EXPR:
13350 /* We shouldn't have built any of these during initial template
13351 generation. Instead, they should be built during instantiation
13352 in response to the saved STMT_IS_FULL_EXPR_P setting. */
13353 gcc_unreachable ();
13355 case OFFSET_REF:
13357 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13358 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13359 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13360 r = build2 (code, type, op0, op1);
13361 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
13362 mark_used (TREE_OPERAND (r, 1));
13363 return r;
13366 case EXPR_PACK_EXPANSION:
13367 error ("invalid use of pack expansion expression");
13368 return error_mark_node;
13370 case NONTYPE_ARGUMENT_PACK:
13371 error ("use %<...%> to expand argument pack");
13372 return error_mark_node;
13374 case VOID_CST:
13375 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
13376 return t;
13378 case INTEGER_CST:
13379 case REAL_CST:
13380 case STRING_CST:
13381 case COMPLEX_CST:
13383 /* Instantiate any typedefs in the type. */
13384 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13385 r = fold_convert (type, t);
13386 gcc_assert (TREE_CODE (r) == code);
13387 return r;
13390 case PTRMEM_CST:
13391 /* These can sometimes show up in a partial instantiation, but never
13392 involve template parms. */
13393 gcc_assert (!uses_template_parms (t));
13394 return t;
13396 default:
13397 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
13398 gcc_checking_assert (false);
13399 return t;
13403 /* Like tsubst_copy, but specifically for OpenMP clauses. */
13405 static tree
13406 tsubst_omp_clauses (tree clauses, bool declare_simd,
13407 tree args, tsubst_flags_t complain, tree in_decl)
13409 tree new_clauses = NULL, nc, oc;
13411 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
13413 nc = copy_node (oc);
13414 OMP_CLAUSE_CHAIN (nc) = new_clauses;
13415 new_clauses = nc;
13417 switch (OMP_CLAUSE_CODE (nc))
13419 case OMP_CLAUSE_LASTPRIVATE:
13420 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
13422 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
13423 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
13424 in_decl, /*integral_constant_expression_p=*/false);
13425 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
13426 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
13428 /* FALLTHRU */
13429 case OMP_CLAUSE_PRIVATE:
13430 case OMP_CLAUSE_SHARED:
13431 case OMP_CLAUSE_FIRSTPRIVATE:
13432 case OMP_CLAUSE_COPYIN:
13433 case OMP_CLAUSE_COPYPRIVATE:
13434 case OMP_CLAUSE_IF:
13435 case OMP_CLAUSE_NUM_THREADS:
13436 case OMP_CLAUSE_SCHEDULE:
13437 case OMP_CLAUSE_COLLAPSE:
13438 case OMP_CLAUSE_FINAL:
13439 case OMP_CLAUSE_DEPEND:
13440 case OMP_CLAUSE_FROM:
13441 case OMP_CLAUSE_TO:
13442 case OMP_CLAUSE_UNIFORM:
13443 case OMP_CLAUSE_MAP:
13444 case OMP_CLAUSE_DEVICE:
13445 case OMP_CLAUSE_DIST_SCHEDULE:
13446 case OMP_CLAUSE_NUM_TEAMS:
13447 case OMP_CLAUSE_THREAD_LIMIT:
13448 case OMP_CLAUSE_SAFELEN:
13449 case OMP_CLAUSE_SIMDLEN:
13450 OMP_CLAUSE_OPERAND (nc, 0)
13451 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13452 in_decl, /*integral_constant_expression_p=*/false);
13453 break;
13454 case OMP_CLAUSE_REDUCTION:
13455 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
13457 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
13458 if (TREE_CODE (placeholder) == SCOPE_REF)
13460 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
13461 complain, in_decl);
13462 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
13463 = build_qualified_name (NULL_TREE, scope,
13464 TREE_OPERAND (placeholder, 1),
13465 false);
13467 else
13468 gcc_assert (identifier_p (placeholder));
13470 OMP_CLAUSE_OPERAND (nc, 0)
13471 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13472 in_decl, /*integral_constant_expression_p=*/false);
13473 break;
13474 case OMP_CLAUSE_LINEAR:
13475 case OMP_CLAUSE_ALIGNED:
13476 OMP_CLAUSE_OPERAND (nc, 0)
13477 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13478 in_decl, /*integral_constant_expression_p=*/false);
13479 OMP_CLAUSE_OPERAND (nc, 1)
13480 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
13481 in_decl, /*integral_constant_expression_p=*/false);
13482 break;
13484 case OMP_CLAUSE_NOWAIT:
13485 case OMP_CLAUSE_ORDERED:
13486 case OMP_CLAUSE_DEFAULT:
13487 case OMP_CLAUSE_UNTIED:
13488 case OMP_CLAUSE_MERGEABLE:
13489 case OMP_CLAUSE_INBRANCH:
13490 case OMP_CLAUSE_NOTINBRANCH:
13491 case OMP_CLAUSE_PROC_BIND:
13492 case OMP_CLAUSE_FOR:
13493 case OMP_CLAUSE_PARALLEL:
13494 case OMP_CLAUSE_SECTIONS:
13495 case OMP_CLAUSE_TASKGROUP:
13496 break;
13497 default:
13498 gcc_unreachable ();
13502 new_clauses = nreverse (new_clauses);
13503 if (!declare_simd)
13504 new_clauses = finish_omp_clauses (new_clauses);
13505 return new_clauses;
13508 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
13510 static tree
13511 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
13512 tree in_decl)
13514 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
13516 tree purpose, value, chain;
13518 if (t == NULL)
13519 return t;
13521 if (TREE_CODE (t) != TREE_LIST)
13522 return tsubst_copy_and_build (t, args, complain, in_decl,
13523 /*function_p=*/false,
13524 /*integral_constant_expression_p=*/false);
13526 if (t == void_list_node)
13527 return t;
13529 purpose = TREE_PURPOSE (t);
13530 if (purpose)
13531 purpose = RECUR (purpose);
13532 value = TREE_VALUE (t);
13533 if (value)
13535 if (TREE_CODE (value) != LABEL_DECL)
13536 value = RECUR (value);
13537 else
13539 value = lookup_label (DECL_NAME (value));
13540 gcc_assert (TREE_CODE (value) == LABEL_DECL);
13541 TREE_USED (value) = 1;
13544 chain = TREE_CHAIN (t);
13545 if (chain && chain != void_type_node)
13546 chain = RECUR (chain);
13547 return tree_cons (purpose, value, chain);
13548 #undef RECUR
13551 /* Substitute one OMP_FOR iterator. */
13553 static void
13554 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
13555 tree condv, tree incrv, tree *clauses,
13556 tree args, tsubst_flags_t complain, tree in_decl,
13557 bool integral_constant_expression_p)
13559 #define RECUR(NODE) \
13560 tsubst_expr ((NODE), args, complain, in_decl, \
13561 integral_constant_expression_p)
13562 tree decl, init, cond, incr;
13564 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
13565 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
13566 decl = TREE_OPERAND (init, 0);
13567 init = TREE_OPERAND (init, 1);
13568 tree decl_expr = NULL_TREE;
13569 if (init && TREE_CODE (init) == DECL_EXPR)
13571 /* We need to jump through some hoops to handle declarations in the
13572 for-init-statement, since we might need to handle auto deduction,
13573 but we need to keep control of initialization. */
13574 decl_expr = init;
13575 init = DECL_INITIAL (DECL_EXPR_DECL (init));
13576 decl = tsubst_decl (decl, args, complain);
13578 else
13579 decl = RECUR (decl);
13580 init = RECUR (init);
13582 tree auto_node = type_uses_auto (TREE_TYPE (decl));
13583 if (auto_node && init)
13584 TREE_TYPE (decl)
13585 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
13587 gcc_assert (!type_dependent_expression_p (decl));
13589 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
13591 if (decl_expr)
13593 /* Declare the variable, but don't let that initialize it. */
13594 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
13595 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
13596 RECUR (decl_expr);
13597 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
13600 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
13601 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13602 if (TREE_CODE (incr) == MODIFY_EXPR)
13604 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13605 tree rhs = RECUR (TREE_OPERAND (incr, 1));
13606 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
13607 NOP_EXPR, rhs, complain);
13609 else
13610 incr = RECUR (incr);
13611 TREE_VEC_ELT (declv, i) = decl;
13612 TREE_VEC_ELT (initv, i) = init;
13613 TREE_VEC_ELT (condv, i) = cond;
13614 TREE_VEC_ELT (incrv, i) = incr;
13615 return;
13618 if (decl_expr)
13620 /* Declare and initialize the variable. */
13621 RECUR (decl_expr);
13622 init = NULL_TREE;
13624 else if (init)
13626 tree c;
13627 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
13629 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
13630 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
13631 && OMP_CLAUSE_DECL (c) == decl)
13632 break;
13633 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
13634 && OMP_CLAUSE_DECL (c) == decl)
13635 error ("iteration variable %qD should not be firstprivate", decl);
13636 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
13637 && OMP_CLAUSE_DECL (c) == decl)
13638 error ("iteration variable %qD should not be reduction", decl);
13640 if (c == NULL)
13642 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
13643 OMP_CLAUSE_DECL (c) = decl;
13644 c = finish_omp_clauses (c);
13645 if (c)
13647 OMP_CLAUSE_CHAIN (c) = *clauses;
13648 *clauses = c;
13652 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
13653 if (COMPARISON_CLASS_P (cond))
13655 tree op0 = RECUR (TREE_OPERAND (cond, 0));
13656 tree op1 = RECUR (TREE_OPERAND (cond, 1));
13657 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
13659 else
13660 cond = RECUR (cond);
13661 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13662 switch (TREE_CODE (incr))
13664 case PREINCREMENT_EXPR:
13665 case PREDECREMENT_EXPR:
13666 case POSTINCREMENT_EXPR:
13667 case POSTDECREMENT_EXPR:
13668 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
13669 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
13670 break;
13671 case MODIFY_EXPR:
13672 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13673 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13675 tree rhs = TREE_OPERAND (incr, 1);
13676 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13677 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13678 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13679 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13680 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13681 rhs0, rhs1));
13683 else
13684 incr = RECUR (incr);
13685 break;
13686 case MODOP_EXPR:
13687 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13688 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13690 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13691 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13692 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
13693 TREE_TYPE (decl), lhs,
13694 RECUR (TREE_OPERAND (incr, 2))));
13696 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
13697 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
13698 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
13700 tree rhs = TREE_OPERAND (incr, 2);
13701 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13702 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13703 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13704 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13705 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13706 rhs0, rhs1));
13708 else
13709 incr = RECUR (incr);
13710 break;
13711 default:
13712 incr = RECUR (incr);
13713 break;
13716 TREE_VEC_ELT (declv, i) = decl;
13717 TREE_VEC_ELT (initv, i) = init;
13718 TREE_VEC_ELT (condv, i) = cond;
13719 TREE_VEC_ELT (incrv, i) = incr;
13720 #undef RECUR
13723 /* Like tsubst_copy for expressions, etc. but also does semantic
13724 processing. */
13726 static tree
13727 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
13728 bool integral_constant_expression_p)
13730 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
13731 #define RECUR(NODE) \
13732 tsubst_expr ((NODE), args, complain, in_decl, \
13733 integral_constant_expression_p)
13735 tree stmt, tmp;
13736 tree r;
13737 location_t loc;
13739 if (t == NULL_TREE || t == error_mark_node)
13740 return t;
13742 loc = input_location;
13743 if (EXPR_HAS_LOCATION (t))
13744 input_location = EXPR_LOCATION (t);
13745 if (STATEMENT_CODE_P (TREE_CODE (t)))
13746 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
13748 switch (TREE_CODE (t))
13750 case STATEMENT_LIST:
13752 tree_stmt_iterator i;
13753 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
13754 RECUR (tsi_stmt (i));
13755 break;
13758 case CTOR_INITIALIZER:
13759 finish_mem_initializers (tsubst_initializer_list
13760 (TREE_OPERAND (t, 0), args));
13761 break;
13763 case RETURN_EXPR:
13764 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
13765 break;
13767 case EXPR_STMT:
13768 tmp = RECUR (EXPR_STMT_EXPR (t));
13769 if (EXPR_STMT_STMT_EXPR_RESULT (t))
13770 finish_stmt_expr_expr (tmp, cur_stmt_expr);
13771 else
13772 finish_expr_stmt (tmp);
13773 break;
13775 case USING_STMT:
13776 do_using_directive (USING_STMT_NAMESPACE (t));
13777 break;
13779 case DECL_EXPR:
13781 tree decl, pattern_decl;
13782 tree init;
13784 pattern_decl = decl = DECL_EXPR_DECL (t);
13785 if (TREE_CODE (decl) == LABEL_DECL)
13786 finish_label_decl (DECL_NAME (decl));
13787 else if (TREE_CODE (decl) == USING_DECL)
13789 tree scope = USING_DECL_SCOPE (decl);
13790 tree name = DECL_NAME (decl);
13791 tree decl;
13793 scope = tsubst (scope, args, complain, in_decl);
13794 decl = lookup_qualified_name (scope, name,
13795 /*is_type_p=*/false,
13796 /*complain=*/false);
13797 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
13798 qualified_name_lookup_error (scope, name, decl, input_location);
13799 else
13800 do_local_using_decl (decl, scope, name);
13802 else if (DECL_PACK_P (decl))
13804 /* Don't build up decls for a variadic capture proxy, we'll
13805 instantiate the elements directly as needed. */
13806 break;
13808 else
13810 init = DECL_INITIAL (decl);
13811 decl = tsubst (decl, args, complain, in_decl);
13812 if (decl != error_mark_node)
13814 /* By marking the declaration as instantiated, we avoid
13815 trying to instantiate it. Since instantiate_decl can't
13816 handle local variables, and since we've already done
13817 all that needs to be done, that's the right thing to
13818 do. */
13819 if (VAR_P (decl))
13820 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13821 if (VAR_P (decl)
13822 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
13823 /* Anonymous aggregates are a special case. */
13824 finish_anon_union (decl);
13825 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
13827 DECL_CONTEXT (decl) = current_function_decl;
13828 if (DECL_NAME (decl) == this_identifier)
13830 tree lam = DECL_CONTEXT (current_function_decl);
13831 lam = CLASSTYPE_LAMBDA_EXPR (lam);
13832 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
13834 insert_capture_proxy (decl);
13836 else if (DECL_IMPLICIT_TYPEDEF_P (t))
13837 /* We already did a pushtag. */;
13838 else if (TREE_CODE (decl) == FUNCTION_DECL
13839 && DECL_OMP_DECLARE_REDUCTION_P (decl)
13840 && DECL_FUNCTION_SCOPE_P (pattern_decl))
13842 DECL_CONTEXT (decl) = NULL_TREE;
13843 pushdecl (decl);
13844 DECL_CONTEXT (decl) = current_function_decl;
13845 cp_check_omp_declare_reduction (decl);
13847 else
13849 int const_init = false;
13850 maybe_push_decl (decl);
13851 if (VAR_P (decl)
13852 && DECL_PRETTY_FUNCTION_P (decl))
13854 /* For __PRETTY_FUNCTION__ we have to adjust the
13855 initializer. */
13856 const char *const name
13857 = cxx_printable_name (current_function_decl, 2);
13858 init = cp_fname_init (name, &TREE_TYPE (decl));
13860 else
13861 init = tsubst_init (init, decl, args, complain, in_decl);
13863 if (VAR_P (decl))
13864 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
13865 (pattern_decl));
13866 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
13871 break;
13874 case FOR_STMT:
13875 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13876 RECUR (FOR_INIT_STMT (t));
13877 finish_for_init_stmt (stmt);
13878 tmp = RECUR (FOR_COND (t));
13879 finish_for_cond (tmp, stmt, false);
13880 tmp = RECUR (FOR_EXPR (t));
13881 finish_for_expr (tmp, stmt);
13882 RECUR (FOR_BODY (t));
13883 finish_for_stmt (stmt);
13884 break;
13886 case RANGE_FOR_STMT:
13888 tree decl, expr;
13889 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13890 decl = RANGE_FOR_DECL (t);
13891 decl = tsubst (decl, args, complain, in_decl);
13892 maybe_push_decl (decl);
13893 expr = RECUR (RANGE_FOR_EXPR (t));
13894 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
13895 RECUR (RANGE_FOR_BODY (t));
13896 finish_for_stmt (stmt);
13898 break;
13900 case WHILE_STMT:
13901 stmt = begin_while_stmt ();
13902 tmp = RECUR (WHILE_COND (t));
13903 finish_while_stmt_cond (tmp, stmt, false);
13904 RECUR (WHILE_BODY (t));
13905 finish_while_stmt (stmt);
13906 break;
13908 case DO_STMT:
13909 stmt = begin_do_stmt ();
13910 RECUR (DO_BODY (t));
13911 finish_do_body (stmt);
13912 tmp = RECUR (DO_COND (t));
13913 finish_do_stmt (tmp, stmt, false);
13914 break;
13916 case IF_STMT:
13917 stmt = begin_if_stmt ();
13918 tmp = RECUR (IF_COND (t));
13919 finish_if_stmt_cond (tmp, stmt);
13920 RECUR (THEN_CLAUSE (t));
13921 finish_then_clause (stmt);
13923 if (ELSE_CLAUSE (t))
13925 begin_else_clause (stmt);
13926 RECUR (ELSE_CLAUSE (t));
13927 finish_else_clause (stmt);
13930 finish_if_stmt (stmt);
13931 break;
13933 case BIND_EXPR:
13934 if (BIND_EXPR_BODY_BLOCK (t))
13935 stmt = begin_function_body ();
13936 else
13937 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
13938 ? BCS_TRY_BLOCK : 0);
13940 RECUR (BIND_EXPR_BODY (t));
13942 if (BIND_EXPR_BODY_BLOCK (t))
13943 finish_function_body (stmt);
13944 else
13945 finish_compound_stmt (stmt);
13946 break;
13948 case BREAK_STMT:
13949 finish_break_stmt ();
13950 break;
13952 case CONTINUE_STMT:
13953 finish_continue_stmt ();
13954 break;
13956 case SWITCH_STMT:
13957 stmt = begin_switch_stmt ();
13958 tmp = RECUR (SWITCH_STMT_COND (t));
13959 finish_switch_cond (tmp, stmt);
13960 RECUR (SWITCH_STMT_BODY (t));
13961 finish_switch_stmt (stmt);
13962 break;
13964 case CASE_LABEL_EXPR:
13966 tree low = RECUR (CASE_LOW (t));
13967 tree high = RECUR (CASE_HIGH (t));
13968 finish_case_label (EXPR_LOCATION (t), low, high);
13970 break;
13972 case LABEL_EXPR:
13974 tree decl = LABEL_EXPR_LABEL (t);
13975 tree label;
13977 label = finish_label_stmt (DECL_NAME (decl));
13978 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
13979 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
13981 break;
13983 case GOTO_EXPR:
13984 tmp = GOTO_DESTINATION (t);
13985 if (TREE_CODE (tmp) != LABEL_DECL)
13986 /* Computed goto's must be tsubst'd into. On the other hand,
13987 non-computed gotos must not be; the identifier in question
13988 will have no binding. */
13989 tmp = RECUR (tmp);
13990 else
13991 tmp = DECL_NAME (tmp);
13992 finish_goto_stmt (tmp);
13993 break;
13995 case ASM_EXPR:
13997 tree string = RECUR (ASM_STRING (t));
13998 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
13999 complain, in_decl);
14000 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
14001 complain, in_decl);
14002 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
14003 complain, in_decl);
14004 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
14005 complain, in_decl);
14006 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
14007 clobbers, labels);
14008 tree asm_expr = tmp;
14009 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
14010 asm_expr = TREE_OPERAND (asm_expr, 0);
14011 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
14013 break;
14015 case TRY_BLOCK:
14016 if (CLEANUP_P (t))
14018 stmt = begin_try_block ();
14019 RECUR (TRY_STMTS (t));
14020 finish_cleanup_try_block (stmt);
14021 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
14023 else
14025 tree compound_stmt = NULL_TREE;
14027 if (FN_TRY_BLOCK_P (t))
14028 stmt = begin_function_try_block (&compound_stmt);
14029 else
14030 stmt = begin_try_block ();
14032 RECUR (TRY_STMTS (t));
14034 if (FN_TRY_BLOCK_P (t))
14035 finish_function_try_block (stmt);
14036 else
14037 finish_try_block (stmt);
14039 RECUR (TRY_HANDLERS (t));
14040 if (FN_TRY_BLOCK_P (t))
14041 finish_function_handler_sequence (stmt, compound_stmt);
14042 else
14043 finish_handler_sequence (stmt);
14045 break;
14047 case HANDLER:
14049 tree decl = HANDLER_PARMS (t);
14051 if (decl)
14053 decl = tsubst (decl, args, complain, in_decl);
14054 /* Prevent instantiate_decl from trying to instantiate
14055 this variable. We've already done all that needs to be
14056 done. */
14057 if (decl != error_mark_node)
14058 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14060 stmt = begin_handler ();
14061 finish_handler_parms (decl, stmt);
14062 RECUR (HANDLER_BODY (t));
14063 finish_handler (stmt);
14065 break;
14067 case TAG_DEFN:
14068 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
14069 if (CLASS_TYPE_P (tmp))
14071 /* Local classes are not independent templates; they are
14072 instantiated along with their containing function. And this
14073 way we don't have to deal with pushing out of one local class
14074 to instantiate a member of another local class. */
14075 tree fn;
14076 /* Closures are handled by the LAMBDA_EXPR. */
14077 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
14078 complete_type (tmp);
14079 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
14080 if (!DECL_ARTIFICIAL (fn))
14081 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
14083 break;
14085 case STATIC_ASSERT:
14087 tree condition;
14089 ++c_inhibit_evaluation_warnings;
14090 condition =
14091 tsubst_expr (STATIC_ASSERT_CONDITION (t),
14092 args,
14093 complain, in_decl,
14094 /*integral_constant_expression_p=*/true);
14095 --c_inhibit_evaluation_warnings;
14097 finish_static_assert (condition,
14098 STATIC_ASSERT_MESSAGE (t),
14099 STATIC_ASSERT_SOURCE_LOCATION (t),
14100 /*member_p=*/false);
14102 break;
14104 case OMP_PARALLEL:
14105 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false,
14106 args, complain, in_decl);
14107 stmt = begin_omp_parallel ();
14108 RECUR (OMP_PARALLEL_BODY (t));
14109 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
14110 = OMP_PARALLEL_COMBINED (t);
14111 break;
14113 case OMP_TASK:
14114 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false,
14115 args, complain, in_decl);
14116 stmt = begin_omp_task ();
14117 RECUR (OMP_TASK_BODY (t));
14118 finish_omp_task (tmp, stmt);
14119 break;
14121 case OMP_FOR:
14122 case OMP_SIMD:
14123 case CILK_SIMD:
14124 case CILK_FOR:
14125 case OMP_DISTRIBUTE:
14127 tree clauses, body, pre_body;
14128 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
14129 tree incrv = NULL_TREE;
14130 int i;
14132 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
14133 args, complain, in_decl);
14134 if (OMP_FOR_INIT (t) != NULL_TREE)
14136 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14137 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14138 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14139 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14142 stmt = begin_omp_structured_block ();
14144 pre_body = push_stmt_list ();
14145 RECUR (OMP_FOR_PRE_BODY (t));
14146 pre_body = pop_stmt_list (pre_body);
14148 if (OMP_FOR_INIT (t) != NULL_TREE)
14149 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
14150 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
14151 &clauses, args, complain, in_decl,
14152 integral_constant_expression_p);
14154 body = push_stmt_list ();
14155 RECUR (OMP_FOR_BODY (t));
14156 body = pop_stmt_list (body);
14158 if (OMP_FOR_INIT (t) != NULL_TREE)
14159 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, initv,
14160 condv, incrv, body, pre_body, clauses);
14161 else
14163 t = make_node (TREE_CODE (t));
14164 TREE_TYPE (t) = void_type_node;
14165 OMP_FOR_BODY (t) = body;
14166 OMP_FOR_PRE_BODY (t) = pre_body;
14167 OMP_FOR_CLAUSES (t) = clauses;
14168 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
14169 add_stmt (t);
14172 add_stmt (finish_omp_structured_block (stmt));
14174 break;
14176 case OMP_SECTIONS:
14177 case OMP_SINGLE:
14178 case OMP_TEAMS:
14179 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14180 args, complain, in_decl);
14181 stmt = push_stmt_list ();
14182 RECUR (OMP_BODY (t));
14183 stmt = pop_stmt_list (stmt);
14185 t = copy_node (t);
14186 OMP_BODY (t) = stmt;
14187 OMP_CLAUSES (t) = tmp;
14188 add_stmt (t);
14189 break;
14191 case OMP_TARGET_DATA:
14192 case OMP_TARGET:
14193 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14194 args, complain, in_decl);
14195 keep_next_level (true);
14196 stmt = begin_omp_structured_block ();
14198 RECUR (OMP_BODY (t));
14199 stmt = finish_omp_structured_block (stmt);
14201 t = copy_node (t);
14202 OMP_BODY (t) = stmt;
14203 OMP_CLAUSES (t) = tmp;
14204 add_stmt (t);
14205 break;
14207 case OMP_TARGET_UPDATE:
14208 tmp = tsubst_omp_clauses (OMP_TARGET_UPDATE_CLAUSES (t), false,
14209 args, complain, in_decl);
14210 t = copy_node (t);
14211 OMP_CLAUSES (t) = tmp;
14212 add_stmt (t);
14213 break;
14215 case OMP_SECTION:
14216 case OMP_CRITICAL:
14217 case OMP_MASTER:
14218 case OMP_TASKGROUP:
14219 case OMP_ORDERED:
14220 stmt = push_stmt_list ();
14221 RECUR (OMP_BODY (t));
14222 stmt = pop_stmt_list (stmt);
14224 t = copy_node (t);
14225 OMP_BODY (t) = stmt;
14226 add_stmt (t);
14227 break;
14229 case OMP_ATOMIC:
14230 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
14231 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
14233 tree op1 = TREE_OPERAND (t, 1);
14234 tree rhs1 = NULL_TREE;
14235 tree lhs, rhs;
14236 if (TREE_CODE (op1) == COMPOUND_EXPR)
14238 rhs1 = RECUR (TREE_OPERAND (op1, 0));
14239 op1 = TREE_OPERAND (op1, 1);
14241 lhs = RECUR (TREE_OPERAND (op1, 0));
14242 rhs = RECUR (TREE_OPERAND (op1, 1));
14243 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
14244 NULL_TREE, NULL_TREE, rhs1,
14245 OMP_ATOMIC_SEQ_CST (t));
14247 else
14249 tree op1 = TREE_OPERAND (t, 1);
14250 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
14251 tree rhs1 = NULL_TREE;
14252 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
14253 enum tree_code opcode = NOP_EXPR;
14254 if (code == OMP_ATOMIC_READ)
14256 v = RECUR (TREE_OPERAND (op1, 0));
14257 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14259 else if (code == OMP_ATOMIC_CAPTURE_OLD
14260 || code == OMP_ATOMIC_CAPTURE_NEW)
14262 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
14263 v = RECUR (TREE_OPERAND (op1, 0));
14264 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14265 if (TREE_CODE (op11) == COMPOUND_EXPR)
14267 rhs1 = RECUR (TREE_OPERAND (op11, 0));
14268 op11 = TREE_OPERAND (op11, 1);
14270 lhs = RECUR (TREE_OPERAND (op11, 0));
14271 rhs = RECUR (TREE_OPERAND (op11, 1));
14272 opcode = TREE_CODE (op11);
14273 if (opcode == MODIFY_EXPR)
14274 opcode = NOP_EXPR;
14276 else
14278 code = OMP_ATOMIC;
14279 lhs = RECUR (TREE_OPERAND (op1, 0));
14280 rhs = RECUR (TREE_OPERAND (op1, 1));
14282 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
14283 OMP_ATOMIC_SEQ_CST (t));
14285 break;
14287 case TRANSACTION_EXPR:
14289 int flags = 0;
14290 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
14291 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
14293 if (TRANSACTION_EXPR_IS_STMT (t))
14295 tree body = TRANSACTION_EXPR_BODY (t);
14296 tree noex = NULL_TREE;
14297 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
14299 noex = MUST_NOT_THROW_COND (body);
14300 if (noex == NULL_TREE)
14301 noex = boolean_true_node;
14302 body = TREE_OPERAND (body, 0);
14304 stmt = begin_transaction_stmt (input_location, NULL, flags);
14305 RECUR (body);
14306 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
14308 else
14310 stmt = build_transaction_expr (EXPR_LOCATION (t),
14311 RECUR (TRANSACTION_EXPR_BODY (t)),
14312 flags, NULL_TREE);
14313 RETURN (stmt);
14316 break;
14318 case MUST_NOT_THROW_EXPR:
14320 tree op0 = RECUR (TREE_OPERAND (t, 0));
14321 tree cond = RECUR (MUST_NOT_THROW_COND (t));
14322 RETURN (build_must_not_throw_expr (op0, cond));
14325 case EXPR_PACK_EXPANSION:
14326 error ("invalid use of pack expansion expression");
14327 RETURN (error_mark_node);
14329 case NONTYPE_ARGUMENT_PACK:
14330 error ("use %<...%> to expand argument pack");
14331 RETURN (error_mark_node);
14333 case CILK_SPAWN_STMT:
14334 cfun->calls_cilk_spawn = 1;
14335 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
14337 case CILK_SYNC_STMT:
14338 RETURN (build_cilk_sync ());
14340 case COMPOUND_EXPR:
14341 tmp = RECUR (TREE_OPERAND (t, 0));
14342 if (tmp == NULL_TREE)
14343 /* If the first operand was a statement, we're done with it. */
14344 RETURN (RECUR (TREE_OPERAND (t, 1)));
14345 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
14346 RECUR (TREE_OPERAND (t, 1)),
14347 complain));
14349 case ANNOTATE_EXPR:
14350 tmp = RECUR (TREE_OPERAND (t, 0));
14351 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
14352 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
14354 default:
14355 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
14357 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
14358 /*function_p=*/false,
14359 integral_constant_expression_p));
14362 RETURN (NULL_TREE);
14363 out:
14364 input_location = loc;
14365 return r;
14366 #undef RECUR
14367 #undef RETURN
14370 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
14371 function. For description of the body see comment above
14372 cp_parser_omp_declare_reduction_exprs. */
14374 static void
14375 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14377 if (t == NULL_TREE || t == error_mark_node)
14378 return;
14380 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
14382 tree_stmt_iterator tsi;
14383 int i;
14384 tree stmts[7];
14385 memset (stmts, 0, sizeof stmts);
14386 for (i = 0, tsi = tsi_start (t);
14387 i < 7 && !tsi_end_p (tsi);
14388 i++, tsi_next (&tsi))
14389 stmts[i] = tsi_stmt (tsi);
14390 gcc_assert (tsi_end_p (tsi));
14392 if (i >= 3)
14394 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
14395 && TREE_CODE (stmts[1]) == DECL_EXPR);
14396 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
14397 args, complain, in_decl);
14398 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
14399 args, complain, in_decl);
14400 DECL_CONTEXT (omp_out) = current_function_decl;
14401 DECL_CONTEXT (omp_in) = current_function_decl;
14402 keep_next_level (true);
14403 tree block = begin_omp_structured_block ();
14404 tsubst_expr (stmts[2], args, complain, in_decl, false);
14405 block = finish_omp_structured_block (block);
14406 block = maybe_cleanup_point_expr_void (block);
14407 add_decl_expr (omp_out);
14408 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
14409 TREE_NO_WARNING (omp_out) = 1;
14410 add_decl_expr (omp_in);
14411 finish_expr_stmt (block);
14413 if (i >= 6)
14415 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
14416 && TREE_CODE (stmts[4]) == DECL_EXPR);
14417 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
14418 args, complain, in_decl);
14419 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
14420 args, complain, in_decl);
14421 DECL_CONTEXT (omp_priv) = current_function_decl;
14422 DECL_CONTEXT (omp_orig) = current_function_decl;
14423 keep_next_level (true);
14424 tree block = begin_omp_structured_block ();
14425 tsubst_expr (stmts[5], args, complain, in_decl, false);
14426 block = finish_omp_structured_block (block);
14427 block = maybe_cleanup_point_expr_void (block);
14428 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
14429 add_decl_expr (omp_priv);
14430 add_decl_expr (omp_orig);
14431 finish_expr_stmt (block);
14432 if (i == 7)
14433 add_decl_expr (omp_orig);
14437 /* T is a postfix-expression that is not being used in a function
14438 call. Return the substituted version of T. */
14440 static tree
14441 tsubst_non_call_postfix_expression (tree t, tree args,
14442 tsubst_flags_t complain,
14443 tree in_decl)
14445 if (TREE_CODE (t) == SCOPE_REF)
14446 t = tsubst_qualified_id (t, args, complain, in_decl,
14447 /*done=*/false, /*address_p=*/false);
14448 else
14449 t = tsubst_copy_and_build (t, args, complain, in_decl,
14450 /*function_p=*/false,
14451 /*integral_constant_expression_p=*/false);
14453 return t;
14456 /* Sentinel to disable certain warnings during template substitution. */
14458 struct warning_sentinel {
14459 int &flag;
14460 int val;
14461 warning_sentinel(int& flag, bool suppress=true)
14462 : flag(flag), val(flag) { if (suppress) flag = 0; }
14463 ~warning_sentinel() { flag = val; }
14466 /* Like tsubst but deals with expressions and performs semantic
14467 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
14469 tree
14470 tsubst_copy_and_build (tree t,
14471 tree args,
14472 tsubst_flags_t complain,
14473 tree in_decl,
14474 bool function_p,
14475 bool integral_constant_expression_p)
14477 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
14478 #define RECUR(NODE) \
14479 tsubst_copy_and_build (NODE, args, complain, in_decl, \
14480 /*function_p=*/false, \
14481 integral_constant_expression_p)
14483 tree retval, op1;
14484 location_t loc;
14486 if (t == NULL_TREE || t == error_mark_node)
14487 return t;
14489 loc = input_location;
14490 if (EXPR_HAS_LOCATION (t))
14491 input_location = EXPR_LOCATION (t);
14493 /* N3276 decltype magic only applies to calls at the top level or on the
14494 right side of a comma. */
14495 tsubst_flags_t decltype_flag = (complain & tf_decltype);
14496 complain &= ~tf_decltype;
14498 switch (TREE_CODE (t))
14500 case USING_DECL:
14501 t = DECL_NAME (t);
14502 /* Fall through. */
14503 case IDENTIFIER_NODE:
14505 tree decl;
14506 cp_id_kind idk;
14507 bool non_integral_constant_expression_p;
14508 const char *error_msg;
14510 if (IDENTIFIER_TYPENAME_P (t))
14512 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14513 t = mangle_conv_op_name_for_type (new_type);
14516 /* Look up the name. */
14517 decl = lookup_name (t);
14519 /* By convention, expressions use ERROR_MARK_NODE to indicate
14520 failure, not NULL_TREE. */
14521 if (decl == NULL_TREE)
14522 decl = error_mark_node;
14524 decl = finish_id_expression (t, decl, NULL_TREE,
14525 &idk,
14526 integral_constant_expression_p,
14527 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
14528 &non_integral_constant_expression_p,
14529 /*template_p=*/false,
14530 /*done=*/true,
14531 /*address_p=*/false,
14532 /*template_arg_p=*/false,
14533 &error_msg,
14534 input_location);
14535 if (error_msg)
14536 error (error_msg);
14537 if (!function_p && identifier_p (decl))
14539 if (complain & tf_error)
14540 unqualified_name_lookup_error (decl);
14541 decl = error_mark_node;
14543 RETURN (decl);
14546 case TEMPLATE_ID_EXPR:
14548 tree object;
14549 tree templ = RECUR (TREE_OPERAND (t, 0));
14550 tree targs = TREE_OPERAND (t, 1);
14552 if (targs)
14553 targs = tsubst_template_args (targs, args, complain, in_decl);
14555 if (TREE_CODE (templ) == COMPONENT_REF)
14557 object = TREE_OPERAND (templ, 0);
14558 templ = TREE_OPERAND (templ, 1);
14560 else
14561 object = NULL_TREE;
14562 templ = lookup_template_function (templ, targs);
14564 if (object)
14565 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
14566 object, templ, NULL_TREE));
14567 else
14568 RETURN (baselink_for_fns (templ));
14571 case INDIRECT_REF:
14573 tree r = RECUR (TREE_OPERAND (t, 0));
14575 if (REFERENCE_REF_P (t))
14577 /* A type conversion to reference type will be enclosed in
14578 such an indirect ref, but the substitution of the cast
14579 will have also added such an indirect ref. */
14580 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
14581 r = convert_from_reference (r);
14583 else
14584 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
14585 complain|decltype_flag);
14586 RETURN (r);
14589 case NOP_EXPR:
14591 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14592 tree op0 = RECUR (TREE_OPERAND (t, 0));
14593 RETURN (build_nop (type, op0));
14596 case IMPLICIT_CONV_EXPR:
14598 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14599 tree expr = RECUR (TREE_OPERAND (t, 0));
14600 int flags = LOOKUP_IMPLICIT;
14601 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
14602 flags = LOOKUP_NORMAL;
14603 RETURN (perform_implicit_conversion_flags (type, expr, complain,
14604 flags));
14607 case CONVERT_EXPR:
14609 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14610 tree op0 = RECUR (TREE_OPERAND (t, 0));
14611 RETURN (build1 (CONVERT_EXPR, type, op0));
14614 case CAST_EXPR:
14615 case REINTERPRET_CAST_EXPR:
14616 case CONST_CAST_EXPR:
14617 case DYNAMIC_CAST_EXPR:
14618 case STATIC_CAST_EXPR:
14620 tree type;
14621 tree op, r = NULL_TREE;
14623 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14624 if (integral_constant_expression_p
14625 && !cast_valid_in_integral_constant_expression_p (type))
14627 if (complain & tf_error)
14628 error ("a cast to a type other than an integral or "
14629 "enumeration type cannot appear in a constant-expression");
14630 RETURN (error_mark_node);
14633 op = RECUR (TREE_OPERAND (t, 0));
14635 warning_sentinel s(warn_useless_cast);
14636 switch (TREE_CODE (t))
14638 case CAST_EXPR:
14639 r = build_functional_cast (type, op, complain);
14640 break;
14641 case REINTERPRET_CAST_EXPR:
14642 r = build_reinterpret_cast (type, op, complain);
14643 break;
14644 case CONST_CAST_EXPR:
14645 r = build_const_cast (type, op, complain);
14646 break;
14647 case DYNAMIC_CAST_EXPR:
14648 r = build_dynamic_cast (type, op, complain);
14649 break;
14650 case STATIC_CAST_EXPR:
14651 r = build_static_cast (type, op, complain);
14652 break;
14653 default:
14654 gcc_unreachable ();
14657 RETURN (r);
14660 case POSTDECREMENT_EXPR:
14661 case POSTINCREMENT_EXPR:
14662 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14663 args, complain, in_decl);
14664 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
14665 complain|decltype_flag));
14667 case PREDECREMENT_EXPR:
14668 case PREINCREMENT_EXPR:
14669 case NEGATE_EXPR:
14670 case BIT_NOT_EXPR:
14671 case ABS_EXPR:
14672 case TRUTH_NOT_EXPR:
14673 case UNARY_PLUS_EXPR: /* Unary + */
14674 case REALPART_EXPR:
14675 case IMAGPART_EXPR:
14676 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
14677 RECUR (TREE_OPERAND (t, 0)),
14678 complain|decltype_flag));
14680 case FIX_TRUNC_EXPR:
14681 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
14682 0, complain));
14684 case ADDR_EXPR:
14685 op1 = TREE_OPERAND (t, 0);
14686 if (TREE_CODE (op1) == LABEL_DECL)
14687 RETURN (finish_label_address_expr (DECL_NAME (op1),
14688 EXPR_LOCATION (op1)));
14689 if (TREE_CODE (op1) == SCOPE_REF)
14690 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
14691 /*done=*/true, /*address_p=*/true);
14692 else
14693 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
14694 in_decl);
14695 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
14696 complain|decltype_flag));
14698 case PLUS_EXPR:
14699 case MINUS_EXPR:
14700 case MULT_EXPR:
14701 case TRUNC_DIV_EXPR:
14702 case CEIL_DIV_EXPR:
14703 case FLOOR_DIV_EXPR:
14704 case ROUND_DIV_EXPR:
14705 case EXACT_DIV_EXPR:
14706 case BIT_AND_EXPR:
14707 case BIT_IOR_EXPR:
14708 case BIT_XOR_EXPR:
14709 case TRUNC_MOD_EXPR:
14710 case FLOOR_MOD_EXPR:
14711 case TRUTH_ANDIF_EXPR:
14712 case TRUTH_ORIF_EXPR:
14713 case TRUTH_AND_EXPR:
14714 case TRUTH_OR_EXPR:
14715 case RSHIFT_EXPR:
14716 case LSHIFT_EXPR:
14717 case RROTATE_EXPR:
14718 case LROTATE_EXPR:
14719 case EQ_EXPR:
14720 case NE_EXPR:
14721 case MAX_EXPR:
14722 case MIN_EXPR:
14723 case LE_EXPR:
14724 case GE_EXPR:
14725 case LT_EXPR:
14726 case GT_EXPR:
14727 case MEMBER_REF:
14728 case DOTSTAR_EXPR:
14730 warning_sentinel s1(warn_type_limits);
14731 warning_sentinel s2(warn_div_by_zero);
14732 tree op0 = RECUR (TREE_OPERAND (t, 0));
14733 tree op1 = RECUR (TREE_OPERAND (t, 1));
14734 tree r = build_x_binary_op
14735 (input_location, TREE_CODE (t),
14736 op0,
14737 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
14738 ? ERROR_MARK
14739 : TREE_CODE (TREE_OPERAND (t, 0))),
14740 op1,
14741 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
14742 ? ERROR_MARK
14743 : TREE_CODE (TREE_OPERAND (t, 1))),
14744 /*overload=*/NULL,
14745 complain|decltype_flag);
14746 if (EXPR_P (r) && TREE_NO_WARNING (t))
14747 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14749 RETURN (r);
14752 case POINTER_PLUS_EXPR:
14754 tree op0 = RECUR (TREE_OPERAND (t, 0));
14755 tree op1 = RECUR (TREE_OPERAND (t, 1));
14756 return fold_build_pointer_plus (op0, op1);
14759 case SCOPE_REF:
14760 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
14761 /*address_p=*/false));
14762 case ARRAY_REF:
14763 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14764 args, complain, in_decl);
14765 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
14766 RECUR (TREE_OPERAND (t, 1)),
14767 complain|decltype_flag));
14769 case ARRAY_NOTATION_REF:
14771 tree start_index, length, stride;
14772 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
14773 args, complain, in_decl);
14774 start_index = RECUR (ARRAY_NOTATION_START (t));
14775 length = RECUR (ARRAY_NOTATION_LENGTH (t));
14776 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
14777 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
14778 length, stride, TREE_TYPE (op1)));
14780 case SIZEOF_EXPR:
14781 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
14782 RETURN (tsubst_copy (t, args, complain, in_decl));
14783 /* Fall through */
14785 case ALIGNOF_EXPR:
14787 tree r;
14789 op1 = TREE_OPERAND (t, 0);
14790 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
14791 op1 = TREE_TYPE (op1);
14792 if (!args)
14794 /* When there are no ARGS, we are trying to evaluate a
14795 non-dependent expression from the parser. Trying to do
14796 the substitutions may not work. */
14797 if (!TYPE_P (op1))
14798 op1 = TREE_TYPE (op1);
14800 else
14802 ++cp_unevaluated_operand;
14803 ++c_inhibit_evaluation_warnings;
14804 if (TYPE_P (op1))
14805 op1 = tsubst (op1, args, complain, in_decl);
14806 else
14807 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14808 /*function_p=*/false,
14809 /*integral_constant_expression_p=*/
14810 false);
14811 --cp_unevaluated_operand;
14812 --c_inhibit_evaluation_warnings;
14814 if (TYPE_P (op1))
14815 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
14816 complain & tf_error);
14817 else
14818 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
14819 complain & tf_error);
14820 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
14822 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
14824 if (!processing_template_decl && TYPE_P (op1))
14826 r = build_min (SIZEOF_EXPR, size_type_node,
14827 build1 (NOP_EXPR, op1, error_mark_node));
14828 SIZEOF_EXPR_TYPE_P (r) = 1;
14830 else
14831 r = build_min (SIZEOF_EXPR, size_type_node, op1);
14832 TREE_SIDE_EFFECTS (r) = 0;
14833 TREE_READONLY (r) = 1;
14835 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
14837 RETURN (r);
14840 case AT_ENCODE_EXPR:
14842 op1 = TREE_OPERAND (t, 0);
14843 ++cp_unevaluated_operand;
14844 ++c_inhibit_evaluation_warnings;
14845 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14846 /*function_p=*/false,
14847 /*integral_constant_expression_p=*/false);
14848 --cp_unevaluated_operand;
14849 --c_inhibit_evaluation_warnings;
14850 RETURN (objc_build_encode_expr (op1));
14853 case NOEXCEPT_EXPR:
14854 op1 = TREE_OPERAND (t, 0);
14855 ++cp_unevaluated_operand;
14856 ++c_inhibit_evaluation_warnings;
14857 ++cp_noexcept_operand;
14858 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14859 /*function_p=*/false,
14860 /*integral_constant_expression_p=*/false);
14861 --cp_unevaluated_operand;
14862 --c_inhibit_evaluation_warnings;
14863 --cp_noexcept_operand;
14864 RETURN (finish_noexcept_expr (op1, complain));
14866 case MODOP_EXPR:
14868 warning_sentinel s(warn_div_by_zero);
14869 tree lhs = RECUR (TREE_OPERAND (t, 0));
14870 tree rhs = RECUR (TREE_OPERAND (t, 2));
14871 tree r = build_x_modify_expr
14872 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
14873 complain|decltype_flag);
14874 /* TREE_NO_WARNING must be set if either the expression was
14875 parenthesized or it uses an operator such as >>= rather
14876 than plain assignment. In the former case, it was already
14877 set and must be copied. In the latter case,
14878 build_x_modify_expr sets it and it must not be reset
14879 here. */
14880 if (TREE_NO_WARNING (t))
14881 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14883 RETURN (r);
14886 case ARROW_EXPR:
14887 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14888 args, complain, in_decl);
14889 /* Remember that there was a reference to this entity. */
14890 if (DECL_P (op1))
14891 mark_used (op1);
14892 RETURN (build_x_arrow (input_location, op1, complain));
14894 case NEW_EXPR:
14896 tree placement = RECUR (TREE_OPERAND (t, 0));
14897 tree init = RECUR (TREE_OPERAND (t, 3));
14898 vec<tree, va_gc> *placement_vec;
14899 vec<tree, va_gc> *init_vec;
14900 tree ret;
14902 if (placement == NULL_TREE)
14903 placement_vec = NULL;
14904 else
14906 placement_vec = make_tree_vector ();
14907 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
14908 vec_safe_push (placement_vec, TREE_VALUE (placement));
14911 /* If there was an initializer in the original tree, but it
14912 instantiated to an empty list, then we should pass a
14913 non-NULL empty vector to tell build_new that it was an
14914 empty initializer() rather than no initializer. This can
14915 only happen when the initializer is a pack expansion whose
14916 parameter packs are of length zero. */
14917 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
14918 init_vec = NULL;
14919 else
14921 init_vec = make_tree_vector ();
14922 if (init == void_node)
14923 gcc_assert (init_vec != NULL);
14924 else
14926 for (; init != NULL_TREE; init = TREE_CHAIN (init))
14927 vec_safe_push (init_vec, TREE_VALUE (init));
14931 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
14932 tree op2 = RECUR (TREE_OPERAND (t, 2));
14933 ret = build_new (&placement_vec, op1, op2, &init_vec,
14934 NEW_EXPR_USE_GLOBAL (t),
14935 complain);
14937 if (placement_vec != NULL)
14938 release_tree_vector (placement_vec);
14939 if (init_vec != NULL)
14940 release_tree_vector (init_vec);
14942 RETURN (ret);
14945 case DELETE_EXPR:
14947 tree op0 = RECUR (TREE_OPERAND (t, 0));
14948 tree op1 = RECUR (TREE_OPERAND (t, 1));
14949 RETURN (delete_sanity (op0, op1,
14950 DELETE_EXPR_USE_VEC (t),
14951 DELETE_EXPR_USE_GLOBAL (t),
14952 complain));
14955 case COMPOUND_EXPR:
14957 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
14958 complain & ~tf_decltype, in_decl,
14959 /*function_p=*/false,
14960 integral_constant_expression_p);
14961 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
14962 op0,
14963 RECUR (TREE_OPERAND (t, 1)),
14964 complain|decltype_flag));
14967 case CALL_EXPR:
14969 tree function;
14970 vec<tree, va_gc> *call_args;
14971 unsigned int nargs, i;
14972 bool qualified_p;
14973 bool koenig_p;
14974 tree ret;
14976 function = CALL_EXPR_FN (t);
14977 /* When we parsed the expression, we determined whether or
14978 not Koenig lookup should be performed. */
14979 koenig_p = KOENIG_LOOKUP_P (t);
14980 if (TREE_CODE (function) == SCOPE_REF)
14982 qualified_p = true;
14983 function = tsubst_qualified_id (function, args, complain, in_decl,
14984 /*done=*/false,
14985 /*address_p=*/false);
14987 else if (koenig_p && identifier_p (function))
14989 /* Do nothing; calling tsubst_copy_and_build on an identifier
14990 would incorrectly perform unqualified lookup again.
14992 Note that we can also have an IDENTIFIER_NODE if the earlier
14993 unqualified lookup found a member function; in that case
14994 koenig_p will be false and we do want to do the lookup
14995 again to find the instantiated member function.
14997 FIXME but doing that causes c++/15272, so we need to stop
14998 using IDENTIFIER_NODE in that situation. */
14999 qualified_p = false;
15001 else
15003 if (TREE_CODE (function) == COMPONENT_REF)
15005 tree op = TREE_OPERAND (function, 1);
15007 qualified_p = (TREE_CODE (op) == SCOPE_REF
15008 || (BASELINK_P (op)
15009 && BASELINK_QUALIFIED_P (op)));
15011 else
15012 qualified_p = false;
15014 if (TREE_CODE (function) == ADDR_EXPR
15015 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
15016 /* Avoid error about taking the address of a constructor. */
15017 function = TREE_OPERAND (function, 0);
15019 function = tsubst_copy_and_build (function, args, complain,
15020 in_decl,
15021 !qualified_p,
15022 integral_constant_expression_p);
15024 if (BASELINK_P (function))
15025 qualified_p = true;
15028 nargs = call_expr_nargs (t);
15029 call_args = make_tree_vector ();
15030 for (i = 0; i < nargs; ++i)
15032 tree arg = CALL_EXPR_ARG (t, i);
15034 if (!PACK_EXPANSION_P (arg))
15035 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
15036 else
15038 /* Expand the pack expansion and push each entry onto
15039 CALL_ARGS. */
15040 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
15041 if (TREE_CODE (arg) == TREE_VEC)
15043 unsigned int len, j;
15045 len = TREE_VEC_LENGTH (arg);
15046 for (j = 0; j < len; ++j)
15048 tree value = TREE_VEC_ELT (arg, j);
15049 if (value != NULL_TREE)
15050 value = convert_from_reference (value);
15051 vec_safe_push (call_args, value);
15054 else
15056 /* A partial substitution. Add one entry. */
15057 vec_safe_push (call_args, arg);
15062 /* We do not perform argument-dependent lookup if normal
15063 lookup finds a non-function, in accordance with the
15064 expected resolution of DR 218. */
15065 if (koenig_p
15066 && ((is_overloaded_fn (function)
15067 /* If lookup found a member function, the Koenig lookup is
15068 not appropriate, even if an unqualified-name was used
15069 to denote the function. */
15070 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
15071 || identifier_p (function))
15072 /* Only do this when substitution turns a dependent call
15073 into a non-dependent call. */
15074 && type_dependent_expression_p_push (t)
15075 && !any_type_dependent_arguments_p (call_args))
15076 function = perform_koenig_lookup (function, call_args, tf_none);
15078 if (identifier_p (function)
15079 && !any_type_dependent_arguments_p (call_args))
15081 if (koenig_p && (complain & tf_warning_or_error))
15083 /* For backwards compatibility and good diagnostics, try
15084 the unqualified lookup again if we aren't in SFINAE
15085 context. */
15086 tree unq = (tsubst_copy_and_build
15087 (function, args, complain, in_decl, true,
15088 integral_constant_expression_p));
15089 if (unq == error_mark_node)
15090 RETURN (error_mark_node);
15092 if (unq != function)
15094 tree fn = unq;
15095 if (INDIRECT_REF_P (fn))
15096 fn = TREE_OPERAND (fn, 0);
15097 if (TREE_CODE (fn) == COMPONENT_REF)
15098 fn = TREE_OPERAND (fn, 1);
15099 if (is_overloaded_fn (fn))
15100 fn = get_first_fn (fn);
15101 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
15102 "%qD was not declared in this scope, "
15103 "and no declarations were found by "
15104 "argument-dependent lookup at the point "
15105 "of instantiation", function))
15107 if (!DECL_P (fn))
15108 /* Can't say anything more. */;
15109 else if (DECL_CLASS_SCOPE_P (fn))
15111 location_t loc = EXPR_LOC_OR_LOC (t,
15112 input_location);
15113 inform (loc,
15114 "declarations in dependent base %qT are "
15115 "not found by unqualified lookup",
15116 DECL_CLASS_CONTEXT (fn));
15117 if (current_class_ptr)
15118 inform (loc,
15119 "use %<this->%D%> instead", function);
15120 else
15121 inform (loc,
15122 "use %<%T::%D%> instead",
15123 current_class_name, function);
15125 else
15126 inform (0, "%q+D declared here, later in the "
15127 "translation unit", fn);
15129 function = unq;
15132 if (identifier_p (function))
15134 if (complain & tf_error)
15135 unqualified_name_lookup_error (function);
15136 release_tree_vector (call_args);
15137 RETURN (error_mark_node);
15141 /* Remember that there was a reference to this entity. */
15142 if (DECL_P (function))
15143 mark_used (function);
15145 /* Put back tf_decltype for the actual call. */
15146 complain |= decltype_flag;
15148 if (TREE_CODE (function) == OFFSET_REF)
15149 ret = build_offset_ref_call_from_tree (function, &call_args,
15150 complain);
15151 else if (TREE_CODE (function) == COMPONENT_REF)
15153 tree instance = TREE_OPERAND (function, 0);
15154 tree fn = TREE_OPERAND (function, 1);
15156 if (processing_template_decl
15157 && (type_dependent_expression_p (instance)
15158 || (!BASELINK_P (fn)
15159 && TREE_CODE (fn) != FIELD_DECL)
15160 || type_dependent_expression_p (fn)
15161 || any_type_dependent_arguments_p (call_args)))
15162 ret = build_nt_call_vec (function, call_args);
15163 else if (!BASELINK_P (fn))
15164 ret = finish_call_expr (function, &call_args,
15165 /*disallow_virtual=*/false,
15166 /*koenig_p=*/false,
15167 complain);
15168 else
15169 ret = (build_new_method_call
15170 (instance, fn,
15171 &call_args, NULL_TREE,
15172 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
15173 /*fn_p=*/NULL,
15174 complain));
15176 else
15177 ret = finish_call_expr (function, &call_args,
15178 /*disallow_virtual=*/qualified_p,
15179 koenig_p,
15180 complain);
15182 release_tree_vector (call_args);
15184 RETURN (ret);
15187 case COND_EXPR:
15189 tree cond = RECUR (TREE_OPERAND (t, 0));
15190 tree folded_cond = fold_non_dependent_expr (cond);
15191 tree exp1, exp2;
15193 if (TREE_CODE (folded_cond) == INTEGER_CST)
15195 if (integer_zerop (folded_cond))
15197 ++c_inhibit_evaluation_warnings;
15198 exp1 = RECUR (TREE_OPERAND (t, 1));
15199 --c_inhibit_evaluation_warnings;
15200 exp2 = RECUR (TREE_OPERAND (t, 2));
15202 else
15204 exp1 = RECUR (TREE_OPERAND (t, 1));
15205 ++c_inhibit_evaluation_warnings;
15206 exp2 = RECUR (TREE_OPERAND (t, 2));
15207 --c_inhibit_evaluation_warnings;
15209 cond = folded_cond;
15211 else
15213 exp1 = RECUR (TREE_OPERAND (t, 1));
15214 exp2 = RECUR (TREE_OPERAND (t, 2));
15217 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
15218 cond, exp1, exp2, complain));
15221 case PSEUDO_DTOR_EXPR:
15223 tree op0 = RECUR (TREE_OPERAND (t, 0));
15224 tree op1 = RECUR (TREE_OPERAND (t, 1));
15225 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
15226 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
15227 input_location));
15230 case TREE_LIST:
15232 tree purpose, value, chain;
15234 if (t == void_list_node)
15235 RETURN (t);
15237 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
15238 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
15240 /* We have pack expansions, so expand those and
15241 create a new list out of it. */
15242 tree purposevec = NULL_TREE;
15243 tree valuevec = NULL_TREE;
15244 tree chain;
15245 int i, len = -1;
15247 /* Expand the argument expressions. */
15248 if (TREE_PURPOSE (t))
15249 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
15250 complain, in_decl);
15251 if (TREE_VALUE (t))
15252 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
15253 complain, in_decl);
15255 /* Build the rest of the list. */
15256 chain = TREE_CHAIN (t);
15257 if (chain && chain != void_type_node)
15258 chain = RECUR (chain);
15260 /* Determine the number of arguments. */
15261 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
15263 len = TREE_VEC_LENGTH (purposevec);
15264 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
15266 else if (TREE_CODE (valuevec) == TREE_VEC)
15267 len = TREE_VEC_LENGTH (valuevec);
15268 else
15270 /* Since we only performed a partial substitution into
15271 the argument pack, we only RETURN (a single list
15272 node. */
15273 if (purposevec == TREE_PURPOSE (t)
15274 && valuevec == TREE_VALUE (t)
15275 && chain == TREE_CHAIN (t))
15276 RETURN (t);
15278 RETURN (tree_cons (purposevec, valuevec, chain));
15281 /* Convert the argument vectors into a TREE_LIST */
15282 i = len;
15283 while (i > 0)
15285 /* Grab the Ith values. */
15286 i--;
15287 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
15288 : NULL_TREE;
15289 value
15290 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
15291 : NULL_TREE;
15293 /* Build the list (backwards). */
15294 chain = tree_cons (purpose, value, chain);
15297 RETURN (chain);
15300 purpose = TREE_PURPOSE (t);
15301 if (purpose)
15302 purpose = RECUR (purpose);
15303 value = TREE_VALUE (t);
15304 if (value)
15305 value = RECUR (value);
15306 chain = TREE_CHAIN (t);
15307 if (chain && chain != void_type_node)
15308 chain = RECUR (chain);
15309 if (purpose == TREE_PURPOSE (t)
15310 && value == TREE_VALUE (t)
15311 && chain == TREE_CHAIN (t))
15312 RETURN (t);
15313 RETURN (tree_cons (purpose, value, chain));
15316 case COMPONENT_REF:
15318 tree object;
15319 tree object_type;
15320 tree member;
15321 tree r;
15323 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15324 args, complain, in_decl);
15325 /* Remember that there was a reference to this entity. */
15326 if (DECL_P (object))
15327 mark_used (object);
15328 object_type = TREE_TYPE (object);
15330 member = TREE_OPERAND (t, 1);
15331 if (BASELINK_P (member))
15332 member = tsubst_baselink (member,
15333 non_reference (TREE_TYPE (object)),
15334 args, complain, in_decl);
15335 else
15336 member = tsubst_copy (member, args, complain, in_decl);
15337 if (member == error_mark_node)
15338 RETURN (error_mark_node);
15340 if (type_dependent_expression_p (object))
15341 /* We can't do much here. */;
15342 else if (!CLASS_TYPE_P (object_type))
15344 if (scalarish_type_p (object_type))
15346 tree s = NULL_TREE;
15347 tree dtor = member;
15349 if (TREE_CODE (dtor) == SCOPE_REF)
15351 s = TREE_OPERAND (dtor, 0);
15352 dtor = TREE_OPERAND (dtor, 1);
15354 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
15356 dtor = TREE_OPERAND (dtor, 0);
15357 if (TYPE_P (dtor))
15358 RETURN (finish_pseudo_destructor_expr
15359 (object, s, dtor, input_location));
15363 else if (TREE_CODE (member) == SCOPE_REF
15364 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
15366 /* Lookup the template functions now that we know what the
15367 scope is. */
15368 tree scope = TREE_OPERAND (member, 0);
15369 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
15370 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
15371 member = lookup_qualified_name (scope, tmpl,
15372 /*is_type_p=*/false,
15373 /*complain=*/false);
15374 if (BASELINK_P (member))
15376 BASELINK_FUNCTIONS (member)
15377 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
15378 args);
15379 member = (adjust_result_of_qualified_name_lookup
15380 (member, BINFO_TYPE (BASELINK_BINFO (member)),
15381 object_type));
15383 else
15385 qualified_name_lookup_error (scope, tmpl, member,
15386 input_location);
15387 RETURN (error_mark_node);
15390 else if (TREE_CODE (member) == SCOPE_REF
15391 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
15392 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
15394 if (complain & tf_error)
15396 if (TYPE_P (TREE_OPERAND (member, 0)))
15397 error ("%qT is not a class or namespace",
15398 TREE_OPERAND (member, 0));
15399 else
15400 error ("%qD is not a class or namespace",
15401 TREE_OPERAND (member, 0));
15403 RETURN (error_mark_node);
15405 else if (TREE_CODE (member) == FIELD_DECL)
15407 r = finish_non_static_data_member (member, object, NULL_TREE);
15408 if (TREE_CODE (r) == COMPONENT_REF)
15409 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15410 RETURN (r);
15413 r = finish_class_member_access_expr (object, member,
15414 /*template_p=*/false,
15415 complain);
15416 if (TREE_CODE (r) == COMPONENT_REF)
15417 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15418 RETURN (r);
15421 case THROW_EXPR:
15422 RETURN (build_throw
15423 (RECUR (TREE_OPERAND (t, 0))));
15425 case CONSTRUCTOR:
15427 vec<constructor_elt, va_gc> *n;
15428 constructor_elt *ce;
15429 unsigned HOST_WIDE_INT idx;
15430 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15431 bool process_index_p;
15432 int newlen;
15433 bool need_copy_p = false;
15434 tree r;
15436 if (type == error_mark_node)
15437 RETURN (error_mark_node);
15439 /* digest_init will do the wrong thing if we let it. */
15440 if (type && TYPE_PTRMEMFUNC_P (type))
15441 RETURN (t);
15443 /* We do not want to process the index of aggregate
15444 initializers as they are identifier nodes which will be
15445 looked up by digest_init. */
15446 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
15448 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
15449 newlen = vec_safe_length (n);
15450 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
15452 if (ce->index && process_index_p
15453 /* An identifier index is looked up in the type
15454 being initialized, not the current scope. */
15455 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
15456 ce->index = RECUR (ce->index);
15458 if (PACK_EXPANSION_P (ce->value))
15460 /* Substitute into the pack expansion. */
15461 ce->value = tsubst_pack_expansion (ce->value, args, complain,
15462 in_decl);
15464 if (ce->value == error_mark_node
15465 || PACK_EXPANSION_P (ce->value))
15467 else if (TREE_VEC_LENGTH (ce->value) == 1)
15468 /* Just move the argument into place. */
15469 ce->value = TREE_VEC_ELT (ce->value, 0);
15470 else
15472 /* Update the length of the final CONSTRUCTOR
15473 arguments vector, and note that we will need to
15474 copy.*/
15475 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
15476 need_copy_p = true;
15479 else
15480 ce->value = RECUR (ce->value);
15483 if (need_copy_p)
15485 vec<constructor_elt, va_gc> *old_n = n;
15487 vec_alloc (n, newlen);
15488 FOR_EACH_VEC_ELT (*old_n, idx, ce)
15490 if (TREE_CODE (ce->value) == TREE_VEC)
15492 int i, len = TREE_VEC_LENGTH (ce->value);
15493 for (i = 0; i < len; ++i)
15494 CONSTRUCTOR_APPEND_ELT (n, 0,
15495 TREE_VEC_ELT (ce->value, i));
15497 else
15498 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
15502 r = build_constructor (init_list_type_node, n);
15503 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
15505 if (TREE_HAS_CONSTRUCTOR (t))
15506 RETURN (finish_compound_literal (type, r, complain));
15508 TREE_TYPE (r) = type;
15509 RETURN (r);
15512 case TYPEID_EXPR:
15514 tree operand_0 = TREE_OPERAND (t, 0);
15515 if (TYPE_P (operand_0))
15517 operand_0 = tsubst (operand_0, args, complain, in_decl);
15518 RETURN (get_typeid (operand_0, complain));
15520 else
15522 operand_0 = RECUR (operand_0);
15523 RETURN (build_typeid (operand_0, complain));
15527 case VAR_DECL:
15528 if (!args)
15529 RETURN (t);
15530 else if (DECL_PACK_P (t))
15532 /* We don't build decls for an instantiation of a
15533 variadic capture proxy, we instantiate the elements
15534 when needed. */
15535 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
15536 return RECUR (DECL_VALUE_EXPR (t));
15538 /* Fall through */
15540 case PARM_DECL:
15542 tree r = tsubst_copy (t, args, complain, in_decl);
15543 /* ??? We're doing a subset of finish_id_expression here. */
15544 if (VAR_P (r)
15545 && !processing_template_decl
15546 && !cp_unevaluated_operand
15547 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
15548 && DECL_THREAD_LOCAL_P (r))
15550 if (tree wrap = get_tls_wrapper_fn (r))
15551 /* Replace an evaluated use of the thread_local variable with
15552 a call to its wrapper. */
15553 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
15555 else if (outer_automatic_var_p (r))
15556 r = process_outer_var_ref (r, complain);
15558 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
15559 /* If the original type was a reference, we'll be wrapped in
15560 the appropriate INDIRECT_REF. */
15561 r = convert_from_reference (r);
15562 RETURN (r);
15565 case VA_ARG_EXPR:
15567 tree op0 = RECUR (TREE_OPERAND (t, 0));
15568 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15569 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
15572 case OFFSETOF_EXPR:
15573 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
15574 EXPR_LOCATION (t)));
15576 case TRAIT_EXPR:
15578 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
15579 complain, in_decl);
15581 tree type2 = TRAIT_EXPR_TYPE2 (t);
15582 if (type2 && TREE_CODE (type2) == TREE_LIST)
15583 type2 = RECUR (type2);
15584 else if (type2)
15585 type2 = tsubst (type2, args, complain, in_decl);
15587 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
15590 case STMT_EXPR:
15592 tree old_stmt_expr = cur_stmt_expr;
15593 tree stmt_expr = begin_stmt_expr ();
15595 cur_stmt_expr = stmt_expr;
15596 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
15597 integral_constant_expression_p);
15598 stmt_expr = finish_stmt_expr (stmt_expr, false);
15599 cur_stmt_expr = old_stmt_expr;
15601 /* If the resulting list of expression statement is empty,
15602 fold it further into void_node. */
15603 if (empty_expr_stmt_p (stmt_expr))
15604 stmt_expr = void_node;
15606 RETURN (stmt_expr);
15609 case LAMBDA_EXPR:
15611 tree r = build_lambda_expr ();
15613 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
15614 LAMBDA_EXPR_CLOSURE (r) = type;
15615 CLASSTYPE_LAMBDA_EXPR (type) = r;
15617 LAMBDA_EXPR_LOCATION (r)
15618 = LAMBDA_EXPR_LOCATION (t);
15619 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
15620 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
15621 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
15622 LAMBDA_EXPR_DISCRIMINATOR (r)
15623 = (LAMBDA_EXPR_DISCRIMINATOR (t));
15624 /* For a function scope, we want to use tsubst so that we don't
15625 complain about referring to an auto function before its return
15626 type has been deduced. Otherwise, we want to use tsubst_copy so
15627 that we look up the existing field/parameter/variable rather
15628 than build a new one. */
15629 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
15630 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
15631 scope = tsubst (scope, args, complain, in_decl);
15632 else if (scope && TREE_CODE (scope) == PARM_DECL)
15634 /* Look up the parameter we want directly, as tsubst_copy
15635 doesn't do what we need. */
15636 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
15637 tree parm = FUNCTION_FIRST_USER_PARM (fn);
15638 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
15639 parm = DECL_CHAIN (parm);
15640 scope = parm;
15641 /* FIXME Work around the parm not having DECL_CONTEXT set. */
15642 if (DECL_CONTEXT (scope) == NULL_TREE)
15643 DECL_CONTEXT (scope) = fn;
15645 else
15646 scope = RECUR (scope);
15647 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
15648 LAMBDA_EXPR_RETURN_TYPE (r)
15649 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
15651 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
15652 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
15654 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
15655 determine_visibility (TYPE_NAME (type));
15656 /* Now that we know visibility, instantiate the type so we have a
15657 declaration of the op() for later calls to lambda_function. */
15658 complete_type (type);
15660 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
15662 RETURN (build_lambda_object (r));
15665 case TARGET_EXPR:
15666 /* We can get here for a constant initializer of non-dependent type.
15667 FIXME stop folding in cp_parser_initializer_clause. */
15669 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
15670 complain);
15671 RETURN (r);
15674 case TRANSACTION_EXPR:
15675 RETURN (tsubst_expr(t, args, complain, in_decl,
15676 integral_constant_expression_p));
15678 case PAREN_EXPR:
15679 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
15681 case VEC_PERM_EXPR:
15683 tree op0 = RECUR (TREE_OPERAND (t, 0));
15684 tree op1 = RECUR (TREE_OPERAND (t, 1));
15685 tree op2 = RECUR (TREE_OPERAND (t, 2));
15686 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
15687 complain));
15690 default:
15691 /* Handle Objective-C++ constructs, if appropriate. */
15693 tree subst
15694 = objcp_tsubst_copy_and_build (t, args, complain,
15695 in_decl, /*function_p=*/false);
15696 if (subst)
15697 RETURN (subst);
15699 RETURN (tsubst_copy (t, args, complain, in_decl));
15702 #undef RECUR
15703 #undef RETURN
15704 out:
15705 input_location = loc;
15706 return retval;
15709 /* Verify that the instantiated ARGS are valid. For type arguments,
15710 make sure that the type's linkage is ok. For non-type arguments,
15711 make sure they are constants if they are integral or enumerations.
15712 Emit an error under control of COMPLAIN, and return TRUE on error. */
15714 static bool
15715 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
15717 if (dependent_template_arg_p (t))
15718 return false;
15719 if (ARGUMENT_PACK_P (t))
15721 tree vec = ARGUMENT_PACK_ARGS (t);
15722 int len = TREE_VEC_LENGTH (vec);
15723 bool result = false;
15724 int i;
15726 for (i = 0; i < len; ++i)
15727 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
15728 result = true;
15729 return result;
15731 else if (TYPE_P (t))
15733 /* [basic.link]: A name with no linkage (notably, the name
15734 of a class or enumeration declared in a local scope)
15735 shall not be used to declare an entity with linkage.
15736 This implies that names with no linkage cannot be used as
15737 template arguments
15739 DR 757 relaxes this restriction for C++0x. */
15740 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
15741 : no_linkage_check (t, /*relaxed_p=*/false));
15743 if (nt)
15745 /* DR 488 makes use of a type with no linkage cause
15746 type deduction to fail. */
15747 if (complain & tf_error)
15749 if (TYPE_ANONYMOUS_P (nt))
15750 error ("%qT is/uses anonymous type", t);
15751 else
15752 error ("template argument for %qD uses local type %qT",
15753 tmpl, t);
15755 return true;
15757 /* In order to avoid all sorts of complications, we do not
15758 allow variably-modified types as template arguments. */
15759 else if (variably_modified_type_p (t, NULL_TREE))
15761 if (complain & tf_error)
15762 error ("%qT is a variably modified type", t);
15763 return true;
15766 /* Class template and alias template arguments should be OK. */
15767 else if (DECL_TYPE_TEMPLATE_P (t))
15769 /* A non-type argument of integral or enumerated type must be a
15770 constant. */
15771 else if (TREE_TYPE (t)
15772 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
15773 && !REFERENCE_REF_P (t)
15774 && !TREE_CONSTANT (t))
15776 if (complain & tf_error)
15777 error ("integral expression %qE is not constant", t);
15778 return true;
15780 return false;
15783 static bool
15784 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
15786 int ix, len = DECL_NTPARMS (tmpl);
15787 bool result = false;
15789 for (ix = 0; ix != len; ix++)
15791 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
15792 result = true;
15794 if (result && (complain & tf_error))
15795 error (" trying to instantiate %qD", tmpl);
15796 return result;
15799 /* We're out of SFINAE context now, so generate diagnostics for the access
15800 errors we saw earlier when instantiating D from TMPL and ARGS. */
15802 static void
15803 recheck_decl_substitution (tree d, tree tmpl, tree args)
15805 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
15806 tree type = TREE_TYPE (pattern);
15807 location_t loc = input_location;
15809 push_access_scope (d);
15810 push_deferring_access_checks (dk_no_deferred);
15811 input_location = DECL_SOURCE_LOCATION (pattern);
15812 tsubst (type, args, tf_warning_or_error, d);
15813 input_location = loc;
15814 pop_deferring_access_checks ();
15815 pop_access_scope (d);
15818 /* Instantiate the indicated variable, function, or alias template TMPL with
15819 the template arguments in TARG_PTR. */
15821 static tree
15822 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
15824 tree targ_ptr = orig_args;
15825 tree fndecl;
15826 tree gen_tmpl;
15827 tree spec;
15828 bool access_ok = true;
15830 if (tmpl == error_mark_node)
15831 return error_mark_node;
15833 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
15835 /* If this function is a clone, handle it specially. */
15836 if (DECL_CLONED_FUNCTION_P (tmpl))
15838 tree spec;
15839 tree clone;
15841 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
15842 DECL_CLONED_FUNCTION. */
15843 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
15844 targ_ptr, complain);
15845 if (spec == error_mark_node)
15846 return error_mark_node;
15848 /* Look for the clone. */
15849 FOR_EACH_CLONE (clone, spec)
15850 if (DECL_NAME (clone) == DECL_NAME (tmpl))
15851 return clone;
15852 /* We should always have found the clone by now. */
15853 gcc_unreachable ();
15854 return NULL_TREE;
15857 if (targ_ptr == error_mark_node)
15858 return error_mark_node;
15860 /* Check to see if we already have this specialization. */
15861 gen_tmpl = most_general_template (tmpl);
15862 if (tmpl != gen_tmpl)
15863 /* The TMPL is a partial instantiation. To get a full set of
15864 arguments we must add the arguments used to perform the
15865 partial instantiation. */
15866 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
15867 targ_ptr);
15869 /* It would be nice to avoid hashing here and then again in tsubst_decl,
15870 but it doesn't seem to be on the hot path. */
15871 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
15873 gcc_assert (tmpl == gen_tmpl
15874 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
15875 == spec)
15876 || fndecl == NULL_TREE);
15878 if (spec != NULL_TREE)
15880 if (FNDECL_HAS_ACCESS_ERRORS (spec))
15882 if (complain & tf_error)
15883 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
15884 return error_mark_node;
15886 return spec;
15889 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
15890 complain))
15891 return error_mark_node;
15893 /* We are building a FUNCTION_DECL, during which the access of its
15894 parameters and return types have to be checked. However this
15895 FUNCTION_DECL which is the desired context for access checking
15896 is not built yet. We solve this chicken-and-egg problem by
15897 deferring all checks until we have the FUNCTION_DECL. */
15898 push_deferring_access_checks (dk_deferred);
15900 /* Instantiation of the function happens in the context of the function
15901 template, not the context of the overload resolution we're doing. */
15902 push_to_top_level ();
15903 /* If there are dependent arguments, e.g. because we're doing partial
15904 ordering, make sure processing_template_decl stays set. */
15905 if (uses_template_parms (targ_ptr))
15906 ++processing_template_decl;
15907 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15909 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
15910 complain, gen_tmpl, true);
15911 push_nested_class (ctx);
15914 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
15916 if (VAR_P (pattern))
15918 /* We need to determine if we're using a partial or explicit
15919 specialization now, because the type of the variable could be
15920 different. */
15921 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
15922 tree elt = most_specialized_partial_spec (tid, complain);
15923 if (elt == error_mark_node)
15924 pattern = error_mark_node;
15925 else if (elt)
15927 tmpl = TREE_VALUE (elt);
15928 pattern = DECL_TEMPLATE_RESULT (tmpl);
15929 targ_ptr = TREE_PURPOSE (elt);
15933 /* Substitute template parameters to obtain the specialization. */
15934 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
15935 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15936 pop_nested_class ();
15937 pop_from_top_level ();
15939 if (fndecl == error_mark_node)
15941 pop_deferring_access_checks ();
15942 return error_mark_node;
15945 /* The DECL_TI_TEMPLATE should always be the immediate parent
15946 template, not the most general template. */
15947 DECL_TI_TEMPLATE (fndecl) = tmpl;
15949 /* Now we know the specialization, compute access previously
15950 deferred. */
15951 push_access_scope (fndecl);
15952 if (!perform_deferred_access_checks (complain))
15953 access_ok = false;
15954 pop_access_scope (fndecl);
15955 pop_deferring_access_checks ();
15957 /* If we've just instantiated the main entry point for a function,
15958 instantiate all the alternate entry points as well. We do this
15959 by cloning the instantiation of the main entry point, not by
15960 instantiating the template clones. */
15961 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
15962 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
15964 if (!access_ok)
15966 if (!(complain & tf_error))
15968 /* Remember to reinstantiate when we're out of SFINAE so the user
15969 can see the errors. */
15970 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
15972 return error_mark_node;
15974 return fndecl;
15977 /* Wrapper for instantiate_template_1. */
15979 tree
15980 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
15982 tree ret;
15983 timevar_push (TV_TEMPLATE_INST);
15984 ret = instantiate_template_1 (tmpl, orig_args, complain);
15985 timevar_pop (TV_TEMPLATE_INST);
15986 return ret;
15989 /* Instantiate the alias template TMPL with ARGS. Also push a template
15990 instantiation level, which instantiate_template doesn't do because
15991 functions and variables have sufficient context established by the
15992 callers. */
15994 static tree
15995 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
15997 struct pending_template *old_last_pend = last_pending_template;
15998 struct tinst_level *old_error_tinst = last_error_tinst_level;
15999 if (tmpl == error_mark_node || args == error_mark_node)
16000 return error_mark_node;
16001 tree tinst = build_tree_list (tmpl, args);
16002 if (!push_tinst_level (tinst))
16004 ggc_free (tinst);
16005 return error_mark_node;
16008 args =
16009 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
16010 args, tmpl, complain,
16011 /*require_all_args=*/true,
16012 /*use_default_args=*/true);
16014 tree r = instantiate_template (tmpl, args, complain);
16015 pop_tinst_level ();
16016 /* We can't free this if a pending_template entry or last_error_tinst_level
16017 is pointing at it. */
16018 if (last_pending_template == old_last_pend
16019 && last_error_tinst_level == old_error_tinst)
16020 ggc_free (tinst);
16022 return r;
16025 /* PARM is a template parameter pack for FN. Returns true iff
16026 PARM is used in a deducible way in the argument list of FN. */
16028 static bool
16029 pack_deducible_p (tree parm, tree fn)
16031 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
16032 for (; t; t = TREE_CHAIN (t))
16034 tree type = TREE_VALUE (t);
16035 tree packs;
16036 if (!PACK_EXPANSION_P (type))
16037 continue;
16038 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
16039 packs; packs = TREE_CHAIN (packs))
16040 if (template_args_equal (TREE_VALUE (packs), parm))
16042 /* The template parameter pack is used in a function parameter
16043 pack. If this is the end of the parameter list, the
16044 template parameter pack is deducible. */
16045 if (TREE_CHAIN (t) == void_list_node)
16046 return true;
16047 else
16048 /* Otherwise, not. Well, it could be deduced from
16049 a non-pack parameter, but doing so would end up with
16050 a deduction mismatch, so don't bother. */
16051 return false;
16054 /* The template parameter pack isn't used in any function parameter
16055 packs, but it might be used deeper, e.g. tuple<Args...>. */
16056 return true;
16059 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
16060 NARGS elements of the arguments that are being used when calling
16061 it. TARGS is a vector into which the deduced template arguments
16062 are placed.
16064 Returns either a FUNCTION_DECL for the matching specialization of FN or
16065 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
16066 true, diagnostics will be printed to explain why it failed.
16068 If FN is a conversion operator, or we are trying to produce a specific
16069 specialization, RETURN_TYPE is the return type desired.
16071 The EXPLICIT_TARGS are explicit template arguments provided via a
16072 template-id.
16074 The parameter STRICT is one of:
16076 DEDUCE_CALL:
16077 We are deducing arguments for a function call, as in
16078 [temp.deduct.call].
16080 DEDUCE_CONV:
16081 We are deducing arguments for a conversion function, as in
16082 [temp.deduct.conv].
16084 DEDUCE_EXACT:
16085 We are deducing arguments when doing an explicit instantiation
16086 as in [temp.explicit], when determining an explicit specialization
16087 as in [temp.expl.spec], or when taking the address of a function
16088 template, as in [temp.deduct.funcaddr]. */
16090 tree
16091 fn_type_unification (tree fn,
16092 tree explicit_targs,
16093 tree targs,
16094 const tree *args,
16095 unsigned int nargs,
16096 tree return_type,
16097 unification_kind_t strict,
16098 int flags,
16099 bool explain_p,
16100 bool decltype_p)
16102 tree parms;
16103 tree fntype;
16104 tree decl = NULL_TREE;
16105 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
16106 bool ok;
16107 static int deduction_depth;
16108 struct pending_template *old_last_pend = last_pending_template;
16109 struct tinst_level *old_error_tinst = last_error_tinst_level;
16110 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
16111 tree tinst;
16112 tree r = error_mark_node;
16114 if (decltype_p)
16115 complain |= tf_decltype;
16117 /* In C++0x, it's possible to have a function template whose type depends
16118 on itself recursively. This is most obvious with decltype, but can also
16119 occur with enumeration scope (c++/48969). So we need to catch infinite
16120 recursion and reject the substitution at deduction time; this function
16121 will return error_mark_node for any repeated substitution.
16123 This also catches excessive recursion such as when f<N> depends on
16124 f<N-1> across all integers, and returns error_mark_node for all the
16125 substitutions back up to the initial one.
16127 This is, of course, not reentrant. */
16128 if (excessive_deduction_depth)
16129 return error_mark_node;
16130 tinst = build_tree_list (fn, NULL_TREE);
16131 ++deduction_depth;
16133 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
16135 fntype = TREE_TYPE (fn);
16136 if (explicit_targs)
16138 /* [temp.deduct]
16140 The specified template arguments must match the template
16141 parameters in kind (i.e., type, nontype, template), and there
16142 must not be more arguments than there are parameters;
16143 otherwise type deduction fails.
16145 Nontype arguments must match the types of the corresponding
16146 nontype template parameters, or must be convertible to the
16147 types of the corresponding nontype parameters as specified in
16148 _temp.arg.nontype_, otherwise type deduction fails.
16150 All references in the function type of the function template
16151 to the corresponding template parameters are replaced by the
16152 specified template argument values. If a substitution in a
16153 template parameter or in the function type of the function
16154 template results in an invalid type, type deduction fails. */
16155 int i, len = TREE_VEC_LENGTH (tparms);
16156 location_t loc = input_location;
16157 bool incomplete = false;
16159 /* Adjust any explicit template arguments before entering the
16160 substitution context. */
16161 explicit_targs
16162 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
16163 complain,
16164 /*require_all_args=*/false,
16165 /*use_default_args=*/false));
16166 if (explicit_targs == error_mark_node)
16167 goto fail;
16169 /* Substitute the explicit args into the function type. This is
16170 necessary so that, for instance, explicitly declared function
16171 arguments can match null pointed constants. If we were given
16172 an incomplete set of explicit args, we must not do semantic
16173 processing during substitution as we could create partial
16174 instantiations. */
16175 for (i = 0; i < len; i++)
16177 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16178 bool parameter_pack = false;
16179 tree targ = TREE_VEC_ELT (explicit_targs, i);
16181 /* Dig out the actual parm. */
16182 if (TREE_CODE (parm) == TYPE_DECL
16183 || TREE_CODE (parm) == TEMPLATE_DECL)
16185 parm = TREE_TYPE (parm);
16186 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
16188 else if (TREE_CODE (parm) == PARM_DECL)
16190 parm = DECL_INITIAL (parm);
16191 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
16194 if (!parameter_pack && targ == NULL_TREE)
16195 /* No explicit argument for this template parameter. */
16196 incomplete = true;
16198 if (parameter_pack && pack_deducible_p (parm, fn))
16200 /* Mark the argument pack as "incomplete". We could
16201 still deduce more arguments during unification.
16202 We remove this mark in type_unification_real. */
16203 if (targ)
16205 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
16206 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
16207 = ARGUMENT_PACK_ARGS (targ);
16210 /* We have some incomplete argument packs. */
16211 incomplete = true;
16215 TREE_VALUE (tinst) = explicit_targs;
16216 if (!push_tinst_level (tinst))
16218 excessive_deduction_depth = true;
16219 goto fail;
16221 processing_template_decl += incomplete;
16222 input_location = DECL_SOURCE_LOCATION (fn);
16223 /* Ignore any access checks; we'll see them again in
16224 instantiate_template and they might have the wrong
16225 access path at this point. */
16226 push_deferring_access_checks (dk_deferred);
16227 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
16228 complain | tf_partial, NULL_TREE);
16229 pop_deferring_access_checks ();
16230 input_location = loc;
16231 processing_template_decl -= incomplete;
16232 pop_tinst_level ();
16234 if (fntype == error_mark_node)
16235 goto fail;
16237 /* Place the explicitly specified arguments in TARGS. */
16238 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
16239 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
16242 /* Never do unification on the 'this' parameter. */
16243 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
16245 if (return_type)
16247 tree *new_args;
16249 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
16250 new_args = XALLOCAVEC (tree, nargs + 1);
16251 new_args[0] = return_type;
16252 memcpy (new_args + 1, args, nargs * sizeof (tree));
16253 args = new_args;
16254 ++nargs;
16257 /* We allow incomplete unification without an error message here
16258 because the standard doesn't seem to explicitly prohibit it. Our
16259 callers must be ready to deal with unification failures in any
16260 event. */
16262 TREE_VALUE (tinst) = targs;
16263 /* If we aren't explaining yet, push tinst context so we can see where
16264 any errors (e.g. from class instantiations triggered by instantiation
16265 of default template arguments) come from. If we are explaining, this
16266 context is redundant. */
16267 if (!explain_p && !push_tinst_level (tinst))
16269 excessive_deduction_depth = true;
16270 goto fail;
16273 /* type_unification_real will pass back any access checks from default
16274 template argument substitution. */
16275 vec<deferred_access_check, va_gc> *checks;
16276 checks = NULL;
16278 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16279 targs, parms, args, nargs, /*subr=*/0,
16280 strict, flags, &checks, explain_p);
16281 if (!explain_p)
16282 pop_tinst_level ();
16283 if (!ok)
16284 goto fail;
16286 /* Now that we have bindings for all of the template arguments,
16287 ensure that the arguments deduced for the template template
16288 parameters have compatible template parameter lists. We cannot
16289 check this property before we have deduced all template
16290 arguments, because the template parameter types of a template
16291 template parameter might depend on prior template parameters
16292 deduced after the template template parameter. The following
16293 ill-formed example illustrates this issue:
16295 template<typename T, template<T> class C> void f(C<5>, T);
16297 template<int N> struct X {};
16299 void g() {
16300 f(X<5>(), 5l); // error: template argument deduction fails
16303 The template parameter list of 'C' depends on the template type
16304 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
16305 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
16306 time that we deduce 'C'. */
16307 if (!template_template_parm_bindings_ok_p
16308 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
16310 unify_inconsistent_template_template_parameters (explain_p);
16311 goto fail;
16314 /* All is well so far. Now, check:
16316 [temp.deduct]
16318 When all template arguments have been deduced, all uses of
16319 template parameters in nondeduced contexts are replaced with
16320 the corresponding deduced argument values. If the
16321 substitution results in an invalid type, as described above,
16322 type deduction fails. */
16323 TREE_VALUE (tinst) = targs;
16324 if (!push_tinst_level (tinst))
16326 excessive_deduction_depth = true;
16327 goto fail;
16330 /* Also collect access checks from the instantiation. */
16331 reopen_deferring_access_checks (checks);
16333 decl = instantiate_template (fn, targs, complain);
16335 checks = get_deferred_access_checks ();
16336 pop_deferring_access_checks ();
16338 pop_tinst_level ();
16340 if (decl == error_mark_node)
16341 goto fail;
16343 /* Now perform any access checks encountered during substitution. */
16344 push_access_scope (decl);
16345 ok = perform_access_checks (checks, complain);
16346 pop_access_scope (decl);
16347 if (!ok)
16348 goto fail;
16350 /* If we're looking for an exact match, check that what we got
16351 is indeed an exact match. It might not be if some template
16352 parameters are used in non-deduced contexts. But don't check
16353 for an exact match if we have dependent template arguments;
16354 in that case we're doing partial ordering, and we already know
16355 that we have two candidates that will provide the actual type. */
16356 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
16358 tree substed = TREE_TYPE (decl);
16359 unsigned int i;
16361 tree sarg
16362 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
16363 if (return_type)
16364 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
16365 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
16366 if (!same_type_p (args[i], TREE_VALUE (sarg)))
16368 unify_type_mismatch (explain_p, args[i],
16369 TREE_VALUE (sarg));
16370 goto fail;
16374 r = decl;
16376 fail:
16377 --deduction_depth;
16378 if (excessive_deduction_depth)
16380 if (deduction_depth == 0)
16381 /* Reset once we're all the way out. */
16382 excessive_deduction_depth = false;
16385 /* We can't free this if a pending_template entry or last_error_tinst_level
16386 is pointing at it. */
16387 if (last_pending_template == old_last_pend
16388 && last_error_tinst_level == old_error_tinst)
16389 ggc_free (tinst);
16391 return r;
16394 /* Adjust types before performing type deduction, as described in
16395 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
16396 sections are symmetric. PARM is the type of a function parameter
16397 or the return type of the conversion function. ARG is the type of
16398 the argument passed to the call, or the type of the value
16399 initialized with the result of the conversion function.
16400 ARG_EXPR is the original argument expression, which may be null. */
16402 static int
16403 maybe_adjust_types_for_deduction (unification_kind_t strict,
16404 tree* parm,
16405 tree* arg,
16406 tree arg_expr)
16408 int result = 0;
16410 switch (strict)
16412 case DEDUCE_CALL:
16413 break;
16415 case DEDUCE_CONV:
16417 /* Swap PARM and ARG throughout the remainder of this
16418 function; the handling is precisely symmetric since PARM
16419 will initialize ARG rather than vice versa. */
16420 tree* temp = parm;
16421 parm = arg;
16422 arg = temp;
16423 break;
16426 case DEDUCE_EXACT:
16427 /* Core issue #873: Do the DR606 thing (see below) for these cases,
16428 too, but here handle it by stripping the reference from PARM
16429 rather than by adding it to ARG. */
16430 if (TREE_CODE (*parm) == REFERENCE_TYPE
16431 && TYPE_REF_IS_RVALUE (*parm)
16432 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16433 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16434 && TREE_CODE (*arg) == REFERENCE_TYPE
16435 && !TYPE_REF_IS_RVALUE (*arg))
16436 *parm = TREE_TYPE (*parm);
16437 /* Nothing else to do in this case. */
16438 return 0;
16440 default:
16441 gcc_unreachable ();
16444 if (TREE_CODE (*parm) != REFERENCE_TYPE)
16446 /* [temp.deduct.call]
16448 If P is not a reference type:
16450 --If A is an array type, the pointer type produced by the
16451 array-to-pointer standard conversion (_conv.array_) is
16452 used in place of A for type deduction; otherwise,
16454 --If A is a function type, the pointer type produced by
16455 the function-to-pointer standard conversion
16456 (_conv.func_) is used in place of A for type deduction;
16457 otherwise,
16459 --If A is a cv-qualified type, the top level
16460 cv-qualifiers of A's type are ignored for type
16461 deduction. */
16462 if (TREE_CODE (*arg) == ARRAY_TYPE)
16463 *arg = build_pointer_type (TREE_TYPE (*arg));
16464 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
16465 *arg = build_pointer_type (*arg);
16466 else
16467 *arg = TYPE_MAIN_VARIANT (*arg);
16470 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
16471 of the form T&&, where T is a template parameter, and the argument
16472 is an lvalue, T is deduced as A& */
16473 if (TREE_CODE (*parm) == REFERENCE_TYPE
16474 && TYPE_REF_IS_RVALUE (*parm)
16475 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16476 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16477 && (arg_expr ? real_lvalue_p (arg_expr)
16478 /* try_one_overload doesn't provide an arg_expr, but
16479 functions are always lvalues. */
16480 : TREE_CODE (*arg) == FUNCTION_TYPE))
16481 *arg = build_reference_type (*arg);
16483 /* [temp.deduct.call]
16485 If P is a cv-qualified type, the top level cv-qualifiers
16486 of P's type are ignored for type deduction. If P is a
16487 reference type, the type referred to by P is used for
16488 type deduction. */
16489 *parm = TYPE_MAIN_VARIANT (*parm);
16490 if (TREE_CODE (*parm) == REFERENCE_TYPE)
16492 *parm = TREE_TYPE (*parm);
16493 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16496 /* DR 322. For conversion deduction, remove a reference type on parm
16497 too (which has been swapped into ARG). */
16498 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
16499 *arg = TREE_TYPE (*arg);
16501 return result;
16504 /* Subroutine of unify_one_argument. PARM is a function parameter of a
16505 template which does contain any deducible template parameters; check if
16506 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
16507 unify_one_argument. */
16509 static int
16510 check_non_deducible_conversion (tree parm, tree arg, int strict,
16511 int flags, bool explain_p)
16513 tree type;
16515 if (!TYPE_P (arg))
16516 type = TREE_TYPE (arg);
16517 else
16518 type = arg;
16520 if (same_type_p (parm, type))
16521 return unify_success (explain_p);
16523 if (strict == DEDUCE_CONV)
16525 if (can_convert_arg (type, parm, NULL_TREE, flags,
16526 explain_p ? tf_warning_or_error : tf_none))
16527 return unify_success (explain_p);
16529 else if (strict != DEDUCE_EXACT)
16531 if (can_convert_arg (parm, type,
16532 TYPE_P (arg) ? NULL_TREE : arg,
16533 flags, explain_p ? tf_warning_or_error : tf_none))
16534 return unify_success (explain_p);
16537 if (strict == DEDUCE_EXACT)
16538 return unify_type_mismatch (explain_p, parm, arg);
16539 else
16540 return unify_arg_conversion (explain_p, parm, type, arg);
16543 static bool uses_deducible_template_parms (tree type);
16545 /* Returns true iff the expression EXPR is one from which a template
16546 argument can be deduced. In other words, if it's an undecorated
16547 use of a template non-type parameter. */
16549 static bool
16550 deducible_expression (tree expr)
16552 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
16555 /* Returns true iff the array domain DOMAIN uses a template parameter in a
16556 deducible way; that is, if it has a max value of <PARM> - 1. */
16558 static bool
16559 deducible_array_bound (tree domain)
16561 if (domain == NULL_TREE)
16562 return false;
16564 tree max = TYPE_MAX_VALUE (domain);
16565 if (TREE_CODE (max) != MINUS_EXPR)
16566 return false;
16568 return deducible_expression (TREE_OPERAND (max, 0));
16571 /* Returns true iff the template arguments ARGS use a template parameter
16572 in a deducible way. */
16574 static bool
16575 deducible_template_args (tree args)
16577 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
16579 bool deducible;
16580 tree elt = TREE_VEC_ELT (args, i);
16581 if (ARGUMENT_PACK_P (elt))
16582 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
16583 else
16585 if (PACK_EXPANSION_P (elt))
16586 elt = PACK_EXPANSION_PATTERN (elt);
16587 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
16588 deducible = true;
16589 else if (TYPE_P (elt))
16590 deducible = uses_deducible_template_parms (elt);
16591 else
16592 deducible = deducible_expression (elt);
16594 if (deducible)
16595 return true;
16597 return false;
16600 /* Returns true iff TYPE contains any deducible references to template
16601 parameters, as per 14.8.2.5. */
16603 static bool
16604 uses_deducible_template_parms (tree type)
16606 if (PACK_EXPANSION_P (type))
16607 type = PACK_EXPANSION_PATTERN (type);
16609 /* T
16610 cv-list T
16611 TT<T>
16612 TT<i>
16613 TT<> */
16614 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
16615 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
16616 return true;
16618 /* T*
16620 T&& */
16621 if (POINTER_TYPE_P (type))
16622 return uses_deducible_template_parms (TREE_TYPE (type));
16624 /* T[integer-constant ]
16625 type [i] */
16626 if (TREE_CODE (type) == ARRAY_TYPE)
16627 return (uses_deducible_template_parms (TREE_TYPE (type))
16628 || deducible_array_bound (TYPE_DOMAIN (type)));
16630 /* T type ::*
16631 type T::*
16632 T T::*
16633 T (type ::*)()
16634 type (T::*)()
16635 type (type ::*)(T)
16636 type (T::*)(T)
16637 T (type ::*)(T)
16638 T (T::*)()
16639 T (T::*)(T) */
16640 if (TYPE_PTRMEM_P (type))
16641 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
16642 || (uses_deducible_template_parms
16643 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
16645 /* template-name <T> (where template-name refers to a class template)
16646 template-name <i> (where template-name refers to a class template) */
16647 if (CLASS_TYPE_P (type)
16648 && CLASSTYPE_TEMPLATE_INFO (type)
16649 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
16650 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
16651 (CLASSTYPE_TI_ARGS (type)));
16653 /* type (T)
16655 T(T) */
16656 if (TREE_CODE (type) == FUNCTION_TYPE
16657 || TREE_CODE (type) == METHOD_TYPE)
16659 if (uses_deducible_template_parms (TREE_TYPE (type)))
16660 return true;
16661 tree parm = TYPE_ARG_TYPES (type);
16662 if (TREE_CODE (type) == METHOD_TYPE)
16663 parm = TREE_CHAIN (parm);
16664 for (; parm; parm = TREE_CHAIN (parm))
16665 if (uses_deducible_template_parms (TREE_VALUE (parm)))
16666 return true;
16669 return false;
16672 /* Subroutine of type_unification_real and unify_pack_expansion to
16673 handle unification of a single P/A pair. Parameters are as
16674 for those functions. */
16676 static int
16677 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
16678 int subr, unification_kind_t strict, int flags,
16679 bool explain_p)
16681 tree arg_expr = NULL_TREE;
16682 int arg_strict;
16684 if (arg == error_mark_node || parm == error_mark_node)
16685 return unify_invalid (explain_p);
16686 if (arg == unknown_type_node)
16687 /* We can't deduce anything from this, but we might get all the
16688 template args from other function args. */
16689 return unify_success (explain_p);
16691 /* Implicit conversions (Clause 4) will be performed on a function
16692 argument to convert it to the type of the corresponding function
16693 parameter if the parameter type contains no template-parameters that
16694 participate in template argument deduction. */
16695 if (TYPE_P (parm) && !uses_template_parms (parm))
16696 /* For function parameters that contain no template-parameters at all,
16697 we have historically checked for convertibility in order to shortcut
16698 consideration of this candidate. */
16699 return check_non_deducible_conversion (parm, arg, strict, flags,
16700 explain_p);
16701 else if (strict == DEDUCE_CALL
16702 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
16703 /* For function parameters with only non-deducible template parameters,
16704 just return. */
16705 return unify_success (explain_p);
16707 switch (strict)
16709 case DEDUCE_CALL:
16710 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
16711 | UNIFY_ALLOW_MORE_CV_QUAL
16712 | UNIFY_ALLOW_DERIVED);
16713 break;
16715 case DEDUCE_CONV:
16716 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
16717 break;
16719 case DEDUCE_EXACT:
16720 arg_strict = UNIFY_ALLOW_NONE;
16721 break;
16723 default:
16724 gcc_unreachable ();
16727 /* We only do these transformations if this is the top-level
16728 parameter_type_list in a call or declaration matching; in other
16729 situations (nested function declarators, template argument lists) we
16730 won't be comparing a type to an expression, and we don't do any type
16731 adjustments. */
16732 if (!subr)
16734 if (!TYPE_P (arg))
16736 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
16737 if (type_unknown_p (arg))
16739 /* [temp.deduct.type] A template-argument can be
16740 deduced from a pointer to function or pointer
16741 to member function argument if the set of
16742 overloaded functions does not contain function
16743 templates and at most one of a set of
16744 overloaded functions provides a unique
16745 match. */
16747 if (resolve_overloaded_unification
16748 (tparms, targs, parm, arg, strict,
16749 arg_strict, explain_p))
16750 return unify_success (explain_p);
16751 return unify_overload_resolution_failure (explain_p, arg);
16754 arg_expr = arg;
16755 arg = unlowered_expr_type (arg);
16756 if (arg == error_mark_node)
16757 return unify_invalid (explain_p);
16760 arg_strict |=
16761 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
16763 else
16764 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
16765 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
16766 return unify_template_argument_mismatch (explain_p, parm, arg);
16768 /* For deduction from an init-list we need the actual list. */
16769 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
16770 arg = arg_expr;
16771 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
16774 /* Most parms like fn_type_unification.
16776 If SUBR is 1, we're being called recursively (to unify the
16777 arguments of a function or method parameter of a function
16778 template).
16780 CHECKS is a pointer to a vector of access checks encountered while
16781 substituting default template arguments. */
16783 static int
16784 type_unification_real (tree tparms,
16785 tree targs,
16786 tree xparms,
16787 const tree *xargs,
16788 unsigned int xnargs,
16789 int subr,
16790 unification_kind_t strict,
16791 int flags,
16792 vec<deferred_access_check, va_gc> **checks,
16793 bool explain_p)
16795 tree parm, arg;
16796 int i;
16797 int ntparms = TREE_VEC_LENGTH (tparms);
16798 int saw_undeduced = 0;
16799 tree parms;
16800 const tree *args;
16801 unsigned int nargs;
16802 unsigned int ia;
16804 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
16805 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
16806 gcc_assert (ntparms > 0);
16808 /* Reset the number of non-defaulted template arguments contained
16809 in TARGS. */
16810 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
16812 again:
16813 parms = xparms;
16814 args = xargs;
16815 nargs = xnargs;
16817 ia = 0;
16818 while (parms && parms != void_list_node
16819 && ia < nargs)
16821 parm = TREE_VALUE (parms);
16823 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
16824 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
16825 /* For a function parameter pack that occurs at the end of the
16826 parameter-declaration-list, the type A of each remaining
16827 argument of the call is compared with the type P of the
16828 declarator-id of the function parameter pack. */
16829 break;
16831 parms = TREE_CHAIN (parms);
16833 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
16834 /* For a function parameter pack that does not occur at the
16835 end of the parameter-declaration-list, the type of the
16836 parameter pack is a non-deduced context. */
16837 continue;
16839 arg = args[ia];
16840 ++ia;
16842 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16843 flags, explain_p))
16844 return 1;
16847 if (parms
16848 && parms != void_list_node
16849 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
16851 /* Unify the remaining arguments with the pack expansion type. */
16852 tree argvec;
16853 tree parmvec = make_tree_vec (1);
16855 /* Allocate a TREE_VEC and copy in all of the arguments */
16856 argvec = make_tree_vec (nargs - ia);
16857 for (i = 0; ia < nargs; ++ia, ++i)
16858 TREE_VEC_ELT (argvec, i) = args[ia];
16860 /* Copy the parameter into parmvec. */
16861 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
16862 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
16863 /*subr=*/subr, explain_p))
16864 return 1;
16866 /* Advance to the end of the list of parameters. */
16867 parms = TREE_CHAIN (parms);
16870 /* Fail if we've reached the end of the parm list, and more args
16871 are present, and the parm list isn't variadic. */
16872 if (ia < nargs && parms == void_list_node)
16873 return unify_too_many_arguments (explain_p, nargs, ia);
16874 /* Fail if parms are left and they don't have default values and
16875 they aren't all deduced as empty packs (c++/57397). This is
16876 consistent with sufficient_parms_p. */
16877 if (parms && parms != void_list_node
16878 && TREE_PURPOSE (parms) == NULL_TREE)
16880 unsigned int count = nargs;
16881 tree p = parms;
16882 bool type_pack_p;
16885 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
16886 if (!type_pack_p)
16887 count++;
16888 p = TREE_CHAIN (p);
16890 while (p && p != void_list_node);
16891 if (count != nargs)
16892 return unify_too_few_arguments (explain_p, ia, count,
16893 type_pack_p);
16896 if (!subr)
16898 tsubst_flags_t complain = (explain_p
16899 ? tf_warning_or_error
16900 : tf_none);
16902 for (i = 0; i < ntparms; i++)
16904 tree targ = TREE_VEC_ELT (targs, i);
16905 tree tparm = TREE_VEC_ELT (tparms, i);
16907 /* Clear the "incomplete" flags on all argument packs now so that
16908 substituting them into later default arguments works. */
16909 if (targ && ARGUMENT_PACK_P (targ))
16911 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
16912 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
16915 if (targ || tparm == error_mark_node)
16916 continue;
16917 tparm = TREE_VALUE (tparm);
16919 /* If this is an undeduced nontype parameter that depends on
16920 a type parameter, try another pass; its type may have been
16921 deduced from a later argument than the one from which
16922 this parameter can be deduced. */
16923 if (TREE_CODE (tparm) == PARM_DECL
16924 && uses_template_parms (TREE_TYPE (tparm))
16925 && !saw_undeduced++)
16926 goto again;
16928 /* Core issue #226 (C++0x) [temp.deduct]:
16930 If a template argument has not been deduced, its
16931 default template argument, if any, is used.
16933 When we are in C++98 mode, TREE_PURPOSE will either
16934 be NULL_TREE or ERROR_MARK_NODE, so we do not need
16935 to explicitly check cxx_dialect here. */
16936 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
16938 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16939 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
16940 reopen_deferring_access_checks (*checks);
16941 location_t save_loc = input_location;
16942 if (DECL_P (parm))
16943 input_location = DECL_SOURCE_LOCATION (parm);
16944 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
16945 arg = convert_template_argument (parm, arg, targs, complain,
16946 i, NULL_TREE);
16947 input_location = save_loc;
16948 *checks = get_deferred_access_checks ();
16949 pop_deferring_access_checks ();
16950 if (arg == error_mark_node)
16951 return 1;
16952 else
16954 TREE_VEC_ELT (targs, i) = arg;
16955 /* The position of the first default template argument,
16956 is also the number of non-defaulted arguments in TARGS.
16957 Record that. */
16958 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16959 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
16960 continue;
16964 /* If the type parameter is a parameter pack, then it will
16965 be deduced to an empty parameter pack. */
16966 if (template_parameter_pack_p (tparm))
16968 tree arg;
16970 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
16972 arg = make_node (NONTYPE_ARGUMENT_PACK);
16973 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
16974 TREE_CONSTANT (arg) = 1;
16976 else
16977 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
16979 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
16981 TREE_VEC_ELT (targs, i) = arg;
16982 continue;
16985 return unify_parameter_deduction_failure (explain_p, tparm);
16988 #ifdef ENABLE_CHECKING
16989 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16990 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
16991 #endif
16993 return unify_success (explain_p);
16996 /* Subroutine of type_unification_real. Args are like the variables
16997 at the call site. ARG is an overloaded function (or template-id);
16998 we try deducing template args from each of the overloads, and if
16999 only one succeeds, we go with that. Modifies TARGS and returns
17000 true on success. */
17002 static bool
17003 resolve_overloaded_unification (tree tparms,
17004 tree targs,
17005 tree parm,
17006 tree arg,
17007 unification_kind_t strict,
17008 int sub_strict,
17009 bool explain_p)
17011 tree tempargs = copy_node (targs);
17012 int good = 0;
17013 tree goodfn = NULL_TREE;
17014 bool addr_p;
17016 if (TREE_CODE (arg) == ADDR_EXPR)
17018 arg = TREE_OPERAND (arg, 0);
17019 addr_p = true;
17021 else
17022 addr_p = false;
17024 if (TREE_CODE (arg) == COMPONENT_REF)
17025 /* Handle `&x' where `x' is some static or non-static member
17026 function name. */
17027 arg = TREE_OPERAND (arg, 1);
17029 if (TREE_CODE (arg) == OFFSET_REF)
17030 arg = TREE_OPERAND (arg, 1);
17032 /* Strip baselink information. */
17033 if (BASELINK_P (arg))
17034 arg = BASELINK_FUNCTIONS (arg);
17036 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
17038 /* If we got some explicit template args, we need to plug them into
17039 the affected templates before we try to unify, in case the
17040 explicit args will completely resolve the templates in question. */
17042 int ok = 0;
17043 tree expl_subargs = TREE_OPERAND (arg, 1);
17044 arg = TREE_OPERAND (arg, 0);
17046 for (; arg; arg = OVL_NEXT (arg))
17048 tree fn = OVL_CURRENT (arg);
17049 tree subargs, elem;
17051 if (TREE_CODE (fn) != TEMPLATE_DECL)
17052 continue;
17054 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17055 expl_subargs, NULL_TREE, tf_none,
17056 /*require_all_args=*/true,
17057 /*use_default_args=*/true);
17058 if (subargs != error_mark_node
17059 && !any_dependent_template_arguments_p (subargs))
17061 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
17062 if (try_one_overload (tparms, targs, tempargs, parm,
17063 elem, strict, sub_strict, addr_p, explain_p)
17064 && (!goodfn || !same_type_p (goodfn, elem)))
17066 goodfn = elem;
17067 ++good;
17070 else if (subargs)
17071 ++ok;
17073 /* If no templates (or more than one) are fully resolved by the
17074 explicit arguments, this template-id is a non-deduced context; it
17075 could still be OK if we deduce all template arguments for the
17076 enclosing call through other arguments. */
17077 if (good != 1)
17078 good = ok;
17080 else if (TREE_CODE (arg) != OVERLOAD
17081 && TREE_CODE (arg) != FUNCTION_DECL)
17082 /* If ARG is, for example, "(0, &f)" then its type will be unknown
17083 -- but the deduction does not succeed because the expression is
17084 not just the function on its own. */
17085 return false;
17086 else
17087 for (; arg; arg = OVL_NEXT (arg))
17088 if (try_one_overload (tparms, targs, tempargs, parm,
17089 TREE_TYPE (OVL_CURRENT (arg)),
17090 strict, sub_strict, addr_p, explain_p)
17091 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
17093 goodfn = OVL_CURRENT (arg);
17094 ++good;
17097 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17098 to function or pointer to member function argument if the set of
17099 overloaded functions does not contain function templates and at most
17100 one of a set of overloaded functions provides a unique match.
17102 So if we found multiple possibilities, we return success but don't
17103 deduce anything. */
17105 if (good == 1)
17107 int i = TREE_VEC_LENGTH (targs);
17108 for (; i--; )
17109 if (TREE_VEC_ELT (tempargs, i))
17111 tree old = TREE_VEC_ELT (targs, i);
17112 tree new_ = TREE_VEC_ELT (tempargs, i);
17113 if (new_ && old && ARGUMENT_PACK_P (old)
17114 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
17115 /* Don't forget explicit template arguments in a pack. */
17116 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
17117 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
17118 TREE_VEC_ELT (targs, i) = new_;
17121 if (good)
17122 return true;
17124 return false;
17127 /* Core DR 115: In contexts where deduction is done and fails, or in
17128 contexts where deduction is not done, if a template argument list is
17129 specified and it, along with any default template arguments, identifies
17130 a single function template specialization, then the template-id is an
17131 lvalue for the function template specialization. */
17133 tree
17134 resolve_nondeduced_context (tree orig_expr)
17136 tree expr, offset, baselink;
17137 bool addr;
17139 if (!type_unknown_p (orig_expr))
17140 return orig_expr;
17142 expr = orig_expr;
17143 addr = false;
17144 offset = NULL_TREE;
17145 baselink = NULL_TREE;
17147 if (TREE_CODE (expr) == ADDR_EXPR)
17149 expr = TREE_OPERAND (expr, 0);
17150 addr = true;
17152 if (TREE_CODE (expr) == OFFSET_REF)
17154 offset = expr;
17155 expr = TREE_OPERAND (expr, 1);
17157 if (BASELINK_P (expr))
17159 baselink = expr;
17160 expr = BASELINK_FUNCTIONS (expr);
17163 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
17165 int good = 0;
17166 tree goodfn = NULL_TREE;
17168 /* If we got some explicit template args, we need to plug them into
17169 the affected templates before we try to unify, in case the
17170 explicit args will completely resolve the templates in question. */
17172 tree expl_subargs = TREE_OPERAND (expr, 1);
17173 tree arg = TREE_OPERAND (expr, 0);
17174 tree badfn = NULL_TREE;
17175 tree badargs = NULL_TREE;
17177 for (; arg; arg = OVL_NEXT (arg))
17179 tree fn = OVL_CURRENT (arg);
17180 tree subargs, elem;
17182 if (TREE_CODE (fn) != TEMPLATE_DECL)
17183 continue;
17185 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17186 expl_subargs, NULL_TREE, tf_none,
17187 /*require_all_args=*/true,
17188 /*use_default_args=*/true);
17189 if (subargs != error_mark_node
17190 && !any_dependent_template_arguments_p (subargs))
17192 elem = instantiate_template (fn, subargs, tf_none);
17193 if (elem == error_mark_node)
17195 badfn = fn;
17196 badargs = subargs;
17198 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
17200 goodfn = elem;
17201 ++good;
17205 if (good == 1)
17207 mark_used (goodfn);
17208 expr = goodfn;
17209 if (baselink)
17210 expr = build_baselink (BASELINK_BINFO (baselink),
17211 BASELINK_ACCESS_BINFO (baselink),
17212 expr, BASELINK_OPTYPE (baselink));
17213 if (offset)
17215 tree base
17216 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
17217 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
17219 if (addr)
17220 expr = cp_build_addr_expr (expr, tf_warning_or_error);
17221 return expr;
17223 else if (good == 0 && badargs)
17224 /* There were no good options and at least one bad one, so let the
17225 user know what the problem is. */
17226 instantiate_template (badfn, badargs, tf_warning_or_error);
17228 return orig_expr;
17231 /* Subroutine of resolve_overloaded_unification; does deduction for a single
17232 overload. Fills TARGS with any deduced arguments, or error_mark_node if
17233 different overloads deduce different arguments for a given parm.
17234 ADDR_P is true if the expression for which deduction is being
17235 performed was of the form "& fn" rather than simply "fn".
17237 Returns 1 on success. */
17239 static int
17240 try_one_overload (tree tparms,
17241 tree orig_targs,
17242 tree targs,
17243 tree parm,
17244 tree arg,
17245 unification_kind_t strict,
17246 int sub_strict,
17247 bool addr_p,
17248 bool explain_p)
17250 int nargs;
17251 tree tempargs;
17252 int i;
17254 if (arg == error_mark_node)
17255 return 0;
17257 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17258 to function or pointer to member function argument if the set of
17259 overloaded functions does not contain function templates and at most
17260 one of a set of overloaded functions provides a unique match.
17262 So if this is a template, just return success. */
17264 if (uses_template_parms (arg))
17265 return 1;
17267 if (TREE_CODE (arg) == METHOD_TYPE)
17268 arg = build_ptrmemfunc_type (build_pointer_type (arg));
17269 else if (addr_p)
17270 arg = build_pointer_type (arg);
17272 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
17274 /* We don't copy orig_targs for this because if we have already deduced
17275 some template args from previous args, unify would complain when we
17276 try to deduce a template parameter for the same argument, even though
17277 there isn't really a conflict. */
17278 nargs = TREE_VEC_LENGTH (targs);
17279 tempargs = make_tree_vec (nargs);
17281 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
17282 return 0;
17284 /* First make sure we didn't deduce anything that conflicts with
17285 explicitly specified args. */
17286 for (i = nargs; i--; )
17288 tree elt = TREE_VEC_ELT (tempargs, i);
17289 tree oldelt = TREE_VEC_ELT (orig_targs, i);
17291 if (!elt)
17292 /*NOP*/;
17293 else if (uses_template_parms (elt))
17294 /* Since we're unifying against ourselves, we will fill in
17295 template args used in the function parm list with our own
17296 template parms. Discard them. */
17297 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
17298 else if (oldelt && !template_args_equal (oldelt, elt))
17299 return 0;
17302 for (i = nargs; i--; )
17304 tree elt = TREE_VEC_ELT (tempargs, i);
17306 if (elt)
17307 TREE_VEC_ELT (targs, i) = elt;
17310 return 1;
17313 /* PARM is a template class (perhaps with unbound template
17314 parameters). ARG is a fully instantiated type. If ARG can be
17315 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
17316 TARGS are as for unify. */
17318 static tree
17319 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
17320 bool explain_p)
17322 tree copy_of_targs;
17324 if (!CLASSTYPE_TEMPLATE_INFO (arg)
17325 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
17326 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
17327 return NULL_TREE;
17329 /* We need to make a new template argument vector for the call to
17330 unify. If we used TARGS, we'd clutter it up with the result of
17331 the attempted unification, even if this class didn't work out.
17332 We also don't want to commit ourselves to all the unifications
17333 we've already done, since unification is supposed to be done on
17334 an argument-by-argument basis. In other words, consider the
17335 following pathological case:
17337 template <int I, int J, int K>
17338 struct S {};
17340 template <int I, int J>
17341 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
17343 template <int I, int J, int K>
17344 void f(S<I, J, K>, S<I, I, I>);
17346 void g() {
17347 S<0, 0, 0> s0;
17348 S<0, 1, 2> s2;
17350 f(s0, s2);
17353 Now, by the time we consider the unification involving `s2', we
17354 already know that we must have `f<0, 0, 0>'. But, even though
17355 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
17356 because there are two ways to unify base classes of S<0, 1, 2>
17357 with S<I, I, I>. If we kept the already deduced knowledge, we
17358 would reject the possibility I=1. */
17359 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
17361 /* If unification failed, we're done. */
17362 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
17363 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
17364 return NULL_TREE;
17366 return arg;
17369 /* Given a template type PARM and a class type ARG, find the unique
17370 base type in ARG that is an instance of PARM. We do not examine
17371 ARG itself; only its base-classes. If there is not exactly one
17372 appropriate base class, return NULL_TREE. PARM may be the type of
17373 a partial specialization, as well as a plain template type. Used
17374 by unify. */
17376 static enum template_base_result
17377 get_template_base (tree tparms, tree targs, tree parm, tree arg,
17378 bool explain_p, tree *result)
17380 tree rval = NULL_TREE;
17381 tree binfo;
17383 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
17385 binfo = TYPE_BINFO (complete_type (arg));
17386 if (!binfo)
17388 /* The type could not be completed. */
17389 *result = NULL_TREE;
17390 return tbr_incomplete_type;
17393 /* Walk in inheritance graph order. The search order is not
17394 important, and this avoids multiple walks of virtual bases. */
17395 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
17397 tree r = try_class_unification (tparms, targs, parm,
17398 BINFO_TYPE (binfo), explain_p);
17400 if (r)
17402 /* If there is more than one satisfactory baseclass, then:
17404 [temp.deduct.call]
17406 If they yield more than one possible deduced A, the type
17407 deduction fails.
17409 applies. */
17410 if (rval && !same_type_p (r, rval))
17412 *result = NULL_TREE;
17413 return tbr_ambiguous_baseclass;
17416 rval = r;
17420 *result = rval;
17421 return tbr_success;
17424 /* Returns the level of DECL, which declares a template parameter. */
17426 static int
17427 template_decl_level (tree decl)
17429 switch (TREE_CODE (decl))
17431 case TYPE_DECL:
17432 case TEMPLATE_DECL:
17433 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
17435 case PARM_DECL:
17436 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
17438 default:
17439 gcc_unreachable ();
17441 return 0;
17444 /* Decide whether ARG can be unified with PARM, considering only the
17445 cv-qualifiers of each type, given STRICT as documented for unify.
17446 Returns nonzero iff the unification is OK on that basis. */
17448 static int
17449 check_cv_quals_for_unify (int strict, tree arg, tree parm)
17451 int arg_quals = cp_type_quals (arg);
17452 int parm_quals = cp_type_quals (parm);
17454 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17455 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17457 /* Although a CVR qualifier is ignored when being applied to a
17458 substituted template parameter ([8.3.2]/1 for example), that
17459 does not allow us to unify "const T" with "int&" because both
17460 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
17461 It is ok when we're allowing additional CV qualifiers
17462 at the outer level [14.8.2.1]/3,1st bullet. */
17463 if ((TREE_CODE (arg) == REFERENCE_TYPE
17464 || TREE_CODE (arg) == FUNCTION_TYPE
17465 || TREE_CODE (arg) == METHOD_TYPE)
17466 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
17467 return 0;
17469 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
17470 && (parm_quals & TYPE_QUAL_RESTRICT))
17471 return 0;
17474 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17475 && (arg_quals & parm_quals) != parm_quals)
17476 return 0;
17478 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
17479 && (parm_quals & arg_quals) != arg_quals)
17480 return 0;
17482 return 1;
17485 /* Determines the LEVEL and INDEX for the template parameter PARM. */
17486 void
17487 template_parm_level_and_index (tree parm, int* level, int* index)
17489 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17490 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17491 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17493 *index = TEMPLATE_TYPE_IDX (parm);
17494 *level = TEMPLATE_TYPE_LEVEL (parm);
17496 else
17498 *index = TEMPLATE_PARM_IDX (parm);
17499 *level = TEMPLATE_PARM_LEVEL (parm);
17503 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
17504 do { \
17505 if (unify (TP, TA, P, A, S, EP)) \
17506 return 1; \
17507 } while (0);
17509 /* Unifies the remaining arguments in PACKED_ARGS with the pack
17510 expansion at the end of PACKED_PARMS. Returns 0 if the type
17511 deduction succeeds, 1 otherwise. STRICT is the same as in
17512 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
17513 call argument list. We'll need to adjust the arguments to make them
17514 types. SUBR tells us if this is from a recursive call to
17515 type_unification_real, or for comparing two template argument
17516 lists. */
17518 static int
17519 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
17520 tree packed_args, unification_kind_t strict,
17521 bool subr, bool explain_p)
17523 tree parm
17524 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
17525 tree pattern = PACK_EXPANSION_PATTERN (parm);
17526 tree pack, packs = NULL_TREE;
17527 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
17529 packed_args = expand_template_argument_pack (packed_args);
17531 int len = TREE_VEC_LENGTH (packed_args);
17533 /* Determine the parameter packs we will be deducing from the
17534 pattern, and record their current deductions. */
17535 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
17536 pack; pack = TREE_CHAIN (pack))
17538 tree parm_pack = TREE_VALUE (pack);
17539 int idx, level;
17541 /* Determine the index and level of this parameter pack. */
17542 template_parm_level_and_index (parm_pack, &level, &idx);
17544 /* Keep track of the parameter packs and their corresponding
17545 argument packs. */
17546 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
17547 TREE_TYPE (packs) = make_tree_vec (len - start);
17550 /* Loop through all of the arguments that have not yet been
17551 unified and unify each with the pattern. */
17552 for (i = start; i < len; i++)
17554 tree parm;
17555 bool any_explicit = false;
17556 tree arg = TREE_VEC_ELT (packed_args, i);
17558 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
17559 or the element of its argument pack at the current index if
17560 this argument was explicitly specified. */
17561 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17563 int idx, level;
17564 tree arg, pargs;
17565 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17567 arg = NULL_TREE;
17568 if (TREE_VALUE (pack)
17569 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
17570 && (i - start < TREE_VEC_LENGTH (pargs)))
17572 any_explicit = true;
17573 arg = TREE_VEC_ELT (pargs, i - start);
17575 TMPL_ARG (targs, level, idx) = arg;
17578 /* If we had explicit template arguments, substitute them into the
17579 pattern before deduction. */
17580 if (any_explicit)
17582 /* Some arguments might still be unspecified or dependent. */
17583 bool dependent;
17584 ++processing_template_decl;
17585 dependent = any_dependent_template_arguments_p (targs);
17586 if (!dependent)
17587 --processing_template_decl;
17588 parm = tsubst (pattern, targs,
17589 explain_p ? tf_warning_or_error : tf_none,
17590 NULL_TREE);
17591 if (dependent)
17592 --processing_template_decl;
17593 if (parm == error_mark_node)
17594 return 1;
17596 else
17597 parm = pattern;
17599 /* Unify the pattern with the current argument. */
17600 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17601 LOOKUP_IMPLICIT, explain_p))
17602 return 1;
17604 /* For each parameter pack, collect the deduced value. */
17605 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17607 int idx, level;
17608 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17610 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
17611 TMPL_ARG (targs, level, idx);
17615 /* Verify that the results of unification with the parameter packs
17616 produce results consistent with what we've seen before, and make
17617 the deduced argument packs available. */
17618 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17620 tree old_pack = TREE_VALUE (pack);
17621 tree new_args = TREE_TYPE (pack);
17622 int i, len = TREE_VEC_LENGTH (new_args);
17623 int idx, level;
17624 bool nondeduced_p = false;
17626 /* By default keep the original deduced argument pack.
17627 If necessary, more specific code is going to update the
17628 resulting deduced argument later down in this function. */
17629 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17630 TMPL_ARG (targs, level, idx) = old_pack;
17632 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
17633 actually deduce anything. */
17634 for (i = 0; i < len && !nondeduced_p; ++i)
17635 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
17636 nondeduced_p = true;
17637 if (nondeduced_p)
17638 continue;
17640 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
17642 /* If we had fewer function args than explicit template args,
17643 just use the explicits. */
17644 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17645 int explicit_len = TREE_VEC_LENGTH (explicit_args);
17646 if (len < explicit_len)
17647 new_args = explicit_args;
17650 if (!old_pack)
17652 tree result;
17653 /* Build the deduced *_ARGUMENT_PACK. */
17654 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
17656 result = make_node (NONTYPE_ARGUMENT_PACK);
17657 TREE_TYPE (result) =
17658 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
17659 TREE_CONSTANT (result) = 1;
17661 else
17662 result = cxx_make_type (TYPE_ARGUMENT_PACK);
17664 SET_ARGUMENT_PACK_ARGS (result, new_args);
17666 /* Note the deduced argument packs for this parameter
17667 pack. */
17668 TMPL_ARG (targs, level, idx) = result;
17670 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
17671 && (ARGUMENT_PACK_ARGS (old_pack)
17672 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
17674 /* We only had the explicitly-provided arguments before, but
17675 now we have a complete set of arguments. */
17676 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17678 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
17679 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
17680 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
17682 else
17684 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
17685 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
17687 if (!comp_template_args_with_info (old_args, new_args,
17688 &bad_old_arg, &bad_new_arg))
17689 /* Inconsistent unification of this parameter pack. */
17690 return unify_parameter_pack_inconsistent (explain_p,
17691 bad_old_arg,
17692 bad_new_arg);
17696 return unify_success (explain_p);
17699 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
17700 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
17701 parameters and return value are as for unify. */
17703 static int
17704 unify_array_domain (tree tparms, tree targs,
17705 tree parm_dom, tree arg_dom,
17706 bool explain_p)
17708 tree parm_max;
17709 tree arg_max;
17710 bool parm_cst;
17711 bool arg_cst;
17713 /* Our representation of array types uses "N - 1" as the
17714 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
17715 not an integer constant. We cannot unify arbitrarily
17716 complex expressions, so we eliminate the MINUS_EXPRs
17717 here. */
17718 parm_max = TYPE_MAX_VALUE (parm_dom);
17719 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
17720 if (!parm_cst)
17722 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
17723 parm_max = TREE_OPERAND (parm_max, 0);
17725 arg_max = TYPE_MAX_VALUE (arg_dom);
17726 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
17727 if (!arg_cst)
17729 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
17730 trying to unify the type of a variable with the type
17731 of a template parameter. For example:
17733 template <unsigned int N>
17734 void f (char (&) [N]);
17735 int g();
17736 void h(int i) {
17737 char a[g(i)];
17738 f(a);
17741 Here, the type of the ARG will be "int [g(i)]", and
17742 may be a SAVE_EXPR, etc. */
17743 if (TREE_CODE (arg_max) != MINUS_EXPR)
17744 return unify_vla_arg (explain_p, arg_dom);
17745 arg_max = TREE_OPERAND (arg_max, 0);
17748 /* If only one of the bounds used a MINUS_EXPR, compensate
17749 by adding one to the other bound. */
17750 if (parm_cst && !arg_cst)
17751 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
17752 integer_type_node,
17753 parm_max,
17754 integer_one_node);
17755 else if (arg_cst && !parm_cst)
17756 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
17757 integer_type_node,
17758 arg_max,
17759 integer_one_node);
17761 return unify (tparms, targs, parm_max, arg_max,
17762 UNIFY_ALLOW_INTEGER, explain_p);
17765 /* Deduce the value of template parameters. TPARMS is the (innermost)
17766 set of template parameters to a template. TARGS is the bindings
17767 for those template parameters, as determined thus far; TARGS may
17768 include template arguments for outer levels of template parameters
17769 as well. PARM is a parameter to a template function, or a
17770 subcomponent of that parameter; ARG is the corresponding argument.
17771 This function attempts to match PARM with ARG in a manner
17772 consistent with the existing assignments in TARGS. If more values
17773 are deduced, then TARGS is updated.
17775 Returns 0 if the type deduction succeeds, 1 otherwise. The
17776 parameter STRICT is a bitwise or of the following flags:
17778 UNIFY_ALLOW_NONE:
17779 Require an exact match between PARM and ARG.
17780 UNIFY_ALLOW_MORE_CV_QUAL:
17781 Allow the deduced ARG to be more cv-qualified (by qualification
17782 conversion) than ARG.
17783 UNIFY_ALLOW_LESS_CV_QUAL:
17784 Allow the deduced ARG to be less cv-qualified than ARG.
17785 UNIFY_ALLOW_DERIVED:
17786 Allow the deduced ARG to be a template base class of ARG,
17787 or a pointer to a template base class of the type pointed to by
17788 ARG.
17789 UNIFY_ALLOW_INTEGER:
17790 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
17791 case for more information.
17792 UNIFY_ALLOW_OUTER_LEVEL:
17793 This is the outermost level of a deduction. Used to determine validity
17794 of qualification conversions. A valid qualification conversion must
17795 have const qualified pointers leading up to the inner type which
17796 requires additional CV quals, except at the outer level, where const
17797 is not required [conv.qual]. It would be normal to set this flag in
17798 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
17799 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
17800 This is the outermost level of a deduction, and PARM can be more CV
17801 qualified at this point.
17802 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
17803 This is the outermost level of a deduction, and PARM can be less CV
17804 qualified at this point. */
17806 static int
17807 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
17808 bool explain_p)
17810 int idx;
17811 tree targ;
17812 tree tparm;
17813 int strict_in = strict;
17815 /* I don't think this will do the right thing with respect to types.
17816 But the only case I've seen it in so far has been array bounds, where
17817 signedness is the only information lost, and I think that will be
17818 okay. */
17819 while (TREE_CODE (parm) == NOP_EXPR)
17820 parm = TREE_OPERAND (parm, 0);
17822 if (arg == error_mark_node)
17823 return unify_invalid (explain_p);
17824 if (arg == unknown_type_node
17825 || arg == init_list_type_node)
17826 /* We can't deduce anything from this, but we might get all the
17827 template args from other function args. */
17828 return unify_success (explain_p);
17830 /* If PARM uses template parameters, then we can't bail out here,
17831 even if ARG == PARM, since we won't record unifications for the
17832 template parameters. We might need them if we're trying to
17833 figure out which of two things is more specialized. */
17834 if (arg == parm && !uses_template_parms (parm))
17835 return unify_success (explain_p);
17837 /* Handle init lists early, so the rest of the function can assume
17838 we're dealing with a type. */
17839 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
17841 tree elt, elttype;
17842 unsigned i;
17843 tree orig_parm = parm;
17845 /* Replace T with std::initializer_list<T> for deduction. */
17846 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17847 && flag_deduce_init_list)
17848 parm = listify (parm);
17850 if (!is_std_init_list (parm)
17851 && TREE_CODE (parm) != ARRAY_TYPE)
17852 /* We can only deduce from an initializer list argument if the
17853 parameter is std::initializer_list or an array; otherwise this
17854 is a non-deduced context. */
17855 return unify_success (explain_p);
17857 if (TREE_CODE (parm) == ARRAY_TYPE)
17858 elttype = TREE_TYPE (parm);
17859 else
17860 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
17862 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
17864 int elt_strict = strict;
17866 if (elt == error_mark_node)
17867 return unify_invalid (explain_p);
17869 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
17871 tree type = TREE_TYPE (elt);
17872 /* It should only be possible to get here for a call. */
17873 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
17874 elt_strict |= maybe_adjust_types_for_deduction
17875 (DEDUCE_CALL, &elttype, &type, elt);
17876 elt = type;
17879 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
17880 explain_p);
17883 if (TREE_CODE (parm) == ARRAY_TYPE
17884 && deducible_array_bound (TYPE_DOMAIN (parm)))
17886 /* Also deduce from the length of the initializer list. */
17887 tree max = size_int (CONSTRUCTOR_NELTS (arg));
17888 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
17889 if (idx == error_mark_node)
17890 return unify_invalid (explain_p);
17891 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
17892 idx, explain_p);
17895 /* If the std::initializer_list<T> deduction worked, replace the
17896 deduced A with std::initializer_list<A>. */
17897 if (orig_parm != parm)
17899 idx = TEMPLATE_TYPE_IDX (orig_parm);
17900 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17901 targ = listify (targ);
17902 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
17904 return unify_success (explain_p);
17907 /* Immediately reject some pairs that won't unify because of
17908 cv-qualification mismatches. */
17909 if (TREE_CODE (arg) == TREE_CODE (parm)
17910 && TYPE_P (arg)
17911 /* It is the elements of the array which hold the cv quals of an array
17912 type, and the elements might be template type parms. We'll check
17913 when we recurse. */
17914 && TREE_CODE (arg) != ARRAY_TYPE
17915 /* We check the cv-qualifiers when unifying with template type
17916 parameters below. We want to allow ARG `const T' to unify with
17917 PARM `T' for example, when computing which of two templates
17918 is more specialized, for example. */
17919 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
17920 && !check_cv_quals_for_unify (strict_in, arg, parm))
17921 return unify_cv_qual_mismatch (explain_p, parm, arg);
17923 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
17924 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
17925 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
17926 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
17927 strict &= ~UNIFY_ALLOW_DERIVED;
17928 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17929 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
17931 switch (TREE_CODE (parm))
17933 case TYPENAME_TYPE:
17934 case SCOPE_REF:
17935 case UNBOUND_CLASS_TEMPLATE:
17936 /* In a type which contains a nested-name-specifier, template
17937 argument values cannot be deduced for template parameters used
17938 within the nested-name-specifier. */
17939 return unify_success (explain_p);
17941 case TEMPLATE_TYPE_PARM:
17942 case TEMPLATE_TEMPLATE_PARM:
17943 case BOUND_TEMPLATE_TEMPLATE_PARM:
17944 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
17945 if (error_operand_p (tparm))
17946 return unify_invalid (explain_p);
17948 if (TEMPLATE_TYPE_LEVEL (parm)
17949 != template_decl_level (tparm))
17950 /* The PARM is not one we're trying to unify. Just check
17951 to see if it matches ARG. */
17953 if (TREE_CODE (arg) == TREE_CODE (parm)
17954 && (is_auto (parm) ? is_auto (arg)
17955 : same_type_p (parm, arg)))
17956 return unify_success (explain_p);
17957 else
17958 return unify_type_mismatch (explain_p, parm, arg);
17960 idx = TEMPLATE_TYPE_IDX (parm);
17961 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17962 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
17963 if (error_operand_p (tparm))
17964 return unify_invalid (explain_p);
17966 /* Check for mixed types and values. */
17967 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17968 && TREE_CODE (tparm) != TYPE_DECL)
17969 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17970 && TREE_CODE (tparm) != TEMPLATE_DECL))
17971 gcc_unreachable ();
17973 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17975 /* ARG must be constructed from a template class or a template
17976 template parameter. */
17977 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
17978 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
17979 return unify_template_deduction_failure (explain_p, parm, arg);
17981 tree parmvec = TYPE_TI_ARGS (parm);
17982 /* An alias template name is never deduced. */
17983 if (TYPE_ALIAS_P (arg))
17984 arg = strip_typedefs (arg);
17985 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
17986 tree full_argvec = add_to_template_args (targs, argvec);
17987 tree parm_parms
17988 = DECL_INNERMOST_TEMPLATE_PARMS
17989 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
17990 int i, len;
17991 int parm_variadic_p = 0;
17993 /* The resolution to DR150 makes clear that default
17994 arguments for an N-argument may not be used to bind T
17995 to a template template parameter with fewer than N
17996 parameters. It is not safe to permit the binding of
17997 default arguments as an extension, as that may change
17998 the meaning of a conforming program. Consider:
18000 struct Dense { static const unsigned int dim = 1; };
18002 template <template <typename> class View,
18003 typename Block>
18004 void operator+(float, View<Block> const&);
18006 template <typename Block,
18007 unsigned int Dim = Block::dim>
18008 struct Lvalue_proxy { operator float() const; };
18010 void
18011 test_1d (void) {
18012 Lvalue_proxy<Dense> p;
18013 float b;
18014 b + p;
18017 Here, if Lvalue_proxy is permitted to bind to View, then
18018 the global operator+ will be used; if they are not, the
18019 Lvalue_proxy will be converted to float. */
18020 if (coerce_template_parms (parm_parms,
18021 full_argvec,
18022 TYPE_TI_TEMPLATE (parm),
18023 (explain_p
18024 ? tf_warning_or_error
18025 : tf_none),
18026 /*require_all_args=*/true,
18027 /*use_default_args=*/false)
18028 == error_mark_node)
18029 return 1;
18031 /* Deduce arguments T, i from TT<T> or TT<i>.
18032 We check each element of PARMVEC and ARGVEC individually
18033 rather than the whole TREE_VEC since they can have
18034 different number of elements. */
18036 parmvec = expand_template_argument_pack (parmvec);
18037 argvec = expand_template_argument_pack (argvec);
18039 len = TREE_VEC_LENGTH (parmvec);
18041 /* Check if the parameters end in a pack, making them
18042 variadic. */
18043 if (len > 0
18044 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
18045 parm_variadic_p = 1;
18047 for (i = 0; i < len - parm_variadic_p; ++i)
18048 /* If the template argument list of P contains a pack
18049 expansion that is not the last template argument, the
18050 entire template argument list is a non-deduced
18051 context. */
18052 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
18053 return unify_success (explain_p);
18055 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
18056 return unify_too_few_arguments (explain_p,
18057 TREE_VEC_LENGTH (argvec), len);
18059 for (i = 0; i < len - parm_variadic_p; ++i)
18061 RECUR_AND_CHECK_FAILURE (tparms, targs,
18062 TREE_VEC_ELT (parmvec, i),
18063 TREE_VEC_ELT (argvec, i),
18064 UNIFY_ALLOW_NONE, explain_p);
18067 if (parm_variadic_p
18068 && unify_pack_expansion (tparms, targs,
18069 parmvec, argvec,
18070 DEDUCE_EXACT,
18071 /*subr=*/true, explain_p))
18072 return 1;
18074 arg = TYPE_TI_TEMPLATE (arg);
18076 /* Fall through to deduce template name. */
18079 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18080 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18082 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
18084 /* Simple cases: Value already set, does match or doesn't. */
18085 if (targ != NULL_TREE && template_args_equal (targ, arg))
18086 return unify_success (explain_p);
18087 else if (targ)
18088 return unify_inconsistency (explain_p, parm, targ, arg);
18090 else
18092 /* If PARM is `const T' and ARG is only `int', we don't have
18093 a match unless we are allowing additional qualification.
18094 If ARG is `const int' and PARM is just `T' that's OK;
18095 that binds `const int' to `T'. */
18096 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
18097 arg, parm))
18098 return unify_cv_qual_mismatch (explain_p, parm, arg);
18100 /* Consider the case where ARG is `const volatile int' and
18101 PARM is `const T'. Then, T should be `volatile int'. */
18102 arg = cp_build_qualified_type_real
18103 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
18104 if (arg == error_mark_node)
18105 return unify_invalid (explain_p);
18107 /* Simple cases: Value already set, does match or doesn't. */
18108 if (targ != NULL_TREE && same_type_p (targ, arg))
18109 return unify_success (explain_p);
18110 else if (targ)
18111 return unify_inconsistency (explain_p, parm, targ, arg);
18113 /* Make sure that ARG is not a variable-sized array. (Note
18114 that were talking about variable-sized arrays (like
18115 `int[n]'), rather than arrays of unknown size (like
18116 `int[]').) We'll get very confused by such a type since
18117 the bound of the array is not constant, and therefore
18118 not mangleable. Besides, such types are not allowed in
18119 ISO C++, so we can do as we please here. We do allow
18120 them for 'auto' deduction, since that isn't ABI-exposed. */
18121 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
18122 return unify_vla_arg (explain_p, arg);
18124 /* Strip typedefs as in convert_template_argument. */
18125 arg = canonicalize_type_argument (arg, tf_none);
18128 /* If ARG is a parameter pack or an expansion, we cannot unify
18129 against it unless PARM is also a parameter pack. */
18130 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18131 && !template_parameter_pack_p (parm))
18132 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18134 /* If the argument deduction results is a METHOD_TYPE,
18135 then there is a problem.
18136 METHOD_TYPE doesn't map to any real C++ type the result of
18137 the deduction can not be of that type. */
18138 if (TREE_CODE (arg) == METHOD_TYPE)
18139 return unify_method_type_error (explain_p, arg);
18141 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18142 return unify_success (explain_p);
18144 case TEMPLATE_PARM_INDEX:
18145 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18146 if (error_operand_p (tparm))
18147 return unify_invalid (explain_p);
18149 if (TEMPLATE_PARM_LEVEL (parm)
18150 != template_decl_level (tparm))
18152 /* The PARM is not one we're trying to unify. Just check
18153 to see if it matches ARG. */
18154 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
18155 && cp_tree_equal (parm, arg));
18156 if (result)
18157 unify_expression_unequal (explain_p, parm, arg);
18158 return result;
18161 idx = TEMPLATE_PARM_IDX (parm);
18162 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18164 if (targ)
18166 int x = !cp_tree_equal (targ, arg);
18167 if (x)
18168 unify_inconsistency (explain_p, parm, targ, arg);
18169 return x;
18172 /* [temp.deduct.type] If, in the declaration of a function template
18173 with a non-type template-parameter, the non-type
18174 template-parameter is used in an expression in the function
18175 parameter-list and, if the corresponding template-argument is
18176 deduced, the template-argument type shall match the type of the
18177 template-parameter exactly, except that a template-argument
18178 deduced from an array bound may be of any integral type.
18179 The non-type parameter might use already deduced type parameters. */
18180 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
18181 if (!TREE_TYPE (arg))
18182 /* Template-parameter dependent expression. Just accept it for now.
18183 It will later be processed in convert_template_argument. */
18185 else if (same_type_p (TREE_TYPE (arg), tparm))
18186 /* OK */;
18187 else if ((strict & UNIFY_ALLOW_INTEGER)
18188 && CP_INTEGRAL_TYPE_P (tparm))
18189 /* Convert the ARG to the type of PARM; the deduced non-type
18190 template argument must exactly match the types of the
18191 corresponding parameter. */
18192 arg = fold (build_nop (tparm, arg));
18193 else if (uses_template_parms (tparm))
18194 /* We haven't deduced the type of this parameter yet. Try again
18195 later. */
18196 return unify_success (explain_p);
18197 else
18198 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
18200 /* If ARG is a parameter pack or an expansion, we cannot unify
18201 against it unless PARM is also a parameter pack. */
18202 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18203 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
18204 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18206 arg = strip_typedefs_expr (arg);
18207 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18208 return unify_success (explain_p);
18210 case PTRMEM_CST:
18212 /* A pointer-to-member constant can be unified only with
18213 another constant. */
18214 if (TREE_CODE (arg) != PTRMEM_CST)
18215 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
18217 /* Just unify the class member. It would be useless (and possibly
18218 wrong, depending on the strict flags) to unify also
18219 PTRMEM_CST_CLASS, because we want to be sure that both parm and
18220 arg refer to the same variable, even if through different
18221 classes. For instance:
18223 struct A { int x; };
18224 struct B : A { };
18226 Unification of &A::x and &B::x must succeed. */
18227 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
18228 PTRMEM_CST_MEMBER (arg), strict, explain_p);
18231 case POINTER_TYPE:
18233 if (!TYPE_PTR_P (arg))
18234 return unify_type_mismatch (explain_p, parm, arg);
18236 /* [temp.deduct.call]
18238 A can be another pointer or pointer to member type that can
18239 be converted to the deduced A via a qualification
18240 conversion (_conv.qual_).
18242 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
18243 This will allow for additional cv-qualification of the
18244 pointed-to types if appropriate. */
18246 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
18247 /* The derived-to-base conversion only persists through one
18248 level of pointers. */
18249 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
18251 return unify (tparms, targs, TREE_TYPE (parm),
18252 TREE_TYPE (arg), strict, explain_p);
18255 case REFERENCE_TYPE:
18256 if (TREE_CODE (arg) != REFERENCE_TYPE)
18257 return unify_type_mismatch (explain_p, parm, arg);
18258 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18259 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18261 case ARRAY_TYPE:
18262 if (TREE_CODE (arg) != ARRAY_TYPE)
18263 return unify_type_mismatch (explain_p, parm, arg);
18264 if ((TYPE_DOMAIN (parm) == NULL_TREE)
18265 != (TYPE_DOMAIN (arg) == NULL_TREE))
18266 return unify_type_mismatch (explain_p, parm, arg);
18267 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18268 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18269 if (TYPE_DOMAIN (parm) != NULL_TREE)
18270 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
18271 TYPE_DOMAIN (arg), explain_p);
18272 return unify_success (explain_p);
18274 case REAL_TYPE:
18275 case COMPLEX_TYPE:
18276 case VECTOR_TYPE:
18277 case INTEGER_TYPE:
18278 case BOOLEAN_TYPE:
18279 case ENUMERAL_TYPE:
18280 case VOID_TYPE:
18281 case NULLPTR_TYPE:
18282 if (TREE_CODE (arg) != TREE_CODE (parm))
18283 return unify_type_mismatch (explain_p, parm, arg);
18285 /* We have already checked cv-qualification at the top of the
18286 function. */
18287 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
18288 return unify_type_mismatch (explain_p, parm, arg);
18290 /* As far as unification is concerned, this wins. Later checks
18291 will invalidate it if necessary. */
18292 return unify_success (explain_p);
18294 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
18295 /* Type INTEGER_CST can come from ordinary constant template args. */
18296 case INTEGER_CST:
18297 while (TREE_CODE (arg) == NOP_EXPR)
18298 arg = TREE_OPERAND (arg, 0);
18300 if (TREE_CODE (arg) != INTEGER_CST)
18301 return unify_template_argument_mismatch (explain_p, parm, arg);
18302 return (tree_int_cst_equal (parm, arg)
18303 ? unify_success (explain_p)
18304 : unify_template_argument_mismatch (explain_p, parm, arg));
18306 case TREE_VEC:
18308 int i, len, argslen;
18309 int parm_variadic_p = 0;
18311 if (TREE_CODE (arg) != TREE_VEC)
18312 return unify_template_argument_mismatch (explain_p, parm, arg);
18314 len = TREE_VEC_LENGTH (parm);
18315 argslen = TREE_VEC_LENGTH (arg);
18317 /* Check for pack expansions in the parameters. */
18318 for (i = 0; i < len; ++i)
18320 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
18322 if (i == len - 1)
18323 /* We can unify against something with a trailing
18324 parameter pack. */
18325 parm_variadic_p = 1;
18326 else
18327 /* [temp.deduct.type]/9: If the template argument list of
18328 P contains a pack expansion that is not the last
18329 template argument, the entire template argument list
18330 is a non-deduced context. */
18331 return unify_success (explain_p);
18335 /* If we don't have enough arguments to satisfy the parameters
18336 (not counting the pack expression at the end), or we have
18337 too many arguments for a parameter list that doesn't end in
18338 a pack expression, we can't unify. */
18339 if (parm_variadic_p
18340 ? argslen < len - parm_variadic_p
18341 : argslen != len)
18342 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
18344 /* Unify all of the parameters that precede the (optional)
18345 pack expression. */
18346 for (i = 0; i < len - parm_variadic_p; ++i)
18348 RECUR_AND_CHECK_FAILURE (tparms, targs,
18349 TREE_VEC_ELT (parm, i),
18350 TREE_VEC_ELT (arg, i),
18351 UNIFY_ALLOW_NONE, explain_p);
18353 if (parm_variadic_p)
18354 return unify_pack_expansion (tparms, targs, parm, arg,
18355 DEDUCE_EXACT,
18356 /*subr=*/true, explain_p);
18357 return unify_success (explain_p);
18360 case RECORD_TYPE:
18361 case UNION_TYPE:
18362 if (TREE_CODE (arg) != TREE_CODE (parm))
18363 return unify_type_mismatch (explain_p, parm, arg);
18365 if (TYPE_PTRMEMFUNC_P (parm))
18367 if (!TYPE_PTRMEMFUNC_P (arg))
18368 return unify_type_mismatch (explain_p, parm, arg);
18370 return unify (tparms, targs,
18371 TYPE_PTRMEMFUNC_FN_TYPE (parm),
18372 TYPE_PTRMEMFUNC_FN_TYPE (arg),
18373 strict, explain_p);
18375 else if (TYPE_PTRMEMFUNC_P (arg))
18376 return unify_type_mismatch (explain_p, parm, arg);
18378 if (CLASSTYPE_TEMPLATE_INFO (parm))
18380 tree t = NULL_TREE;
18382 if (strict_in & UNIFY_ALLOW_DERIVED)
18384 /* First, we try to unify the PARM and ARG directly. */
18385 t = try_class_unification (tparms, targs,
18386 parm, arg, explain_p);
18388 if (!t)
18390 /* Fallback to the special case allowed in
18391 [temp.deduct.call]:
18393 If P is a class, and P has the form
18394 template-id, then A can be a derived class of
18395 the deduced A. Likewise, if P is a pointer to
18396 a class of the form template-id, A can be a
18397 pointer to a derived class pointed to by the
18398 deduced A. */
18399 enum template_base_result r;
18400 r = get_template_base (tparms, targs, parm, arg,
18401 explain_p, &t);
18403 if (!t)
18404 return unify_no_common_base (explain_p, r, parm, arg);
18407 else if (CLASSTYPE_TEMPLATE_INFO (arg)
18408 && (CLASSTYPE_TI_TEMPLATE (parm)
18409 == CLASSTYPE_TI_TEMPLATE (arg)))
18410 /* Perhaps PARM is something like S<U> and ARG is S<int>.
18411 Then, we should unify `int' and `U'. */
18412 t = arg;
18413 else
18414 /* There's no chance of unification succeeding. */
18415 return unify_type_mismatch (explain_p, parm, arg);
18417 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
18418 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
18420 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
18421 return unify_type_mismatch (explain_p, parm, arg);
18422 return unify_success (explain_p);
18424 case METHOD_TYPE:
18425 case FUNCTION_TYPE:
18427 unsigned int nargs;
18428 tree *args;
18429 tree a;
18430 unsigned int i;
18432 if (TREE_CODE (arg) != TREE_CODE (parm))
18433 return unify_type_mismatch (explain_p, parm, arg);
18435 /* CV qualifications for methods can never be deduced, they must
18436 match exactly. We need to check them explicitly here,
18437 because type_unification_real treats them as any other
18438 cv-qualified parameter. */
18439 if (TREE_CODE (parm) == METHOD_TYPE
18440 && (!check_cv_quals_for_unify
18441 (UNIFY_ALLOW_NONE,
18442 class_of_this_parm (arg),
18443 class_of_this_parm (parm))))
18444 return unify_cv_qual_mismatch (explain_p, parm, arg);
18446 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
18447 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
18449 nargs = list_length (TYPE_ARG_TYPES (arg));
18450 args = XALLOCAVEC (tree, nargs);
18451 for (a = TYPE_ARG_TYPES (arg), i = 0;
18452 a != NULL_TREE && a != void_list_node;
18453 a = TREE_CHAIN (a), ++i)
18454 args[i] = TREE_VALUE (a);
18455 nargs = i;
18457 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
18458 args, nargs, 1, DEDUCE_EXACT,
18459 LOOKUP_NORMAL, NULL, explain_p);
18462 case OFFSET_TYPE:
18463 /* Unify a pointer to member with a pointer to member function, which
18464 deduces the type of the member as a function type. */
18465 if (TYPE_PTRMEMFUNC_P (arg))
18467 /* Check top-level cv qualifiers */
18468 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
18469 return unify_cv_qual_mismatch (explain_p, parm, arg);
18471 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18472 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
18473 UNIFY_ALLOW_NONE, explain_p);
18475 /* Determine the type of the function we are unifying against. */
18476 tree fntype = static_fn_type (arg);
18478 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
18481 if (TREE_CODE (arg) != OFFSET_TYPE)
18482 return unify_type_mismatch (explain_p, parm, arg);
18483 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18484 TYPE_OFFSET_BASETYPE (arg),
18485 UNIFY_ALLOW_NONE, explain_p);
18486 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18487 strict, explain_p);
18489 case CONST_DECL:
18490 if (DECL_TEMPLATE_PARM_P (parm))
18491 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
18492 if (arg != scalar_constant_value (parm))
18493 return unify_template_argument_mismatch (explain_p, parm, arg);
18494 return unify_success (explain_p);
18496 case FIELD_DECL:
18497 case TEMPLATE_DECL:
18498 /* Matched cases are handled by the ARG == PARM test above. */
18499 return unify_template_argument_mismatch (explain_p, parm, arg);
18501 case VAR_DECL:
18502 /* A non-type template parameter that is a variable should be a
18503 an integral constant, in which case, it whould have been
18504 folded into its (constant) value. So we should not be getting
18505 a variable here. */
18506 gcc_unreachable ();
18508 case TYPE_ARGUMENT_PACK:
18509 case NONTYPE_ARGUMENT_PACK:
18510 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
18511 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
18513 case TYPEOF_TYPE:
18514 case DECLTYPE_TYPE:
18515 case UNDERLYING_TYPE:
18516 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
18517 or UNDERLYING_TYPE nodes. */
18518 return unify_success (explain_p);
18520 case ERROR_MARK:
18521 /* Unification fails if we hit an error node. */
18522 return unify_invalid (explain_p);
18524 case INDIRECT_REF:
18525 if (REFERENCE_REF_P (parm))
18527 if (REFERENCE_REF_P (arg))
18528 arg = TREE_OPERAND (arg, 0);
18529 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
18530 strict, explain_p);
18532 /* FALLTHRU */
18534 default:
18535 /* An unresolved overload is a nondeduced context. */
18536 if (is_overloaded_fn (parm) || type_unknown_p (parm))
18537 return unify_success (explain_p);
18538 gcc_assert (EXPR_P (parm));
18540 /* We must be looking at an expression. This can happen with
18541 something like:
18543 template <int I>
18544 void foo(S<I>, S<I + 2>);
18546 This is a "nondeduced context":
18548 [deduct.type]
18550 The nondeduced contexts are:
18552 --A type that is a template-id in which one or more of
18553 the template-arguments is an expression that references
18554 a template-parameter.
18556 In these cases, we assume deduction succeeded, but don't
18557 actually infer any unifications. */
18559 if (!uses_template_parms (parm)
18560 && !template_args_equal (parm, arg))
18561 return unify_expression_unequal (explain_p, parm, arg);
18562 else
18563 return unify_success (explain_p);
18566 #undef RECUR_AND_CHECK_FAILURE
18568 /* Note that DECL can be defined in this translation unit, if
18569 required. */
18571 static void
18572 mark_definable (tree decl)
18574 tree clone;
18575 DECL_NOT_REALLY_EXTERN (decl) = 1;
18576 FOR_EACH_CLONE (clone, decl)
18577 DECL_NOT_REALLY_EXTERN (clone) = 1;
18580 /* Called if RESULT is explicitly instantiated, or is a member of an
18581 explicitly instantiated class. */
18583 void
18584 mark_decl_instantiated (tree result, int extern_p)
18586 SET_DECL_EXPLICIT_INSTANTIATION (result);
18588 /* If this entity has already been written out, it's too late to
18589 make any modifications. */
18590 if (TREE_ASM_WRITTEN (result))
18591 return;
18593 /* For anonymous namespace we don't need to do anything. */
18594 if (decl_anon_ns_mem_p (result))
18596 gcc_assert (!TREE_PUBLIC (result));
18597 return;
18600 if (TREE_CODE (result) != FUNCTION_DECL)
18601 /* The TREE_PUBLIC flag for function declarations will have been
18602 set correctly by tsubst. */
18603 TREE_PUBLIC (result) = 1;
18605 /* This might have been set by an earlier implicit instantiation. */
18606 DECL_COMDAT (result) = 0;
18608 if (extern_p)
18609 DECL_NOT_REALLY_EXTERN (result) = 0;
18610 else
18612 mark_definable (result);
18613 mark_needed (result);
18614 /* Always make artificials weak. */
18615 if (DECL_ARTIFICIAL (result) && flag_weak)
18616 comdat_linkage (result);
18617 /* For WIN32 we also want to put explicit instantiations in
18618 linkonce sections. */
18619 else if (TREE_PUBLIC (result))
18620 maybe_make_one_only (result);
18623 /* If EXTERN_P, then this function will not be emitted -- unless
18624 followed by an explicit instantiation, at which point its linkage
18625 will be adjusted. If !EXTERN_P, then this function will be
18626 emitted here. In neither circumstance do we want
18627 import_export_decl to adjust the linkage. */
18628 DECL_INTERFACE_KNOWN (result) = 1;
18631 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
18632 important template arguments. If any are missing, we check whether
18633 they're important by using error_mark_node for substituting into any
18634 args that were used for partial ordering (the ones between ARGS and END)
18635 and seeing if it bubbles up. */
18637 static bool
18638 check_undeduced_parms (tree targs, tree args, tree end)
18640 bool found = false;
18641 int i;
18642 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
18643 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
18645 found = true;
18646 TREE_VEC_ELT (targs, i) = error_mark_node;
18648 if (found)
18650 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
18651 if (substed == error_mark_node)
18652 return true;
18654 return false;
18657 /* Given two function templates PAT1 and PAT2, return:
18659 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
18660 -1 if PAT2 is more specialized than PAT1.
18661 0 if neither is more specialized.
18663 LEN indicates the number of parameters we should consider
18664 (defaulted parameters should not be considered).
18666 The 1998 std underspecified function template partial ordering, and
18667 DR214 addresses the issue. We take pairs of arguments, one from
18668 each of the templates, and deduce them against each other. One of
18669 the templates will be more specialized if all the *other*
18670 template's arguments deduce against its arguments and at least one
18671 of its arguments *does* *not* deduce against the other template's
18672 corresponding argument. Deduction is done as for class templates.
18673 The arguments used in deduction have reference and top level cv
18674 qualifiers removed. Iff both arguments were originally reference
18675 types *and* deduction succeeds in both directions, an lvalue reference
18676 wins against an rvalue reference and otherwise the template
18677 with the more cv-qualified argument wins for that pairing (if
18678 neither is more cv-qualified, they both are equal). Unlike regular
18679 deduction, after all the arguments have been deduced in this way,
18680 we do *not* verify the deduced template argument values can be
18681 substituted into non-deduced contexts.
18683 The logic can be a bit confusing here, because we look at deduce1 and
18684 targs1 to see if pat2 is at least as specialized, and vice versa; if we
18685 can find template arguments for pat1 to make arg1 look like arg2, that
18686 means that arg2 is at least as specialized as arg1. */
18689 more_specialized_fn (tree pat1, tree pat2, int len)
18691 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
18692 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
18693 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
18694 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
18695 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
18696 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
18697 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
18698 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
18699 tree origs1, origs2;
18700 bool lose1 = false;
18701 bool lose2 = false;
18703 /* Remove the this parameter from non-static member functions. If
18704 one is a non-static member function and the other is not a static
18705 member function, remove the first parameter from that function
18706 also. This situation occurs for operator functions where we
18707 locate both a member function (with this pointer) and non-member
18708 operator (with explicit first operand). */
18709 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
18711 len--; /* LEN is the number of significant arguments for DECL1 */
18712 args1 = TREE_CHAIN (args1);
18713 if (!DECL_STATIC_FUNCTION_P (decl2))
18714 args2 = TREE_CHAIN (args2);
18716 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
18718 args2 = TREE_CHAIN (args2);
18719 if (!DECL_STATIC_FUNCTION_P (decl1))
18721 len--;
18722 args1 = TREE_CHAIN (args1);
18726 /* If only one is a conversion operator, they are unordered. */
18727 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
18728 return 0;
18730 /* Consider the return type for a conversion function */
18731 if (DECL_CONV_FN_P (decl1))
18733 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
18734 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
18735 len++;
18738 processing_template_decl++;
18740 origs1 = args1;
18741 origs2 = args2;
18743 while (len--
18744 /* Stop when an ellipsis is seen. */
18745 && args1 != NULL_TREE && args2 != NULL_TREE)
18747 tree arg1 = TREE_VALUE (args1);
18748 tree arg2 = TREE_VALUE (args2);
18749 int deduce1, deduce2;
18750 int quals1 = -1;
18751 int quals2 = -1;
18752 int ref1 = 0;
18753 int ref2 = 0;
18755 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18756 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18758 /* When both arguments are pack expansions, we need only
18759 unify the patterns themselves. */
18760 arg1 = PACK_EXPANSION_PATTERN (arg1);
18761 arg2 = PACK_EXPANSION_PATTERN (arg2);
18763 /* This is the last comparison we need to do. */
18764 len = 0;
18767 if (TREE_CODE (arg1) == REFERENCE_TYPE)
18769 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
18770 arg1 = TREE_TYPE (arg1);
18771 quals1 = cp_type_quals (arg1);
18774 if (TREE_CODE (arg2) == REFERENCE_TYPE)
18776 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
18777 arg2 = TREE_TYPE (arg2);
18778 quals2 = cp_type_quals (arg2);
18781 arg1 = TYPE_MAIN_VARIANT (arg1);
18782 arg2 = TYPE_MAIN_VARIANT (arg2);
18784 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
18786 int i, len2 = list_length (args2);
18787 tree parmvec = make_tree_vec (1);
18788 tree argvec = make_tree_vec (len2);
18789 tree ta = args2;
18791 /* Setup the parameter vector, which contains only ARG1. */
18792 TREE_VEC_ELT (parmvec, 0) = arg1;
18794 /* Setup the argument vector, which contains the remaining
18795 arguments. */
18796 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
18797 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18799 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
18800 argvec, DEDUCE_EXACT,
18801 /*subr=*/true, /*explain_p=*/false)
18802 == 0);
18804 /* We cannot deduce in the other direction, because ARG1 is
18805 a pack expansion but ARG2 is not. */
18806 deduce2 = 0;
18808 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18810 int i, len1 = list_length (args1);
18811 tree parmvec = make_tree_vec (1);
18812 tree argvec = make_tree_vec (len1);
18813 tree ta = args1;
18815 /* Setup the parameter vector, which contains only ARG1. */
18816 TREE_VEC_ELT (parmvec, 0) = arg2;
18818 /* Setup the argument vector, which contains the remaining
18819 arguments. */
18820 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
18821 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18823 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
18824 argvec, DEDUCE_EXACT,
18825 /*subr=*/true, /*explain_p=*/false)
18826 == 0);
18828 /* We cannot deduce in the other direction, because ARG2 is
18829 a pack expansion but ARG1 is not.*/
18830 deduce1 = 0;
18833 else
18835 /* The normal case, where neither argument is a pack
18836 expansion. */
18837 deduce1 = (unify (tparms1, targs1, arg1, arg2,
18838 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18839 == 0);
18840 deduce2 = (unify (tparms2, targs2, arg2, arg1,
18841 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18842 == 0);
18845 /* If we couldn't deduce arguments for tparms1 to make arg1 match
18846 arg2, then arg2 is not as specialized as arg1. */
18847 if (!deduce1)
18848 lose2 = true;
18849 if (!deduce2)
18850 lose1 = true;
18852 /* "If, for a given type, deduction succeeds in both directions
18853 (i.e., the types are identical after the transformations above)
18854 and both P and A were reference types (before being replaced with
18855 the type referred to above):
18856 - if the type from the argument template was an lvalue reference and
18857 the type from the parameter template was not, the argument type is
18858 considered to be more specialized than the other; otherwise,
18859 - if the type from the argument template is more cv-qualified
18860 than the type from the parameter template (as described above),
18861 the argument type is considered to be more specialized than the other;
18862 otherwise,
18863 - neither type is more specialized than the other." */
18865 if (deduce1 && deduce2)
18867 if (ref1 && ref2 && ref1 != ref2)
18869 if (ref1 > ref2)
18870 lose1 = true;
18871 else
18872 lose2 = true;
18874 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
18876 if ((quals1 & quals2) == quals2)
18877 lose2 = true;
18878 if ((quals1 & quals2) == quals1)
18879 lose1 = true;
18883 if (lose1 && lose2)
18884 /* We've failed to deduce something in either direction.
18885 These must be unordered. */
18886 break;
18888 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18889 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18890 /* We have already processed all of the arguments in our
18891 handing of the pack expansion type. */
18892 len = 0;
18894 args1 = TREE_CHAIN (args1);
18895 args2 = TREE_CHAIN (args2);
18898 /* "In most cases, all template parameters must have values in order for
18899 deduction to succeed, but for partial ordering purposes a template
18900 parameter may remain without a value provided it is not used in the
18901 types being used for partial ordering."
18903 Thus, if we are missing any of the targs1 we need to substitute into
18904 origs1, then pat2 is not as specialized as pat1. This can happen when
18905 there is a nondeduced context. */
18906 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
18907 lose2 = true;
18908 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
18909 lose1 = true;
18911 processing_template_decl--;
18913 /* All things being equal, if the next argument is a pack expansion
18914 for one function but not for the other, prefer the
18915 non-variadic function. FIXME this is bogus; see c++/41958. */
18916 if (lose1 == lose2
18917 && args1 && TREE_VALUE (args1)
18918 && args2 && TREE_VALUE (args2))
18920 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
18921 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
18924 if (lose1 == lose2)
18925 return 0;
18926 else if (!lose1)
18927 return 1;
18928 else
18929 return -1;
18932 /* Determine which of two partial specializations of TMPL is more
18933 specialized.
18935 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
18936 to the first partial specialization. The TREE_PURPOSE is the
18937 innermost set of template parameters for the partial
18938 specialization. PAT2 is similar, but for the second template.
18940 Return 1 if the first partial specialization is more specialized;
18941 -1 if the second is more specialized; 0 if neither is more
18942 specialized.
18944 See [temp.class.order] for information about determining which of
18945 two templates is more specialized. */
18947 static int
18948 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
18950 tree targs;
18951 int winner = 0;
18952 bool any_deductions = false;
18954 tree tmpl1 = TREE_VALUE (pat1);
18955 tree tmpl2 = TREE_VALUE (pat2);
18956 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
18957 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
18958 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
18959 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
18961 /* Just like what happens for functions, if we are ordering between
18962 different template specializations, we may encounter dependent
18963 types in the arguments, and we need our dependency check functions
18964 to behave correctly. */
18965 ++processing_template_decl;
18966 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
18967 if (targs)
18969 --winner;
18970 any_deductions = true;
18973 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
18974 if (targs)
18976 ++winner;
18977 any_deductions = true;
18979 --processing_template_decl;
18981 /* In the case of a tie where at least one of the templates
18982 has a parameter pack at the end, the template with the most
18983 non-packed parameters wins. */
18984 if (winner == 0
18985 && any_deductions
18986 && (template_args_variadic_p (TREE_PURPOSE (pat1))
18987 || template_args_variadic_p (TREE_PURPOSE (pat2))))
18989 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
18990 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
18991 int len1 = TREE_VEC_LENGTH (args1);
18992 int len2 = TREE_VEC_LENGTH (args2);
18994 /* We don't count the pack expansion at the end. */
18995 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
18996 --len1;
18997 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
18998 --len2;
19000 if (len1 > len2)
19001 return 1;
19002 else if (len1 < len2)
19003 return -1;
19006 return winner;
19009 /* Return the template arguments that will produce the function signature
19010 DECL from the function template FN, with the explicit template
19011 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
19012 also match. Return NULL_TREE if no satisfactory arguments could be
19013 found. */
19015 static tree
19016 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
19018 int ntparms = DECL_NTPARMS (fn);
19019 tree targs = make_tree_vec (ntparms);
19020 tree decl_type = TREE_TYPE (decl);
19021 tree decl_arg_types;
19022 tree *args;
19023 unsigned int nargs, ix;
19024 tree arg;
19026 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
19028 /* Never do unification on the 'this' parameter. */
19029 decl_arg_types = skip_artificial_parms_for (decl,
19030 TYPE_ARG_TYPES (decl_type));
19032 nargs = list_length (decl_arg_types);
19033 args = XALLOCAVEC (tree, nargs);
19034 for (arg = decl_arg_types, ix = 0;
19035 arg != NULL_TREE && arg != void_list_node;
19036 arg = TREE_CHAIN (arg), ++ix)
19037 args[ix] = TREE_VALUE (arg);
19039 if (fn_type_unification (fn, explicit_args, targs,
19040 args, ix,
19041 (check_rettype || DECL_CONV_FN_P (fn)
19042 ? TREE_TYPE (decl_type) : NULL_TREE),
19043 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
19044 /*decltype*/false)
19045 == error_mark_node)
19046 return NULL_TREE;
19048 return targs;
19051 /* Return the innermost template arguments that, when applied to a partial
19052 specialization of TMPL whose innermost template parameters are
19053 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
19054 ARGS.
19056 For example, suppose we have:
19058 template <class T, class U> struct S {};
19059 template <class T> struct S<T*, int> {};
19061 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
19062 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
19063 int}. The resulting vector will be {double}, indicating that `T'
19064 is bound to `double'. */
19066 static tree
19067 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
19069 int i, ntparms = TREE_VEC_LENGTH (tparms);
19070 tree deduced_args;
19071 tree innermost_deduced_args;
19073 innermost_deduced_args = make_tree_vec (ntparms);
19074 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19076 deduced_args = copy_node (args);
19077 SET_TMPL_ARGS_LEVEL (deduced_args,
19078 TMPL_ARGS_DEPTH (deduced_args),
19079 innermost_deduced_args);
19081 else
19082 deduced_args = innermost_deduced_args;
19084 if (unify (tparms, deduced_args,
19085 INNERMOST_TEMPLATE_ARGS (spec_args),
19086 INNERMOST_TEMPLATE_ARGS (args),
19087 UNIFY_ALLOW_NONE, /*explain_p=*/false))
19088 return NULL_TREE;
19090 for (i = 0; i < ntparms; ++i)
19091 if (! TREE_VEC_ELT (innermost_deduced_args, i))
19092 return NULL_TREE;
19094 /* Verify that nondeduced template arguments agree with the type
19095 obtained from argument deduction.
19097 For example:
19099 struct A { typedef int X; };
19100 template <class T, class U> struct C {};
19101 template <class T> struct C<T, typename T::X> {};
19103 Then with the instantiation `C<A, int>', we can deduce that
19104 `T' is `A' but unify () does not check whether `typename T::X'
19105 is `int'. */
19106 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
19107 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19108 spec_args, tmpl,
19109 tf_none, false, false);
19110 if (spec_args == error_mark_node
19111 /* We only need to check the innermost arguments; the other
19112 arguments will always agree. */
19113 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
19114 INNERMOST_TEMPLATE_ARGS (args)))
19115 return NULL_TREE;
19117 /* Now that we have bindings for all of the template arguments,
19118 ensure that the arguments deduced for the template template
19119 parameters have compatible template parameter lists. See the use
19120 of template_template_parm_bindings_ok_p in fn_type_unification
19121 for more information. */
19122 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
19123 return NULL_TREE;
19125 return deduced_args;
19128 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
19129 Return the TREE_LIST node with the most specialized template, if
19130 any. If there is no most specialized template, the error_mark_node
19131 is returned.
19133 Note that this function does not look at, or modify, the
19134 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
19135 returned is one of the elements of INSTANTIATIONS, callers may
19136 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
19137 and retrieve it from the value returned. */
19139 tree
19140 most_specialized_instantiation (tree templates)
19142 tree fn, champ;
19144 ++processing_template_decl;
19146 champ = templates;
19147 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
19149 int fate = 0;
19151 if (get_bindings (TREE_VALUE (champ),
19152 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19153 NULL_TREE, /*check_ret=*/true))
19154 fate--;
19156 if (get_bindings (TREE_VALUE (fn),
19157 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19158 NULL_TREE, /*check_ret=*/true))
19159 fate++;
19161 if (fate == -1)
19162 champ = fn;
19163 else if (!fate)
19165 /* Equally specialized, move to next function. If there
19166 is no next function, nothing's most specialized. */
19167 fn = TREE_CHAIN (fn);
19168 champ = fn;
19169 if (!fn)
19170 break;
19174 if (champ)
19175 /* Now verify that champ is better than everything earlier in the
19176 instantiation list. */
19177 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
19178 if (get_bindings (TREE_VALUE (champ),
19179 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19180 NULL_TREE, /*check_ret=*/true)
19181 || !get_bindings (TREE_VALUE (fn),
19182 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19183 NULL_TREE, /*check_ret=*/true))
19185 champ = NULL_TREE;
19186 break;
19189 processing_template_decl--;
19191 if (!champ)
19192 return error_mark_node;
19194 return champ;
19197 /* If DECL is a specialization of some template, return the most
19198 general such template. Otherwise, returns NULL_TREE.
19200 For example, given:
19202 template <class T> struct S { template <class U> void f(U); };
19204 if TMPL is `template <class U> void S<int>::f(U)' this will return
19205 the full template. This function will not trace past partial
19206 specializations, however. For example, given in addition:
19208 template <class T> struct S<T*> { template <class U> void f(U); };
19210 if TMPL is `template <class U> void S<int*>::f(U)' this will return
19211 `template <class T> template <class U> S<T*>::f(U)'. */
19213 tree
19214 most_general_template (tree decl)
19216 if (TREE_CODE (decl) != TEMPLATE_DECL)
19218 if (tree tinfo = get_template_info (decl))
19219 decl = TI_TEMPLATE (tinfo);
19220 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
19221 template friend, or a FIELD_DECL for a capture pack. */
19222 if (TREE_CODE (decl) != TEMPLATE_DECL)
19223 return NULL_TREE;
19226 /* Look for more and more general templates. */
19227 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
19229 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
19230 (See cp-tree.h for details.) */
19231 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
19232 break;
19234 if (CLASS_TYPE_P (TREE_TYPE (decl))
19235 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
19236 break;
19238 /* Stop if we run into an explicitly specialized class template. */
19239 if (!DECL_NAMESPACE_SCOPE_P (decl)
19240 && DECL_CONTEXT (decl)
19241 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
19242 break;
19244 decl = DECL_TI_TEMPLATE (decl);
19247 return decl;
19250 /* Return the most specialized of the template partial specializations
19251 which can produce TARGET, a specialization of some class or variable
19252 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
19253 a TEMPLATE_DECL node corresponding to the partial specialization, while
19254 the TREE_PURPOSE is the set of template arguments that must be
19255 substituted into the template pattern in order to generate TARGET.
19257 If the choice of partial specialization is ambiguous, a diagnostic
19258 is issued, and the error_mark_node is returned. If there are no
19259 partial specializations matching TARGET, then NULL_TREE is
19260 returned, indicating that the primary template should be used. */
19262 static tree
19263 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
19265 tree list = NULL_TREE;
19266 tree t;
19267 tree champ;
19268 int fate;
19269 bool ambiguous_p;
19270 tree outer_args = NULL_TREE;
19271 tree tmpl, args;
19273 if (TYPE_P (target))
19275 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
19276 tmpl = TI_TEMPLATE (tinfo);
19277 args = TI_ARGS (tinfo);
19279 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
19281 tmpl = TREE_OPERAND (target, 0);
19282 args = TREE_OPERAND (target, 1);
19284 else if (VAR_P (target))
19286 tree tinfo = DECL_TEMPLATE_INFO (target);
19287 tmpl = TI_TEMPLATE (tinfo);
19288 args = TI_ARGS (tinfo);
19290 else
19291 gcc_unreachable ();
19293 tree main_tmpl = most_general_template (tmpl);
19295 /* For determining which partial specialization to use, only the
19296 innermost args are interesting. */
19297 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19299 outer_args = strip_innermost_template_args (args, 1);
19300 args = INNERMOST_TEMPLATE_ARGS (args);
19303 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
19305 tree partial_spec_args;
19306 tree spec_args;
19307 tree spec_tmpl = TREE_VALUE (t);
19309 partial_spec_args = TREE_PURPOSE (t);
19311 ++processing_template_decl;
19313 if (outer_args)
19315 /* Discard the outer levels of args, and then substitute in the
19316 template args from the enclosing class. */
19317 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
19318 partial_spec_args = tsubst_template_args
19319 (partial_spec_args, outer_args, tf_none, NULL_TREE);
19321 /* And the same for the partial specialization TEMPLATE_DECL. */
19322 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
19325 partial_spec_args =
19326 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19327 partial_spec_args,
19328 tmpl, tf_none,
19329 /*require_all_args=*/true,
19330 /*use_default_args=*/true);
19332 --processing_template_decl;
19334 if (partial_spec_args == error_mark_node)
19335 return error_mark_node;
19336 if (spec_tmpl == error_mark_node)
19337 return error_mark_node;
19339 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
19340 spec_args = get_partial_spec_bindings (tmpl, parms,
19341 partial_spec_args,
19342 args);
19343 if (spec_args)
19345 if (outer_args)
19346 spec_args = add_to_template_args (outer_args, spec_args);
19347 list = tree_cons (spec_args, TREE_VALUE (t), list);
19348 TREE_TYPE (list) = TREE_TYPE (t);
19352 if (! list)
19353 return NULL_TREE;
19355 ambiguous_p = false;
19356 t = list;
19357 champ = t;
19358 t = TREE_CHAIN (t);
19359 for (; t; t = TREE_CHAIN (t))
19361 fate = more_specialized_partial_spec (tmpl, champ, t);
19362 if (fate == 1)
19364 else
19366 if (fate == 0)
19368 t = TREE_CHAIN (t);
19369 if (! t)
19371 ambiguous_p = true;
19372 break;
19375 champ = t;
19379 if (!ambiguous_p)
19380 for (t = list; t && t != champ; t = TREE_CHAIN (t))
19382 fate = more_specialized_partial_spec (tmpl, champ, t);
19383 if (fate != 1)
19385 ambiguous_p = true;
19386 break;
19390 if (ambiguous_p)
19392 const char *str;
19393 char *spaces = NULL;
19394 if (!(complain & tf_error))
19395 return error_mark_node;
19396 if (TYPE_P (target))
19397 error ("ambiguous template instantiation for %q#T", target);
19398 else
19399 error ("ambiguous template instantiation for %q#D", target);
19400 str = ngettext ("candidate is:", "candidates are:", list_length (list));
19401 for (t = list; t; t = TREE_CHAIN (t))
19403 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
19404 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
19405 "%s %#S", spaces ? spaces : str, subst);
19406 spaces = spaces ? spaces : get_spaces (str);
19408 free (spaces);
19409 return error_mark_node;
19412 return champ;
19415 /* Explicitly instantiate DECL. */
19417 void
19418 do_decl_instantiation (tree decl, tree storage)
19420 tree result = NULL_TREE;
19421 int extern_p = 0;
19423 if (!decl || decl == error_mark_node)
19424 /* An error occurred, for which grokdeclarator has already issued
19425 an appropriate message. */
19426 return;
19427 else if (! DECL_LANG_SPECIFIC (decl))
19429 error ("explicit instantiation of non-template %q#D", decl);
19430 return;
19433 bool var_templ = (DECL_TEMPLATE_INFO (decl)
19434 && variable_template_p (DECL_TI_TEMPLATE (decl)));
19436 if (VAR_P (decl) && !var_templ)
19438 /* There is an asymmetry here in the way VAR_DECLs and
19439 FUNCTION_DECLs are handled by grokdeclarator. In the case of
19440 the latter, the DECL we get back will be marked as a
19441 template instantiation, and the appropriate
19442 DECL_TEMPLATE_INFO will be set up. This does not happen for
19443 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
19444 should handle VAR_DECLs as it currently handles
19445 FUNCTION_DECLs. */
19446 if (!DECL_CLASS_SCOPE_P (decl))
19448 error ("%qD is not a static data member of a class template", decl);
19449 return;
19451 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
19452 if (!result || !VAR_P (result))
19454 error ("no matching template for %qD found", decl);
19455 return;
19457 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
19459 error ("type %qT for explicit instantiation %qD does not match "
19460 "declared type %qT", TREE_TYPE (result), decl,
19461 TREE_TYPE (decl));
19462 return;
19465 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
19467 error ("explicit instantiation of %q#D", decl);
19468 return;
19470 else
19471 result = decl;
19473 /* Check for various error cases. Note that if the explicit
19474 instantiation is valid the RESULT will currently be marked as an
19475 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
19476 until we get here. */
19478 if (DECL_TEMPLATE_SPECIALIZATION (result))
19480 /* DR 259 [temp.spec].
19482 Both an explicit instantiation and a declaration of an explicit
19483 specialization shall not appear in a program unless the explicit
19484 instantiation follows a declaration of the explicit specialization.
19486 For a given set of template parameters, if an explicit
19487 instantiation of a template appears after a declaration of an
19488 explicit specialization for that template, the explicit
19489 instantiation has no effect. */
19490 return;
19492 else if (DECL_EXPLICIT_INSTANTIATION (result))
19494 /* [temp.spec]
19496 No program shall explicitly instantiate any template more
19497 than once.
19499 We check DECL_NOT_REALLY_EXTERN so as not to complain when
19500 the first instantiation was `extern' and the second is not,
19501 and EXTERN_P for the opposite case. */
19502 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
19503 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
19504 /* If an "extern" explicit instantiation follows an ordinary
19505 explicit instantiation, the template is instantiated. */
19506 if (extern_p)
19507 return;
19509 else if (!DECL_IMPLICIT_INSTANTIATION (result))
19511 error ("no matching template for %qD found", result);
19512 return;
19514 else if (!DECL_TEMPLATE_INFO (result))
19516 permerror (input_location, "explicit instantiation of non-template %q#D", result);
19517 return;
19520 if (storage == NULL_TREE)
19522 else if (storage == ridpointers[(int) RID_EXTERN])
19524 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
19525 pedwarn (input_location, OPT_Wpedantic,
19526 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
19527 "instantiations");
19528 extern_p = 1;
19530 else
19531 error ("storage class %qD applied to template instantiation", storage);
19533 check_explicit_instantiation_namespace (result);
19534 mark_decl_instantiated (result, extern_p);
19535 if (! extern_p)
19536 instantiate_decl (result, /*defer_ok=*/1,
19537 /*expl_inst_class_mem_p=*/false);
19540 static void
19541 mark_class_instantiated (tree t, int extern_p)
19543 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
19544 SET_CLASSTYPE_INTERFACE_KNOWN (t);
19545 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
19546 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
19547 if (! extern_p)
19549 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
19550 rest_of_type_compilation (t, 1);
19554 /* Called from do_type_instantiation through binding_table_foreach to
19555 do recursive instantiation for the type bound in ENTRY. */
19556 static void
19557 bt_instantiate_type_proc (binding_entry entry, void *data)
19559 tree storage = *(tree *) data;
19561 if (MAYBE_CLASS_TYPE_P (entry->type)
19562 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
19563 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
19566 /* Called from do_type_instantiation to instantiate a member
19567 (a member function or a static member variable) of an
19568 explicitly instantiated class template. */
19569 static void
19570 instantiate_class_member (tree decl, int extern_p)
19572 mark_decl_instantiated (decl, extern_p);
19573 if (! extern_p)
19574 instantiate_decl (decl, /*defer_ok=*/1,
19575 /*expl_inst_class_mem_p=*/true);
19578 /* Perform an explicit instantiation of template class T. STORAGE, if
19579 non-null, is the RID for extern, inline or static. COMPLAIN is
19580 nonzero if this is called from the parser, zero if called recursively,
19581 since the standard is unclear (as detailed below). */
19583 void
19584 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
19586 int extern_p = 0;
19587 int nomem_p = 0;
19588 int static_p = 0;
19589 int previous_instantiation_extern_p = 0;
19591 if (TREE_CODE (t) == TYPE_DECL)
19592 t = TREE_TYPE (t);
19594 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
19596 tree tmpl =
19597 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
19598 if (tmpl)
19599 error ("explicit instantiation of non-class template %qD", tmpl);
19600 else
19601 error ("explicit instantiation of non-template type %qT", t);
19602 return;
19605 complete_type (t);
19607 if (!COMPLETE_TYPE_P (t))
19609 if (complain & tf_error)
19610 error ("explicit instantiation of %q#T before definition of template",
19612 return;
19615 if (storage != NULL_TREE)
19617 if (!in_system_header_at (input_location))
19619 if (storage == ridpointers[(int) RID_EXTERN])
19621 if (cxx_dialect == cxx98)
19622 pedwarn (input_location, OPT_Wpedantic,
19623 "ISO C++ 1998 forbids the use of %<extern%> on "
19624 "explicit instantiations");
19626 else
19627 pedwarn (input_location, OPT_Wpedantic,
19628 "ISO C++ forbids the use of %qE"
19629 " on explicit instantiations", storage);
19632 if (storage == ridpointers[(int) RID_INLINE])
19633 nomem_p = 1;
19634 else if (storage == ridpointers[(int) RID_EXTERN])
19635 extern_p = 1;
19636 else if (storage == ridpointers[(int) RID_STATIC])
19637 static_p = 1;
19638 else
19640 error ("storage class %qD applied to template instantiation",
19641 storage);
19642 extern_p = 0;
19646 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
19648 /* DR 259 [temp.spec].
19650 Both an explicit instantiation and a declaration of an explicit
19651 specialization shall not appear in a program unless the explicit
19652 instantiation follows a declaration of the explicit specialization.
19654 For a given set of template parameters, if an explicit
19655 instantiation of a template appears after a declaration of an
19656 explicit specialization for that template, the explicit
19657 instantiation has no effect. */
19658 return;
19660 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
19662 /* [temp.spec]
19664 No program shall explicitly instantiate any template more
19665 than once.
19667 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
19668 instantiation was `extern'. If EXTERN_P then the second is.
19669 These cases are OK. */
19670 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
19672 if (!previous_instantiation_extern_p && !extern_p
19673 && (complain & tf_error))
19674 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
19676 /* If we've already instantiated the template, just return now. */
19677 if (!CLASSTYPE_INTERFACE_ONLY (t))
19678 return;
19681 check_explicit_instantiation_namespace (TYPE_NAME (t));
19682 mark_class_instantiated (t, extern_p);
19684 if (nomem_p)
19685 return;
19688 tree tmp;
19690 /* In contrast to implicit instantiation, where only the
19691 declarations, and not the definitions, of members are
19692 instantiated, we have here:
19694 [temp.explicit]
19696 The explicit instantiation of a class template specialization
19697 implies the instantiation of all of its members not
19698 previously explicitly specialized in the translation unit
19699 containing the explicit instantiation.
19701 Of course, we can't instantiate member template classes, since
19702 we don't have any arguments for them. Note that the standard
19703 is unclear on whether the instantiation of the members are
19704 *explicit* instantiations or not. However, the most natural
19705 interpretation is that it should be an explicit instantiation. */
19707 if (! static_p)
19708 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
19709 if (TREE_CODE (tmp) == FUNCTION_DECL
19710 && DECL_TEMPLATE_INSTANTIATION (tmp))
19711 instantiate_class_member (tmp, extern_p);
19713 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
19714 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
19715 instantiate_class_member (tmp, extern_p);
19717 if (CLASSTYPE_NESTED_UTDS (t))
19718 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
19719 bt_instantiate_type_proc, &storage);
19723 /* Given a function DECL, which is a specialization of TMPL, modify
19724 DECL to be a re-instantiation of TMPL with the same template
19725 arguments. TMPL should be the template into which tsubst'ing
19726 should occur for DECL, not the most general template.
19728 One reason for doing this is a scenario like this:
19730 template <class T>
19731 void f(const T&, int i);
19733 void g() { f(3, 7); }
19735 template <class T>
19736 void f(const T& t, const int i) { }
19738 Note that when the template is first instantiated, with
19739 instantiate_template, the resulting DECL will have no name for the
19740 first parameter, and the wrong type for the second. So, when we go
19741 to instantiate the DECL, we regenerate it. */
19743 static void
19744 regenerate_decl_from_template (tree decl, tree tmpl)
19746 /* The arguments used to instantiate DECL, from the most general
19747 template. */
19748 tree args;
19749 tree code_pattern;
19751 args = DECL_TI_ARGS (decl);
19752 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
19754 /* Make sure that we can see identifiers, and compute access
19755 correctly. */
19756 push_access_scope (decl);
19758 if (TREE_CODE (decl) == FUNCTION_DECL)
19760 tree decl_parm;
19761 tree pattern_parm;
19762 tree specs;
19763 int args_depth;
19764 int parms_depth;
19766 args_depth = TMPL_ARGS_DEPTH (args);
19767 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
19768 if (args_depth > parms_depth)
19769 args = get_innermost_template_args (args, parms_depth);
19771 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
19772 args, tf_error, NULL_TREE,
19773 /*defer_ok*/false);
19774 if (specs && specs != error_mark_node)
19775 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
19776 specs);
19778 /* Merge parameter declarations. */
19779 decl_parm = skip_artificial_parms_for (decl,
19780 DECL_ARGUMENTS (decl));
19781 pattern_parm
19782 = skip_artificial_parms_for (code_pattern,
19783 DECL_ARGUMENTS (code_pattern));
19784 while (decl_parm && !DECL_PACK_P (pattern_parm))
19786 tree parm_type;
19787 tree attributes;
19789 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19790 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
19791 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
19792 NULL_TREE);
19793 parm_type = type_decays_to (parm_type);
19794 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19795 TREE_TYPE (decl_parm) = parm_type;
19796 attributes = DECL_ATTRIBUTES (pattern_parm);
19797 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19799 DECL_ATTRIBUTES (decl_parm) = attributes;
19800 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19802 decl_parm = DECL_CHAIN (decl_parm);
19803 pattern_parm = DECL_CHAIN (pattern_parm);
19805 /* Merge any parameters that match with the function parameter
19806 pack. */
19807 if (pattern_parm && DECL_PACK_P (pattern_parm))
19809 int i, len;
19810 tree expanded_types;
19811 /* Expand the TYPE_PACK_EXPANSION that provides the types for
19812 the parameters in this function parameter pack. */
19813 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
19814 args, tf_error, NULL_TREE);
19815 len = TREE_VEC_LENGTH (expanded_types);
19816 for (i = 0; i < len; i++)
19818 tree parm_type;
19819 tree attributes;
19821 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19822 /* Rename the parameter to include the index. */
19823 DECL_NAME (decl_parm) =
19824 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
19825 parm_type = TREE_VEC_ELT (expanded_types, i);
19826 parm_type = type_decays_to (parm_type);
19827 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19828 TREE_TYPE (decl_parm) = parm_type;
19829 attributes = DECL_ATTRIBUTES (pattern_parm);
19830 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19832 DECL_ATTRIBUTES (decl_parm) = attributes;
19833 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19835 decl_parm = DECL_CHAIN (decl_parm);
19838 /* Merge additional specifiers from the CODE_PATTERN. */
19839 if (DECL_DECLARED_INLINE_P (code_pattern)
19840 && !DECL_DECLARED_INLINE_P (decl))
19841 DECL_DECLARED_INLINE_P (decl) = 1;
19843 else if (VAR_P (decl))
19845 DECL_INITIAL (decl) =
19846 tsubst_expr (DECL_INITIAL (code_pattern), args,
19847 tf_error, DECL_TI_TEMPLATE (decl),
19848 /*integral_constant_expression_p=*/false);
19849 if (VAR_HAD_UNKNOWN_BOUND (decl))
19850 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
19851 tf_error, DECL_TI_TEMPLATE (decl));
19853 else
19854 gcc_unreachable ();
19856 pop_access_scope (decl);
19859 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
19860 substituted to get DECL. */
19862 tree
19863 template_for_substitution (tree decl)
19865 tree tmpl = DECL_TI_TEMPLATE (decl);
19867 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
19868 for the instantiation. This is not always the most general
19869 template. Consider, for example:
19871 template <class T>
19872 struct S { template <class U> void f();
19873 template <> void f<int>(); };
19875 and an instantiation of S<double>::f<int>. We want TD to be the
19876 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
19877 while (/* An instantiation cannot have a definition, so we need a
19878 more general template. */
19879 DECL_TEMPLATE_INSTANTIATION (tmpl)
19880 /* We must also deal with friend templates. Given:
19882 template <class T> struct S {
19883 template <class U> friend void f() {};
19886 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
19887 so far as the language is concerned, but that's still
19888 where we get the pattern for the instantiation from. On
19889 other hand, if the definition comes outside the class, say:
19891 template <class T> struct S {
19892 template <class U> friend void f();
19894 template <class U> friend void f() {}
19896 we don't need to look any further. That's what the check for
19897 DECL_INITIAL is for. */
19898 || (TREE_CODE (decl) == FUNCTION_DECL
19899 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
19900 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
19902 /* The present template, TD, should not be a definition. If it
19903 were a definition, we should be using it! Note that we
19904 cannot restructure the loop to just keep going until we find
19905 a template with a definition, since that might go too far if
19906 a specialization was declared, but not defined. */
19908 /* Fetch the more general template. */
19909 tmpl = DECL_TI_TEMPLATE (tmpl);
19912 return tmpl;
19915 /* Returns true if we need to instantiate this template instance even if we
19916 know we aren't going to emit it.. */
19918 bool
19919 always_instantiate_p (tree decl)
19921 /* We always instantiate inline functions so that we can inline them. An
19922 explicit instantiation declaration prohibits implicit instantiation of
19923 non-inline functions. With high levels of optimization, we would
19924 normally inline non-inline functions -- but we're not allowed to do
19925 that for "extern template" functions. Therefore, we check
19926 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
19927 return ((TREE_CODE (decl) == FUNCTION_DECL
19928 && (DECL_DECLARED_INLINE_P (decl)
19929 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
19930 /* And we need to instantiate static data members so that
19931 their initializers are available in integral constant
19932 expressions. */
19933 || (VAR_P (decl)
19934 && decl_maybe_constant_var_p (decl)));
19937 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
19938 instantiate it now, modifying TREE_TYPE (fn). */
19940 void
19941 maybe_instantiate_noexcept (tree fn)
19943 tree fntype, spec, noex, clone;
19945 /* Don't instantiate a noexcept-specification from template context. */
19946 if (processing_template_decl)
19947 return;
19949 if (DECL_CLONED_FUNCTION_P (fn))
19950 fn = DECL_CLONED_FUNCTION (fn);
19951 fntype = TREE_TYPE (fn);
19952 spec = TYPE_RAISES_EXCEPTIONS (fntype);
19954 if (!spec || !TREE_PURPOSE (spec))
19955 return;
19957 noex = TREE_PURPOSE (spec);
19959 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
19961 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
19962 spec = get_defaulted_eh_spec (fn);
19963 else if (push_tinst_level (fn))
19965 push_access_scope (fn);
19966 push_deferring_access_checks (dk_no_deferred);
19967 input_location = DECL_SOURCE_LOCATION (fn);
19968 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
19969 DEFERRED_NOEXCEPT_ARGS (noex),
19970 tf_warning_or_error, fn,
19971 /*function_p=*/false,
19972 /*integral_constant_expression_p=*/true);
19973 pop_deferring_access_checks ();
19974 pop_access_scope (fn);
19975 pop_tinst_level ();
19976 spec = build_noexcept_spec (noex, tf_warning_or_error);
19977 if (spec == error_mark_node)
19978 spec = noexcept_false_spec;
19980 else
19981 spec = noexcept_false_spec;
19983 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
19986 FOR_EACH_CLONE (clone, fn)
19988 if (TREE_TYPE (clone) == fntype)
19989 TREE_TYPE (clone) = TREE_TYPE (fn);
19990 else
19991 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
19995 /* Produce the definition of D, a _DECL generated from a template. If
19996 DEFER_OK is nonzero, then we don't have to actually do the
19997 instantiation now; we just have to do it sometime. Normally it is
19998 an error if this is an explicit instantiation but D is undefined.
19999 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
20000 explicitly instantiated class template. */
20002 tree
20003 instantiate_decl (tree d, int defer_ok,
20004 bool expl_inst_class_mem_p)
20006 tree tmpl = DECL_TI_TEMPLATE (d);
20007 tree gen_args;
20008 tree args;
20009 tree td;
20010 tree code_pattern;
20011 tree spec;
20012 tree gen_tmpl;
20013 bool pattern_defined;
20014 location_t saved_loc = input_location;
20015 int saved_unevaluated_operand = cp_unevaluated_operand;
20016 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
20017 bool external_p;
20018 bool deleted_p;
20019 tree fn_context;
20020 bool nested;
20022 /* This function should only be used to instantiate templates for
20023 functions and static member variables. */
20024 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
20026 /* Variables are never deferred; if instantiation is required, they
20027 are instantiated right away. That allows for better code in the
20028 case that an expression refers to the value of the variable --
20029 if the variable has a constant value the referring expression can
20030 take advantage of that fact. */
20031 if (VAR_P (d)
20032 || DECL_DECLARED_CONSTEXPR_P (d))
20033 defer_ok = 0;
20035 /* Don't instantiate cloned functions. Instead, instantiate the
20036 functions they cloned. */
20037 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
20038 d = DECL_CLONED_FUNCTION (d);
20040 if (DECL_TEMPLATE_INSTANTIATED (d)
20041 || (TREE_CODE (d) == FUNCTION_DECL
20042 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
20043 || DECL_TEMPLATE_SPECIALIZATION (d))
20044 /* D has already been instantiated or explicitly specialized, so
20045 there's nothing for us to do here.
20047 It might seem reasonable to check whether or not D is an explicit
20048 instantiation, and, if so, stop here. But when an explicit
20049 instantiation is deferred until the end of the compilation,
20050 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
20051 the instantiation. */
20052 return d;
20054 /* Check to see whether we know that this template will be
20055 instantiated in some other file, as with "extern template"
20056 extension. */
20057 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
20059 /* In general, we do not instantiate such templates. */
20060 if (external_p && !always_instantiate_p (d))
20061 return d;
20063 gen_tmpl = most_general_template (tmpl);
20064 gen_args = DECL_TI_ARGS (d);
20066 if (tmpl != gen_tmpl)
20067 /* We should already have the extra args. */
20068 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
20069 == TMPL_ARGS_DEPTH (gen_args));
20070 /* And what's in the hash table should match D. */
20071 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
20072 || spec == NULL_TREE);
20074 /* This needs to happen before any tsubsting. */
20075 if (! push_tinst_level (d))
20076 return d;
20078 timevar_push (TV_TEMPLATE_INST);
20080 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
20081 for the instantiation. */
20082 td = template_for_substitution (d);
20083 code_pattern = DECL_TEMPLATE_RESULT (td);
20085 /* We should never be trying to instantiate a member of a class
20086 template or partial specialization. */
20087 gcc_assert (d != code_pattern);
20089 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
20090 || DECL_TEMPLATE_SPECIALIZATION (td))
20091 /* In the case of a friend template whose definition is provided
20092 outside the class, we may have too many arguments. Drop the
20093 ones we don't need. The same is true for specializations. */
20094 args = get_innermost_template_args
20095 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
20096 else
20097 args = gen_args;
20099 if (TREE_CODE (d) == FUNCTION_DECL)
20101 deleted_p = DECL_DELETED_FN (code_pattern);
20102 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
20103 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
20104 || deleted_p);
20106 else
20108 deleted_p = false;
20109 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
20112 /* We may be in the middle of deferred access check. Disable it now. */
20113 push_deferring_access_checks (dk_no_deferred);
20115 /* Unless an explicit instantiation directive has already determined
20116 the linkage of D, remember that a definition is available for
20117 this entity. */
20118 if (pattern_defined
20119 && !DECL_INTERFACE_KNOWN (d)
20120 && !DECL_NOT_REALLY_EXTERN (d))
20121 mark_definable (d);
20123 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
20124 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
20125 input_location = DECL_SOURCE_LOCATION (d);
20127 /* If D is a member of an explicitly instantiated class template,
20128 and no definition is available, treat it like an implicit
20129 instantiation. */
20130 if (!pattern_defined && expl_inst_class_mem_p
20131 && DECL_EXPLICIT_INSTANTIATION (d))
20133 /* Leave linkage flags alone on instantiations with anonymous
20134 visibility. */
20135 if (TREE_PUBLIC (d))
20137 DECL_NOT_REALLY_EXTERN (d) = 0;
20138 DECL_INTERFACE_KNOWN (d) = 0;
20140 SET_DECL_IMPLICIT_INSTANTIATION (d);
20143 /* Defer all other templates, unless we have been explicitly
20144 forbidden from doing so. */
20145 if (/* If there is no definition, we cannot instantiate the
20146 template. */
20147 ! pattern_defined
20148 /* If it's OK to postpone instantiation, do so. */
20149 || defer_ok
20150 /* If this is a static data member that will be defined
20151 elsewhere, we don't want to instantiate the entire data
20152 member, but we do want to instantiate the initializer so that
20153 we can substitute that elsewhere. */
20154 || (external_p && VAR_P (d))
20155 /* Handle here a deleted function too, avoid generating
20156 its body (c++/61080). */
20157 || deleted_p)
20159 /* The definition of the static data member is now required so
20160 we must substitute the initializer. */
20161 if (VAR_P (d)
20162 && !DECL_INITIAL (d)
20163 && DECL_INITIAL (code_pattern))
20165 tree ns;
20166 tree init;
20167 bool const_init = false;
20168 bool enter_context = DECL_CLASS_SCOPE_P (d);
20170 ns = decl_namespace_context (d);
20171 push_nested_namespace (ns);
20172 if (enter_context)
20173 push_nested_class (DECL_CONTEXT (d));
20174 init = tsubst_expr (DECL_INITIAL (code_pattern),
20175 args,
20176 tf_warning_or_error, NULL_TREE,
20177 /*integral_constant_expression_p=*/false);
20178 /* If instantiating the initializer involved instantiating this
20179 again, don't call cp_finish_decl twice. */
20180 if (!DECL_INITIAL (d))
20182 /* Make sure the initializer is still constant, in case of
20183 circular dependency (template/instantiate6.C). */
20184 const_init
20185 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20186 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
20187 /*asmspec_tree=*/NULL_TREE,
20188 LOOKUP_ONLYCONVERTING);
20190 if (enter_context)
20191 pop_nested_class ();
20192 pop_nested_namespace (ns);
20195 /* We restore the source position here because it's used by
20196 add_pending_template. */
20197 input_location = saved_loc;
20199 if (at_eof && !pattern_defined
20200 && DECL_EXPLICIT_INSTANTIATION (d)
20201 && DECL_NOT_REALLY_EXTERN (d))
20202 /* [temp.explicit]
20204 The definition of a non-exported function template, a
20205 non-exported member function template, or a non-exported
20206 member function or static data member of a class template
20207 shall be present in every translation unit in which it is
20208 explicitly instantiated. */
20209 permerror (input_location, "explicit instantiation of %qD "
20210 "but no definition available", d);
20212 /* If we're in unevaluated context, we just wanted to get the
20213 constant value; this isn't an odr use, so don't queue
20214 a full instantiation. */
20215 if (cp_unevaluated_operand != 0)
20216 goto out;
20217 /* ??? Historically, we have instantiated inline functions, even
20218 when marked as "extern template". */
20219 if (!(external_p && VAR_P (d)))
20220 add_pending_template (d);
20221 goto out;
20223 /* Tell the repository that D is available in this translation unit
20224 -- and see if it is supposed to be instantiated here. */
20225 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
20227 /* In a PCH file, despite the fact that the repository hasn't
20228 requested instantiation in the PCH it is still possible that
20229 an instantiation will be required in a file that includes the
20230 PCH. */
20231 if (pch_file)
20232 add_pending_template (d);
20233 /* Instantiate inline functions so that the inliner can do its
20234 job, even though we'll not be emitting a copy of this
20235 function. */
20236 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
20237 goto out;
20240 fn_context = decl_function_context (d);
20241 nested = (current_function_decl != NULL_TREE);
20242 if (!fn_context)
20243 push_to_top_level ();
20244 else
20246 if (nested)
20247 push_function_context ();
20248 cp_unevaluated_operand = 0;
20249 c_inhibit_evaluation_warnings = 0;
20252 /* Mark D as instantiated so that recursive calls to
20253 instantiate_decl do not try to instantiate it again. */
20254 DECL_TEMPLATE_INSTANTIATED (d) = 1;
20256 /* Regenerate the declaration in case the template has been modified
20257 by a subsequent redeclaration. */
20258 regenerate_decl_from_template (d, td);
20260 /* We already set the file and line above. Reset them now in case
20261 they changed as a result of calling regenerate_decl_from_template. */
20262 input_location = DECL_SOURCE_LOCATION (d);
20264 if (VAR_P (d))
20266 tree init;
20267 bool const_init = false;
20269 /* Clear out DECL_RTL; whatever was there before may not be right
20270 since we've reset the type of the declaration. */
20271 SET_DECL_RTL (d, NULL);
20272 DECL_IN_AGGR_P (d) = 0;
20274 /* The initializer is placed in DECL_INITIAL by
20275 regenerate_decl_from_template so we don't need to
20276 push/pop_access_scope again here. Pull it out so that
20277 cp_finish_decl can process it. */
20278 init = DECL_INITIAL (d);
20279 DECL_INITIAL (d) = NULL_TREE;
20280 DECL_INITIALIZED_P (d) = 0;
20282 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
20283 initializer. That function will defer actual emission until
20284 we have a chance to determine linkage. */
20285 DECL_EXTERNAL (d) = 0;
20287 /* Enter the scope of D so that access-checking works correctly. */
20288 bool enter_context = DECL_CLASS_SCOPE_P (d);
20289 if (enter_context)
20290 push_nested_class (DECL_CONTEXT (d));
20292 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20293 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
20295 if (enter_context)
20296 pop_nested_class ();
20298 if (variable_template_p (td))
20299 note_variable_template_instantiation (d);
20301 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
20302 synthesize_method (d);
20303 else if (TREE_CODE (d) == FUNCTION_DECL)
20305 hash_map<tree, tree> *saved_local_specializations;
20306 tree subst_decl;
20307 tree tmpl_parm;
20308 tree spec_parm;
20309 tree block = NULL_TREE;
20311 /* Save away the current list, in case we are instantiating one
20312 template from within the body of another. */
20313 saved_local_specializations = local_specializations;
20315 /* Set up the list of local specializations. */
20316 local_specializations = new hash_map<tree, tree>;
20318 /* Set up context. */
20319 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20320 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20321 block = push_stmt_list ();
20322 else
20323 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
20325 /* Some typedefs referenced from within the template code need to be
20326 access checked at template instantiation time, i.e now. These
20327 types were added to the template at parsing time. Let's get those
20328 and perform the access checks then. */
20329 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
20330 gen_args);
20332 /* Create substitution entries for the parameters. */
20333 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
20334 tmpl_parm = DECL_ARGUMENTS (subst_decl);
20335 spec_parm = DECL_ARGUMENTS (d);
20336 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
20338 register_local_specialization (spec_parm, tmpl_parm);
20339 spec_parm = skip_artificial_parms_for (d, spec_parm);
20340 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
20342 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
20344 if (!DECL_PACK_P (tmpl_parm))
20346 register_local_specialization (spec_parm, tmpl_parm);
20347 spec_parm = DECL_CHAIN (spec_parm);
20349 else
20351 /* Register the (value) argument pack as a specialization of
20352 TMPL_PARM, then move on. */
20353 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
20354 register_local_specialization (argpack, tmpl_parm);
20357 gcc_assert (!spec_parm);
20359 /* Substitute into the body of the function. */
20360 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20361 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
20362 tf_warning_or_error, tmpl);
20363 else
20365 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
20366 tf_warning_or_error, tmpl,
20367 /*integral_constant_expression_p=*/false);
20369 /* Set the current input_location to the end of the function
20370 so that finish_function knows where we are. */
20371 input_location
20372 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
20374 /* Remember if we saw an infinite loop in the template. */
20375 current_function_infinite_loop
20376 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
20379 /* We don't need the local specializations any more. */
20380 delete local_specializations;
20381 local_specializations = saved_local_specializations;
20383 /* Finish the function. */
20384 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20385 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20386 DECL_SAVED_TREE (d) = pop_stmt_list (block);
20387 else
20389 d = finish_function (0);
20390 expand_or_defer_fn (d);
20393 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20394 cp_check_omp_declare_reduction (d);
20397 /* We're not deferring instantiation any more. */
20398 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
20400 if (!fn_context)
20401 pop_from_top_level ();
20402 else if (nested)
20403 pop_function_context ();
20405 out:
20406 input_location = saved_loc;
20407 cp_unevaluated_operand = saved_unevaluated_operand;
20408 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
20409 pop_deferring_access_checks ();
20410 pop_tinst_level ();
20412 timevar_pop (TV_TEMPLATE_INST);
20414 return d;
20417 /* Run through the list of templates that we wish we could
20418 instantiate, and instantiate any we can. RETRIES is the
20419 number of times we retry pending template instantiation. */
20421 void
20422 instantiate_pending_templates (int retries)
20424 int reconsider;
20425 location_t saved_loc = input_location;
20427 /* Instantiating templates may trigger vtable generation. This in turn
20428 may require further template instantiations. We place a limit here
20429 to avoid infinite loop. */
20430 if (pending_templates && retries >= max_tinst_depth)
20432 tree decl = pending_templates->tinst->decl;
20434 fatal_error ("template instantiation depth exceeds maximum of %d"
20435 " instantiating %q+D, possibly from virtual table generation"
20436 " (use -ftemplate-depth= to increase the maximum)",
20437 max_tinst_depth, decl);
20438 if (TREE_CODE (decl) == FUNCTION_DECL)
20439 /* Pretend that we defined it. */
20440 DECL_INITIAL (decl) = error_mark_node;
20441 return;
20446 struct pending_template **t = &pending_templates;
20447 struct pending_template *last = NULL;
20448 reconsider = 0;
20449 while (*t)
20451 tree instantiation = reopen_tinst_level ((*t)->tinst);
20452 bool complete = false;
20454 if (TYPE_P (instantiation))
20456 tree fn;
20458 if (!COMPLETE_TYPE_P (instantiation))
20460 instantiate_class_template (instantiation);
20461 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
20462 for (fn = TYPE_METHODS (instantiation);
20464 fn = TREE_CHAIN (fn))
20465 if (! DECL_ARTIFICIAL (fn))
20466 instantiate_decl (fn,
20467 /*defer_ok=*/0,
20468 /*expl_inst_class_mem_p=*/false);
20469 if (COMPLETE_TYPE_P (instantiation))
20470 reconsider = 1;
20473 complete = COMPLETE_TYPE_P (instantiation);
20475 else
20477 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
20478 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
20480 instantiation
20481 = instantiate_decl (instantiation,
20482 /*defer_ok=*/0,
20483 /*expl_inst_class_mem_p=*/false);
20484 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
20485 reconsider = 1;
20488 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
20489 || DECL_TEMPLATE_INSTANTIATED (instantiation));
20492 if (complete)
20493 /* If INSTANTIATION has been instantiated, then we don't
20494 need to consider it again in the future. */
20495 *t = (*t)->next;
20496 else
20498 last = *t;
20499 t = &(*t)->next;
20501 tinst_depth = 0;
20502 current_tinst_level = NULL;
20504 last_pending_template = last;
20506 while (reconsider);
20508 input_location = saved_loc;
20511 /* Substitute ARGVEC into T, which is a list of initializers for
20512 either base class or a non-static data member. The TREE_PURPOSEs
20513 are DECLs, and the TREE_VALUEs are the initializer values. Used by
20514 instantiate_decl. */
20516 static tree
20517 tsubst_initializer_list (tree t, tree argvec)
20519 tree inits = NULL_TREE;
20521 for (; t; t = TREE_CHAIN (t))
20523 tree decl;
20524 tree init;
20525 tree expanded_bases = NULL_TREE;
20526 tree expanded_arguments = NULL_TREE;
20527 int i, len = 1;
20529 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
20531 tree expr;
20532 tree arg;
20534 /* Expand the base class expansion type into separate base
20535 classes. */
20536 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
20537 tf_warning_or_error,
20538 NULL_TREE);
20539 if (expanded_bases == error_mark_node)
20540 continue;
20542 /* We'll be building separate TREE_LISTs of arguments for
20543 each base. */
20544 len = TREE_VEC_LENGTH (expanded_bases);
20545 expanded_arguments = make_tree_vec (len);
20546 for (i = 0; i < len; i++)
20547 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
20549 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
20550 expand each argument in the TREE_VALUE of t. */
20551 expr = make_node (EXPR_PACK_EXPANSION);
20552 PACK_EXPANSION_LOCAL_P (expr) = true;
20553 PACK_EXPANSION_PARAMETER_PACKS (expr) =
20554 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
20556 if (TREE_VALUE (t) == void_type_node)
20557 /* VOID_TYPE_NODE is used to indicate
20558 value-initialization. */
20560 for (i = 0; i < len; i++)
20561 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
20563 else
20565 /* Substitute parameter packs into each argument in the
20566 TREE_LIST. */
20567 in_base_initializer = 1;
20568 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
20570 tree expanded_exprs;
20572 /* Expand the argument. */
20573 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
20574 expanded_exprs
20575 = tsubst_pack_expansion (expr, argvec,
20576 tf_warning_or_error,
20577 NULL_TREE);
20578 if (expanded_exprs == error_mark_node)
20579 continue;
20581 /* Prepend each of the expanded expressions to the
20582 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
20583 for (i = 0; i < len; i++)
20585 TREE_VEC_ELT (expanded_arguments, i) =
20586 tree_cons (NULL_TREE,
20587 TREE_VEC_ELT (expanded_exprs, i),
20588 TREE_VEC_ELT (expanded_arguments, i));
20591 in_base_initializer = 0;
20593 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
20594 since we built them backwards. */
20595 for (i = 0; i < len; i++)
20597 TREE_VEC_ELT (expanded_arguments, i) =
20598 nreverse (TREE_VEC_ELT (expanded_arguments, i));
20603 for (i = 0; i < len; ++i)
20605 if (expanded_bases)
20607 decl = TREE_VEC_ELT (expanded_bases, i);
20608 decl = expand_member_init (decl);
20609 init = TREE_VEC_ELT (expanded_arguments, i);
20611 else
20613 tree tmp;
20614 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
20615 tf_warning_or_error, NULL_TREE);
20617 decl = expand_member_init (decl);
20618 if (decl && !DECL_P (decl))
20619 in_base_initializer = 1;
20621 init = TREE_VALUE (t);
20622 tmp = init;
20623 if (init != void_type_node)
20624 init = tsubst_expr (init, argvec,
20625 tf_warning_or_error, NULL_TREE,
20626 /*integral_constant_expression_p=*/false);
20627 if (init == NULL_TREE && tmp != NULL_TREE)
20628 /* If we had an initializer but it instantiated to nothing,
20629 value-initialize the object. This will only occur when
20630 the initializer was a pack expansion where the parameter
20631 packs used in that expansion were of length zero. */
20632 init = void_type_node;
20633 in_base_initializer = 0;
20636 if (decl)
20638 init = build_tree_list (decl, init);
20639 TREE_CHAIN (init) = inits;
20640 inits = init;
20644 return inits;
20647 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
20649 static void
20650 set_current_access_from_decl (tree decl)
20652 if (TREE_PRIVATE (decl))
20653 current_access_specifier = access_private_node;
20654 else if (TREE_PROTECTED (decl))
20655 current_access_specifier = access_protected_node;
20656 else
20657 current_access_specifier = access_public_node;
20660 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
20661 is the instantiation (which should have been created with
20662 start_enum) and ARGS are the template arguments to use. */
20664 static void
20665 tsubst_enum (tree tag, tree newtag, tree args)
20667 tree e;
20669 if (SCOPED_ENUM_P (newtag))
20670 begin_scope (sk_scoped_enum, newtag);
20672 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
20674 tree value;
20675 tree decl;
20677 decl = TREE_VALUE (e);
20678 /* Note that in a template enum, the TREE_VALUE is the
20679 CONST_DECL, not the corresponding INTEGER_CST. */
20680 value = tsubst_expr (DECL_INITIAL (decl),
20681 args, tf_warning_or_error, NULL_TREE,
20682 /*integral_constant_expression_p=*/true);
20684 /* Give this enumeration constant the correct access. */
20685 set_current_access_from_decl (decl);
20687 /* Actually build the enumerator itself. */
20688 build_enumerator
20689 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
20692 if (SCOPED_ENUM_P (newtag))
20693 finish_scope ();
20695 finish_enum_value_list (newtag);
20696 finish_enum (newtag);
20698 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
20699 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
20702 /* DECL is a FUNCTION_DECL that is a template specialization. Return
20703 its type -- but without substituting the innermost set of template
20704 arguments. So, innermost set of template parameters will appear in
20705 the type. */
20707 tree
20708 get_mostly_instantiated_function_type (tree decl)
20710 tree fn_type;
20711 tree tmpl;
20712 tree targs;
20713 tree tparms;
20714 int parm_depth;
20716 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
20717 targs = DECL_TI_ARGS (decl);
20718 tparms = DECL_TEMPLATE_PARMS (tmpl);
20719 parm_depth = TMPL_PARMS_DEPTH (tparms);
20721 /* There should be as many levels of arguments as there are levels
20722 of parameters. */
20723 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
20725 fn_type = TREE_TYPE (tmpl);
20727 if (parm_depth == 1)
20728 /* No substitution is necessary. */
20730 else
20732 int i;
20733 tree partial_args;
20735 /* Replace the innermost level of the TARGS with NULL_TREEs to
20736 let tsubst know not to substitute for those parameters. */
20737 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
20738 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
20739 SET_TMPL_ARGS_LEVEL (partial_args, i,
20740 TMPL_ARGS_LEVEL (targs, i));
20741 SET_TMPL_ARGS_LEVEL (partial_args,
20742 TMPL_ARGS_DEPTH (targs),
20743 make_tree_vec (DECL_NTPARMS (tmpl)));
20745 /* Make sure that we can see identifiers, and compute access
20746 correctly. */
20747 push_access_scope (decl);
20749 ++processing_template_decl;
20750 /* Now, do the (partial) substitution to figure out the
20751 appropriate function type. */
20752 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
20753 --processing_template_decl;
20755 /* Substitute into the template parameters to obtain the real
20756 innermost set of parameters. This step is important if the
20757 innermost set of template parameters contains value
20758 parameters whose types depend on outer template parameters. */
20759 TREE_VEC_LENGTH (partial_args)--;
20760 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
20762 pop_access_scope (decl);
20765 return fn_type;
20768 /* Return truthvalue if we're processing a template different from
20769 the last one involved in diagnostics. */
20770 bool
20771 problematic_instantiation_changed (void)
20773 return current_tinst_level != last_error_tinst_level;
20776 /* Remember current template involved in diagnostics. */
20777 void
20778 record_last_problematic_instantiation (void)
20780 last_error_tinst_level = current_tinst_level;
20783 struct tinst_level *
20784 current_instantiation (void)
20786 return current_tinst_level;
20789 /* [temp.param] Check that template non-type parm TYPE is of an allowable
20790 type. Return zero for ok, nonzero for disallowed. Issue error and
20791 warning messages under control of COMPLAIN. */
20793 static int
20794 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
20796 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
20797 return 0;
20798 else if (POINTER_TYPE_P (type))
20799 return 0;
20800 else if (TYPE_PTRMEM_P (type))
20801 return 0;
20802 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
20803 return 0;
20804 else if (TREE_CODE (type) == TYPENAME_TYPE)
20805 return 0;
20806 else if (TREE_CODE (type) == DECLTYPE_TYPE)
20807 return 0;
20808 else if (TREE_CODE (type) == NULLPTR_TYPE)
20809 return 0;
20811 if (complain & tf_error)
20813 if (type == error_mark_node)
20814 inform (input_location, "invalid template non-type parameter");
20815 else
20816 error ("%q#T is not a valid type for a template non-type parameter",
20817 type);
20819 return 1;
20822 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
20823 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
20825 static bool
20826 dependent_type_p_r (tree type)
20828 tree scope;
20830 /* [temp.dep.type]
20832 A type is dependent if it is:
20834 -- a template parameter. Template template parameters are types
20835 for us (since TYPE_P holds true for them) so we handle
20836 them here. */
20837 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20838 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
20839 return true;
20840 /* -- a qualified-id with a nested-name-specifier which contains a
20841 class-name that names a dependent type or whose unqualified-id
20842 names a dependent type. */
20843 if (TREE_CODE (type) == TYPENAME_TYPE)
20844 return true;
20845 /* -- a cv-qualified type where the cv-unqualified type is
20846 dependent.
20847 No code is necessary for this bullet; the code below handles
20848 cv-qualified types, and we don't want to strip aliases with
20849 TYPE_MAIN_VARIANT because of DR 1558. */
20850 /* -- a compound type constructed from any dependent type. */
20851 if (TYPE_PTRMEM_P (type))
20852 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
20853 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
20854 (type)));
20855 else if (TYPE_PTR_P (type)
20856 || TREE_CODE (type) == REFERENCE_TYPE)
20857 return dependent_type_p (TREE_TYPE (type));
20858 else if (TREE_CODE (type) == FUNCTION_TYPE
20859 || TREE_CODE (type) == METHOD_TYPE)
20861 tree arg_type;
20863 if (dependent_type_p (TREE_TYPE (type)))
20864 return true;
20865 for (arg_type = TYPE_ARG_TYPES (type);
20866 arg_type;
20867 arg_type = TREE_CHAIN (arg_type))
20868 if (dependent_type_p (TREE_VALUE (arg_type)))
20869 return true;
20870 return false;
20872 /* -- an array type constructed from any dependent type or whose
20873 size is specified by a constant expression that is
20874 value-dependent.
20876 We checked for type- and value-dependence of the bounds in
20877 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
20878 if (TREE_CODE (type) == ARRAY_TYPE)
20880 if (TYPE_DOMAIN (type)
20881 && dependent_type_p (TYPE_DOMAIN (type)))
20882 return true;
20883 return dependent_type_p (TREE_TYPE (type));
20886 /* -- a template-id in which either the template name is a template
20887 parameter ... */
20888 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
20889 return true;
20890 /* ... or any of the template arguments is a dependent type or
20891 an expression that is type-dependent or value-dependent. */
20892 else if (TYPE_TEMPLATE_INFO (type)
20893 && (any_dependent_template_arguments_p
20894 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (type)))))
20895 return true;
20897 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
20898 dependent; if the argument of the `typeof' expression is not
20899 type-dependent, then it should already been have resolved. */
20900 if (TREE_CODE (type) == TYPEOF_TYPE
20901 || TREE_CODE (type) == DECLTYPE_TYPE
20902 || TREE_CODE (type) == UNDERLYING_TYPE)
20903 return true;
20905 /* A template argument pack is dependent if any of its packed
20906 arguments are. */
20907 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
20909 tree args = ARGUMENT_PACK_ARGS (type);
20910 int i, len = TREE_VEC_LENGTH (args);
20911 for (i = 0; i < len; ++i)
20912 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
20913 return true;
20916 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
20917 be template parameters. */
20918 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
20919 return true;
20921 /* The standard does not specifically mention types that are local
20922 to template functions or local classes, but they should be
20923 considered dependent too. For example:
20925 template <int I> void f() {
20926 enum E { a = I };
20927 S<sizeof (E)> s;
20930 The size of `E' cannot be known until the value of `I' has been
20931 determined. Therefore, `E' must be considered dependent. */
20932 scope = TYPE_CONTEXT (type);
20933 if (scope && TYPE_P (scope))
20934 return dependent_type_p (scope);
20935 /* Don't use type_dependent_expression_p here, as it can lead
20936 to infinite recursion trying to determine whether a lambda
20937 nested in a lambda is dependent (c++/47687). */
20938 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
20939 && DECL_LANG_SPECIFIC (scope)
20940 && DECL_TEMPLATE_INFO (scope)
20941 && (any_dependent_template_arguments_p
20942 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
20943 return true;
20945 /* Other types are non-dependent. */
20946 return false;
20949 /* Returns TRUE if TYPE is dependent, in the sense of
20950 [temp.dep.type]. Note that a NULL type is considered dependent. */
20952 bool
20953 dependent_type_p (tree type)
20955 /* If there are no template parameters in scope, then there can't be
20956 any dependent types. */
20957 if (!processing_template_decl)
20959 /* If we are not processing a template, then nobody should be
20960 providing us with a dependent type. */
20961 gcc_assert (type);
20962 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
20963 return false;
20966 /* If the type is NULL, we have not computed a type for the entity
20967 in question; in that case, the type is dependent. */
20968 if (!type)
20969 return true;
20971 /* Erroneous types can be considered non-dependent. */
20972 if (type == error_mark_node)
20973 return false;
20975 /* If we have not already computed the appropriate value for TYPE,
20976 do so now. */
20977 if (!TYPE_DEPENDENT_P_VALID (type))
20979 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
20980 TYPE_DEPENDENT_P_VALID (type) = 1;
20983 return TYPE_DEPENDENT_P (type);
20986 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
20987 lookup. In other words, a dependent type that is not the current
20988 instantiation. */
20990 bool
20991 dependent_scope_p (tree scope)
20993 return (scope && TYPE_P (scope) && dependent_type_p (scope)
20994 && !currently_open_class (scope));
20997 /* T is a SCOPE_REF; return whether we need to consider it
20998 instantiation-dependent so that we can check access at instantiation
20999 time even though we know which member it resolves to. */
21001 static bool
21002 instantiation_dependent_scope_ref_p (tree t)
21004 if (DECL_P (TREE_OPERAND (t, 1))
21005 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
21006 && accessible_in_template_p (TREE_OPERAND (t, 0),
21007 TREE_OPERAND (t, 1)))
21008 return false;
21009 else
21010 return true;
21013 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
21014 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
21015 expression. */
21017 /* Note that this predicate is not appropriate for general expressions;
21018 only constant expressions (that satisfy potential_constant_expression)
21019 can be tested for value dependence. */
21021 bool
21022 value_dependent_expression_p (tree expression)
21024 if (!processing_template_decl)
21025 return false;
21027 /* A name declared with a dependent type. */
21028 if (DECL_P (expression) && type_dependent_expression_p (expression))
21029 return true;
21031 switch (TREE_CODE (expression))
21033 case IDENTIFIER_NODE:
21034 /* A name that has not been looked up -- must be dependent. */
21035 return true;
21037 case TEMPLATE_PARM_INDEX:
21038 /* A non-type template parm. */
21039 return true;
21041 case CONST_DECL:
21042 /* A non-type template parm. */
21043 if (DECL_TEMPLATE_PARM_P (expression))
21044 return true;
21045 return value_dependent_expression_p (DECL_INITIAL (expression));
21047 case VAR_DECL:
21048 /* A constant with literal type and is initialized
21049 with an expression that is value-dependent.
21051 Note that a non-dependent parenthesized initializer will have
21052 already been replaced with its constant value, so if we see
21053 a TREE_LIST it must be dependent. */
21054 if (DECL_INITIAL (expression)
21055 && decl_constant_var_p (expression)
21056 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
21057 /* cp_finish_decl doesn't fold reference initializers. */
21058 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
21059 || value_dependent_expression_p (DECL_INITIAL (expression))))
21060 return true;
21061 return false;
21063 case DYNAMIC_CAST_EXPR:
21064 case STATIC_CAST_EXPR:
21065 case CONST_CAST_EXPR:
21066 case REINTERPRET_CAST_EXPR:
21067 case CAST_EXPR:
21068 /* These expressions are value-dependent if the type to which
21069 the cast occurs is dependent or the expression being casted
21070 is value-dependent. */
21072 tree type = TREE_TYPE (expression);
21074 if (dependent_type_p (type))
21075 return true;
21077 /* A functional cast has a list of operands. */
21078 expression = TREE_OPERAND (expression, 0);
21079 if (!expression)
21081 /* If there are no operands, it must be an expression such
21082 as "int()". This should not happen for aggregate types
21083 because it would form non-constant expressions. */
21084 gcc_assert (cxx_dialect >= cxx11
21085 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
21087 return false;
21090 if (TREE_CODE (expression) == TREE_LIST)
21091 return any_value_dependent_elements_p (expression);
21093 return value_dependent_expression_p (expression);
21096 case SIZEOF_EXPR:
21097 if (SIZEOF_EXPR_TYPE_P (expression))
21098 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
21099 /* FALLTHRU */
21100 case ALIGNOF_EXPR:
21101 case TYPEID_EXPR:
21102 /* A `sizeof' expression is value-dependent if the operand is
21103 type-dependent or is a pack expansion. */
21104 expression = TREE_OPERAND (expression, 0);
21105 if (PACK_EXPANSION_P (expression))
21106 return true;
21107 else if (TYPE_P (expression))
21108 return dependent_type_p (expression);
21109 return instantiation_dependent_expression_p (expression);
21111 case AT_ENCODE_EXPR:
21112 /* An 'encode' expression is value-dependent if the operand is
21113 type-dependent. */
21114 expression = TREE_OPERAND (expression, 0);
21115 return dependent_type_p (expression);
21117 case NOEXCEPT_EXPR:
21118 expression = TREE_OPERAND (expression, 0);
21119 return instantiation_dependent_expression_p (expression);
21121 case SCOPE_REF:
21122 /* All instantiation-dependent expressions should also be considered
21123 value-dependent. */
21124 return instantiation_dependent_scope_ref_p (expression);
21126 case COMPONENT_REF:
21127 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
21128 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
21130 case NONTYPE_ARGUMENT_PACK:
21131 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
21132 is value-dependent. */
21134 tree values = ARGUMENT_PACK_ARGS (expression);
21135 int i, len = TREE_VEC_LENGTH (values);
21137 for (i = 0; i < len; ++i)
21138 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
21139 return true;
21141 return false;
21144 case TRAIT_EXPR:
21146 tree type2 = TRAIT_EXPR_TYPE2 (expression);
21147 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
21148 || (type2 ? dependent_type_p (type2) : false));
21151 case MODOP_EXPR:
21152 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21153 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
21155 case ARRAY_REF:
21156 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21157 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
21159 case ADDR_EXPR:
21161 tree op = TREE_OPERAND (expression, 0);
21162 return (value_dependent_expression_p (op)
21163 || has_value_dependent_address (op));
21166 case CALL_EXPR:
21168 tree fn = get_callee_fndecl (expression);
21169 int i, nargs;
21170 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
21171 return true;
21172 nargs = call_expr_nargs (expression);
21173 for (i = 0; i < nargs; ++i)
21175 tree op = CALL_EXPR_ARG (expression, i);
21176 /* In a call to a constexpr member function, look through the
21177 implicit ADDR_EXPR on the object argument so that it doesn't
21178 cause the call to be considered value-dependent. We also
21179 look through it in potential_constant_expression. */
21180 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
21181 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
21182 && TREE_CODE (op) == ADDR_EXPR)
21183 op = TREE_OPERAND (op, 0);
21184 if (value_dependent_expression_p (op))
21185 return true;
21187 return false;
21190 case TEMPLATE_ID_EXPR:
21191 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
21192 type-dependent. */
21193 return type_dependent_expression_p (expression);
21195 case CONSTRUCTOR:
21197 unsigned ix;
21198 tree val;
21199 if (dependent_type_p (TREE_TYPE (expression)))
21200 return true;
21201 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
21202 if (value_dependent_expression_p (val))
21203 return true;
21204 return false;
21207 case STMT_EXPR:
21208 /* Treat a GNU statement expression as dependent to avoid crashing
21209 under instantiate_non_dependent_expr; it can't be constant. */
21210 return true;
21212 default:
21213 /* A constant expression is value-dependent if any subexpression is
21214 value-dependent. */
21215 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
21217 case tcc_reference:
21218 case tcc_unary:
21219 case tcc_comparison:
21220 case tcc_binary:
21221 case tcc_expression:
21222 case tcc_vl_exp:
21224 int i, len = cp_tree_operand_length (expression);
21226 for (i = 0; i < len; i++)
21228 tree t = TREE_OPERAND (expression, i);
21230 /* In some cases, some of the operands may be missing.l
21231 (For example, in the case of PREDECREMENT_EXPR, the
21232 amount to increment by may be missing.) That doesn't
21233 make the expression dependent. */
21234 if (t && value_dependent_expression_p (t))
21235 return true;
21238 break;
21239 default:
21240 break;
21242 break;
21245 /* The expression is not value-dependent. */
21246 return false;
21249 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
21250 [temp.dep.expr]. Note that an expression with no type is
21251 considered dependent. Other parts of the compiler arrange for an
21252 expression with type-dependent subexpressions to have no type, so
21253 this function doesn't have to be fully recursive. */
21255 bool
21256 type_dependent_expression_p (tree expression)
21258 if (!processing_template_decl)
21259 return false;
21261 if (expression == NULL_TREE || expression == error_mark_node)
21262 return false;
21264 /* An unresolved name is always dependent. */
21265 if (identifier_p (expression) || TREE_CODE (expression) == USING_DECL)
21266 return true;
21268 /* Some expression forms are never type-dependent. */
21269 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
21270 || TREE_CODE (expression) == SIZEOF_EXPR
21271 || TREE_CODE (expression) == ALIGNOF_EXPR
21272 || TREE_CODE (expression) == AT_ENCODE_EXPR
21273 || TREE_CODE (expression) == NOEXCEPT_EXPR
21274 || TREE_CODE (expression) == TRAIT_EXPR
21275 || TREE_CODE (expression) == TYPEID_EXPR
21276 || TREE_CODE (expression) == DELETE_EXPR
21277 || TREE_CODE (expression) == VEC_DELETE_EXPR
21278 || TREE_CODE (expression) == THROW_EXPR)
21279 return false;
21281 /* The types of these expressions depends only on the type to which
21282 the cast occurs. */
21283 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
21284 || TREE_CODE (expression) == STATIC_CAST_EXPR
21285 || TREE_CODE (expression) == CONST_CAST_EXPR
21286 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
21287 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
21288 || TREE_CODE (expression) == CAST_EXPR)
21289 return dependent_type_p (TREE_TYPE (expression));
21291 /* The types of these expressions depends only on the type created
21292 by the expression. */
21293 if (TREE_CODE (expression) == NEW_EXPR
21294 || TREE_CODE (expression) == VEC_NEW_EXPR)
21296 /* For NEW_EXPR tree nodes created inside a template, either
21297 the object type itself or a TREE_LIST may appear as the
21298 operand 1. */
21299 tree type = TREE_OPERAND (expression, 1);
21300 if (TREE_CODE (type) == TREE_LIST)
21301 /* This is an array type. We need to check array dimensions
21302 as well. */
21303 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
21304 || value_dependent_expression_p
21305 (TREE_OPERAND (TREE_VALUE (type), 1));
21306 else
21307 return dependent_type_p (type);
21310 if (TREE_CODE (expression) == SCOPE_REF)
21312 tree scope = TREE_OPERAND (expression, 0);
21313 tree name = TREE_OPERAND (expression, 1);
21315 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
21316 contains an identifier associated by name lookup with one or more
21317 declarations declared with a dependent type, or...a
21318 nested-name-specifier or qualified-id that names a member of an
21319 unknown specialization. */
21320 return (type_dependent_expression_p (name)
21321 || dependent_scope_p (scope));
21324 if (TREE_CODE (expression) == FUNCTION_DECL
21325 && DECL_LANG_SPECIFIC (expression)
21326 && DECL_TEMPLATE_INFO (expression)
21327 && (any_dependent_template_arguments_p
21328 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
21329 return true;
21331 if (TREE_CODE (expression) == TEMPLATE_DECL
21332 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
21333 return false;
21335 if (TREE_CODE (expression) == STMT_EXPR)
21336 expression = stmt_expr_value_expr (expression);
21338 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
21340 tree elt;
21341 unsigned i;
21343 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
21345 if (type_dependent_expression_p (elt))
21346 return true;
21348 return false;
21351 /* A static data member of the current instantiation with incomplete
21352 array type is type-dependent, as the definition and specializations
21353 can have different bounds. */
21354 if (VAR_P (expression)
21355 && DECL_CLASS_SCOPE_P (expression)
21356 && dependent_type_p (DECL_CONTEXT (expression))
21357 && VAR_HAD_UNKNOWN_BOUND (expression))
21358 return true;
21360 /* An array of unknown bound depending on a variadic parameter, eg:
21362 template<typename... Args>
21363 void foo (Args... args)
21365 int arr[] = { args... };
21368 template<int... vals>
21369 void bar ()
21371 int arr[] = { vals... };
21374 If the array has no length and has an initializer, it must be that
21375 we couldn't determine its length in cp_complete_array_type because
21376 it is dependent. */
21377 if (VAR_P (expression)
21378 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
21379 && !TYPE_DOMAIN (TREE_TYPE (expression))
21380 && DECL_INITIAL (expression))
21381 return true;
21383 if (TREE_TYPE (expression) == unknown_type_node)
21385 if (TREE_CODE (expression) == ADDR_EXPR)
21386 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
21387 if (TREE_CODE (expression) == COMPONENT_REF
21388 || TREE_CODE (expression) == OFFSET_REF)
21390 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
21391 return true;
21392 expression = TREE_OPERAND (expression, 1);
21393 if (identifier_p (expression))
21394 return false;
21396 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
21397 if (TREE_CODE (expression) == SCOPE_REF)
21398 return false;
21400 /* Always dependent, on the number of arguments if nothing else. */
21401 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
21402 return true;
21404 if (BASELINK_P (expression))
21406 if (BASELINK_OPTYPE (expression)
21407 && dependent_type_p (BASELINK_OPTYPE (expression)))
21408 return true;
21409 expression = BASELINK_FUNCTIONS (expression);
21412 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
21414 if (any_dependent_template_arguments_p
21415 (TREE_OPERAND (expression, 1)))
21416 return true;
21417 expression = TREE_OPERAND (expression, 0);
21419 gcc_assert (TREE_CODE (expression) == OVERLOAD
21420 || TREE_CODE (expression) == FUNCTION_DECL);
21422 while (expression)
21424 if (type_dependent_expression_p (OVL_CURRENT (expression)))
21425 return true;
21426 expression = OVL_NEXT (expression);
21428 return false;
21431 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
21433 return (dependent_type_p (TREE_TYPE (expression)));
21436 /* walk_tree callback function for instantiation_dependent_expression_p,
21437 below. Returns non-zero if a dependent subexpression is found. */
21439 static tree
21440 instantiation_dependent_r (tree *tp, int *walk_subtrees,
21441 void * /*data*/)
21443 if (TYPE_P (*tp))
21445 /* We don't have to worry about decltype currently because decltype
21446 of an instantiation-dependent expr is a dependent type. This
21447 might change depending on the resolution of DR 1172. */
21448 *walk_subtrees = false;
21449 return NULL_TREE;
21451 enum tree_code code = TREE_CODE (*tp);
21452 switch (code)
21454 /* Don't treat an argument list as dependent just because it has no
21455 TREE_TYPE. */
21456 case TREE_LIST:
21457 case TREE_VEC:
21458 return NULL_TREE;
21460 case VAR_DECL:
21461 case CONST_DECL:
21462 /* A constant with a dependent initializer is dependent. */
21463 if (value_dependent_expression_p (*tp))
21464 return *tp;
21465 break;
21467 case TEMPLATE_PARM_INDEX:
21468 return *tp;
21470 /* Handle expressions with type operands. */
21471 case SIZEOF_EXPR:
21472 case ALIGNOF_EXPR:
21473 case TYPEID_EXPR:
21474 case AT_ENCODE_EXPR:
21476 tree op = TREE_OPERAND (*tp, 0);
21477 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
21478 op = TREE_TYPE (op);
21479 if (TYPE_P (op))
21481 if (dependent_type_p (op))
21482 return *tp;
21483 else
21485 *walk_subtrees = false;
21486 return NULL_TREE;
21489 break;
21492 case TRAIT_EXPR:
21493 if (dependent_type_p (TRAIT_EXPR_TYPE1 (*tp))
21494 || (TRAIT_EXPR_TYPE2 (*tp)
21495 && dependent_type_p (TRAIT_EXPR_TYPE2 (*tp))))
21496 return *tp;
21497 *walk_subtrees = false;
21498 return NULL_TREE;
21500 case COMPONENT_REF:
21501 if (identifier_p (TREE_OPERAND (*tp, 1)))
21502 /* In a template, finish_class_member_access_expr creates a
21503 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
21504 type-dependent, so that we can check access control at
21505 instantiation time (PR 42277). See also Core issue 1273. */
21506 return *tp;
21507 break;
21509 case SCOPE_REF:
21510 if (instantiation_dependent_scope_ref_p (*tp))
21511 return *tp;
21512 else
21513 break;
21515 /* Treat statement-expressions as dependent. */
21516 case BIND_EXPR:
21517 return *tp;
21519 default:
21520 break;
21523 if (type_dependent_expression_p (*tp))
21524 return *tp;
21525 else
21526 return NULL_TREE;
21529 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
21530 sense defined by the ABI:
21532 "An expression is instantiation-dependent if it is type-dependent
21533 or value-dependent, or it has a subexpression that is type-dependent
21534 or value-dependent." */
21536 bool
21537 instantiation_dependent_expression_p (tree expression)
21539 tree result;
21541 if (!processing_template_decl)
21542 return false;
21544 if (expression == error_mark_node)
21545 return false;
21547 result = cp_walk_tree_without_duplicates (&expression,
21548 instantiation_dependent_r, NULL);
21549 return result != NULL_TREE;
21552 /* Like type_dependent_expression_p, but it also works while not processing
21553 a template definition, i.e. during substitution or mangling. */
21555 bool
21556 type_dependent_expression_p_push (tree expr)
21558 bool b;
21559 ++processing_template_decl;
21560 b = type_dependent_expression_p (expr);
21561 --processing_template_decl;
21562 return b;
21565 /* Returns TRUE if ARGS contains a type-dependent expression. */
21567 bool
21568 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
21570 unsigned int i;
21571 tree arg;
21573 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
21575 if (type_dependent_expression_p (arg))
21576 return true;
21578 return false;
21581 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21582 expressions) contains any type-dependent expressions. */
21584 bool
21585 any_type_dependent_elements_p (const_tree list)
21587 for (; list; list = TREE_CHAIN (list))
21588 if (type_dependent_expression_p (TREE_VALUE (list)))
21589 return true;
21591 return false;
21594 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21595 expressions) contains any value-dependent expressions. */
21597 bool
21598 any_value_dependent_elements_p (const_tree list)
21600 for (; list; list = TREE_CHAIN (list))
21601 if (value_dependent_expression_p (TREE_VALUE (list)))
21602 return true;
21604 return false;
21607 /* Returns TRUE if the ARG (a template argument) is dependent. */
21609 bool
21610 dependent_template_arg_p (tree arg)
21612 if (!processing_template_decl)
21613 return false;
21615 /* Assume a template argument that was wrongly written by the user
21616 is dependent. This is consistent with what
21617 any_dependent_template_arguments_p [that calls this function]
21618 does. */
21619 if (!arg || arg == error_mark_node)
21620 return true;
21622 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
21623 arg = ARGUMENT_PACK_SELECT_ARG (arg);
21625 if (TREE_CODE (arg) == TEMPLATE_DECL
21626 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
21627 return dependent_template_p (arg);
21628 else if (ARGUMENT_PACK_P (arg))
21630 tree args = ARGUMENT_PACK_ARGS (arg);
21631 int i, len = TREE_VEC_LENGTH (args);
21632 for (i = 0; i < len; ++i)
21634 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21635 return true;
21638 return false;
21640 else if (TYPE_P (arg))
21641 return dependent_type_p (arg);
21642 else
21643 return (type_dependent_expression_p (arg)
21644 || value_dependent_expression_p (arg));
21647 /* Returns true if ARGS (a collection of template arguments) contains
21648 any types that require structural equality testing. */
21650 bool
21651 any_template_arguments_need_structural_equality_p (tree args)
21653 int i;
21654 int j;
21656 if (!args)
21657 return false;
21658 if (args == error_mark_node)
21659 return true;
21661 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21663 tree level = TMPL_ARGS_LEVEL (args, i + 1);
21664 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21666 tree arg = TREE_VEC_ELT (level, j);
21667 tree packed_args = NULL_TREE;
21668 int k, len = 1;
21670 if (ARGUMENT_PACK_P (arg))
21672 /* Look inside the argument pack. */
21673 packed_args = ARGUMENT_PACK_ARGS (arg);
21674 len = TREE_VEC_LENGTH (packed_args);
21677 for (k = 0; k < len; ++k)
21679 if (packed_args)
21680 arg = TREE_VEC_ELT (packed_args, k);
21682 if (error_operand_p (arg))
21683 return true;
21684 else if (TREE_CODE (arg) == TEMPLATE_DECL)
21685 continue;
21686 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
21687 return true;
21688 else if (!TYPE_P (arg) && TREE_TYPE (arg)
21689 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
21690 return true;
21695 return false;
21698 /* Returns true if ARGS (a collection of template arguments) contains
21699 any dependent arguments. */
21701 bool
21702 any_dependent_template_arguments_p (const_tree args)
21704 int i;
21705 int j;
21707 if (!args)
21708 return false;
21709 if (args == error_mark_node)
21710 return true;
21712 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21714 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
21715 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21716 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
21717 return true;
21720 return false;
21723 /* Returns TRUE if the template TMPL is dependent. */
21725 bool
21726 dependent_template_p (tree tmpl)
21728 if (TREE_CODE (tmpl) == OVERLOAD)
21730 while (tmpl)
21732 if (dependent_template_p (OVL_CURRENT (tmpl)))
21733 return true;
21734 tmpl = OVL_NEXT (tmpl);
21736 return false;
21739 /* Template template parameters are dependent. */
21740 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
21741 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
21742 return true;
21743 /* So are names that have not been looked up. */
21744 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
21745 return true;
21746 /* So are member templates of dependent classes. */
21747 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
21748 return dependent_type_p (DECL_CONTEXT (tmpl));
21749 return false;
21752 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
21754 bool
21755 dependent_template_id_p (tree tmpl, tree args)
21757 return (dependent_template_p (tmpl)
21758 || any_dependent_template_arguments_p (args));
21761 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
21762 is dependent. */
21764 bool
21765 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
21767 int i;
21769 if (!processing_template_decl)
21770 return false;
21772 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
21774 tree decl = TREE_VEC_ELT (declv, i);
21775 tree init = TREE_VEC_ELT (initv, i);
21776 tree cond = TREE_VEC_ELT (condv, i);
21777 tree incr = TREE_VEC_ELT (incrv, i);
21779 if (type_dependent_expression_p (decl))
21780 return true;
21782 if (init && type_dependent_expression_p (init))
21783 return true;
21785 if (type_dependent_expression_p (cond))
21786 return true;
21788 if (COMPARISON_CLASS_P (cond)
21789 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
21790 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
21791 return true;
21793 if (TREE_CODE (incr) == MODOP_EXPR)
21795 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
21796 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
21797 return true;
21799 else if (type_dependent_expression_p (incr))
21800 return true;
21801 else if (TREE_CODE (incr) == MODIFY_EXPR)
21803 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
21804 return true;
21805 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
21807 tree t = TREE_OPERAND (incr, 1);
21808 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
21809 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
21810 return true;
21815 return false;
21818 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
21819 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
21820 no such TYPE can be found. Note that this function peers inside
21821 uninstantiated templates and therefore should be used only in
21822 extremely limited situations. ONLY_CURRENT_P restricts this
21823 peering to the currently open classes hierarchy (which is required
21824 when comparing types). */
21826 tree
21827 resolve_typename_type (tree type, bool only_current_p)
21829 tree scope;
21830 tree name;
21831 tree decl;
21832 int quals;
21833 tree pushed_scope;
21834 tree result;
21836 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
21838 scope = TYPE_CONTEXT (type);
21839 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
21840 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
21841 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
21842 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
21843 identifier of the TYPENAME_TYPE anymore.
21844 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
21845 TYPENAME_TYPE instead, we avoid messing up with a possible
21846 typedef variant case. */
21847 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
21849 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
21850 it first before we can figure out what NAME refers to. */
21851 if (TREE_CODE (scope) == TYPENAME_TYPE)
21853 if (TYPENAME_IS_RESOLVING_P (scope))
21854 /* Given a class template A with a dependent base with nested type C,
21855 typedef typename A::C::C C will land us here, as trying to resolve
21856 the initial A::C leads to the local C typedef, which leads back to
21857 A::C::C. So we break the recursion now. */
21858 return type;
21859 else
21860 scope = resolve_typename_type (scope, only_current_p);
21862 /* If we don't know what SCOPE refers to, then we cannot resolve the
21863 TYPENAME_TYPE. */
21864 if (TREE_CODE (scope) == TYPENAME_TYPE)
21865 return type;
21866 /* If the SCOPE is a template type parameter, we have no way of
21867 resolving the name. */
21868 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
21869 return type;
21870 /* If the SCOPE is not the current instantiation, there's no reason
21871 to look inside it. */
21872 if (only_current_p && !currently_open_class (scope))
21873 return type;
21874 /* If this is a typedef, we don't want to look inside (c++/11987). */
21875 if (typedef_variant_p (type))
21876 return type;
21877 /* If SCOPE isn't the template itself, it will not have a valid
21878 TYPE_FIELDS list. */
21879 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
21880 /* scope is either the template itself or a compatible instantiation
21881 like X<T>, so look up the name in the original template. */
21882 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
21883 else
21884 /* scope is a partial instantiation, so we can't do the lookup or we
21885 will lose the template arguments. */
21886 return type;
21887 /* Enter the SCOPE so that name lookup will be resolved as if we
21888 were in the class definition. In particular, SCOPE will no
21889 longer be considered a dependent type. */
21890 pushed_scope = push_scope (scope);
21891 /* Look up the declaration. */
21892 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
21893 tf_warning_or_error);
21895 result = NULL_TREE;
21897 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
21898 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
21899 if (!decl)
21900 /*nop*/;
21901 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
21902 && TREE_CODE (decl) == TYPE_DECL)
21904 result = TREE_TYPE (decl);
21905 if (result == error_mark_node)
21906 result = NULL_TREE;
21908 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
21909 && DECL_CLASS_TEMPLATE_P (decl))
21911 tree tmpl;
21912 tree args;
21913 /* Obtain the template and the arguments. */
21914 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
21915 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
21916 /* Instantiate the template. */
21917 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
21918 /*entering_scope=*/0,
21919 tf_error | tf_user);
21920 if (result == error_mark_node)
21921 result = NULL_TREE;
21924 /* Leave the SCOPE. */
21925 if (pushed_scope)
21926 pop_scope (pushed_scope);
21928 /* If we failed to resolve it, return the original typename. */
21929 if (!result)
21930 return type;
21932 /* If lookup found a typename type, resolve that too. */
21933 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
21935 /* Ill-formed programs can cause infinite recursion here, so we
21936 must catch that. */
21937 TYPENAME_IS_RESOLVING_P (type) = 1;
21938 result = resolve_typename_type (result, only_current_p);
21939 TYPENAME_IS_RESOLVING_P (type) = 0;
21942 /* Qualify the resulting type. */
21943 quals = cp_type_quals (type);
21944 if (quals)
21945 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
21947 return result;
21950 /* EXPR is an expression which is not type-dependent. Return a proxy
21951 for EXPR that can be used to compute the types of larger
21952 expressions containing EXPR. */
21954 tree
21955 build_non_dependent_expr (tree expr)
21957 tree inner_expr;
21959 #ifdef ENABLE_CHECKING
21960 /* Try to get a constant value for all non-dependent expressions in
21961 order to expose bugs in *_dependent_expression_p and constexpr. */
21962 if (cxx_dialect >= cxx11)
21963 fold_non_dependent_expr (expr);
21964 #endif
21966 /* Preserve OVERLOADs; the functions must be available to resolve
21967 types. */
21968 inner_expr = expr;
21969 if (TREE_CODE (inner_expr) == STMT_EXPR)
21970 inner_expr = stmt_expr_value_expr (inner_expr);
21971 if (TREE_CODE (inner_expr) == ADDR_EXPR)
21972 inner_expr = TREE_OPERAND (inner_expr, 0);
21973 if (TREE_CODE (inner_expr) == COMPONENT_REF)
21974 inner_expr = TREE_OPERAND (inner_expr, 1);
21975 if (is_overloaded_fn (inner_expr)
21976 || TREE_CODE (inner_expr) == OFFSET_REF)
21977 return expr;
21978 /* There is no need to return a proxy for a variable. */
21979 if (VAR_P (expr))
21980 return expr;
21981 /* Preserve string constants; conversions from string constants to
21982 "char *" are allowed, even though normally a "const char *"
21983 cannot be used to initialize a "char *". */
21984 if (TREE_CODE (expr) == STRING_CST)
21985 return expr;
21986 /* Preserve void and arithmetic constants, as an optimization -- there is no
21987 reason to create a new node. */
21988 if (TREE_CODE (expr) == VOID_CST
21989 || TREE_CODE (expr) == INTEGER_CST
21990 || TREE_CODE (expr) == REAL_CST)
21991 return expr;
21992 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
21993 There is at least one place where we want to know that a
21994 particular expression is a throw-expression: when checking a ?:
21995 expression, there are special rules if the second or third
21996 argument is a throw-expression. */
21997 if (TREE_CODE (expr) == THROW_EXPR)
21998 return expr;
22000 /* Don't wrap an initializer list, we need to be able to look inside. */
22001 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
22002 return expr;
22004 /* Don't wrap a dummy object, we need to be able to test for it. */
22005 if (is_dummy_object (expr))
22006 return expr;
22008 if (TREE_CODE (expr) == COND_EXPR)
22009 return build3 (COND_EXPR,
22010 TREE_TYPE (expr),
22011 TREE_OPERAND (expr, 0),
22012 (TREE_OPERAND (expr, 1)
22013 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
22014 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
22015 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
22016 if (TREE_CODE (expr) == COMPOUND_EXPR
22017 && !COMPOUND_EXPR_OVERLOADED (expr))
22018 return build2 (COMPOUND_EXPR,
22019 TREE_TYPE (expr),
22020 TREE_OPERAND (expr, 0),
22021 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
22023 /* If the type is unknown, it can't really be non-dependent */
22024 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
22026 /* Otherwise, build a NON_DEPENDENT_EXPR. */
22027 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
22030 /* ARGS is a vector of expressions as arguments to a function call.
22031 Replace the arguments with equivalent non-dependent expressions.
22032 This modifies ARGS in place. */
22034 void
22035 make_args_non_dependent (vec<tree, va_gc> *args)
22037 unsigned int ix;
22038 tree arg;
22040 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
22042 tree newarg = build_non_dependent_expr (arg);
22043 if (newarg != arg)
22044 (*args)[ix] = newarg;
22048 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
22049 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
22050 parms. */
22052 static tree
22053 make_auto_1 (tree name)
22055 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
22056 TYPE_NAME (au) = build_decl (input_location,
22057 TYPE_DECL, name, au);
22058 TYPE_STUB_DECL (au) = TYPE_NAME (au);
22059 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
22060 (0, processing_template_decl + 1, processing_template_decl + 1,
22061 TYPE_NAME (au), NULL_TREE);
22062 TYPE_CANONICAL (au) = canonical_type_parameter (au);
22063 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
22064 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
22066 return au;
22069 tree
22070 make_decltype_auto (void)
22072 return make_auto_1 (get_identifier ("decltype(auto)"));
22075 tree
22076 make_auto (void)
22078 return make_auto_1 (get_identifier ("auto"));
22081 /* Given type ARG, return std::initializer_list<ARG>. */
22083 static tree
22084 listify (tree arg)
22086 tree std_init_list = namespace_binding
22087 (get_identifier ("initializer_list"), std_node);
22088 tree argvec;
22089 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
22091 error ("deducing from brace-enclosed initializer list requires "
22092 "#include <initializer_list>");
22093 return error_mark_node;
22095 argvec = make_tree_vec (1);
22096 TREE_VEC_ELT (argvec, 0) = arg;
22097 return lookup_template_class (std_init_list, argvec, NULL_TREE,
22098 NULL_TREE, 0, tf_warning_or_error);
22101 /* Replace auto in TYPE with std::initializer_list<auto>. */
22103 static tree
22104 listify_autos (tree type, tree auto_node)
22106 tree init_auto = listify (auto_node);
22107 tree argvec = make_tree_vec (1);
22108 TREE_VEC_ELT (argvec, 0) = init_auto;
22109 if (processing_template_decl)
22110 argvec = add_to_template_args (current_template_args (), argvec);
22111 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22114 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
22115 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
22117 tree
22118 do_auto_deduction (tree type, tree init, tree auto_node)
22120 tree targs;
22122 if (init == error_mark_node)
22123 return error_mark_node;
22125 if (type_dependent_expression_p (init))
22126 /* Defining a subset of type-dependent expressions that we can deduce
22127 from ahead of time isn't worth the trouble. */
22128 return type;
22130 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
22131 with either a new invented type template parameter U or, if the
22132 initializer is a braced-init-list (8.5.4), with
22133 std::initializer_list<U>. */
22134 if (BRACE_ENCLOSED_INITIALIZER_P (init))
22135 type = listify_autos (type, auto_node);
22137 init = resolve_nondeduced_context (init);
22139 targs = make_tree_vec (1);
22140 if (AUTO_IS_DECLTYPE (auto_node))
22142 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
22143 && !REF_PARENTHESIZED_P (init)));
22144 TREE_VEC_ELT (targs, 0)
22145 = finish_decltype_type (init, id, tf_warning_or_error);
22146 if (type != auto_node)
22148 error ("%qT as type rather than plain %<decltype(auto)%>", type);
22149 return error_mark_node;
22152 else
22154 tree parms = build_tree_list (NULL_TREE, type);
22155 tree tparms = make_tree_vec (1);
22156 int val;
22158 TREE_VEC_ELT (tparms, 0)
22159 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
22160 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
22161 DEDUCE_CALL, LOOKUP_NORMAL,
22162 NULL, /*explain_p=*/false);
22163 if (val > 0)
22165 if (processing_template_decl)
22166 /* Try again at instantiation time. */
22167 return type;
22168 if (type && type != error_mark_node)
22169 /* If type is error_mark_node a diagnostic must have been
22170 emitted by now. Also, having a mention to '<type error>'
22171 in the diagnostic is not really useful to the user. */
22173 if (cfun && auto_node == current_function_auto_return_pattern
22174 && LAMBDA_FUNCTION_P (current_function_decl))
22175 error ("unable to deduce lambda return type from %qE", init);
22176 else
22177 error ("unable to deduce %qT from %qE", type, init);
22179 return error_mark_node;
22183 /* If the list of declarators contains more than one declarator, the type
22184 of each declared variable is determined as described above. If the
22185 type deduced for the template parameter U is not the same in each
22186 deduction, the program is ill-formed. */
22187 if (TREE_TYPE (auto_node)
22188 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
22190 if (cfun && auto_node == current_function_auto_return_pattern
22191 && LAMBDA_FUNCTION_P (current_function_decl))
22192 error ("inconsistent types %qT and %qT deduced for "
22193 "lambda return type", TREE_TYPE (auto_node),
22194 TREE_VEC_ELT (targs, 0));
22195 else
22196 error ("inconsistent deduction for %qT: %qT and then %qT",
22197 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
22198 return error_mark_node;
22200 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
22202 if (processing_template_decl)
22203 targs = add_to_template_args (current_template_args (), targs);
22204 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
22207 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
22208 result. */
22210 tree
22211 splice_late_return_type (tree type, tree late_return_type)
22213 tree argvec;
22215 if (late_return_type == NULL_TREE)
22216 return type;
22217 argvec = make_tree_vec (1);
22218 TREE_VEC_ELT (argvec, 0) = late_return_type;
22219 if (processing_template_parmlist)
22220 /* For a late-specified return type in a template type-parameter, we
22221 need to add a dummy argument level for its parmlist. */
22222 argvec = add_to_template_args
22223 (make_tree_vec (processing_template_parmlist), argvec);
22224 if (current_template_parms)
22225 argvec = add_to_template_args (current_template_args (), argvec);
22226 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22229 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
22230 'decltype(auto)'. */
22232 bool
22233 is_auto (const_tree type)
22235 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22236 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
22237 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
22238 return true;
22239 else
22240 return false;
22243 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
22244 a use of `auto'. Returns NULL_TREE otherwise. */
22246 tree
22247 type_uses_auto (tree type)
22249 return find_type_usage (type, is_auto);
22252 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
22253 'decltype(auto)' or a concept. */
22255 bool
22256 is_auto_or_concept (const_tree type)
22258 return is_auto (type); // or concept
22261 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
22262 a concept identifier) iff TYPE contains a use of a generic type. Returns
22263 NULL_TREE otherwise. */
22265 tree
22266 type_uses_auto_or_concept (tree type)
22268 return find_type_usage (type, is_auto_or_concept);
22272 /* For a given template T, return the vector of typedefs referenced
22273 in T for which access check is needed at T instantiation time.
22274 T is either a FUNCTION_DECL or a RECORD_TYPE.
22275 Those typedefs were added to T by the function
22276 append_type_to_template_for_access_check. */
22278 vec<qualified_typedef_usage_t, va_gc> *
22279 get_types_needing_access_check (tree t)
22281 tree ti;
22282 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
22284 if (!t || t == error_mark_node)
22285 return NULL;
22287 if (!(ti = get_template_info (t)))
22288 return NULL;
22290 if (CLASS_TYPE_P (t)
22291 || TREE_CODE (t) == FUNCTION_DECL)
22293 if (!TI_TEMPLATE (ti))
22294 return NULL;
22296 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
22299 return result;
22302 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
22303 tied to T. That list of typedefs will be access checked at
22304 T instantiation time.
22305 T is either a FUNCTION_DECL or a RECORD_TYPE.
22306 TYPE_DECL is a TYPE_DECL node representing a typedef.
22307 SCOPE is the scope through which TYPE_DECL is accessed.
22308 LOCATION is the location of the usage point of TYPE_DECL.
22310 This function is a subroutine of
22311 append_type_to_template_for_access_check. */
22313 static void
22314 append_type_to_template_for_access_check_1 (tree t,
22315 tree type_decl,
22316 tree scope,
22317 location_t location)
22319 qualified_typedef_usage_t typedef_usage;
22320 tree ti;
22322 if (!t || t == error_mark_node)
22323 return;
22325 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
22326 || CLASS_TYPE_P (t))
22327 && type_decl
22328 && TREE_CODE (type_decl) == TYPE_DECL
22329 && scope);
22331 if (!(ti = get_template_info (t)))
22332 return;
22334 gcc_assert (TI_TEMPLATE (ti));
22336 typedef_usage.typedef_decl = type_decl;
22337 typedef_usage.context = scope;
22338 typedef_usage.locus = location;
22340 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
22343 /* Append TYPE_DECL to the template TEMPL.
22344 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
22345 At TEMPL instanciation time, TYPE_DECL will be checked to see
22346 if it can be accessed through SCOPE.
22347 LOCATION is the location of the usage point of TYPE_DECL.
22349 e.g. consider the following code snippet:
22351 class C
22353 typedef int myint;
22356 template<class U> struct S
22358 C::myint mi; // <-- usage point of the typedef C::myint
22361 S<char> s;
22363 At S<char> instantiation time, we need to check the access of C::myint
22364 In other words, we need to check the access of the myint typedef through
22365 the C scope. For that purpose, this function will add the myint typedef
22366 and the scope C through which its being accessed to a list of typedefs
22367 tied to the template S. That list will be walked at template instantiation
22368 time and access check performed on each typedefs it contains.
22369 Note that this particular code snippet should yield an error because
22370 myint is private to C. */
22372 void
22373 append_type_to_template_for_access_check (tree templ,
22374 tree type_decl,
22375 tree scope,
22376 location_t location)
22378 qualified_typedef_usage_t *iter;
22379 unsigned i;
22381 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
22383 /* Make sure we don't append the type to the template twice. */
22384 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
22385 if (iter->typedef_decl == type_decl && scope == iter->context)
22386 return;
22388 append_type_to_template_for_access_check_1 (templ, type_decl,
22389 scope, location);
22392 /* Convert the generic type parameters in PARM that match the types given in the
22393 range [START_IDX, END_IDX) from the current_template_parms into generic type
22394 packs. */
22396 tree
22397 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
22399 tree current = current_template_parms;
22400 int depth = TMPL_PARMS_DEPTH (current);
22401 current = INNERMOST_TEMPLATE_PARMS (current);
22402 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
22404 for (int i = 0; i < start_idx; ++i)
22405 TREE_VEC_ELT (replacement, i)
22406 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22408 for (int i = start_idx; i < end_idx; ++i)
22410 /* Create a distinct parameter pack type from the current parm and add it
22411 to the replacement args to tsubst below into the generic function
22412 parameter. */
22414 tree o = TREE_TYPE (TREE_VALUE
22415 (TREE_VEC_ELT (current, i)));
22416 tree t = copy_type (o);
22417 TEMPLATE_TYPE_PARM_INDEX (t)
22418 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
22419 o, 0, 0, tf_none);
22420 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
22421 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
22422 TYPE_MAIN_VARIANT (t) = t;
22423 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
22424 TYPE_CANONICAL (t) = canonical_type_parameter (t);
22425 TREE_VEC_ELT (replacement, i) = t;
22426 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
22429 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
22430 TREE_VEC_ELT (replacement, i)
22431 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22433 /* If there are more levels then build up the replacement with the outer
22434 template parms. */
22435 if (depth > 1)
22436 replacement = add_to_template_args (template_parms_to_args
22437 (TREE_CHAIN (current_template_parms)),
22438 replacement);
22440 return tsubst (parm, replacement, tf_none, NULL_TREE);
22444 /* Set up the hash tables for template instantiations. */
22446 void
22447 init_template_processing (void)
22449 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
22450 type_specializations = hash_table<spec_hasher>::create_ggc (37);
22453 /* Print stats about the template hash tables for -fstats. */
22455 void
22456 print_template_statistics (void)
22458 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
22459 "%f collisions\n", (long) decl_specializations->size (),
22460 (long) decl_specializations->elements (),
22461 decl_specializations->collisions ());
22462 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
22463 "%f collisions\n", (long) type_specializations->size (),
22464 (long) type_specializations->elements (),
22465 type_specializations->collisions ());
22468 #include "gt-cp-pt.h"