real.h (HONOR_SNANS, [...]): Replace macros with 3 overloaded declarations.
[official-gcc.git] / gcc / cp / pt.c
blobd8a9c5b1b32b32b9c9276aa33cbe68546b02c1e0
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 (r != error_mark_node)
12245 /* Will this ever be needed for TYPE_..._TO values? */
12246 layout_type (r);
12248 return r;
12250 case OFFSET_TYPE:
12252 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
12253 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
12255 /* [temp.deduct]
12257 Type deduction may fail for any of the following
12258 reasons:
12260 -- Attempting to create "pointer to member of T" when T
12261 is not a class type. */
12262 if (complain & tf_error)
12263 error ("creating pointer to member of non-class type %qT", r);
12264 return error_mark_node;
12266 if (TREE_CODE (type) == REFERENCE_TYPE)
12268 if (complain & tf_error)
12269 error ("creating pointer to member reference type %qT", type);
12270 return error_mark_node;
12272 if (VOID_TYPE_P (type))
12274 if (complain & tf_error)
12275 error ("creating pointer to member of type void");
12276 return error_mark_node;
12278 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
12279 if (TREE_CODE (type) == FUNCTION_TYPE)
12281 /* The type of the implicit object parameter gets its
12282 cv-qualifiers from the FUNCTION_TYPE. */
12283 tree memptr;
12284 tree method_type
12285 = build_memfn_type (type, r, type_memfn_quals (type),
12286 type_memfn_rqual (type));
12287 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
12288 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
12289 complain);
12291 else
12292 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
12293 cp_type_quals (t),
12294 complain);
12296 case FUNCTION_TYPE:
12297 case METHOD_TYPE:
12299 tree fntype;
12300 tree specs;
12301 fntype = tsubst_function_type (t, args, complain, in_decl);
12302 if (fntype == error_mark_node)
12303 return error_mark_node;
12305 /* Substitute the exception specification. */
12306 specs = tsubst_exception_specification (t, args, complain,
12307 in_decl, /*defer_ok*/true);
12308 if (specs == error_mark_node)
12309 return error_mark_node;
12310 if (specs)
12311 fntype = build_exception_variant (fntype, specs);
12312 return fntype;
12314 case ARRAY_TYPE:
12316 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
12317 if (domain == error_mark_node)
12318 return error_mark_node;
12320 /* As an optimization, we avoid regenerating the array type if
12321 it will obviously be the same as T. */
12322 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
12323 return t;
12325 /* These checks should match the ones in create_array_type_for_decl.
12327 [temp.deduct]
12329 The deduction may fail for any of the following reasons:
12331 -- Attempting to create an array with an element type that
12332 is void, a function type, or a reference type, or [DR337]
12333 an abstract class type. */
12334 if (VOID_TYPE_P (type)
12335 || TREE_CODE (type) == FUNCTION_TYPE
12336 || (TREE_CODE (type) == ARRAY_TYPE
12337 && TYPE_DOMAIN (type) == NULL_TREE)
12338 || TREE_CODE (type) == REFERENCE_TYPE)
12340 if (complain & tf_error)
12341 error ("creating array of %qT", type);
12342 return error_mark_node;
12345 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
12346 return error_mark_node;
12348 r = build_cplus_array_type (type, domain);
12350 if (TYPE_USER_ALIGN (t))
12352 TYPE_ALIGN (r) = TYPE_ALIGN (t);
12353 TYPE_USER_ALIGN (r) = 1;
12356 return r;
12359 case TYPENAME_TYPE:
12361 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12362 in_decl, /*entering_scope=*/1);
12363 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
12364 complain, in_decl);
12366 if (ctx == error_mark_node || f == error_mark_node)
12367 return error_mark_node;
12369 if (!MAYBE_CLASS_TYPE_P (ctx))
12371 if (complain & tf_error)
12372 error ("%qT is not a class, struct, or union type", ctx);
12373 return error_mark_node;
12375 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
12377 /* Normally, make_typename_type does not require that the CTX
12378 have complete type in order to allow things like:
12380 template <class T> struct S { typename S<T>::X Y; };
12382 But, such constructs have already been resolved by this
12383 point, so here CTX really should have complete type, unless
12384 it's a partial instantiation. */
12385 ctx = complete_type (ctx);
12386 if (!COMPLETE_TYPE_P (ctx))
12388 if (complain & tf_error)
12389 cxx_incomplete_type_error (NULL_TREE, ctx);
12390 return error_mark_node;
12394 f = make_typename_type (ctx, f, typename_type,
12395 complain | tf_keep_type_decl);
12396 if (f == error_mark_node)
12397 return f;
12398 if (TREE_CODE (f) == TYPE_DECL)
12400 complain |= tf_ignore_bad_quals;
12401 f = TREE_TYPE (f);
12404 if (TREE_CODE (f) != TYPENAME_TYPE)
12406 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
12408 if (complain & tf_error)
12409 error ("%qT resolves to %qT, which is not an enumeration type",
12410 t, f);
12411 else
12412 return error_mark_node;
12414 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
12416 if (complain & tf_error)
12417 error ("%qT resolves to %qT, which is is not a class type",
12418 t, f);
12419 else
12420 return error_mark_node;
12424 return cp_build_qualified_type_real
12425 (f, cp_type_quals (f) | cp_type_quals (t), complain);
12428 case UNBOUND_CLASS_TEMPLATE:
12430 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12431 in_decl, /*entering_scope=*/1);
12432 tree name = TYPE_IDENTIFIER (t);
12433 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
12435 if (ctx == error_mark_node || name == error_mark_node)
12436 return error_mark_node;
12438 if (parm_list)
12439 parm_list = tsubst_template_parms (parm_list, args, complain);
12440 return make_unbound_class_template (ctx, name, parm_list, complain);
12443 case TYPEOF_TYPE:
12445 tree type;
12447 ++cp_unevaluated_operand;
12448 ++c_inhibit_evaluation_warnings;
12450 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
12451 complain, in_decl,
12452 /*integral_constant_expression_p=*/false);
12454 --cp_unevaluated_operand;
12455 --c_inhibit_evaluation_warnings;
12457 type = finish_typeof (type);
12458 return cp_build_qualified_type_real (type,
12459 cp_type_quals (t)
12460 | cp_type_quals (type),
12461 complain);
12464 case DECLTYPE_TYPE:
12466 tree type;
12468 ++cp_unevaluated_operand;
12469 ++c_inhibit_evaluation_warnings;
12471 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
12472 complain|tf_decltype, in_decl,
12473 /*function_p*/false,
12474 /*integral_constant_expression*/false);
12476 --cp_unevaluated_operand;
12477 --c_inhibit_evaluation_warnings;
12479 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
12480 type = lambda_capture_field_type (type,
12481 DECLTYPE_FOR_INIT_CAPTURE (t));
12482 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
12483 type = lambda_proxy_type (type);
12484 else
12486 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
12487 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
12488 && EXPR_P (type))
12489 /* In a template ~id could be either a complement expression
12490 or an unqualified-id naming a destructor; if instantiating
12491 it produces an expression, it's not an id-expression or
12492 member access. */
12493 id = false;
12494 type = finish_decltype_type (type, id, complain);
12496 return cp_build_qualified_type_real (type,
12497 cp_type_quals (t)
12498 | cp_type_quals (type),
12499 complain | tf_ignore_bad_quals);
12502 case UNDERLYING_TYPE:
12504 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
12505 complain, in_decl);
12506 return finish_underlying_type (type);
12509 case TYPE_ARGUMENT_PACK:
12510 case NONTYPE_ARGUMENT_PACK:
12512 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
12513 tree packed_out =
12514 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
12515 args,
12516 complain,
12517 in_decl);
12518 SET_ARGUMENT_PACK_ARGS (r, packed_out);
12520 /* For template nontype argument packs, also substitute into
12521 the type. */
12522 if (code == NONTYPE_ARGUMENT_PACK)
12523 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
12525 return r;
12527 break;
12529 case VOID_CST:
12530 case INTEGER_CST:
12531 case REAL_CST:
12532 case STRING_CST:
12533 case PLUS_EXPR:
12534 case MINUS_EXPR:
12535 case NEGATE_EXPR:
12536 case NOP_EXPR:
12537 case INDIRECT_REF:
12538 case ADDR_EXPR:
12539 case CALL_EXPR:
12540 case ARRAY_REF:
12541 case SCOPE_REF:
12542 /* We should use one of the expression tsubsts for these codes. */
12543 gcc_unreachable ();
12545 default:
12546 sorry ("use of %qs in template", get_tree_code_name (code));
12547 return error_mark_node;
12551 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
12552 type of the expression on the left-hand side of the "." or "->"
12553 operator. */
12555 static tree
12556 tsubst_baselink (tree baselink, tree object_type,
12557 tree args, tsubst_flags_t complain, tree in_decl)
12559 tree name;
12560 tree qualifying_scope;
12561 tree fns;
12562 tree optype;
12563 tree template_args = 0;
12564 bool template_id_p = false;
12565 bool qualified = BASELINK_QUALIFIED_P (baselink);
12567 /* A baselink indicates a function from a base class. Both the
12568 BASELINK_ACCESS_BINFO and the base class referenced may
12569 indicate bases of the template class, rather than the
12570 instantiated class. In addition, lookups that were not
12571 ambiguous before may be ambiguous now. Therefore, we perform
12572 the lookup again. */
12573 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
12574 qualifying_scope = tsubst (qualifying_scope, args,
12575 complain, in_decl);
12576 fns = BASELINK_FUNCTIONS (baselink);
12577 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
12578 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
12580 template_id_p = true;
12581 template_args = TREE_OPERAND (fns, 1);
12582 fns = TREE_OPERAND (fns, 0);
12583 if (template_args)
12584 template_args = tsubst_template_args (template_args, args,
12585 complain, in_decl);
12587 name = DECL_NAME (get_first_fn (fns));
12588 if (IDENTIFIER_TYPENAME_P (name))
12589 name = mangle_conv_op_name_for_type (optype);
12590 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
12591 if (!baselink)
12592 return error_mark_node;
12594 /* If lookup found a single function, mark it as used at this
12595 point. (If it lookup found multiple functions the one selected
12596 later by overload resolution will be marked as used at that
12597 point.) */
12598 if (BASELINK_P (baselink))
12599 fns = BASELINK_FUNCTIONS (baselink);
12600 if (!template_id_p && !really_overloaded_fn (fns))
12601 mark_used (OVL_CURRENT (fns));
12603 /* Add back the template arguments, if present. */
12604 if (BASELINK_P (baselink) && template_id_p)
12605 BASELINK_FUNCTIONS (baselink)
12606 = build_nt (TEMPLATE_ID_EXPR,
12607 BASELINK_FUNCTIONS (baselink),
12608 template_args);
12609 /* Update the conversion operator type. */
12610 BASELINK_OPTYPE (baselink) = optype;
12612 if (!object_type)
12613 object_type = current_class_type;
12615 if (qualified)
12616 baselink = adjust_result_of_qualified_name_lookup (baselink,
12617 qualifying_scope,
12618 object_type);
12619 return baselink;
12622 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
12623 true if the qualified-id will be a postfix-expression in-and-of
12624 itself; false if more of the postfix-expression follows the
12625 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
12626 of "&". */
12628 static tree
12629 tsubst_qualified_id (tree qualified_id, tree args,
12630 tsubst_flags_t complain, tree in_decl,
12631 bool done, bool address_p)
12633 tree expr;
12634 tree scope;
12635 tree name;
12636 bool is_template;
12637 tree template_args;
12638 location_t loc = UNKNOWN_LOCATION;
12640 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
12642 /* Figure out what name to look up. */
12643 name = TREE_OPERAND (qualified_id, 1);
12644 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
12646 is_template = true;
12647 loc = EXPR_LOCATION (name);
12648 template_args = TREE_OPERAND (name, 1);
12649 if (template_args)
12650 template_args = tsubst_template_args (template_args, args,
12651 complain, in_decl);
12652 name = TREE_OPERAND (name, 0);
12654 else
12656 is_template = false;
12657 template_args = NULL_TREE;
12660 /* Substitute into the qualifying scope. When there are no ARGS, we
12661 are just trying to simplify a non-dependent expression. In that
12662 case the qualifying scope may be dependent, and, in any case,
12663 substituting will not help. */
12664 scope = TREE_OPERAND (qualified_id, 0);
12665 if (args)
12667 scope = tsubst (scope, args, complain, in_decl);
12668 expr = tsubst_copy (name, args, complain, in_decl);
12670 else
12671 expr = name;
12673 if (dependent_scope_p (scope))
12675 if (is_template)
12676 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
12677 return build_qualified_name (NULL_TREE, scope, expr,
12678 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
12681 if (!BASELINK_P (name) && !DECL_P (expr))
12683 if (TREE_CODE (expr) == BIT_NOT_EXPR)
12685 /* A BIT_NOT_EXPR is used to represent a destructor. */
12686 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
12688 error ("qualifying type %qT does not match destructor name ~%qT",
12689 scope, TREE_OPERAND (expr, 0));
12690 expr = error_mark_node;
12692 else
12693 expr = lookup_qualified_name (scope, complete_dtor_identifier,
12694 /*is_type_p=*/0, false);
12696 else
12697 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12698 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
12699 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
12701 if (complain & tf_error)
12703 error ("dependent-name %qE is parsed as a non-type, but "
12704 "instantiation yields a type", qualified_id);
12705 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
12707 return error_mark_node;
12711 if (DECL_P (expr))
12713 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
12714 scope);
12715 /* Remember that there was a reference to this entity. */
12716 mark_used (expr);
12719 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
12721 if (complain & tf_error)
12722 qualified_name_lookup_error (scope,
12723 TREE_OPERAND (qualified_id, 1),
12724 expr, input_location);
12725 return error_mark_node;
12728 if (is_template)
12729 expr = lookup_template_function (expr, template_args);
12731 if (expr == error_mark_node && complain & tf_error)
12732 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
12733 expr, input_location);
12734 else if (TYPE_P (scope))
12736 expr = (adjust_result_of_qualified_name_lookup
12737 (expr, scope, current_nonlambda_class_type ()));
12738 expr = (finish_qualified_id_expr
12739 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12740 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12741 /*template_arg_p=*/false, complain));
12744 /* Expressions do not generally have reference type. */
12745 if (TREE_CODE (expr) != SCOPE_REF
12746 /* However, if we're about to form a pointer-to-member, we just
12747 want the referenced member referenced. */
12748 && TREE_CODE (expr) != OFFSET_REF)
12749 expr = convert_from_reference (expr);
12751 return expr;
12754 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
12755 initializer, DECL is the substituted VAR_DECL. Other arguments are as
12756 for tsubst. */
12758 static tree
12759 tsubst_init (tree init, tree decl, tree args,
12760 tsubst_flags_t complain, tree in_decl)
12762 if (!init)
12763 return NULL_TREE;
12765 init = tsubst_expr (init, args, complain, in_decl, false);
12767 if (!init)
12769 /* If we had an initializer but it
12770 instantiated to nothing,
12771 value-initialize the object. This will
12772 only occur when the initializer was a
12773 pack expansion where the parameter packs
12774 used in that expansion were of length
12775 zero. */
12776 init = build_value_init (TREE_TYPE (decl),
12777 complain);
12778 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12779 init = get_target_expr_sfinae (init, complain);
12782 return init;
12785 /* Like tsubst, but deals with expressions. This function just replaces
12786 template parms; to finish processing the resultant expression, use
12787 tsubst_copy_and_build or tsubst_expr. */
12789 static tree
12790 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12792 enum tree_code code;
12793 tree r;
12795 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12796 return t;
12798 code = TREE_CODE (t);
12800 switch (code)
12802 case PARM_DECL:
12803 r = retrieve_local_specialization (t);
12805 if (r == NULL_TREE)
12807 /* We get here for a use of 'this' in an NSDMI. */
12808 if (DECL_NAME (t) == this_identifier
12809 && current_function_decl
12810 && DECL_CONSTRUCTOR_P (current_function_decl))
12811 return current_class_ptr;
12813 /* This can happen for a parameter name used later in a function
12814 declaration (such as in a late-specified return type). Just
12815 make a dummy decl, since it's only used for its type. */
12816 gcc_assert (cp_unevaluated_operand != 0);
12817 r = tsubst_decl (t, args, complain);
12818 /* Give it the template pattern as its context; its true context
12819 hasn't been instantiated yet and this is good enough for
12820 mangling. */
12821 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12824 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12825 r = ARGUMENT_PACK_SELECT_ARG (r);
12826 mark_used (r);
12827 return r;
12829 case CONST_DECL:
12831 tree enum_type;
12832 tree v;
12834 if (DECL_TEMPLATE_PARM_P (t))
12835 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12836 /* There is no need to substitute into namespace-scope
12837 enumerators. */
12838 if (DECL_NAMESPACE_SCOPE_P (t))
12839 return t;
12840 /* If ARGS is NULL, then T is known to be non-dependent. */
12841 if (args == NULL_TREE)
12842 return scalar_constant_value (t);
12844 /* Unfortunately, we cannot just call lookup_name here.
12845 Consider:
12847 template <int I> int f() {
12848 enum E { a = I };
12849 struct S { void g() { E e = a; } };
12852 When we instantiate f<7>::S::g(), say, lookup_name is not
12853 clever enough to find f<7>::a. */
12854 enum_type
12855 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12856 /*entering_scope=*/0);
12858 for (v = TYPE_VALUES (enum_type);
12859 v != NULL_TREE;
12860 v = TREE_CHAIN (v))
12861 if (TREE_PURPOSE (v) == DECL_NAME (t))
12862 return TREE_VALUE (v);
12864 /* We didn't find the name. That should never happen; if
12865 name-lookup found it during preliminary parsing, we
12866 should find it again here during instantiation. */
12867 gcc_unreachable ();
12869 return t;
12871 case FIELD_DECL:
12872 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12874 /* Check for a local specialization set up by
12875 tsubst_pack_expansion. */
12876 if (tree r = retrieve_local_specialization (t))
12878 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12879 r = ARGUMENT_PACK_SELECT_ARG (r);
12880 return r;
12883 /* When retrieving a capture pack from a generic lambda, remove the
12884 lambda call op's own template argument list from ARGS. Only the
12885 template arguments active for the closure type should be used to
12886 retrieve the pack specialization. */
12887 if (LAMBDA_FUNCTION_P (current_function_decl)
12888 && (template_class_depth (DECL_CONTEXT (t))
12889 != TMPL_ARGS_DEPTH (args)))
12890 args = strip_innermost_template_args (args, 1);
12892 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
12893 tsubst_decl put in the hash table. */
12894 return retrieve_specialization (t, args, 0);
12897 if (DECL_CONTEXT (t))
12899 tree ctx;
12901 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12902 /*entering_scope=*/1);
12903 if (ctx != DECL_CONTEXT (t))
12905 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12906 if (!r)
12908 if (complain & tf_error)
12909 error ("using invalid field %qD", t);
12910 return error_mark_node;
12912 return r;
12916 return t;
12918 case VAR_DECL:
12919 case FUNCTION_DECL:
12920 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12921 r = tsubst (t, args, complain, in_decl);
12922 else if (local_variable_p (t))
12924 r = retrieve_local_specialization (t);
12925 if (r == NULL_TREE)
12927 /* First try name lookup to find the instantiation. */
12928 r = lookup_name (DECL_NAME (t));
12929 if (r)
12931 /* Make sure that the one we found is the one we want. */
12932 tree ctx = tsubst (DECL_CONTEXT (t), args,
12933 complain, in_decl);
12934 if (ctx != DECL_CONTEXT (r))
12935 r = NULL_TREE;
12938 if (r)
12939 /* OK */;
12940 else
12942 /* This can happen for a variable used in a
12943 late-specified return type of a local lambda, or for a
12944 local static or constant. Building a new VAR_DECL
12945 should be OK in all those cases. */
12946 r = tsubst_decl (t, args, complain);
12947 if (decl_maybe_constant_var_p (r))
12949 /* We can't call cp_finish_decl, so handle the
12950 initializer by hand. */
12951 tree init = tsubst_init (DECL_INITIAL (t), r, args,
12952 complain, in_decl);
12953 if (!processing_template_decl)
12954 init = maybe_constant_init (init);
12955 if (processing_template_decl
12956 ? potential_constant_expression (init)
12957 : reduced_constant_expression_p (init))
12958 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
12959 = TREE_CONSTANT (r) = true;
12960 DECL_INITIAL (r) = init;
12962 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
12963 || decl_constant_var_p (r)
12964 || errorcount || sorrycount);
12965 if (!processing_template_decl)
12967 if (TREE_STATIC (r))
12968 rest_of_decl_compilation (r, toplevel_bindings_p (),
12969 at_eof);
12970 else if (decl_constant_var_p (r))
12971 /* A use of a local constant decays to its value.
12972 FIXME update for core DR 696. */
12973 r = scalar_constant_value (r);
12976 /* Remember this for subsequent uses. */
12977 if (local_specializations)
12978 register_local_specialization (r, t);
12981 else
12982 r = t;
12983 mark_used (r);
12984 return r;
12986 case NAMESPACE_DECL:
12987 return t;
12989 case OVERLOAD:
12990 /* An OVERLOAD will always be a non-dependent overload set; an
12991 overload set from function scope will just be represented with an
12992 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12993 gcc_assert (!uses_template_parms (t));
12994 return t;
12996 case BASELINK:
12997 return tsubst_baselink (t, current_nonlambda_class_type (),
12998 args, complain, in_decl);
13000 case TEMPLATE_DECL:
13001 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13002 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13003 args, complain, in_decl);
13004 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13005 return tsubst (t, args, complain, in_decl);
13006 else if (DECL_CLASS_SCOPE_P (t)
13007 && uses_template_parms (DECL_CONTEXT (t)))
13009 /* Template template argument like the following example need
13010 special treatment:
13012 template <template <class> class TT> struct C {};
13013 template <class T> struct D {
13014 template <class U> struct E {};
13015 C<E> c; // #1
13017 D<int> d; // #2
13019 We are processing the template argument `E' in #1 for
13020 the template instantiation #2. Originally, `E' is a
13021 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13022 have to substitute this with one having context `D<int>'. */
13024 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13025 return lookup_field (context, DECL_NAME(t), 0, false);
13027 else
13028 /* Ordinary template template argument. */
13029 return t;
13031 case CAST_EXPR:
13032 case REINTERPRET_CAST_EXPR:
13033 case CONST_CAST_EXPR:
13034 case STATIC_CAST_EXPR:
13035 case DYNAMIC_CAST_EXPR:
13036 case IMPLICIT_CONV_EXPR:
13037 case CONVERT_EXPR:
13038 case NOP_EXPR:
13040 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13041 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13042 return build1 (code, type, op0);
13045 case SIZEOF_EXPR:
13046 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13049 tree expanded, op = TREE_OPERAND (t, 0);
13050 int len = 0;
13052 if (SIZEOF_EXPR_TYPE_P (t))
13053 op = TREE_TYPE (op);
13055 ++cp_unevaluated_operand;
13056 ++c_inhibit_evaluation_warnings;
13057 /* We only want to compute the number of arguments. */
13058 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13059 --cp_unevaluated_operand;
13060 --c_inhibit_evaluation_warnings;
13062 if (TREE_CODE (expanded) == TREE_VEC)
13063 len = TREE_VEC_LENGTH (expanded);
13065 if (expanded == error_mark_node)
13066 return error_mark_node;
13067 else if (PACK_EXPANSION_P (expanded)
13068 || (TREE_CODE (expanded) == TREE_VEC
13069 && len > 0
13070 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13072 if (TREE_CODE (expanded) == TREE_VEC)
13073 expanded = TREE_VEC_ELT (expanded, len - 1);
13075 if (TYPE_P (expanded))
13076 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13077 complain & tf_error);
13078 else
13079 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13080 complain & tf_error);
13082 else
13083 return build_int_cst (size_type_node, len);
13085 if (SIZEOF_EXPR_TYPE_P (t))
13087 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13088 args, complain, in_decl);
13089 r = build1 (NOP_EXPR, r, error_mark_node);
13090 r = build1 (SIZEOF_EXPR,
13091 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13092 SIZEOF_EXPR_TYPE_P (r) = 1;
13093 return r;
13095 /* Fall through */
13097 case INDIRECT_REF:
13098 case NEGATE_EXPR:
13099 case TRUTH_NOT_EXPR:
13100 case BIT_NOT_EXPR:
13101 case ADDR_EXPR:
13102 case UNARY_PLUS_EXPR: /* Unary + */
13103 case ALIGNOF_EXPR:
13104 case AT_ENCODE_EXPR:
13105 case ARROW_EXPR:
13106 case THROW_EXPR:
13107 case TYPEID_EXPR:
13108 case REALPART_EXPR:
13109 case IMAGPART_EXPR:
13110 case PAREN_EXPR:
13112 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13113 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13114 return build1 (code, type, op0);
13117 case COMPONENT_REF:
13119 tree object;
13120 tree name;
13122 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13123 name = TREE_OPERAND (t, 1);
13124 if (TREE_CODE (name) == BIT_NOT_EXPR)
13126 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13127 complain, in_decl);
13128 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13130 else if (TREE_CODE (name) == SCOPE_REF
13131 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
13133 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
13134 complain, in_decl);
13135 name = TREE_OPERAND (name, 1);
13136 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13137 complain, in_decl);
13138 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13139 name = build_qualified_name (/*type=*/NULL_TREE,
13140 base, name,
13141 /*template_p=*/false);
13143 else if (BASELINK_P (name))
13144 name = tsubst_baselink (name,
13145 non_reference (TREE_TYPE (object)),
13146 args, complain,
13147 in_decl);
13148 else
13149 name = tsubst_copy (name, args, complain, in_decl);
13150 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
13153 case PLUS_EXPR:
13154 case MINUS_EXPR:
13155 case MULT_EXPR:
13156 case TRUNC_DIV_EXPR:
13157 case CEIL_DIV_EXPR:
13158 case FLOOR_DIV_EXPR:
13159 case ROUND_DIV_EXPR:
13160 case EXACT_DIV_EXPR:
13161 case BIT_AND_EXPR:
13162 case BIT_IOR_EXPR:
13163 case BIT_XOR_EXPR:
13164 case TRUNC_MOD_EXPR:
13165 case FLOOR_MOD_EXPR:
13166 case TRUTH_ANDIF_EXPR:
13167 case TRUTH_ORIF_EXPR:
13168 case TRUTH_AND_EXPR:
13169 case TRUTH_OR_EXPR:
13170 case RSHIFT_EXPR:
13171 case LSHIFT_EXPR:
13172 case RROTATE_EXPR:
13173 case LROTATE_EXPR:
13174 case EQ_EXPR:
13175 case NE_EXPR:
13176 case MAX_EXPR:
13177 case MIN_EXPR:
13178 case LE_EXPR:
13179 case GE_EXPR:
13180 case LT_EXPR:
13181 case GT_EXPR:
13182 case COMPOUND_EXPR:
13183 case DOTSTAR_EXPR:
13184 case MEMBER_REF:
13185 case PREDECREMENT_EXPR:
13186 case PREINCREMENT_EXPR:
13187 case POSTDECREMENT_EXPR:
13188 case POSTINCREMENT_EXPR:
13190 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13191 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13192 return build_nt (code, op0, op1);
13195 case SCOPE_REF:
13197 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13198 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13199 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
13200 QUALIFIED_NAME_IS_TEMPLATE (t));
13203 case ARRAY_REF:
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 (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
13210 case CALL_EXPR:
13212 int n = VL_EXP_OPERAND_LENGTH (t);
13213 tree result = build_vl_exp (CALL_EXPR, n);
13214 int i;
13215 for (i = 0; i < n; i++)
13216 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
13217 complain, in_decl);
13218 return result;
13221 case COND_EXPR:
13222 case MODOP_EXPR:
13223 case PSEUDO_DTOR_EXPR:
13224 case VEC_PERM_EXPR:
13226 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13227 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13228 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13229 r = build_nt (code, op0, op1, op2);
13230 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13231 return r;
13234 case NEW_EXPR:
13236 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13237 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13238 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13239 r = build_nt (code, op0, op1, op2);
13240 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
13241 return r;
13244 case DELETE_EXPR:
13246 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13247 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13248 r = build_nt (code, op0, op1);
13249 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
13250 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
13251 return r;
13254 case TEMPLATE_ID_EXPR:
13256 /* Substituted template arguments */
13257 tree fn = TREE_OPERAND (t, 0);
13258 tree targs = TREE_OPERAND (t, 1);
13260 fn = tsubst_copy (fn, args, complain, in_decl);
13261 if (targs)
13262 targs = tsubst_template_args (targs, args, complain, in_decl);
13264 return lookup_template_function (fn, targs);
13267 case TREE_LIST:
13269 tree purpose, value, chain;
13271 if (t == void_list_node)
13272 return t;
13274 purpose = TREE_PURPOSE (t);
13275 if (purpose)
13276 purpose = tsubst_copy (purpose, args, complain, in_decl);
13277 value = TREE_VALUE (t);
13278 if (value)
13279 value = tsubst_copy (value, args, complain, in_decl);
13280 chain = TREE_CHAIN (t);
13281 if (chain && chain != void_type_node)
13282 chain = tsubst_copy (chain, args, complain, in_decl);
13283 if (purpose == TREE_PURPOSE (t)
13284 && value == TREE_VALUE (t)
13285 && chain == TREE_CHAIN (t))
13286 return t;
13287 return tree_cons (purpose, value, chain);
13290 case RECORD_TYPE:
13291 case UNION_TYPE:
13292 case ENUMERAL_TYPE:
13293 case INTEGER_TYPE:
13294 case TEMPLATE_TYPE_PARM:
13295 case TEMPLATE_TEMPLATE_PARM:
13296 case BOUND_TEMPLATE_TEMPLATE_PARM:
13297 case TEMPLATE_PARM_INDEX:
13298 case POINTER_TYPE:
13299 case REFERENCE_TYPE:
13300 case OFFSET_TYPE:
13301 case FUNCTION_TYPE:
13302 case METHOD_TYPE:
13303 case ARRAY_TYPE:
13304 case TYPENAME_TYPE:
13305 case UNBOUND_CLASS_TEMPLATE:
13306 case TYPEOF_TYPE:
13307 case DECLTYPE_TYPE:
13308 case TYPE_DECL:
13309 return tsubst (t, args, complain, in_decl);
13311 case USING_DECL:
13312 t = DECL_NAME (t);
13313 /* Fall through. */
13314 case IDENTIFIER_NODE:
13315 if (IDENTIFIER_TYPENAME_P (t))
13317 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13318 return mangle_conv_op_name_for_type (new_type);
13320 else
13321 return t;
13323 case CONSTRUCTOR:
13324 /* This is handled by tsubst_copy_and_build. */
13325 gcc_unreachable ();
13327 case VA_ARG_EXPR:
13329 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13330 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13331 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
13334 case CLEANUP_POINT_EXPR:
13335 /* We shouldn't have built any of these during initial template
13336 generation. Instead, they should be built during instantiation
13337 in response to the saved STMT_IS_FULL_EXPR_P setting. */
13338 gcc_unreachable ();
13340 case OFFSET_REF:
13342 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13343 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13344 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13345 r = build2 (code, type, op0, op1);
13346 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
13347 mark_used (TREE_OPERAND (r, 1));
13348 return r;
13351 case EXPR_PACK_EXPANSION:
13352 error ("invalid use of pack expansion expression");
13353 return error_mark_node;
13355 case NONTYPE_ARGUMENT_PACK:
13356 error ("use %<...%> to expand argument pack");
13357 return error_mark_node;
13359 case VOID_CST:
13360 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
13361 return t;
13363 case INTEGER_CST:
13364 case REAL_CST:
13365 case STRING_CST:
13366 case COMPLEX_CST:
13368 /* Instantiate any typedefs in the type. */
13369 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13370 r = fold_convert (type, t);
13371 gcc_assert (TREE_CODE (r) == code);
13372 return r;
13375 case PTRMEM_CST:
13376 /* These can sometimes show up in a partial instantiation, but never
13377 involve template parms. */
13378 gcc_assert (!uses_template_parms (t));
13379 return t;
13381 default:
13382 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
13383 gcc_checking_assert (false);
13384 return t;
13388 /* Like tsubst_copy, but specifically for OpenMP clauses. */
13390 static tree
13391 tsubst_omp_clauses (tree clauses, bool declare_simd,
13392 tree args, tsubst_flags_t complain, tree in_decl)
13394 tree new_clauses = NULL, nc, oc;
13396 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
13398 nc = copy_node (oc);
13399 OMP_CLAUSE_CHAIN (nc) = new_clauses;
13400 new_clauses = nc;
13402 switch (OMP_CLAUSE_CODE (nc))
13404 case OMP_CLAUSE_LASTPRIVATE:
13405 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
13407 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
13408 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
13409 in_decl, /*integral_constant_expression_p=*/false);
13410 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
13411 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
13413 /* FALLTHRU */
13414 case OMP_CLAUSE_PRIVATE:
13415 case OMP_CLAUSE_SHARED:
13416 case OMP_CLAUSE_FIRSTPRIVATE:
13417 case OMP_CLAUSE_COPYIN:
13418 case OMP_CLAUSE_COPYPRIVATE:
13419 case OMP_CLAUSE_IF:
13420 case OMP_CLAUSE_NUM_THREADS:
13421 case OMP_CLAUSE_SCHEDULE:
13422 case OMP_CLAUSE_COLLAPSE:
13423 case OMP_CLAUSE_FINAL:
13424 case OMP_CLAUSE_DEPEND:
13425 case OMP_CLAUSE_FROM:
13426 case OMP_CLAUSE_TO:
13427 case OMP_CLAUSE_UNIFORM:
13428 case OMP_CLAUSE_MAP:
13429 case OMP_CLAUSE_DEVICE:
13430 case OMP_CLAUSE_DIST_SCHEDULE:
13431 case OMP_CLAUSE_NUM_TEAMS:
13432 case OMP_CLAUSE_THREAD_LIMIT:
13433 case OMP_CLAUSE_SAFELEN:
13434 case OMP_CLAUSE_SIMDLEN:
13435 OMP_CLAUSE_OPERAND (nc, 0)
13436 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13437 in_decl, /*integral_constant_expression_p=*/false);
13438 break;
13439 case OMP_CLAUSE_REDUCTION:
13440 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
13442 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
13443 if (TREE_CODE (placeholder) == SCOPE_REF)
13445 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
13446 complain, in_decl);
13447 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
13448 = build_qualified_name (NULL_TREE, scope,
13449 TREE_OPERAND (placeholder, 1),
13450 false);
13452 else
13453 gcc_assert (identifier_p (placeholder));
13455 OMP_CLAUSE_OPERAND (nc, 0)
13456 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13457 in_decl, /*integral_constant_expression_p=*/false);
13458 break;
13459 case OMP_CLAUSE_LINEAR:
13460 case OMP_CLAUSE_ALIGNED:
13461 OMP_CLAUSE_OPERAND (nc, 0)
13462 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13463 in_decl, /*integral_constant_expression_p=*/false);
13464 OMP_CLAUSE_OPERAND (nc, 1)
13465 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
13466 in_decl, /*integral_constant_expression_p=*/false);
13467 break;
13469 case OMP_CLAUSE_NOWAIT:
13470 case OMP_CLAUSE_ORDERED:
13471 case OMP_CLAUSE_DEFAULT:
13472 case OMP_CLAUSE_UNTIED:
13473 case OMP_CLAUSE_MERGEABLE:
13474 case OMP_CLAUSE_INBRANCH:
13475 case OMP_CLAUSE_NOTINBRANCH:
13476 case OMP_CLAUSE_PROC_BIND:
13477 case OMP_CLAUSE_FOR:
13478 case OMP_CLAUSE_PARALLEL:
13479 case OMP_CLAUSE_SECTIONS:
13480 case OMP_CLAUSE_TASKGROUP:
13481 break;
13482 default:
13483 gcc_unreachable ();
13487 new_clauses = nreverse (new_clauses);
13488 if (!declare_simd)
13489 new_clauses = finish_omp_clauses (new_clauses);
13490 return new_clauses;
13493 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
13495 static tree
13496 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
13497 tree in_decl)
13499 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
13501 tree purpose, value, chain;
13503 if (t == NULL)
13504 return t;
13506 if (TREE_CODE (t) != TREE_LIST)
13507 return tsubst_copy_and_build (t, args, complain, in_decl,
13508 /*function_p=*/false,
13509 /*integral_constant_expression_p=*/false);
13511 if (t == void_list_node)
13512 return t;
13514 purpose = TREE_PURPOSE (t);
13515 if (purpose)
13516 purpose = RECUR (purpose);
13517 value = TREE_VALUE (t);
13518 if (value)
13520 if (TREE_CODE (value) != LABEL_DECL)
13521 value = RECUR (value);
13522 else
13524 value = lookup_label (DECL_NAME (value));
13525 gcc_assert (TREE_CODE (value) == LABEL_DECL);
13526 TREE_USED (value) = 1;
13529 chain = TREE_CHAIN (t);
13530 if (chain && chain != void_type_node)
13531 chain = RECUR (chain);
13532 return tree_cons (purpose, value, chain);
13533 #undef RECUR
13536 /* Substitute one OMP_FOR iterator. */
13538 static void
13539 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
13540 tree condv, tree incrv, tree *clauses,
13541 tree args, tsubst_flags_t complain, tree in_decl,
13542 bool integral_constant_expression_p)
13544 #define RECUR(NODE) \
13545 tsubst_expr ((NODE), args, complain, in_decl, \
13546 integral_constant_expression_p)
13547 tree decl, init, cond, incr;
13549 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
13550 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
13551 decl = TREE_OPERAND (init, 0);
13552 init = TREE_OPERAND (init, 1);
13553 tree decl_expr = NULL_TREE;
13554 if (init && TREE_CODE (init) == DECL_EXPR)
13556 /* We need to jump through some hoops to handle declarations in the
13557 for-init-statement, since we might need to handle auto deduction,
13558 but we need to keep control of initialization. */
13559 decl_expr = init;
13560 init = DECL_INITIAL (DECL_EXPR_DECL (init));
13561 decl = tsubst_decl (decl, args, complain);
13563 else
13564 decl = RECUR (decl);
13565 init = RECUR (init);
13567 tree auto_node = type_uses_auto (TREE_TYPE (decl));
13568 if (auto_node && init)
13569 TREE_TYPE (decl)
13570 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
13572 gcc_assert (!type_dependent_expression_p (decl));
13574 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
13576 if (decl_expr)
13578 /* Declare the variable, but don't let that initialize it. */
13579 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
13580 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
13581 RECUR (decl_expr);
13582 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
13585 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
13586 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13587 if (TREE_CODE (incr) == MODIFY_EXPR)
13589 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13590 tree rhs = RECUR (TREE_OPERAND (incr, 1));
13591 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
13592 NOP_EXPR, rhs, complain);
13594 else
13595 incr = RECUR (incr);
13596 TREE_VEC_ELT (declv, i) = decl;
13597 TREE_VEC_ELT (initv, i) = init;
13598 TREE_VEC_ELT (condv, i) = cond;
13599 TREE_VEC_ELT (incrv, i) = incr;
13600 return;
13603 if (decl_expr)
13605 /* Declare and initialize the variable. */
13606 RECUR (decl_expr);
13607 init = NULL_TREE;
13609 else if (init)
13611 tree c;
13612 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
13614 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
13615 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
13616 && OMP_CLAUSE_DECL (c) == decl)
13617 break;
13618 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
13619 && OMP_CLAUSE_DECL (c) == decl)
13620 error ("iteration variable %qD should not be firstprivate", decl);
13621 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
13622 && OMP_CLAUSE_DECL (c) == decl)
13623 error ("iteration variable %qD should not be reduction", decl);
13625 if (c == NULL)
13627 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
13628 OMP_CLAUSE_DECL (c) = decl;
13629 c = finish_omp_clauses (c);
13630 if (c)
13632 OMP_CLAUSE_CHAIN (c) = *clauses;
13633 *clauses = c;
13637 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
13638 if (COMPARISON_CLASS_P (cond))
13640 tree op0 = RECUR (TREE_OPERAND (cond, 0));
13641 tree op1 = RECUR (TREE_OPERAND (cond, 1));
13642 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
13644 else
13645 cond = RECUR (cond);
13646 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13647 switch (TREE_CODE (incr))
13649 case PREINCREMENT_EXPR:
13650 case PREDECREMENT_EXPR:
13651 case POSTINCREMENT_EXPR:
13652 case POSTDECREMENT_EXPR:
13653 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
13654 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
13655 break;
13656 case MODIFY_EXPR:
13657 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13658 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13660 tree rhs = TREE_OPERAND (incr, 1);
13661 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13662 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13663 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13664 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13665 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13666 rhs0, rhs1));
13668 else
13669 incr = RECUR (incr);
13670 break;
13671 case MODOP_EXPR:
13672 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13673 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13675 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13676 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13677 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
13678 TREE_TYPE (decl), lhs,
13679 RECUR (TREE_OPERAND (incr, 2))));
13681 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
13682 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
13683 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
13685 tree rhs = TREE_OPERAND (incr, 2);
13686 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13687 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13688 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13689 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13690 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13691 rhs0, rhs1));
13693 else
13694 incr = RECUR (incr);
13695 break;
13696 default:
13697 incr = RECUR (incr);
13698 break;
13701 TREE_VEC_ELT (declv, i) = decl;
13702 TREE_VEC_ELT (initv, i) = init;
13703 TREE_VEC_ELT (condv, i) = cond;
13704 TREE_VEC_ELT (incrv, i) = incr;
13705 #undef RECUR
13708 /* Like tsubst_copy for expressions, etc. but also does semantic
13709 processing. */
13711 static tree
13712 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
13713 bool integral_constant_expression_p)
13715 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
13716 #define RECUR(NODE) \
13717 tsubst_expr ((NODE), args, complain, in_decl, \
13718 integral_constant_expression_p)
13720 tree stmt, tmp;
13721 tree r;
13722 location_t loc;
13724 if (t == NULL_TREE || t == error_mark_node)
13725 return t;
13727 loc = input_location;
13728 if (EXPR_HAS_LOCATION (t))
13729 input_location = EXPR_LOCATION (t);
13730 if (STATEMENT_CODE_P (TREE_CODE (t)))
13731 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
13733 switch (TREE_CODE (t))
13735 case STATEMENT_LIST:
13737 tree_stmt_iterator i;
13738 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
13739 RECUR (tsi_stmt (i));
13740 break;
13743 case CTOR_INITIALIZER:
13744 finish_mem_initializers (tsubst_initializer_list
13745 (TREE_OPERAND (t, 0), args));
13746 break;
13748 case RETURN_EXPR:
13749 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
13750 break;
13752 case EXPR_STMT:
13753 tmp = RECUR (EXPR_STMT_EXPR (t));
13754 if (EXPR_STMT_STMT_EXPR_RESULT (t))
13755 finish_stmt_expr_expr (tmp, cur_stmt_expr);
13756 else
13757 finish_expr_stmt (tmp);
13758 break;
13760 case USING_STMT:
13761 do_using_directive (USING_STMT_NAMESPACE (t));
13762 break;
13764 case DECL_EXPR:
13766 tree decl, pattern_decl;
13767 tree init;
13769 pattern_decl = decl = DECL_EXPR_DECL (t);
13770 if (TREE_CODE (decl) == LABEL_DECL)
13771 finish_label_decl (DECL_NAME (decl));
13772 else if (TREE_CODE (decl) == USING_DECL)
13774 tree scope = USING_DECL_SCOPE (decl);
13775 tree name = DECL_NAME (decl);
13776 tree decl;
13778 scope = tsubst (scope, args, complain, in_decl);
13779 decl = lookup_qualified_name (scope, name,
13780 /*is_type_p=*/false,
13781 /*complain=*/false);
13782 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
13783 qualified_name_lookup_error (scope, name, decl, input_location);
13784 else
13785 do_local_using_decl (decl, scope, name);
13787 else if (DECL_PACK_P (decl))
13789 /* Don't build up decls for a variadic capture proxy, we'll
13790 instantiate the elements directly as needed. */
13791 break;
13793 else
13795 init = DECL_INITIAL (decl);
13796 decl = tsubst (decl, args, complain, in_decl);
13797 if (decl != error_mark_node)
13799 /* By marking the declaration as instantiated, we avoid
13800 trying to instantiate it. Since instantiate_decl can't
13801 handle local variables, and since we've already done
13802 all that needs to be done, that's the right thing to
13803 do. */
13804 if (VAR_P (decl))
13805 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13806 if (VAR_P (decl)
13807 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
13808 /* Anonymous aggregates are a special case. */
13809 finish_anon_union (decl);
13810 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
13812 DECL_CONTEXT (decl) = current_function_decl;
13813 if (DECL_NAME (decl) == this_identifier)
13815 tree lam = DECL_CONTEXT (current_function_decl);
13816 lam = CLASSTYPE_LAMBDA_EXPR (lam);
13817 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
13819 insert_capture_proxy (decl);
13821 else if (DECL_IMPLICIT_TYPEDEF_P (t))
13822 /* We already did a pushtag. */;
13823 else if (TREE_CODE (decl) == FUNCTION_DECL
13824 && DECL_OMP_DECLARE_REDUCTION_P (decl)
13825 && DECL_FUNCTION_SCOPE_P (pattern_decl))
13827 DECL_CONTEXT (decl) = NULL_TREE;
13828 pushdecl (decl);
13829 DECL_CONTEXT (decl) = current_function_decl;
13830 cp_check_omp_declare_reduction (decl);
13832 else
13834 int const_init = false;
13835 maybe_push_decl (decl);
13836 if (VAR_P (decl)
13837 && DECL_PRETTY_FUNCTION_P (decl))
13839 /* For __PRETTY_FUNCTION__ we have to adjust the
13840 initializer. */
13841 const char *const name
13842 = cxx_printable_name (current_function_decl, 2);
13843 init = cp_fname_init (name, &TREE_TYPE (decl));
13845 else
13846 init = tsubst_init (init, decl, args, complain, in_decl);
13848 if (VAR_P (decl))
13849 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
13850 (pattern_decl));
13851 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
13856 break;
13859 case FOR_STMT:
13860 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13861 RECUR (FOR_INIT_STMT (t));
13862 finish_for_init_stmt (stmt);
13863 tmp = RECUR (FOR_COND (t));
13864 finish_for_cond (tmp, stmt, false);
13865 tmp = RECUR (FOR_EXPR (t));
13866 finish_for_expr (tmp, stmt);
13867 RECUR (FOR_BODY (t));
13868 finish_for_stmt (stmt);
13869 break;
13871 case RANGE_FOR_STMT:
13873 tree decl, expr;
13874 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13875 decl = RANGE_FOR_DECL (t);
13876 decl = tsubst (decl, args, complain, in_decl);
13877 maybe_push_decl (decl);
13878 expr = RECUR (RANGE_FOR_EXPR (t));
13879 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
13880 RECUR (RANGE_FOR_BODY (t));
13881 finish_for_stmt (stmt);
13883 break;
13885 case WHILE_STMT:
13886 stmt = begin_while_stmt ();
13887 tmp = RECUR (WHILE_COND (t));
13888 finish_while_stmt_cond (tmp, stmt, false);
13889 RECUR (WHILE_BODY (t));
13890 finish_while_stmt (stmt);
13891 break;
13893 case DO_STMT:
13894 stmt = begin_do_stmt ();
13895 RECUR (DO_BODY (t));
13896 finish_do_body (stmt);
13897 tmp = RECUR (DO_COND (t));
13898 finish_do_stmt (tmp, stmt, false);
13899 break;
13901 case IF_STMT:
13902 stmt = begin_if_stmt ();
13903 tmp = RECUR (IF_COND (t));
13904 finish_if_stmt_cond (tmp, stmt);
13905 RECUR (THEN_CLAUSE (t));
13906 finish_then_clause (stmt);
13908 if (ELSE_CLAUSE (t))
13910 begin_else_clause (stmt);
13911 RECUR (ELSE_CLAUSE (t));
13912 finish_else_clause (stmt);
13915 finish_if_stmt (stmt);
13916 break;
13918 case BIND_EXPR:
13919 if (BIND_EXPR_BODY_BLOCK (t))
13920 stmt = begin_function_body ();
13921 else
13922 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
13923 ? BCS_TRY_BLOCK : 0);
13925 RECUR (BIND_EXPR_BODY (t));
13927 if (BIND_EXPR_BODY_BLOCK (t))
13928 finish_function_body (stmt);
13929 else
13930 finish_compound_stmt (stmt);
13931 break;
13933 case BREAK_STMT:
13934 finish_break_stmt ();
13935 break;
13937 case CONTINUE_STMT:
13938 finish_continue_stmt ();
13939 break;
13941 case SWITCH_STMT:
13942 stmt = begin_switch_stmt ();
13943 tmp = RECUR (SWITCH_STMT_COND (t));
13944 finish_switch_cond (tmp, stmt);
13945 RECUR (SWITCH_STMT_BODY (t));
13946 finish_switch_stmt (stmt);
13947 break;
13949 case CASE_LABEL_EXPR:
13951 tree low = RECUR (CASE_LOW (t));
13952 tree high = RECUR (CASE_HIGH (t));
13953 finish_case_label (EXPR_LOCATION (t), low, high);
13955 break;
13957 case LABEL_EXPR:
13959 tree decl = LABEL_EXPR_LABEL (t);
13960 tree label;
13962 label = finish_label_stmt (DECL_NAME (decl));
13963 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
13964 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
13966 break;
13968 case GOTO_EXPR:
13969 tmp = GOTO_DESTINATION (t);
13970 if (TREE_CODE (tmp) != LABEL_DECL)
13971 /* Computed goto's must be tsubst'd into. On the other hand,
13972 non-computed gotos must not be; the identifier in question
13973 will have no binding. */
13974 tmp = RECUR (tmp);
13975 else
13976 tmp = DECL_NAME (tmp);
13977 finish_goto_stmt (tmp);
13978 break;
13980 case ASM_EXPR:
13982 tree string = RECUR (ASM_STRING (t));
13983 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
13984 complain, in_decl);
13985 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
13986 complain, in_decl);
13987 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
13988 complain, in_decl);
13989 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
13990 complain, in_decl);
13991 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
13992 clobbers, labels);
13993 tree asm_expr = tmp;
13994 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
13995 asm_expr = TREE_OPERAND (asm_expr, 0);
13996 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
13998 break;
14000 case TRY_BLOCK:
14001 if (CLEANUP_P (t))
14003 stmt = begin_try_block ();
14004 RECUR (TRY_STMTS (t));
14005 finish_cleanup_try_block (stmt);
14006 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
14008 else
14010 tree compound_stmt = NULL_TREE;
14012 if (FN_TRY_BLOCK_P (t))
14013 stmt = begin_function_try_block (&compound_stmt);
14014 else
14015 stmt = begin_try_block ();
14017 RECUR (TRY_STMTS (t));
14019 if (FN_TRY_BLOCK_P (t))
14020 finish_function_try_block (stmt);
14021 else
14022 finish_try_block (stmt);
14024 RECUR (TRY_HANDLERS (t));
14025 if (FN_TRY_BLOCK_P (t))
14026 finish_function_handler_sequence (stmt, compound_stmt);
14027 else
14028 finish_handler_sequence (stmt);
14030 break;
14032 case HANDLER:
14034 tree decl = HANDLER_PARMS (t);
14036 if (decl)
14038 decl = tsubst (decl, args, complain, in_decl);
14039 /* Prevent instantiate_decl from trying to instantiate
14040 this variable. We've already done all that needs to be
14041 done. */
14042 if (decl != error_mark_node)
14043 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14045 stmt = begin_handler ();
14046 finish_handler_parms (decl, stmt);
14047 RECUR (HANDLER_BODY (t));
14048 finish_handler (stmt);
14050 break;
14052 case TAG_DEFN:
14053 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
14054 if (CLASS_TYPE_P (tmp))
14056 /* Local classes are not independent templates; they are
14057 instantiated along with their containing function. And this
14058 way we don't have to deal with pushing out of one local class
14059 to instantiate a member of another local class. */
14060 tree fn;
14061 /* Closures are handled by the LAMBDA_EXPR. */
14062 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
14063 complete_type (tmp);
14064 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
14065 if (!DECL_ARTIFICIAL (fn))
14066 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
14068 break;
14070 case STATIC_ASSERT:
14072 tree condition;
14074 ++c_inhibit_evaluation_warnings;
14075 condition =
14076 tsubst_expr (STATIC_ASSERT_CONDITION (t),
14077 args,
14078 complain, in_decl,
14079 /*integral_constant_expression_p=*/true);
14080 --c_inhibit_evaluation_warnings;
14082 finish_static_assert (condition,
14083 STATIC_ASSERT_MESSAGE (t),
14084 STATIC_ASSERT_SOURCE_LOCATION (t),
14085 /*member_p=*/false);
14087 break;
14089 case OMP_PARALLEL:
14090 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false,
14091 args, complain, in_decl);
14092 stmt = begin_omp_parallel ();
14093 RECUR (OMP_PARALLEL_BODY (t));
14094 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
14095 = OMP_PARALLEL_COMBINED (t);
14096 break;
14098 case OMP_TASK:
14099 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false,
14100 args, complain, in_decl);
14101 stmt = begin_omp_task ();
14102 RECUR (OMP_TASK_BODY (t));
14103 finish_omp_task (tmp, stmt);
14104 break;
14106 case OMP_FOR:
14107 case OMP_SIMD:
14108 case CILK_SIMD:
14109 case CILK_FOR:
14110 case OMP_DISTRIBUTE:
14112 tree clauses, body, pre_body;
14113 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
14114 tree incrv = NULL_TREE;
14115 int i;
14117 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
14118 args, complain, in_decl);
14119 if (OMP_FOR_INIT (t) != NULL_TREE)
14121 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14122 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14123 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14124 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14127 stmt = begin_omp_structured_block ();
14129 pre_body = push_stmt_list ();
14130 RECUR (OMP_FOR_PRE_BODY (t));
14131 pre_body = pop_stmt_list (pre_body);
14133 if (OMP_FOR_INIT (t) != NULL_TREE)
14134 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
14135 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
14136 &clauses, args, complain, in_decl,
14137 integral_constant_expression_p);
14139 body = push_stmt_list ();
14140 RECUR (OMP_FOR_BODY (t));
14141 body = pop_stmt_list (body);
14143 if (OMP_FOR_INIT (t) != NULL_TREE)
14144 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, initv,
14145 condv, incrv, body, pre_body, clauses);
14146 else
14148 t = make_node (TREE_CODE (t));
14149 TREE_TYPE (t) = void_type_node;
14150 OMP_FOR_BODY (t) = body;
14151 OMP_FOR_PRE_BODY (t) = pre_body;
14152 OMP_FOR_CLAUSES (t) = clauses;
14153 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
14154 add_stmt (t);
14157 add_stmt (finish_omp_structured_block (stmt));
14159 break;
14161 case OMP_SECTIONS:
14162 case OMP_SINGLE:
14163 case OMP_TEAMS:
14164 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14165 args, complain, in_decl);
14166 stmt = push_stmt_list ();
14167 RECUR (OMP_BODY (t));
14168 stmt = pop_stmt_list (stmt);
14170 t = copy_node (t);
14171 OMP_BODY (t) = stmt;
14172 OMP_CLAUSES (t) = tmp;
14173 add_stmt (t);
14174 break;
14176 case OMP_TARGET_DATA:
14177 case OMP_TARGET:
14178 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14179 args, complain, in_decl);
14180 keep_next_level (true);
14181 stmt = begin_omp_structured_block ();
14183 RECUR (OMP_BODY (t));
14184 stmt = finish_omp_structured_block (stmt);
14186 t = copy_node (t);
14187 OMP_BODY (t) = stmt;
14188 OMP_CLAUSES (t) = tmp;
14189 add_stmt (t);
14190 break;
14192 case OMP_TARGET_UPDATE:
14193 tmp = tsubst_omp_clauses (OMP_TARGET_UPDATE_CLAUSES (t), false,
14194 args, complain, in_decl);
14195 t = copy_node (t);
14196 OMP_CLAUSES (t) = tmp;
14197 add_stmt (t);
14198 break;
14200 case OMP_SECTION:
14201 case OMP_CRITICAL:
14202 case OMP_MASTER:
14203 case OMP_TASKGROUP:
14204 case OMP_ORDERED:
14205 stmt = push_stmt_list ();
14206 RECUR (OMP_BODY (t));
14207 stmt = pop_stmt_list (stmt);
14209 t = copy_node (t);
14210 OMP_BODY (t) = stmt;
14211 add_stmt (t);
14212 break;
14214 case OMP_ATOMIC:
14215 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
14216 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
14218 tree op1 = TREE_OPERAND (t, 1);
14219 tree rhs1 = NULL_TREE;
14220 tree lhs, rhs;
14221 if (TREE_CODE (op1) == COMPOUND_EXPR)
14223 rhs1 = RECUR (TREE_OPERAND (op1, 0));
14224 op1 = TREE_OPERAND (op1, 1);
14226 lhs = RECUR (TREE_OPERAND (op1, 0));
14227 rhs = RECUR (TREE_OPERAND (op1, 1));
14228 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
14229 NULL_TREE, NULL_TREE, rhs1,
14230 OMP_ATOMIC_SEQ_CST (t));
14232 else
14234 tree op1 = TREE_OPERAND (t, 1);
14235 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
14236 tree rhs1 = NULL_TREE;
14237 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
14238 enum tree_code opcode = NOP_EXPR;
14239 if (code == OMP_ATOMIC_READ)
14241 v = RECUR (TREE_OPERAND (op1, 0));
14242 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14244 else if (code == OMP_ATOMIC_CAPTURE_OLD
14245 || code == OMP_ATOMIC_CAPTURE_NEW)
14247 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
14248 v = RECUR (TREE_OPERAND (op1, 0));
14249 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14250 if (TREE_CODE (op11) == COMPOUND_EXPR)
14252 rhs1 = RECUR (TREE_OPERAND (op11, 0));
14253 op11 = TREE_OPERAND (op11, 1);
14255 lhs = RECUR (TREE_OPERAND (op11, 0));
14256 rhs = RECUR (TREE_OPERAND (op11, 1));
14257 opcode = TREE_CODE (op11);
14258 if (opcode == MODIFY_EXPR)
14259 opcode = NOP_EXPR;
14261 else
14263 code = OMP_ATOMIC;
14264 lhs = RECUR (TREE_OPERAND (op1, 0));
14265 rhs = RECUR (TREE_OPERAND (op1, 1));
14267 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
14268 OMP_ATOMIC_SEQ_CST (t));
14270 break;
14272 case TRANSACTION_EXPR:
14274 int flags = 0;
14275 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
14276 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
14278 if (TRANSACTION_EXPR_IS_STMT (t))
14280 tree body = TRANSACTION_EXPR_BODY (t);
14281 tree noex = NULL_TREE;
14282 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
14284 noex = MUST_NOT_THROW_COND (body);
14285 if (noex == NULL_TREE)
14286 noex = boolean_true_node;
14287 body = TREE_OPERAND (body, 0);
14289 stmt = begin_transaction_stmt (input_location, NULL, flags);
14290 RECUR (body);
14291 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
14293 else
14295 stmt = build_transaction_expr (EXPR_LOCATION (t),
14296 RECUR (TRANSACTION_EXPR_BODY (t)),
14297 flags, NULL_TREE);
14298 RETURN (stmt);
14301 break;
14303 case MUST_NOT_THROW_EXPR:
14305 tree op0 = RECUR (TREE_OPERAND (t, 0));
14306 tree cond = RECUR (MUST_NOT_THROW_COND (t));
14307 RETURN (build_must_not_throw_expr (op0, cond));
14310 case EXPR_PACK_EXPANSION:
14311 error ("invalid use of pack expansion expression");
14312 RETURN (error_mark_node);
14314 case NONTYPE_ARGUMENT_PACK:
14315 error ("use %<...%> to expand argument pack");
14316 RETURN (error_mark_node);
14318 case CILK_SPAWN_STMT:
14319 cfun->calls_cilk_spawn = 1;
14320 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
14322 case CILK_SYNC_STMT:
14323 RETURN (build_cilk_sync ());
14325 case COMPOUND_EXPR:
14326 tmp = RECUR (TREE_OPERAND (t, 0));
14327 if (tmp == NULL_TREE)
14328 /* If the first operand was a statement, we're done with it. */
14329 RETURN (RECUR (TREE_OPERAND (t, 1)));
14330 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
14331 RECUR (TREE_OPERAND (t, 1)),
14332 complain));
14334 case ANNOTATE_EXPR:
14335 tmp = RECUR (TREE_OPERAND (t, 0));
14336 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
14337 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
14339 default:
14340 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
14342 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
14343 /*function_p=*/false,
14344 integral_constant_expression_p));
14347 RETURN (NULL_TREE);
14348 out:
14349 input_location = loc;
14350 return r;
14351 #undef RECUR
14352 #undef RETURN
14355 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
14356 function. For description of the body see comment above
14357 cp_parser_omp_declare_reduction_exprs. */
14359 static void
14360 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14362 if (t == NULL_TREE || t == error_mark_node)
14363 return;
14365 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
14367 tree_stmt_iterator tsi;
14368 int i;
14369 tree stmts[7];
14370 memset (stmts, 0, sizeof stmts);
14371 for (i = 0, tsi = tsi_start (t);
14372 i < 7 && !tsi_end_p (tsi);
14373 i++, tsi_next (&tsi))
14374 stmts[i] = tsi_stmt (tsi);
14375 gcc_assert (tsi_end_p (tsi));
14377 if (i >= 3)
14379 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
14380 && TREE_CODE (stmts[1]) == DECL_EXPR);
14381 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
14382 args, complain, in_decl);
14383 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
14384 args, complain, in_decl);
14385 DECL_CONTEXT (omp_out) = current_function_decl;
14386 DECL_CONTEXT (omp_in) = current_function_decl;
14387 keep_next_level (true);
14388 tree block = begin_omp_structured_block ();
14389 tsubst_expr (stmts[2], args, complain, in_decl, false);
14390 block = finish_omp_structured_block (block);
14391 block = maybe_cleanup_point_expr_void (block);
14392 add_decl_expr (omp_out);
14393 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
14394 TREE_NO_WARNING (omp_out) = 1;
14395 add_decl_expr (omp_in);
14396 finish_expr_stmt (block);
14398 if (i >= 6)
14400 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
14401 && TREE_CODE (stmts[4]) == DECL_EXPR);
14402 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
14403 args, complain, in_decl);
14404 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
14405 args, complain, in_decl);
14406 DECL_CONTEXT (omp_priv) = current_function_decl;
14407 DECL_CONTEXT (omp_orig) = current_function_decl;
14408 keep_next_level (true);
14409 tree block = begin_omp_structured_block ();
14410 tsubst_expr (stmts[5], args, complain, in_decl, false);
14411 block = finish_omp_structured_block (block);
14412 block = maybe_cleanup_point_expr_void (block);
14413 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
14414 add_decl_expr (omp_priv);
14415 add_decl_expr (omp_orig);
14416 finish_expr_stmt (block);
14417 if (i == 7)
14418 add_decl_expr (omp_orig);
14422 /* T is a postfix-expression that is not being used in a function
14423 call. Return the substituted version of T. */
14425 static tree
14426 tsubst_non_call_postfix_expression (tree t, tree args,
14427 tsubst_flags_t complain,
14428 tree in_decl)
14430 if (TREE_CODE (t) == SCOPE_REF)
14431 t = tsubst_qualified_id (t, args, complain, in_decl,
14432 /*done=*/false, /*address_p=*/false);
14433 else
14434 t = tsubst_copy_and_build (t, args, complain, in_decl,
14435 /*function_p=*/false,
14436 /*integral_constant_expression_p=*/false);
14438 return t;
14441 /* Sentinel to disable certain warnings during template substitution. */
14443 struct warning_sentinel {
14444 int &flag;
14445 int val;
14446 warning_sentinel(int& flag, bool suppress=true)
14447 : flag(flag), val(flag) { if (suppress) flag = 0; }
14448 ~warning_sentinel() { flag = val; }
14451 /* Like tsubst but deals with expressions and performs semantic
14452 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
14454 tree
14455 tsubst_copy_and_build (tree t,
14456 tree args,
14457 tsubst_flags_t complain,
14458 tree in_decl,
14459 bool function_p,
14460 bool integral_constant_expression_p)
14462 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
14463 #define RECUR(NODE) \
14464 tsubst_copy_and_build (NODE, args, complain, in_decl, \
14465 /*function_p=*/false, \
14466 integral_constant_expression_p)
14468 tree retval, op1;
14469 location_t loc;
14471 if (t == NULL_TREE || t == error_mark_node)
14472 return t;
14474 loc = input_location;
14475 if (EXPR_HAS_LOCATION (t))
14476 input_location = EXPR_LOCATION (t);
14478 /* N3276 decltype magic only applies to calls at the top level or on the
14479 right side of a comma. */
14480 tsubst_flags_t decltype_flag = (complain & tf_decltype);
14481 complain &= ~tf_decltype;
14483 switch (TREE_CODE (t))
14485 case USING_DECL:
14486 t = DECL_NAME (t);
14487 /* Fall through. */
14488 case IDENTIFIER_NODE:
14490 tree decl;
14491 cp_id_kind idk;
14492 bool non_integral_constant_expression_p;
14493 const char *error_msg;
14495 if (IDENTIFIER_TYPENAME_P (t))
14497 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14498 t = mangle_conv_op_name_for_type (new_type);
14501 /* Look up the name. */
14502 decl = lookup_name (t);
14504 /* By convention, expressions use ERROR_MARK_NODE to indicate
14505 failure, not NULL_TREE. */
14506 if (decl == NULL_TREE)
14507 decl = error_mark_node;
14509 decl = finish_id_expression (t, decl, NULL_TREE,
14510 &idk,
14511 integral_constant_expression_p,
14512 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
14513 &non_integral_constant_expression_p,
14514 /*template_p=*/false,
14515 /*done=*/true,
14516 /*address_p=*/false,
14517 /*template_arg_p=*/false,
14518 &error_msg,
14519 input_location);
14520 if (error_msg)
14521 error (error_msg);
14522 if (!function_p && identifier_p (decl))
14524 if (complain & tf_error)
14525 unqualified_name_lookup_error (decl);
14526 decl = error_mark_node;
14528 RETURN (decl);
14531 case TEMPLATE_ID_EXPR:
14533 tree object;
14534 tree templ = RECUR (TREE_OPERAND (t, 0));
14535 tree targs = TREE_OPERAND (t, 1);
14537 if (targs)
14538 targs = tsubst_template_args (targs, args, complain, in_decl);
14540 if (TREE_CODE (templ) == COMPONENT_REF)
14542 object = TREE_OPERAND (templ, 0);
14543 templ = TREE_OPERAND (templ, 1);
14545 else
14546 object = NULL_TREE;
14547 templ = lookup_template_function (templ, targs);
14549 if (object)
14550 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
14551 object, templ, NULL_TREE));
14552 else
14553 RETURN (baselink_for_fns (templ));
14556 case INDIRECT_REF:
14558 tree r = RECUR (TREE_OPERAND (t, 0));
14560 if (REFERENCE_REF_P (t))
14562 /* A type conversion to reference type will be enclosed in
14563 such an indirect ref, but the substitution of the cast
14564 will have also added such an indirect ref. */
14565 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
14566 r = convert_from_reference (r);
14568 else
14569 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
14570 complain|decltype_flag);
14571 RETURN (r);
14574 case NOP_EXPR:
14576 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14577 tree op0 = RECUR (TREE_OPERAND (t, 0));
14578 RETURN (build_nop (type, op0));
14581 case IMPLICIT_CONV_EXPR:
14583 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14584 tree expr = RECUR (TREE_OPERAND (t, 0));
14585 int flags = LOOKUP_IMPLICIT;
14586 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
14587 flags = LOOKUP_NORMAL;
14588 RETURN (perform_implicit_conversion_flags (type, expr, complain,
14589 flags));
14592 case CONVERT_EXPR:
14594 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14595 tree op0 = RECUR (TREE_OPERAND (t, 0));
14596 RETURN (build1 (CONVERT_EXPR, type, op0));
14599 case CAST_EXPR:
14600 case REINTERPRET_CAST_EXPR:
14601 case CONST_CAST_EXPR:
14602 case DYNAMIC_CAST_EXPR:
14603 case STATIC_CAST_EXPR:
14605 tree type;
14606 tree op, r = NULL_TREE;
14608 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14609 if (integral_constant_expression_p
14610 && !cast_valid_in_integral_constant_expression_p (type))
14612 if (complain & tf_error)
14613 error ("a cast to a type other than an integral or "
14614 "enumeration type cannot appear in a constant-expression");
14615 RETURN (error_mark_node);
14618 op = RECUR (TREE_OPERAND (t, 0));
14620 warning_sentinel s(warn_useless_cast);
14621 switch (TREE_CODE (t))
14623 case CAST_EXPR:
14624 r = build_functional_cast (type, op, complain);
14625 break;
14626 case REINTERPRET_CAST_EXPR:
14627 r = build_reinterpret_cast (type, op, complain);
14628 break;
14629 case CONST_CAST_EXPR:
14630 r = build_const_cast (type, op, complain);
14631 break;
14632 case DYNAMIC_CAST_EXPR:
14633 r = build_dynamic_cast (type, op, complain);
14634 break;
14635 case STATIC_CAST_EXPR:
14636 r = build_static_cast (type, op, complain);
14637 break;
14638 default:
14639 gcc_unreachable ();
14642 RETURN (r);
14645 case POSTDECREMENT_EXPR:
14646 case POSTINCREMENT_EXPR:
14647 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14648 args, complain, in_decl);
14649 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
14650 complain|decltype_flag));
14652 case PREDECREMENT_EXPR:
14653 case PREINCREMENT_EXPR:
14654 case NEGATE_EXPR:
14655 case BIT_NOT_EXPR:
14656 case ABS_EXPR:
14657 case TRUTH_NOT_EXPR:
14658 case UNARY_PLUS_EXPR: /* Unary + */
14659 case REALPART_EXPR:
14660 case IMAGPART_EXPR:
14661 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
14662 RECUR (TREE_OPERAND (t, 0)),
14663 complain|decltype_flag));
14665 case FIX_TRUNC_EXPR:
14666 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
14667 0, complain));
14669 case ADDR_EXPR:
14670 op1 = TREE_OPERAND (t, 0);
14671 if (TREE_CODE (op1) == LABEL_DECL)
14672 RETURN (finish_label_address_expr (DECL_NAME (op1),
14673 EXPR_LOCATION (op1)));
14674 if (TREE_CODE (op1) == SCOPE_REF)
14675 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
14676 /*done=*/true, /*address_p=*/true);
14677 else
14678 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
14679 in_decl);
14680 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
14681 complain|decltype_flag));
14683 case PLUS_EXPR:
14684 case MINUS_EXPR:
14685 case MULT_EXPR:
14686 case TRUNC_DIV_EXPR:
14687 case CEIL_DIV_EXPR:
14688 case FLOOR_DIV_EXPR:
14689 case ROUND_DIV_EXPR:
14690 case EXACT_DIV_EXPR:
14691 case BIT_AND_EXPR:
14692 case BIT_IOR_EXPR:
14693 case BIT_XOR_EXPR:
14694 case TRUNC_MOD_EXPR:
14695 case FLOOR_MOD_EXPR:
14696 case TRUTH_ANDIF_EXPR:
14697 case TRUTH_ORIF_EXPR:
14698 case TRUTH_AND_EXPR:
14699 case TRUTH_OR_EXPR:
14700 case RSHIFT_EXPR:
14701 case LSHIFT_EXPR:
14702 case RROTATE_EXPR:
14703 case LROTATE_EXPR:
14704 case EQ_EXPR:
14705 case NE_EXPR:
14706 case MAX_EXPR:
14707 case MIN_EXPR:
14708 case LE_EXPR:
14709 case GE_EXPR:
14710 case LT_EXPR:
14711 case GT_EXPR:
14712 case MEMBER_REF:
14713 case DOTSTAR_EXPR:
14715 warning_sentinel s1(warn_type_limits);
14716 warning_sentinel s2(warn_div_by_zero);
14717 tree op0 = RECUR (TREE_OPERAND (t, 0));
14718 tree op1 = RECUR (TREE_OPERAND (t, 1));
14719 tree r = build_x_binary_op
14720 (input_location, TREE_CODE (t),
14721 op0,
14722 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
14723 ? ERROR_MARK
14724 : TREE_CODE (TREE_OPERAND (t, 0))),
14725 op1,
14726 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
14727 ? ERROR_MARK
14728 : TREE_CODE (TREE_OPERAND (t, 1))),
14729 /*overload=*/NULL,
14730 complain|decltype_flag);
14731 if (EXPR_P (r) && TREE_NO_WARNING (t))
14732 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14734 RETURN (r);
14737 case POINTER_PLUS_EXPR:
14739 tree op0 = RECUR (TREE_OPERAND (t, 0));
14740 tree op1 = RECUR (TREE_OPERAND (t, 1));
14741 return fold_build_pointer_plus (op0, op1);
14744 case SCOPE_REF:
14745 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
14746 /*address_p=*/false));
14747 case ARRAY_REF:
14748 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14749 args, complain, in_decl);
14750 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
14751 RECUR (TREE_OPERAND (t, 1)),
14752 complain|decltype_flag));
14754 case ARRAY_NOTATION_REF:
14756 tree start_index, length, stride;
14757 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
14758 args, complain, in_decl);
14759 start_index = RECUR (ARRAY_NOTATION_START (t));
14760 length = RECUR (ARRAY_NOTATION_LENGTH (t));
14761 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
14762 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
14763 length, stride, TREE_TYPE (op1)));
14765 case SIZEOF_EXPR:
14766 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
14767 RETURN (tsubst_copy (t, args, complain, in_decl));
14768 /* Fall through */
14770 case ALIGNOF_EXPR:
14772 tree r;
14774 op1 = TREE_OPERAND (t, 0);
14775 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
14776 op1 = TREE_TYPE (op1);
14777 if (!args)
14779 /* When there are no ARGS, we are trying to evaluate a
14780 non-dependent expression from the parser. Trying to do
14781 the substitutions may not work. */
14782 if (!TYPE_P (op1))
14783 op1 = TREE_TYPE (op1);
14785 else
14787 ++cp_unevaluated_operand;
14788 ++c_inhibit_evaluation_warnings;
14789 if (TYPE_P (op1))
14790 op1 = tsubst (op1, args, complain, in_decl);
14791 else
14792 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14793 /*function_p=*/false,
14794 /*integral_constant_expression_p=*/
14795 false);
14796 --cp_unevaluated_operand;
14797 --c_inhibit_evaluation_warnings;
14799 if (TYPE_P (op1))
14800 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
14801 complain & tf_error);
14802 else
14803 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
14804 complain & tf_error);
14805 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
14807 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
14809 if (!processing_template_decl && TYPE_P (op1))
14811 r = build_min (SIZEOF_EXPR, size_type_node,
14812 build1 (NOP_EXPR, op1, error_mark_node));
14813 SIZEOF_EXPR_TYPE_P (r) = 1;
14815 else
14816 r = build_min (SIZEOF_EXPR, size_type_node, op1);
14817 TREE_SIDE_EFFECTS (r) = 0;
14818 TREE_READONLY (r) = 1;
14820 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
14822 RETURN (r);
14825 case AT_ENCODE_EXPR:
14827 op1 = TREE_OPERAND (t, 0);
14828 ++cp_unevaluated_operand;
14829 ++c_inhibit_evaluation_warnings;
14830 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14831 /*function_p=*/false,
14832 /*integral_constant_expression_p=*/false);
14833 --cp_unevaluated_operand;
14834 --c_inhibit_evaluation_warnings;
14835 RETURN (objc_build_encode_expr (op1));
14838 case NOEXCEPT_EXPR:
14839 op1 = TREE_OPERAND (t, 0);
14840 ++cp_unevaluated_operand;
14841 ++c_inhibit_evaluation_warnings;
14842 ++cp_noexcept_operand;
14843 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14844 /*function_p=*/false,
14845 /*integral_constant_expression_p=*/false);
14846 --cp_unevaluated_operand;
14847 --c_inhibit_evaluation_warnings;
14848 --cp_noexcept_operand;
14849 RETURN (finish_noexcept_expr (op1, complain));
14851 case MODOP_EXPR:
14853 warning_sentinel s(warn_div_by_zero);
14854 tree lhs = RECUR (TREE_OPERAND (t, 0));
14855 tree rhs = RECUR (TREE_OPERAND (t, 2));
14856 tree r = build_x_modify_expr
14857 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
14858 complain|decltype_flag);
14859 /* TREE_NO_WARNING must be set if either the expression was
14860 parenthesized or it uses an operator such as >>= rather
14861 than plain assignment. In the former case, it was already
14862 set and must be copied. In the latter case,
14863 build_x_modify_expr sets it and it must not be reset
14864 here. */
14865 if (TREE_NO_WARNING (t))
14866 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14868 RETURN (r);
14871 case ARROW_EXPR:
14872 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14873 args, complain, in_decl);
14874 /* Remember that there was a reference to this entity. */
14875 if (DECL_P (op1))
14876 mark_used (op1);
14877 RETURN (build_x_arrow (input_location, op1, complain));
14879 case NEW_EXPR:
14881 tree placement = RECUR (TREE_OPERAND (t, 0));
14882 tree init = RECUR (TREE_OPERAND (t, 3));
14883 vec<tree, va_gc> *placement_vec;
14884 vec<tree, va_gc> *init_vec;
14885 tree ret;
14887 if (placement == NULL_TREE)
14888 placement_vec = NULL;
14889 else
14891 placement_vec = make_tree_vector ();
14892 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
14893 vec_safe_push (placement_vec, TREE_VALUE (placement));
14896 /* If there was an initializer in the original tree, but it
14897 instantiated to an empty list, then we should pass a
14898 non-NULL empty vector to tell build_new that it was an
14899 empty initializer() rather than no initializer. This can
14900 only happen when the initializer is a pack expansion whose
14901 parameter packs are of length zero. */
14902 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
14903 init_vec = NULL;
14904 else
14906 init_vec = make_tree_vector ();
14907 if (init == void_node)
14908 gcc_assert (init_vec != NULL);
14909 else
14911 for (; init != NULL_TREE; init = TREE_CHAIN (init))
14912 vec_safe_push (init_vec, TREE_VALUE (init));
14916 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
14917 tree op2 = RECUR (TREE_OPERAND (t, 2));
14918 ret = build_new (&placement_vec, op1, op2, &init_vec,
14919 NEW_EXPR_USE_GLOBAL (t),
14920 complain);
14922 if (placement_vec != NULL)
14923 release_tree_vector (placement_vec);
14924 if (init_vec != NULL)
14925 release_tree_vector (init_vec);
14927 RETURN (ret);
14930 case DELETE_EXPR:
14932 tree op0 = RECUR (TREE_OPERAND (t, 0));
14933 tree op1 = RECUR (TREE_OPERAND (t, 1));
14934 RETURN (delete_sanity (op0, op1,
14935 DELETE_EXPR_USE_VEC (t),
14936 DELETE_EXPR_USE_GLOBAL (t),
14937 complain));
14940 case COMPOUND_EXPR:
14942 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
14943 complain & ~tf_decltype, in_decl,
14944 /*function_p=*/false,
14945 integral_constant_expression_p);
14946 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
14947 op0,
14948 RECUR (TREE_OPERAND (t, 1)),
14949 complain|decltype_flag));
14952 case CALL_EXPR:
14954 tree function;
14955 vec<tree, va_gc> *call_args;
14956 unsigned int nargs, i;
14957 bool qualified_p;
14958 bool koenig_p;
14959 tree ret;
14961 function = CALL_EXPR_FN (t);
14962 /* When we parsed the expression, we determined whether or
14963 not Koenig lookup should be performed. */
14964 koenig_p = KOENIG_LOOKUP_P (t);
14965 if (TREE_CODE (function) == SCOPE_REF)
14967 qualified_p = true;
14968 function = tsubst_qualified_id (function, args, complain, in_decl,
14969 /*done=*/false,
14970 /*address_p=*/false);
14972 else if (koenig_p && identifier_p (function))
14974 /* Do nothing; calling tsubst_copy_and_build on an identifier
14975 would incorrectly perform unqualified lookup again.
14977 Note that we can also have an IDENTIFIER_NODE if the earlier
14978 unqualified lookup found a member function; in that case
14979 koenig_p will be false and we do want to do the lookup
14980 again to find the instantiated member function.
14982 FIXME but doing that causes c++/15272, so we need to stop
14983 using IDENTIFIER_NODE in that situation. */
14984 qualified_p = false;
14986 else
14988 if (TREE_CODE (function) == COMPONENT_REF)
14990 tree op = TREE_OPERAND (function, 1);
14992 qualified_p = (TREE_CODE (op) == SCOPE_REF
14993 || (BASELINK_P (op)
14994 && BASELINK_QUALIFIED_P (op)));
14996 else
14997 qualified_p = false;
14999 if (TREE_CODE (function) == ADDR_EXPR
15000 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
15001 /* Avoid error about taking the address of a constructor. */
15002 function = TREE_OPERAND (function, 0);
15004 function = tsubst_copy_and_build (function, args, complain,
15005 in_decl,
15006 !qualified_p,
15007 integral_constant_expression_p);
15009 if (BASELINK_P (function))
15010 qualified_p = true;
15013 nargs = call_expr_nargs (t);
15014 call_args = make_tree_vector ();
15015 for (i = 0; i < nargs; ++i)
15017 tree arg = CALL_EXPR_ARG (t, i);
15019 if (!PACK_EXPANSION_P (arg))
15020 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
15021 else
15023 /* Expand the pack expansion and push each entry onto
15024 CALL_ARGS. */
15025 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
15026 if (TREE_CODE (arg) == TREE_VEC)
15028 unsigned int len, j;
15030 len = TREE_VEC_LENGTH (arg);
15031 for (j = 0; j < len; ++j)
15033 tree value = TREE_VEC_ELT (arg, j);
15034 if (value != NULL_TREE)
15035 value = convert_from_reference (value);
15036 vec_safe_push (call_args, value);
15039 else
15041 /* A partial substitution. Add one entry. */
15042 vec_safe_push (call_args, arg);
15047 /* We do not perform argument-dependent lookup if normal
15048 lookup finds a non-function, in accordance with the
15049 expected resolution of DR 218. */
15050 if (koenig_p
15051 && ((is_overloaded_fn (function)
15052 /* If lookup found a member function, the Koenig lookup is
15053 not appropriate, even if an unqualified-name was used
15054 to denote the function. */
15055 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
15056 || identifier_p (function))
15057 /* Only do this when substitution turns a dependent call
15058 into a non-dependent call. */
15059 && type_dependent_expression_p_push (t)
15060 && !any_type_dependent_arguments_p (call_args))
15061 function = perform_koenig_lookup (function, call_args, tf_none);
15063 if (identifier_p (function)
15064 && !any_type_dependent_arguments_p (call_args))
15066 if (koenig_p && (complain & tf_warning_or_error))
15068 /* For backwards compatibility and good diagnostics, try
15069 the unqualified lookup again if we aren't in SFINAE
15070 context. */
15071 tree unq = (tsubst_copy_and_build
15072 (function, args, complain, in_decl, true,
15073 integral_constant_expression_p));
15074 if (unq == error_mark_node)
15075 RETURN (error_mark_node);
15077 if (unq != function)
15079 tree fn = unq;
15080 if (INDIRECT_REF_P (fn))
15081 fn = TREE_OPERAND (fn, 0);
15082 if (TREE_CODE (fn) == COMPONENT_REF)
15083 fn = TREE_OPERAND (fn, 1);
15084 if (is_overloaded_fn (fn))
15085 fn = get_first_fn (fn);
15086 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
15087 "%qD was not declared in this scope, "
15088 "and no declarations were found by "
15089 "argument-dependent lookup at the point "
15090 "of instantiation", function))
15092 if (!DECL_P (fn))
15093 /* Can't say anything more. */;
15094 else if (DECL_CLASS_SCOPE_P (fn))
15096 location_t loc = EXPR_LOC_OR_LOC (t,
15097 input_location);
15098 inform (loc,
15099 "declarations in dependent base %qT are "
15100 "not found by unqualified lookup",
15101 DECL_CLASS_CONTEXT (fn));
15102 if (current_class_ptr)
15103 inform (loc,
15104 "use %<this->%D%> instead", function);
15105 else
15106 inform (loc,
15107 "use %<%T::%D%> instead",
15108 current_class_name, function);
15110 else
15111 inform (0, "%q+D declared here, later in the "
15112 "translation unit", fn);
15114 function = unq;
15117 if (identifier_p (function))
15119 if (complain & tf_error)
15120 unqualified_name_lookup_error (function);
15121 release_tree_vector (call_args);
15122 RETURN (error_mark_node);
15126 /* Remember that there was a reference to this entity. */
15127 if (DECL_P (function))
15128 mark_used (function);
15130 /* Put back tf_decltype for the actual call. */
15131 complain |= decltype_flag;
15133 if (TREE_CODE (function) == OFFSET_REF)
15134 ret = build_offset_ref_call_from_tree (function, &call_args,
15135 complain);
15136 else if (TREE_CODE (function) == COMPONENT_REF)
15138 tree instance = TREE_OPERAND (function, 0);
15139 tree fn = TREE_OPERAND (function, 1);
15141 if (processing_template_decl
15142 && (type_dependent_expression_p (instance)
15143 || (!BASELINK_P (fn)
15144 && TREE_CODE (fn) != FIELD_DECL)
15145 || type_dependent_expression_p (fn)
15146 || any_type_dependent_arguments_p (call_args)))
15147 ret = build_nt_call_vec (function, call_args);
15148 else if (!BASELINK_P (fn))
15149 ret = finish_call_expr (function, &call_args,
15150 /*disallow_virtual=*/false,
15151 /*koenig_p=*/false,
15152 complain);
15153 else
15154 ret = (build_new_method_call
15155 (instance, fn,
15156 &call_args, NULL_TREE,
15157 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
15158 /*fn_p=*/NULL,
15159 complain));
15161 else
15162 ret = finish_call_expr (function, &call_args,
15163 /*disallow_virtual=*/qualified_p,
15164 koenig_p,
15165 complain);
15167 release_tree_vector (call_args);
15169 RETURN (ret);
15172 case COND_EXPR:
15174 tree cond = RECUR (TREE_OPERAND (t, 0));
15175 tree folded_cond = fold_non_dependent_expr (cond);
15176 tree exp1, exp2;
15178 if (TREE_CODE (folded_cond) == INTEGER_CST)
15180 if (integer_zerop (folded_cond))
15182 ++c_inhibit_evaluation_warnings;
15183 exp1 = RECUR (TREE_OPERAND (t, 1));
15184 --c_inhibit_evaluation_warnings;
15185 exp2 = RECUR (TREE_OPERAND (t, 2));
15187 else
15189 exp1 = RECUR (TREE_OPERAND (t, 1));
15190 ++c_inhibit_evaluation_warnings;
15191 exp2 = RECUR (TREE_OPERAND (t, 2));
15192 --c_inhibit_evaluation_warnings;
15194 cond = folded_cond;
15196 else
15198 exp1 = RECUR (TREE_OPERAND (t, 1));
15199 exp2 = RECUR (TREE_OPERAND (t, 2));
15202 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
15203 cond, exp1, exp2, complain));
15206 case PSEUDO_DTOR_EXPR:
15208 tree op0 = RECUR (TREE_OPERAND (t, 0));
15209 tree op1 = RECUR (TREE_OPERAND (t, 1));
15210 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
15211 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
15212 input_location));
15215 case TREE_LIST:
15217 tree purpose, value, chain;
15219 if (t == void_list_node)
15220 RETURN (t);
15222 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
15223 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
15225 /* We have pack expansions, so expand those and
15226 create a new list out of it. */
15227 tree purposevec = NULL_TREE;
15228 tree valuevec = NULL_TREE;
15229 tree chain;
15230 int i, len = -1;
15232 /* Expand the argument expressions. */
15233 if (TREE_PURPOSE (t))
15234 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
15235 complain, in_decl);
15236 if (TREE_VALUE (t))
15237 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
15238 complain, in_decl);
15240 /* Build the rest of the list. */
15241 chain = TREE_CHAIN (t);
15242 if (chain && chain != void_type_node)
15243 chain = RECUR (chain);
15245 /* Determine the number of arguments. */
15246 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
15248 len = TREE_VEC_LENGTH (purposevec);
15249 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
15251 else if (TREE_CODE (valuevec) == TREE_VEC)
15252 len = TREE_VEC_LENGTH (valuevec);
15253 else
15255 /* Since we only performed a partial substitution into
15256 the argument pack, we only RETURN (a single list
15257 node. */
15258 if (purposevec == TREE_PURPOSE (t)
15259 && valuevec == TREE_VALUE (t)
15260 && chain == TREE_CHAIN (t))
15261 RETURN (t);
15263 RETURN (tree_cons (purposevec, valuevec, chain));
15266 /* Convert the argument vectors into a TREE_LIST */
15267 i = len;
15268 while (i > 0)
15270 /* Grab the Ith values. */
15271 i--;
15272 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
15273 : NULL_TREE;
15274 value
15275 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
15276 : NULL_TREE;
15278 /* Build the list (backwards). */
15279 chain = tree_cons (purpose, value, chain);
15282 RETURN (chain);
15285 purpose = TREE_PURPOSE (t);
15286 if (purpose)
15287 purpose = RECUR (purpose);
15288 value = TREE_VALUE (t);
15289 if (value)
15290 value = RECUR (value);
15291 chain = TREE_CHAIN (t);
15292 if (chain && chain != void_type_node)
15293 chain = RECUR (chain);
15294 if (purpose == TREE_PURPOSE (t)
15295 && value == TREE_VALUE (t)
15296 && chain == TREE_CHAIN (t))
15297 RETURN (t);
15298 RETURN (tree_cons (purpose, value, chain));
15301 case COMPONENT_REF:
15303 tree object;
15304 tree object_type;
15305 tree member;
15306 tree r;
15308 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15309 args, complain, in_decl);
15310 /* Remember that there was a reference to this entity. */
15311 if (DECL_P (object))
15312 mark_used (object);
15313 object_type = TREE_TYPE (object);
15315 member = TREE_OPERAND (t, 1);
15316 if (BASELINK_P (member))
15317 member = tsubst_baselink (member,
15318 non_reference (TREE_TYPE (object)),
15319 args, complain, in_decl);
15320 else
15321 member = tsubst_copy (member, args, complain, in_decl);
15322 if (member == error_mark_node)
15323 RETURN (error_mark_node);
15325 if (type_dependent_expression_p (object))
15326 /* We can't do much here. */;
15327 else if (!CLASS_TYPE_P (object_type))
15329 if (scalarish_type_p (object_type))
15331 tree s = NULL_TREE;
15332 tree dtor = member;
15334 if (TREE_CODE (dtor) == SCOPE_REF)
15336 s = TREE_OPERAND (dtor, 0);
15337 dtor = TREE_OPERAND (dtor, 1);
15339 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
15341 dtor = TREE_OPERAND (dtor, 0);
15342 if (TYPE_P (dtor))
15343 RETURN (finish_pseudo_destructor_expr
15344 (object, s, dtor, input_location));
15348 else if (TREE_CODE (member) == SCOPE_REF
15349 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
15351 /* Lookup the template functions now that we know what the
15352 scope is. */
15353 tree scope = TREE_OPERAND (member, 0);
15354 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
15355 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
15356 member = lookup_qualified_name (scope, tmpl,
15357 /*is_type_p=*/false,
15358 /*complain=*/false);
15359 if (BASELINK_P (member))
15361 BASELINK_FUNCTIONS (member)
15362 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
15363 args);
15364 member = (adjust_result_of_qualified_name_lookup
15365 (member, BINFO_TYPE (BASELINK_BINFO (member)),
15366 object_type));
15368 else
15370 qualified_name_lookup_error (scope, tmpl, member,
15371 input_location);
15372 RETURN (error_mark_node);
15375 else if (TREE_CODE (member) == SCOPE_REF
15376 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
15377 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
15379 if (complain & tf_error)
15381 if (TYPE_P (TREE_OPERAND (member, 0)))
15382 error ("%qT is not a class or namespace",
15383 TREE_OPERAND (member, 0));
15384 else
15385 error ("%qD is not a class or namespace",
15386 TREE_OPERAND (member, 0));
15388 RETURN (error_mark_node);
15390 else if (TREE_CODE (member) == FIELD_DECL)
15392 r = finish_non_static_data_member (member, object, NULL_TREE);
15393 if (TREE_CODE (r) == COMPONENT_REF)
15394 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15395 RETURN (r);
15398 r = finish_class_member_access_expr (object, member,
15399 /*template_p=*/false,
15400 complain);
15401 if (TREE_CODE (r) == COMPONENT_REF)
15402 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15403 RETURN (r);
15406 case THROW_EXPR:
15407 RETURN (build_throw
15408 (RECUR (TREE_OPERAND (t, 0))));
15410 case CONSTRUCTOR:
15412 vec<constructor_elt, va_gc> *n;
15413 constructor_elt *ce;
15414 unsigned HOST_WIDE_INT idx;
15415 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15416 bool process_index_p;
15417 int newlen;
15418 bool need_copy_p = false;
15419 tree r;
15421 if (type == error_mark_node)
15422 RETURN (error_mark_node);
15424 /* digest_init will do the wrong thing if we let it. */
15425 if (type && TYPE_PTRMEMFUNC_P (type))
15426 RETURN (t);
15428 /* We do not want to process the index of aggregate
15429 initializers as they are identifier nodes which will be
15430 looked up by digest_init. */
15431 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
15433 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
15434 newlen = vec_safe_length (n);
15435 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
15437 if (ce->index && process_index_p
15438 /* An identifier index is looked up in the type
15439 being initialized, not the current scope. */
15440 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
15441 ce->index = RECUR (ce->index);
15443 if (PACK_EXPANSION_P (ce->value))
15445 /* Substitute into the pack expansion. */
15446 ce->value = tsubst_pack_expansion (ce->value, args, complain,
15447 in_decl);
15449 if (ce->value == error_mark_node
15450 || PACK_EXPANSION_P (ce->value))
15452 else if (TREE_VEC_LENGTH (ce->value) == 1)
15453 /* Just move the argument into place. */
15454 ce->value = TREE_VEC_ELT (ce->value, 0);
15455 else
15457 /* Update the length of the final CONSTRUCTOR
15458 arguments vector, and note that we will need to
15459 copy.*/
15460 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
15461 need_copy_p = true;
15464 else
15465 ce->value = RECUR (ce->value);
15468 if (need_copy_p)
15470 vec<constructor_elt, va_gc> *old_n = n;
15472 vec_alloc (n, newlen);
15473 FOR_EACH_VEC_ELT (*old_n, idx, ce)
15475 if (TREE_CODE (ce->value) == TREE_VEC)
15477 int i, len = TREE_VEC_LENGTH (ce->value);
15478 for (i = 0; i < len; ++i)
15479 CONSTRUCTOR_APPEND_ELT (n, 0,
15480 TREE_VEC_ELT (ce->value, i));
15482 else
15483 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
15487 r = build_constructor (init_list_type_node, n);
15488 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
15490 if (TREE_HAS_CONSTRUCTOR (t))
15491 RETURN (finish_compound_literal (type, r, complain));
15493 TREE_TYPE (r) = type;
15494 RETURN (r);
15497 case TYPEID_EXPR:
15499 tree operand_0 = TREE_OPERAND (t, 0);
15500 if (TYPE_P (operand_0))
15502 operand_0 = tsubst (operand_0, args, complain, in_decl);
15503 RETURN (get_typeid (operand_0, complain));
15505 else
15507 operand_0 = RECUR (operand_0);
15508 RETURN (build_typeid (operand_0, complain));
15512 case VAR_DECL:
15513 if (!args)
15514 RETURN (t);
15515 else if (DECL_PACK_P (t))
15517 /* We don't build decls for an instantiation of a
15518 variadic capture proxy, we instantiate the elements
15519 when needed. */
15520 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
15521 return RECUR (DECL_VALUE_EXPR (t));
15523 /* Fall through */
15525 case PARM_DECL:
15527 tree r = tsubst_copy (t, args, complain, in_decl);
15528 /* ??? We're doing a subset of finish_id_expression here. */
15529 if (VAR_P (r)
15530 && !processing_template_decl
15531 && !cp_unevaluated_operand
15532 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
15533 && DECL_THREAD_LOCAL_P (r))
15535 if (tree wrap = get_tls_wrapper_fn (r))
15536 /* Replace an evaluated use of the thread_local variable with
15537 a call to its wrapper. */
15538 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
15540 else if (outer_automatic_var_p (r))
15541 r = process_outer_var_ref (r, complain);
15543 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
15544 /* If the original type was a reference, we'll be wrapped in
15545 the appropriate INDIRECT_REF. */
15546 r = convert_from_reference (r);
15547 RETURN (r);
15550 case VA_ARG_EXPR:
15552 tree op0 = RECUR (TREE_OPERAND (t, 0));
15553 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15554 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
15557 case OFFSETOF_EXPR:
15558 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
15559 EXPR_LOCATION (t)));
15561 case TRAIT_EXPR:
15563 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
15564 complain, in_decl);
15566 tree type2 = TRAIT_EXPR_TYPE2 (t);
15567 if (type2 && TREE_CODE (type2) == TREE_LIST)
15568 type2 = RECUR (type2);
15569 else if (type2)
15570 type2 = tsubst (type2, args, complain, in_decl);
15572 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
15575 case STMT_EXPR:
15577 tree old_stmt_expr = cur_stmt_expr;
15578 tree stmt_expr = begin_stmt_expr ();
15580 cur_stmt_expr = stmt_expr;
15581 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
15582 integral_constant_expression_p);
15583 stmt_expr = finish_stmt_expr (stmt_expr, false);
15584 cur_stmt_expr = old_stmt_expr;
15586 /* If the resulting list of expression statement is empty,
15587 fold it further into void_node. */
15588 if (empty_expr_stmt_p (stmt_expr))
15589 stmt_expr = void_node;
15591 RETURN (stmt_expr);
15594 case LAMBDA_EXPR:
15596 tree r = build_lambda_expr ();
15598 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
15599 LAMBDA_EXPR_CLOSURE (r) = type;
15600 CLASSTYPE_LAMBDA_EXPR (type) = r;
15602 LAMBDA_EXPR_LOCATION (r)
15603 = LAMBDA_EXPR_LOCATION (t);
15604 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
15605 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
15606 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
15607 LAMBDA_EXPR_DISCRIMINATOR (r)
15608 = (LAMBDA_EXPR_DISCRIMINATOR (t));
15609 /* For a function scope, we want to use tsubst so that we don't
15610 complain about referring to an auto function before its return
15611 type has been deduced. Otherwise, we want to use tsubst_copy so
15612 that we look up the existing field/parameter/variable rather
15613 than build a new one. */
15614 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
15615 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
15616 scope = tsubst (scope, args, complain, in_decl);
15617 else if (scope && TREE_CODE (scope) == PARM_DECL)
15619 /* Look up the parameter we want directly, as tsubst_copy
15620 doesn't do what we need. */
15621 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
15622 tree parm = FUNCTION_FIRST_USER_PARM (fn);
15623 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
15624 parm = DECL_CHAIN (parm);
15625 scope = parm;
15626 /* FIXME Work around the parm not having DECL_CONTEXT set. */
15627 if (DECL_CONTEXT (scope) == NULL_TREE)
15628 DECL_CONTEXT (scope) = fn;
15630 else
15631 scope = RECUR (scope);
15632 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
15633 LAMBDA_EXPR_RETURN_TYPE (r)
15634 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
15636 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
15637 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
15639 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
15640 determine_visibility (TYPE_NAME (type));
15641 /* Now that we know visibility, instantiate the type so we have a
15642 declaration of the op() for later calls to lambda_function. */
15643 complete_type (type);
15645 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
15647 RETURN (build_lambda_object (r));
15650 case TARGET_EXPR:
15651 /* We can get here for a constant initializer of non-dependent type.
15652 FIXME stop folding in cp_parser_initializer_clause. */
15654 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
15655 complain);
15656 RETURN (r);
15659 case TRANSACTION_EXPR:
15660 RETURN (tsubst_expr(t, args, complain, in_decl,
15661 integral_constant_expression_p));
15663 case PAREN_EXPR:
15664 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
15666 case VEC_PERM_EXPR:
15668 tree op0 = RECUR (TREE_OPERAND (t, 0));
15669 tree op1 = RECUR (TREE_OPERAND (t, 1));
15670 tree op2 = RECUR (TREE_OPERAND (t, 2));
15671 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
15672 complain));
15675 default:
15676 /* Handle Objective-C++ constructs, if appropriate. */
15678 tree subst
15679 = objcp_tsubst_copy_and_build (t, args, complain,
15680 in_decl, /*function_p=*/false);
15681 if (subst)
15682 RETURN (subst);
15684 RETURN (tsubst_copy (t, args, complain, in_decl));
15687 #undef RECUR
15688 #undef RETURN
15689 out:
15690 input_location = loc;
15691 return retval;
15694 /* Verify that the instantiated ARGS are valid. For type arguments,
15695 make sure that the type's linkage is ok. For non-type arguments,
15696 make sure they are constants if they are integral or enumerations.
15697 Emit an error under control of COMPLAIN, and return TRUE on error. */
15699 static bool
15700 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
15702 if (dependent_template_arg_p (t))
15703 return false;
15704 if (ARGUMENT_PACK_P (t))
15706 tree vec = ARGUMENT_PACK_ARGS (t);
15707 int len = TREE_VEC_LENGTH (vec);
15708 bool result = false;
15709 int i;
15711 for (i = 0; i < len; ++i)
15712 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
15713 result = true;
15714 return result;
15716 else if (TYPE_P (t))
15718 /* [basic.link]: A name with no linkage (notably, the name
15719 of a class or enumeration declared in a local scope)
15720 shall not be used to declare an entity with linkage.
15721 This implies that names with no linkage cannot be used as
15722 template arguments
15724 DR 757 relaxes this restriction for C++0x. */
15725 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
15726 : no_linkage_check (t, /*relaxed_p=*/false));
15728 if (nt)
15730 /* DR 488 makes use of a type with no linkage cause
15731 type deduction to fail. */
15732 if (complain & tf_error)
15734 if (TYPE_ANONYMOUS_P (nt))
15735 error ("%qT is/uses anonymous type", t);
15736 else
15737 error ("template argument for %qD uses local type %qT",
15738 tmpl, t);
15740 return true;
15742 /* In order to avoid all sorts of complications, we do not
15743 allow variably-modified types as template arguments. */
15744 else if (variably_modified_type_p (t, NULL_TREE))
15746 if (complain & tf_error)
15747 error ("%qT is a variably modified type", t);
15748 return true;
15751 /* Class template and alias template arguments should be OK. */
15752 else if (DECL_TYPE_TEMPLATE_P (t))
15754 /* A non-type argument of integral or enumerated type must be a
15755 constant. */
15756 else if (TREE_TYPE (t)
15757 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
15758 && !REFERENCE_REF_P (t)
15759 && !TREE_CONSTANT (t))
15761 if (complain & tf_error)
15762 error ("integral expression %qE is not constant", t);
15763 return true;
15765 return false;
15768 static bool
15769 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
15771 int ix, len = DECL_NTPARMS (tmpl);
15772 bool result = false;
15774 for (ix = 0; ix != len; ix++)
15776 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
15777 result = true;
15779 if (result && (complain & tf_error))
15780 error (" trying to instantiate %qD", tmpl);
15781 return result;
15784 /* We're out of SFINAE context now, so generate diagnostics for the access
15785 errors we saw earlier when instantiating D from TMPL and ARGS. */
15787 static void
15788 recheck_decl_substitution (tree d, tree tmpl, tree args)
15790 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
15791 tree type = TREE_TYPE (pattern);
15792 location_t loc = input_location;
15794 push_access_scope (d);
15795 push_deferring_access_checks (dk_no_deferred);
15796 input_location = DECL_SOURCE_LOCATION (pattern);
15797 tsubst (type, args, tf_warning_or_error, d);
15798 input_location = loc;
15799 pop_deferring_access_checks ();
15800 pop_access_scope (d);
15803 /* Instantiate the indicated variable, function, or alias template TMPL with
15804 the template arguments in TARG_PTR. */
15806 static tree
15807 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
15809 tree targ_ptr = orig_args;
15810 tree fndecl;
15811 tree gen_tmpl;
15812 tree spec;
15813 bool access_ok = true;
15815 if (tmpl == error_mark_node)
15816 return error_mark_node;
15818 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
15820 /* If this function is a clone, handle it specially. */
15821 if (DECL_CLONED_FUNCTION_P (tmpl))
15823 tree spec;
15824 tree clone;
15826 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
15827 DECL_CLONED_FUNCTION. */
15828 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
15829 targ_ptr, complain);
15830 if (spec == error_mark_node)
15831 return error_mark_node;
15833 /* Look for the clone. */
15834 FOR_EACH_CLONE (clone, spec)
15835 if (DECL_NAME (clone) == DECL_NAME (tmpl))
15836 return clone;
15837 /* We should always have found the clone by now. */
15838 gcc_unreachable ();
15839 return NULL_TREE;
15842 if (targ_ptr == error_mark_node)
15843 return error_mark_node;
15845 /* Check to see if we already have this specialization. */
15846 gen_tmpl = most_general_template (tmpl);
15847 if (tmpl != gen_tmpl)
15848 /* The TMPL is a partial instantiation. To get a full set of
15849 arguments we must add the arguments used to perform the
15850 partial instantiation. */
15851 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
15852 targ_ptr);
15854 /* It would be nice to avoid hashing here and then again in tsubst_decl,
15855 but it doesn't seem to be on the hot path. */
15856 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
15858 gcc_assert (tmpl == gen_tmpl
15859 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
15860 == spec)
15861 || fndecl == NULL_TREE);
15863 if (spec != NULL_TREE)
15865 if (FNDECL_HAS_ACCESS_ERRORS (spec))
15867 if (complain & tf_error)
15868 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
15869 return error_mark_node;
15871 return spec;
15874 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
15875 complain))
15876 return error_mark_node;
15878 /* We are building a FUNCTION_DECL, during which the access of its
15879 parameters and return types have to be checked. However this
15880 FUNCTION_DECL which is the desired context for access checking
15881 is not built yet. We solve this chicken-and-egg problem by
15882 deferring all checks until we have the FUNCTION_DECL. */
15883 push_deferring_access_checks (dk_deferred);
15885 /* Instantiation of the function happens in the context of the function
15886 template, not the context of the overload resolution we're doing. */
15887 push_to_top_level ();
15888 /* If there are dependent arguments, e.g. because we're doing partial
15889 ordering, make sure processing_template_decl stays set. */
15890 if (uses_template_parms (targ_ptr))
15891 ++processing_template_decl;
15892 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15894 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
15895 complain, gen_tmpl, true);
15896 push_nested_class (ctx);
15899 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
15901 if (VAR_P (pattern))
15903 /* We need to determine if we're using a partial or explicit
15904 specialization now, because the type of the variable could be
15905 different. */
15906 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
15907 tree elt = most_specialized_partial_spec (tid, complain);
15908 if (elt == error_mark_node)
15909 pattern = error_mark_node;
15910 else if (elt)
15912 tmpl = TREE_VALUE (elt);
15913 pattern = DECL_TEMPLATE_RESULT (tmpl);
15914 targ_ptr = TREE_PURPOSE (elt);
15918 /* Substitute template parameters to obtain the specialization. */
15919 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
15920 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15921 pop_nested_class ();
15922 pop_from_top_level ();
15924 if (fndecl == error_mark_node)
15926 pop_deferring_access_checks ();
15927 return error_mark_node;
15930 /* The DECL_TI_TEMPLATE should always be the immediate parent
15931 template, not the most general template. */
15932 DECL_TI_TEMPLATE (fndecl) = tmpl;
15934 /* Now we know the specialization, compute access previously
15935 deferred. */
15936 push_access_scope (fndecl);
15937 if (!perform_deferred_access_checks (complain))
15938 access_ok = false;
15939 pop_access_scope (fndecl);
15940 pop_deferring_access_checks ();
15942 /* If we've just instantiated the main entry point for a function,
15943 instantiate all the alternate entry points as well. We do this
15944 by cloning the instantiation of the main entry point, not by
15945 instantiating the template clones. */
15946 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
15947 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
15949 if (!access_ok)
15951 if (!(complain & tf_error))
15953 /* Remember to reinstantiate when we're out of SFINAE so the user
15954 can see the errors. */
15955 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
15957 return error_mark_node;
15959 return fndecl;
15962 /* Wrapper for instantiate_template_1. */
15964 tree
15965 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
15967 tree ret;
15968 timevar_push (TV_TEMPLATE_INST);
15969 ret = instantiate_template_1 (tmpl, orig_args, complain);
15970 timevar_pop (TV_TEMPLATE_INST);
15971 return ret;
15974 /* Instantiate the alias template TMPL with ARGS. Also push a template
15975 instantiation level, which instantiate_template doesn't do because
15976 functions and variables have sufficient context established by the
15977 callers. */
15979 static tree
15980 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
15982 struct pending_template *old_last_pend = last_pending_template;
15983 struct tinst_level *old_error_tinst = last_error_tinst_level;
15984 if (tmpl == error_mark_node || args == error_mark_node)
15985 return error_mark_node;
15986 tree tinst = build_tree_list (tmpl, args);
15987 if (!push_tinst_level (tinst))
15989 ggc_free (tinst);
15990 return error_mark_node;
15993 args =
15994 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
15995 args, tmpl, complain,
15996 /*require_all_args=*/true,
15997 /*use_default_args=*/true);
15999 tree r = instantiate_template (tmpl, args, complain);
16000 pop_tinst_level ();
16001 /* We can't free this if a pending_template entry or last_error_tinst_level
16002 is pointing at it. */
16003 if (last_pending_template == old_last_pend
16004 && last_error_tinst_level == old_error_tinst)
16005 ggc_free (tinst);
16007 return r;
16010 /* PARM is a template parameter pack for FN. Returns true iff
16011 PARM is used in a deducible way in the argument list of FN. */
16013 static bool
16014 pack_deducible_p (tree parm, tree fn)
16016 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
16017 for (; t; t = TREE_CHAIN (t))
16019 tree type = TREE_VALUE (t);
16020 tree packs;
16021 if (!PACK_EXPANSION_P (type))
16022 continue;
16023 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
16024 packs; packs = TREE_CHAIN (packs))
16025 if (template_args_equal (TREE_VALUE (packs), parm))
16027 /* The template parameter pack is used in a function parameter
16028 pack. If this is the end of the parameter list, the
16029 template parameter pack is deducible. */
16030 if (TREE_CHAIN (t) == void_list_node)
16031 return true;
16032 else
16033 /* Otherwise, not. Well, it could be deduced from
16034 a non-pack parameter, but doing so would end up with
16035 a deduction mismatch, so don't bother. */
16036 return false;
16039 /* The template parameter pack isn't used in any function parameter
16040 packs, but it might be used deeper, e.g. tuple<Args...>. */
16041 return true;
16044 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
16045 NARGS elements of the arguments that are being used when calling
16046 it. TARGS is a vector into which the deduced template arguments
16047 are placed.
16049 Returns either a FUNCTION_DECL for the matching specialization of FN or
16050 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
16051 true, diagnostics will be printed to explain why it failed.
16053 If FN is a conversion operator, or we are trying to produce a specific
16054 specialization, RETURN_TYPE is the return type desired.
16056 The EXPLICIT_TARGS are explicit template arguments provided via a
16057 template-id.
16059 The parameter STRICT is one of:
16061 DEDUCE_CALL:
16062 We are deducing arguments for a function call, as in
16063 [temp.deduct.call].
16065 DEDUCE_CONV:
16066 We are deducing arguments for a conversion function, as in
16067 [temp.deduct.conv].
16069 DEDUCE_EXACT:
16070 We are deducing arguments when doing an explicit instantiation
16071 as in [temp.explicit], when determining an explicit specialization
16072 as in [temp.expl.spec], or when taking the address of a function
16073 template, as in [temp.deduct.funcaddr]. */
16075 tree
16076 fn_type_unification (tree fn,
16077 tree explicit_targs,
16078 tree targs,
16079 const tree *args,
16080 unsigned int nargs,
16081 tree return_type,
16082 unification_kind_t strict,
16083 int flags,
16084 bool explain_p,
16085 bool decltype_p)
16087 tree parms;
16088 tree fntype;
16089 tree decl = NULL_TREE;
16090 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
16091 bool ok;
16092 static int deduction_depth;
16093 struct pending_template *old_last_pend = last_pending_template;
16094 struct tinst_level *old_error_tinst = last_error_tinst_level;
16095 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
16096 tree tinst;
16097 tree r = error_mark_node;
16099 if (decltype_p)
16100 complain |= tf_decltype;
16102 /* In C++0x, it's possible to have a function template whose type depends
16103 on itself recursively. This is most obvious with decltype, but can also
16104 occur with enumeration scope (c++/48969). So we need to catch infinite
16105 recursion and reject the substitution at deduction time; this function
16106 will return error_mark_node for any repeated substitution.
16108 This also catches excessive recursion such as when f<N> depends on
16109 f<N-1> across all integers, and returns error_mark_node for all the
16110 substitutions back up to the initial one.
16112 This is, of course, not reentrant. */
16113 if (excessive_deduction_depth)
16114 return error_mark_node;
16115 tinst = build_tree_list (fn, NULL_TREE);
16116 ++deduction_depth;
16118 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
16120 fntype = TREE_TYPE (fn);
16121 if (explicit_targs)
16123 /* [temp.deduct]
16125 The specified template arguments must match the template
16126 parameters in kind (i.e., type, nontype, template), and there
16127 must not be more arguments than there are parameters;
16128 otherwise type deduction fails.
16130 Nontype arguments must match the types of the corresponding
16131 nontype template parameters, or must be convertible to the
16132 types of the corresponding nontype parameters as specified in
16133 _temp.arg.nontype_, otherwise type deduction fails.
16135 All references in the function type of the function template
16136 to the corresponding template parameters are replaced by the
16137 specified template argument values. If a substitution in a
16138 template parameter or in the function type of the function
16139 template results in an invalid type, type deduction fails. */
16140 int i, len = TREE_VEC_LENGTH (tparms);
16141 location_t loc = input_location;
16142 bool incomplete = false;
16144 /* Adjust any explicit template arguments before entering the
16145 substitution context. */
16146 explicit_targs
16147 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
16148 complain,
16149 /*require_all_args=*/false,
16150 /*use_default_args=*/false));
16151 if (explicit_targs == error_mark_node)
16152 goto fail;
16154 /* Substitute the explicit args into the function type. This is
16155 necessary so that, for instance, explicitly declared function
16156 arguments can match null pointed constants. If we were given
16157 an incomplete set of explicit args, we must not do semantic
16158 processing during substitution as we could create partial
16159 instantiations. */
16160 for (i = 0; i < len; i++)
16162 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16163 bool parameter_pack = false;
16164 tree targ = TREE_VEC_ELT (explicit_targs, i);
16166 /* Dig out the actual parm. */
16167 if (TREE_CODE (parm) == TYPE_DECL
16168 || TREE_CODE (parm) == TEMPLATE_DECL)
16170 parm = TREE_TYPE (parm);
16171 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
16173 else if (TREE_CODE (parm) == PARM_DECL)
16175 parm = DECL_INITIAL (parm);
16176 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
16179 if (!parameter_pack && targ == NULL_TREE)
16180 /* No explicit argument for this template parameter. */
16181 incomplete = true;
16183 if (parameter_pack && pack_deducible_p (parm, fn))
16185 /* Mark the argument pack as "incomplete". We could
16186 still deduce more arguments during unification.
16187 We remove this mark in type_unification_real. */
16188 if (targ)
16190 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
16191 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
16192 = ARGUMENT_PACK_ARGS (targ);
16195 /* We have some incomplete argument packs. */
16196 incomplete = true;
16200 TREE_VALUE (tinst) = explicit_targs;
16201 if (!push_tinst_level (tinst))
16203 excessive_deduction_depth = true;
16204 goto fail;
16206 processing_template_decl += incomplete;
16207 input_location = DECL_SOURCE_LOCATION (fn);
16208 /* Ignore any access checks; we'll see them again in
16209 instantiate_template and they might have the wrong
16210 access path at this point. */
16211 push_deferring_access_checks (dk_deferred);
16212 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
16213 complain | tf_partial, NULL_TREE);
16214 pop_deferring_access_checks ();
16215 input_location = loc;
16216 processing_template_decl -= incomplete;
16217 pop_tinst_level ();
16219 if (fntype == error_mark_node)
16220 goto fail;
16222 /* Place the explicitly specified arguments in TARGS. */
16223 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
16224 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
16227 /* Never do unification on the 'this' parameter. */
16228 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
16230 if (return_type)
16232 tree *new_args;
16234 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
16235 new_args = XALLOCAVEC (tree, nargs + 1);
16236 new_args[0] = return_type;
16237 memcpy (new_args + 1, args, nargs * sizeof (tree));
16238 args = new_args;
16239 ++nargs;
16242 /* We allow incomplete unification without an error message here
16243 because the standard doesn't seem to explicitly prohibit it. Our
16244 callers must be ready to deal with unification failures in any
16245 event. */
16247 TREE_VALUE (tinst) = targs;
16248 /* If we aren't explaining yet, push tinst context so we can see where
16249 any errors (e.g. from class instantiations triggered by instantiation
16250 of default template arguments) come from. If we are explaining, this
16251 context is redundant. */
16252 if (!explain_p && !push_tinst_level (tinst))
16254 excessive_deduction_depth = true;
16255 goto fail;
16258 /* type_unification_real will pass back any access checks from default
16259 template argument substitution. */
16260 vec<deferred_access_check, va_gc> *checks;
16261 checks = NULL;
16263 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16264 targs, parms, args, nargs, /*subr=*/0,
16265 strict, flags, &checks, explain_p);
16266 if (!explain_p)
16267 pop_tinst_level ();
16268 if (!ok)
16269 goto fail;
16271 /* Now that we have bindings for all of the template arguments,
16272 ensure that the arguments deduced for the template template
16273 parameters have compatible template parameter lists. We cannot
16274 check this property before we have deduced all template
16275 arguments, because the template parameter types of a template
16276 template parameter might depend on prior template parameters
16277 deduced after the template template parameter. The following
16278 ill-formed example illustrates this issue:
16280 template<typename T, template<T> class C> void f(C<5>, T);
16282 template<int N> struct X {};
16284 void g() {
16285 f(X<5>(), 5l); // error: template argument deduction fails
16288 The template parameter list of 'C' depends on the template type
16289 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
16290 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
16291 time that we deduce 'C'. */
16292 if (!template_template_parm_bindings_ok_p
16293 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
16295 unify_inconsistent_template_template_parameters (explain_p);
16296 goto fail;
16299 /* All is well so far. Now, check:
16301 [temp.deduct]
16303 When all template arguments have been deduced, all uses of
16304 template parameters in nondeduced contexts are replaced with
16305 the corresponding deduced argument values. If the
16306 substitution results in an invalid type, as described above,
16307 type deduction fails. */
16308 TREE_VALUE (tinst) = targs;
16309 if (!push_tinst_level (tinst))
16311 excessive_deduction_depth = true;
16312 goto fail;
16315 /* Also collect access checks from the instantiation. */
16316 reopen_deferring_access_checks (checks);
16318 decl = instantiate_template (fn, targs, complain);
16320 checks = get_deferred_access_checks ();
16321 pop_deferring_access_checks ();
16323 pop_tinst_level ();
16325 if (decl == error_mark_node)
16326 goto fail;
16328 /* Now perform any access checks encountered during substitution. */
16329 push_access_scope (decl);
16330 ok = perform_access_checks (checks, complain);
16331 pop_access_scope (decl);
16332 if (!ok)
16333 goto fail;
16335 /* If we're looking for an exact match, check that what we got
16336 is indeed an exact match. It might not be if some template
16337 parameters are used in non-deduced contexts. But don't check
16338 for an exact match if we have dependent template arguments;
16339 in that case we're doing partial ordering, and we already know
16340 that we have two candidates that will provide the actual type. */
16341 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
16343 tree substed = TREE_TYPE (decl);
16344 unsigned int i;
16346 tree sarg
16347 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
16348 if (return_type)
16349 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
16350 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
16351 if (!same_type_p (args[i], TREE_VALUE (sarg)))
16353 unify_type_mismatch (explain_p, args[i],
16354 TREE_VALUE (sarg));
16355 goto fail;
16359 r = decl;
16361 fail:
16362 --deduction_depth;
16363 if (excessive_deduction_depth)
16365 if (deduction_depth == 0)
16366 /* Reset once we're all the way out. */
16367 excessive_deduction_depth = false;
16370 /* We can't free this if a pending_template entry or last_error_tinst_level
16371 is pointing at it. */
16372 if (last_pending_template == old_last_pend
16373 && last_error_tinst_level == old_error_tinst)
16374 ggc_free (tinst);
16376 return r;
16379 /* Adjust types before performing type deduction, as described in
16380 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
16381 sections are symmetric. PARM is the type of a function parameter
16382 or the return type of the conversion function. ARG is the type of
16383 the argument passed to the call, or the type of the value
16384 initialized with the result of the conversion function.
16385 ARG_EXPR is the original argument expression, which may be null. */
16387 static int
16388 maybe_adjust_types_for_deduction (unification_kind_t strict,
16389 tree* parm,
16390 tree* arg,
16391 tree arg_expr)
16393 int result = 0;
16395 switch (strict)
16397 case DEDUCE_CALL:
16398 break;
16400 case DEDUCE_CONV:
16402 /* Swap PARM and ARG throughout the remainder of this
16403 function; the handling is precisely symmetric since PARM
16404 will initialize ARG rather than vice versa. */
16405 tree* temp = parm;
16406 parm = arg;
16407 arg = temp;
16408 break;
16411 case DEDUCE_EXACT:
16412 /* Core issue #873: Do the DR606 thing (see below) for these cases,
16413 too, but here handle it by stripping the reference from PARM
16414 rather than by adding it to ARG. */
16415 if (TREE_CODE (*parm) == REFERENCE_TYPE
16416 && TYPE_REF_IS_RVALUE (*parm)
16417 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16418 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16419 && TREE_CODE (*arg) == REFERENCE_TYPE
16420 && !TYPE_REF_IS_RVALUE (*arg))
16421 *parm = TREE_TYPE (*parm);
16422 /* Nothing else to do in this case. */
16423 return 0;
16425 default:
16426 gcc_unreachable ();
16429 if (TREE_CODE (*parm) != REFERENCE_TYPE)
16431 /* [temp.deduct.call]
16433 If P is not a reference type:
16435 --If A is an array type, the pointer type produced by the
16436 array-to-pointer standard conversion (_conv.array_) is
16437 used in place of A for type deduction; otherwise,
16439 --If A is a function type, the pointer type produced by
16440 the function-to-pointer standard conversion
16441 (_conv.func_) is used in place of A for type deduction;
16442 otherwise,
16444 --If A is a cv-qualified type, the top level
16445 cv-qualifiers of A's type are ignored for type
16446 deduction. */
16447 if (TREE_CODE (*arg) == ARRAY_TYPE)
16448 *arg = build_pointer_type (TREE_TYPE (*arg));
16449 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
16450 *arg = build_pointer_type (*arg);
16451 else
16452 *arg = TYPE_MAIN_VARIANT (*arg);
16455 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
16456 of the form T&&, where T is a template parameter, and the argument
16457 is an lvalue, T is deduced as A& */
16458 if (TREE_CODE (*parm) == REFERENCE_TYPE
16459 && TYPE_REF_IS_RVALUE (*parm)
16460 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16461 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16462 && (arg_expr ? real_lvalue_p (arg_expr)
16463 /* try_one_overload doesn't provide an arg_expr, but
16464 functions are always lvalues. */
16465 : TREE_CODE (*arg) == FUNCTION_TYPE))
16466 *arg = build_reference_type (*arg);
16468 /* [temp.deduct.call]
16470 If P is a cv-qualified type, the top level cv-qualifiers
16471 of P's type are ignored for type deduction. If P is a
16472 reference type, the type referred to by P is used for
16473 type deduction. */
16474 *parm = TYPE_MAIN_VARIANT (*parm);
16475 if (TREE_CODE (*parm) == REFERENCE_TYPE)
16477 *parm = TREE_TYPE (*parm);
16478 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16481 /* DR 322. For conversion deduction, remove a reference type on parm
16482 too (which has been swapped into ARG). */
16483 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
16484 *arg = TREE_TYPE (*arg);
16486 return result;
16489 /* Subroutine of unify_one_argument. PARM is a function parameter of a
16490 template which does contain any deducible template parameters; check if
16491 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
16492 unify_one_argument. */
16494 static int
16495 check_non_deducible_conversion (tree parm, tree arg, int strict,
16496 int flags, bool explain_p)
16498 tree type;
16500 if (!TYPE_P (arg))
16501 type = TREE_TYPE (arg);
16502 else
16503 type = arg;
16505 if (same_type_p (parm, type))
16506 return unify_success (explain_p);
16508 if (strict == DEDUCE_CONV)
16510 if (can_convert_arg (type, parm, NULL_TREE, flags,
16511 explain_p ? tf_warning_or_error : tf_none))
16512 return unify_success (explain_p);
16514 else if (strict != DEDUCE_EXACT)
16516 if (can_convert_arg (parm, type,
16517 TYPE_P (arg) ? NULL_TREE : arg,
16518 flags, explain_p ? tf_warning_or_error : tf_none))
16519 return unify_success (explain_p);
16522 if (strict == DEDUCE_EXACT)
16523 return unify_type_mismatch (explain_p, parm, arg);
16524 else
16525 return unify_arg_conversion (explain_p, parm, type, arg);
16528 static bool uses_deducible_template_parms (tree type);
16530 /* Returns true iff the expression EXPR is one from which a template
16531 argument can be deduced. In other words, if it's an undecorated
16532 use of a template non-type parameter. */
16534 static bool
16535 deducible_expression (tree expr)
16537 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
16540 /* Returns true iff the array domain DOMAIN uses a template parameter in a
16541 deducible way; that is, if it has a max value of <PARM> - 1. */
16543 static bool
16544 deducible_array_bound (tree domain)
16546 if (domain == NULL_TREE)
16547 return false;
16549 tree max = TYPE_MAX_VALUE (domain);
16550 if (TREE_CODE (max) != MINUS_EXPR)
16551 return false;
16553 return deducible_expression (TREE_OPERAND (max, 0));
16556 /* Returns true iff the template arguments ARGS use a template parameter
16557 in a deducible way. */
16559 static bool
16560 deducible_template_args (tree args)
16562 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
16564 bool deducible;
16565 tree elt = TREE_VEC_ELT (args, i);
16566 if (ARGUMENT_PACK_P (elt))
16567 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
16568 else
16570 if (PACK_EXPANSION_P (elt))
16571 elt = PACK_EXPANSION_PATTERN (elt);
16572 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
16573 deducible = true;
16574 else if (TYPE_P (elt))
16575 deducible = uses_deducible_template_parms (elt);
16576 else
16577 deducible = deducible_expression (elt);
16579 if (deducible)
16580 return true;
16582 return false;
16585 /* Returns true iff TYPE contains any deducible references to template
16586 parameters, as per 14.8.2.5. */
16588 static bool
16589 uses_deducible_template_parms (tree type)
16591 if (PACK_EXPANSION_P (type))
16592 type = PACK_EXPANSION_PATTERN (type);
16594 /* T
16595 cv-list T
16596 TT<T>
16597 TT<i>
16598 TT<> */
16599 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
16600 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
16601 return true;
16603 /* T*
16605 T&& */
16606 if (POINTER_TYPE_P (type))
16607 return uses_deducible_template_parms (TREE_TYPE (type));
16609 /* T[integer-constant ]
16610 type [i] */
16611 if (TREE_CODE (type) == ARRAY_TYPE)
16612 return (uses_deducible_template_parms (TREE_TYPE (type))
16613 || deducible_array_bound (TYPE_DOMAIN (type)));
16615 /* T type ::*
16616 type T::*
16617 T T::*
16618 T (type ::*)()
16619 type (T::*)()
16620 type (type ::*)(T)
16621 type (T::*)(T)
16622 T (type ::*)(T)
16623 T (T::*)()
16624 T (T::*)(T) */
16625 if (TYPE_PTRMEM_P (type))
16626 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
16627 || (uses_deducible_template_parms
16628 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
16630 /* template-name <T> (where template-name refers to a class template)
16631 template-name <i> (where template-name refers to a class template) */
16632 if (CLASS_TYPE_P (type)
16633 && CLASSTYPE_TEMPLATE_INFO (type)
16634 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
16635 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
16636 (CLASSTYPE_TI_ARGS (type)));
16638 /* type (T)
16640 T(T) */
16641 if (TREE_CODE (type) == FUNCTION_TYPE
16642 || TREE_CODE (type) == METHOD_TYPE)
16644 if (uses_deducible_template_parms (TREE_TYPE (type)))
16645 return true;
16646 tree parm = TYPE_ARG_TYPES (type);
16647 if (TREE_CODE (type) == METHOD_TYPE)
16648 parm = TREE_CHAIN (parm);
16649 for (; parm; parm = TREE_CHAIN (parm))
16650 if (uses_deducible_template_parms (TREE_VALUE (parm)))
16651 return true;
16654 return false;
16657 /* Subroutine of type_unification_real and unify_pack_expansion to
16658 handle unification of a single P/A pair. Parameters are as
16659 for those functions. */
16661 static int
16662 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
16663 int subr, unification_kind_t strict, int flags,
16664 bool explain_p)
16666 tree arg_expr = NULL_TREE;
16667 int arg_strict;
16669 if (arg == error_mark_node || parm == error_mark_node)
16670 return unify_invalid (explain_p);
16671 if (arg == unknown_type_node)
16672 /* We can't deduce anything from this, but we might get all the
16673 template args from other function args. */
16674 return unify_success (explain_p);
16676 /* Implicit conversions (Clause 4) will be performed on a function
16677 argument to convert it to the type of the corresponding function
16678 parameter if the parameter type contains no template-parameters that
16679 participate in template argument deduction. */
16680 if (TYPE_P (parm) && !uses_template_parms (parm))
16681 /* For function parameters that contain no template-parameters at all,
16682 we have historically checked for convertibility in order to shortcut
16683 consideration of this candidate. */
16684 return check_non_deducible_conversion (parm, arg, strict, flags,
16685 explain_p);
16686 else if (strict == DEDUCE_CALL
16687 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
16688 /* For function parameters with only non-deducible template parameters,
16689 just return. */
16690 return unify_success (explain_p);
16692 switch (strict)
16694 case DEDUCE_CALL:
16695 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
16696 | UNIFY_ALLOW_MORE_CV_QUAL
16697 | UNIFY_ALLOW_DERIVED);
16698 break;
16700 case DEDUCE_CONV:
16701 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
16702 break;
16704 case DEDUCE_EXACT:
16705 arg_strict = UNIFY_ALLOW_NONE;
16706 break;
16708 default:
16709 gcc_unreachable ();
16712 /* We only do these transformations if this is the top-level
16713 parameter_type_list in a call or declaration matching; in other
16714 situations (nested function declarators, template argument lists) we
16715 won't be comparing a type to an expression, and we don't do any type
16716 adjustments. */
16717 if (!subr)
16719 if (!TYPE_P (arg))
16721 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
16722 if (type_unknown_p (arg))
16724 /* [temp.deduct.type] A template-argument can be
16725 deduced from a pointer to function or pointer
16726 to member function argument if the set of
16727 overloaded functions does not contain function
16728 templates and at most one of a set of
16729 overloaded functions provides a unique
16730 match. */
16732 if (resolve_overloaded_unification
16733 (tparms, targs, parm, arg, strict,
16734 arg_strict, explain_p))
16735 return unify_success (explain_p);
16736 return unify_overload_resolution_failure (explain_p, arg);
16739 arg_expr = arg;
16740 arg = unlowered_expr_type (arg);
16741 if (arg == error_mark_node)
16742 return unify_invalid (explain_p);
16745 arg_strict |=
16746 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
16748 else
16749 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
16750 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
16751 return unify_template_argument_mismatch (explain_p, parm, arg);
16753 /* For deduction from an init-list we need the actual list. */
16754 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
16755 arg = arg_expr;
16756 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
16759 /* Most parms like fn_type_unification.
16761 If SUBR is 1, we're being called recursively (to unify the
16762 arguments of a function or method parameter of a function
16763 template).
16765 CHECKS is a pointer to a vector of access checks encountered while
16766 substituting default template arguments. */
16768 static int
16769 type_unification_real (tree tparms,
16770 tree targs,
16771 tree xparms,
16772 const tree *xargs,
16773 unsigned int xnargs,
16774 int subr,
16775 unification_kind_t strict,
16776 int flags,
16777 vec<deferred_access_check, va_gc> **checks,
16778 bool explain_p)
16780 tree parm, arg;
16781 int i;
16782 int ntparms = TREE_VEC_LENGTH (tparms);
16783 int saw_undeduced = 0;
16784 tree parms;
16785 const tree *args;
16786 unsigned int nargs;
16787 unsigned int ia;
16789 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
16790 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
16791 gcc_assert (ntparms > 0);
16793 /* Reset the number of non-defaulted template arguments contained
16794 in TARGS. */
16795 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
16797 again:
16798 parms = xparms;
16799 args = xargs;
16800 nargs = xnargs;
16802 ia = 0;
16803 while (parms && parms != void_list_node
16804 && ia < nargs)
16806 parm = TREE_VALUE (parms);
16808 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
16809 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
16810 /* For a function parameter pack that occurs at the end of the
16811 parameter-declaration-list, the type A of each remaining
16812 argument of the call is compared with the type P of the
16813 declarator-id of the function parameter pack. */
16814 break;
16816 parms = TREE_CHAIN (parms);
16818 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
16819 /* For a function parameter pack that does not occur at the
16820 end of the parameter-declaration-list, the type of the
16821 parameter pack is a non-deduced context. */
16822 continue;
16824 arg = args[ia];
16825 ++ia;
16827 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16828 flags, explain_p))
16829 return 1;
16832 if (parms
16833 && parms != void_list_node
16834 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
16836 /* Unify the remaining arguments with the pack expansion type. */
16837 tree argvec;
16838 tree parmvec = make_tree_vec (1);
16840 /* Allocate a TREE_VEC and copy in all of the arguments */
16841 argvec = make_tree_vec (nargs - ia);
16842 for (i = 0; ia < nargs; ++ia, ++i)
16843 TREE_VEC_ELT (argvec, i) = args[ia];
16845 /* Copy the parameter into parmvec. */
16846 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
16847 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
16848 /*subr=*/subr, explain_p))
16849 return 1;
16851 /* Advance to the end of the list of parameters. */
16852 parms = TREE_CHAIN (parms);
16855 /* Fail if we've reached the end of the parm list, and more args
16856 are present, and the parm list isn't variadic. */
16857 if (ia < nargs && parms == void_list_node)
16858 return unify_too_many_arguments (explain_p, nargs, ia);
16859 /* Fail if parms are left and they don't have default values and
16860 they aren't all deduced as empty packs (c++/57397). This is
16861 consistent with sufficient_parms_p. */
16862 if (parms && parms != void_list_node
16863 && TREE_PURPOSE (parms) == NULL_TREE)
16865 unsigned int count = nargs;
16866 tree p = parms;
16867 bool type_pack_p;
16870 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
16871 if (!type_pack_p)
16872 count++;
16873 p = TREE_CHAIN (p);
16875 while (p && p != void_list_node);
16876 if (count != nargs)
16877 return unify_too_few_arguments (explain_p, ia, count,
16878 type_pack_p);
16881 if (!subr)
16883 tsubst_flags_t complain = (explain_p
16884 ? tf_warning_or_error
16885 : tf_none);
16887 for (i = 0; i < ntparms; i++)
16889 tree targ = TREE_VEC_ELT (targs, i);
16890 tree tparm = TREE_VEC_ELT (tparms, i);
16892 /* Clear the "incomplete" flags on all argument packs now so that
16893 substituting them into later default arguments works. */
16894 if (targ && ARGUMENT_PACK_P (targ))
16896 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
16897 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
16900 if (targ || tparm == error_mark_node)
16901 continue;
16902 tparm = TREE_VALUE (tparm);
16904 /* If this is an undeduced nontype parameter that depends on
16905 a type parameter, try another pass; its type may have been
16906 deduced from a later argument than the one from which
16907 this parameter can be deduced. */
16908 if (TREE_CODE (tparm) == PARM_DECL
16909 && uses_template_parms (TREE_TYPE (tparm))
16910 && !saw_undeduced++)
16911 goto again;
16913 /* Core issue #226 (C++0x) [temp.deduct]:
16915 If a template argument has not been deduced, its
16916 default template argument, if any, is used.
16918 When we are in C++98 mode, TREE_PURPOSE will either
16919 be NULL_TREE or ERROR_MARK_NODE, so we do not need
16920 to explicitly check cxx_dialect here. */
16921 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
16923 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16924 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
16925 reopen_deferring_access_checks (*checks);
16926 location_t save_loc = input_location;
16927 if (DECL_P (parm))
16928 input_location = DECL_SOURCE_LOCATION (parm);
16929 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
16930 arg = convert_template_argument (parm, arg, targs, complain,
16931 i, NULL_TREE);
16932 input_location = save_loc;
16933 *checks = get_deferred_access_checks ();
16934 pop_deferring_access_checks ();
16935 if (arg == error_mark_node)
16936 return 1;
16937 else
16939 TREE_VEC_ELT (targs, i) = arg;
16940 /* The position of the first default template argument,
16941 is also the number of non-defaulted arguments in TARGS.
16942 Record that. */
16943 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16944 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
16945 continue;
16949 /* If the type parameter is a parameter pack, then it will
16950 be deduced to an empty parameter pack. */
16951 if (template_parameter_pack_p (tparm))
16953 tree arg;
16955 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
16957 arg = make_node (NONTYPE_ARGUMENT_PACK);
16958 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
16959 TREE_CONSTANT (arg) = 1;
16961 else
16962 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
16964 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
16966 TREE_VEC_ELT (targs, i) = arg;
16967 continue;
16970 return unify_parameter_deduction_failure (explain_p, tparm);
16973 #ifdef ENABLE_CHECKING
16974 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16975 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
16976 #endif
16978 return unify_success (explain_p);
16981 /* Subroutine of type_unification_real. Args are like the variables
16982 at the call site. ARG is an overloaded function (or template-id);
16983 we try deducing template args from each of the overloads, and if
16984 only one succeeds, we go with that. Modifies TARGS and returns
16985 true on success. */
16987 static bool
16988 resolve_overloaded_unification (tree tparms,
16989 tree targs,
16990 tree parm,
16991 tree arg,
16992 unification_kind_t strict,
16993 int sub_strict,
16994 bool explain_p)
16996 tree tempargs = copy_node (targs);
16997 int good = 0;
16998 tree goodfn = NULL_TREE;
16999 bool addr_p;
17001 if (TREE_CODE (arg) == ADDR_EXPR)
17003 arg = TREE_OPERAND (arg, 0);
17004 addr_p = true;
17006 else
17007 addr_p = false;
17009 if (TREE_CODE (arg) == COMPONENT_REF)
17010 /* Handle `&x' where `x' is some static or non-static member
17011 function name. */
17012 arg = TREE_OPERAND (arg, 1);
17014 if (TREE_CODE (arg) == OFFSET_REF)
17015 arg = TREE_OPERAND (arg, 1);
17017 /* Strip baselink information. */
17018 if (BASELINK_P (arg))
17019 arg = BASELINK_FUNCTIONS (arg);
17021 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
17023 /* If we got some explicit template args, we need to plug them into
17024 the affected templates before we try to unify, in case the
17025 explicit args will completely resolve the templates in question. */
17027 int ok = 0;
17028 tree expl_subargs = TREE_OPERAND (arg, 1);
17029 arg = TREE_OPERAND (arg, 0);
17031 for (; arg; arg = OVL_NEXT (arg))
17033 tree fn = OVL_CURRENT (arg);
17034 tree subargs, elem;
17036 if (TREE_CODE (fn) != TEMPLATE_DECL)
17037 continue;
17039 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17040 expl_subargs, NULL_TREE, tf_none,
17041 /*require_all_args=*/true,
17042 /*use_default_args=*/true);
17043 if (subargs != error_mark_node
17044 && !any_dependent_template_arguments_p (subargs))
17046 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
17047 if (try_one_overload (tparms, targs, tempargs, parm,
17048 elem, strict, sub_strict, addr_p, explain_p)
17049 && (!goodfn || !same_type_p (goodfn, elem)))
17051 goodfn = elem;
17052 ++good;
17055 else if (subargs)
17056 ++ok;
17058 /* If no templates (or more than one) are fully resolved by the
17059 explicit arguments, this template-id is a non-deduced context; it
17060 could still be OK if we deduce all template arguments for the
17061 enclosing call through other arguments. */
17062 if (good != 1)
17063 good = ok;
17065 else if (TREE_CODE (arg) != OVERLOAD
17066 && TREE_CODE (arg) != FUNCTION_DECL)
17067 /* If ARG is, for example, "(0, &f)" then its type will be unknown
17068 -- but the deduction does not succeed because the expression is
17069 not just the function on its own. */
17070 return false;
17071 else
17072 for (; arg; arg = OVL_NEXT (arg))
17073 if (try_one_overload (tparms, targs, tempargs, parm,
17074 TREE_TYPE (OVL_CURRENT (arg)),
17075 strict, sub_strict, addr_p, explain_p)
17076 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
17078 goodfn = OVL_CURRENT (arg);
17079 ++good;
17082 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17083 to function or pointer to member function argument if the set of
17084 overloaded functions does not contain function templates and at most
17085 one of a set of overloaded functions provides a unique match.
17087 So if we found multiple possibilities, we return success but don't
17088 deduce anything. */
17090 if (good == 1)
17092 int i = TREE_VEC_LENGTH (targs);
17093 for (; i--; )
17094 if (TREE_VEC_ELT (tempargs, i))
17096 tree old = TREE_VEC_ELT (targs, i);
17097 tree new_ = TREE_VEC_ELT (tempargs, i);
17098 if (new_ && old && ARGUMENT_PACK_P (old)
17099 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
17100 /* Don't forget explicit template arguments in a pack. */
17101 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
17102 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
17103 TREE_VEC_ELT (targs, i) = new_;
17106 if (good)
17107 return true;
17109 return false;
17112 /* Core DR 115: In contexts where deduction is done and fails, or in
17113 contexts where deduction is not done, if a template argument list is
17114 specified and it, along with any default template arguments, identifies
17115 a single function template specialization, then the template-id is an
17116 lvalue for the function template specialization. */
17118 tree
17119 resolve_nondeduced_context (tree orig_expr)
17121 tree expr, offset, baselink;
17122 bool addr;
17124 if (!type_unknown_p (orig_expr))
17125 return orig_expr;
17127 expr = orig_expr;
17128 addr = false;
17129 offset = NULL_TREE;
17130 baselink = NULL_TREE;
17132 if (TREE_CODE (expr) == ADDR_EXPR)
17134 expr = TREE_OPERAND (expr, 0);
17135 addr = true;
17137 if (TREE_CODE (expr) == OFFSET_REF)
17139 offset = expr;
17140 expr = TREE_OPERAND (expr, 1);
17142 if (BASELINK_P (expr))
17144 baselink = expr;
17145 expr = BASELINK_FUNCTIONS (expr);
17148 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
17150 int good = 0;
17151 tree goodfn = NULL_TREE;
17153 /* If we got some explicit template args, we need to plug them into
17154 the affected templates before we try to unify, in case the
17155 explicit args will completely resolve the templates in question. */
17157 tree expl_subargs = TREE_OPERAND (expr, 1);
17158 tree arg = TREE_OPERAND (expr, 0);
17159 tree badfn = NULL_TREE;
17160 tree badargs = NULL_TREE;
17162 for (; arg; arg = OVL_NEXT (arg))
17164 tree fn = OVL_CURRENT (arg);
17165 tree subargs, elem;
17167 if (TREE_CODE (fn) != TEMPLATE_DECL)
17168 continue;
17170 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17171 expl_subargs, NULL_TREE, tf_none,
17172 /*require_all_args=*/true,
17173 /*use_default_args=*/true);
17174 if (subargs != error_mark_node
17175 && !any_dependent_template_arguments_p (subargs))
17177 elem = instantiate_template (fn, subargs, tf_none);
17178 if (elem == error_mark_node)
17180 badfn = fn;
17181 badargs = subargs;
17183 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
17185 goodfn = elem;
17186 ++good;
17190 if (good == 1)
17192 mark_used (goodfn);
17193 expr = goodfn;
17194 if (baselink)
17195 expr = build_baselink (BASELINK_BINFO (baselink),
17196 BASELINK_ACCESS_BINFO (baselink),
17197 expr, BASELINK_OPTYPE (baselink));
17198 if (offset)
17200 tree base
17201 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
17202 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
17204 if (addr)
17205 expr = cp_build_addr_expr (expr, tf_warning_or_error);
17206 return expr;
17208 else if (good == 0 && badargs)
17209 /* There were no good options and at least one bad one, so let the
17210 user know what the problem is. */
17211 instantiate_template (badfn, badargs, tf_warning_or_error);
17213 return orig_expr;
17216 /* Subroutine of resolve_overloaded_unification; does deduction for a single
17217 overload. Fills TARGS with any deduced arguments, or error_mark_node if
17218 different overloads deduce different arguments for a given parm.
17219 ADDR_P is true if the expression for which deduction is being
17220 performed was of the form "& fn" rather than simply "fn".
17222 Returns 1 on success. */
17224 static int
17225 try_one_overload (tree tparms,
17226 tree orig_targs,
17227 tree targs,
17228 tree parm,
17229 tree arg,
17230 unification_kind_t strict,
17231 int sub_strict,
17232 bool addr_p,
17233 bool explain_p)
17235 int nargs;
17236 tree tempargs;
17237 int i;
17239 if (arg == error_mark_node)
17240 return 0;
17242 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17243 to function or pointer to member function argument if the set of
17244 overloaded functions does not contain function templates and at most
17245 one of a set of overloaded functions provides a unique match.
17247 So if this is a template, just return success. */
17249 if (uses_template_parms (arg))
17250 return 1;
17252 if (TREE_CODE (arg) == METHOD_TYPE)
17253 arg = build_ptrmemfunc_type (build_pointer_type (arg));
17254 else if (addr_p)
17255 arg = build_pointer_type (arg);
17257 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
17259 /* We don't copy orig_targs for this because if we have already deduced
17260 some template args from previous args, unify would complain when we
17261 try to deduce a template parameter for the same argument, even though
17262 there isn't really a conflict. */
17263 nargs = TREE_VEC_LENGTH (targs);
17264 tempargs = make_tree_vec (nargs);
17266 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
17267 return 0;
17269 /* First make sure we didn't deduce anything that conflicts with
17270 explicitly specified args. */
17271 for (i = nargs; i--; )
17273 tree elt = TREE_VEC_ELT (tempargs, i);
17274 tree oldelt = TREE_VEC_ELT (orig_targs, i);
17276 if (!elt)
17277 /*NOP*/;
17278 else if (uses_template_parms (elt))
17279 /* Since we're unifying against ourselves, we will fill in
17280 template args used in the function parm list with our own
17281 template parms. Discard them. */
17282 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
17283 else if (oldelt && !template_args_equal (oldelt, elt))
17284 return 0;
17287 for (i = nargs; i--; )
17289 tree elt = TREE_VEC_ELT (tempargs, i);
17291 if (elt)
17292 TREE_VEC_ELT (targs, i) = elt;
17295 return 1;
17298 /* PARM is a template class (perhaps with unbound template
17299 parameters). ARG is a fully instantiated type. If ARG can be
17300 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
17301 TARGS are as for unify. */
17303 static tree
17304 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
17305 bool explain_p)
17307 tree copy_of_targs;
17309 if (!CLASSTYPE_TEMPLATE_INFO (arg)
17310 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
17311 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
17312 return NULL_TREE;
17314 /* We need to make a new template argument vector for the call to
17315 unify. If we used TARGS, we'd clutter it up with the result of
17316 the attempted unification, even if this class didn't work out.
17317 We also don't want to commit ourselves to all the unifications
17318 we've already done, since unification is supposed to be done on
17319 an argument-by-argument basis. In other words, consider the
17320 following pathological case:
17322 template <int I, int J, int K>
17323 struct S {};
17325 template <int I, int J>
17326 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
17328 template <int I, int J, int K>
17329 void f(S<I, J, K>, S<I, I, I>);
17331 void g() {
17332 S<0, 0, 0> s0;
17333 S<0, 1, 2> s2;
17335 f(s0, s2);
17338 Now, by the time we consider the unification involving `s2', we
17339 already know that we must have `f<0, 0, 0>'. But, even though
17340 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
17341 because there are two ways to unify base classes of S<0, 1, 2>
17342 with S<I, I, I>. If we kept the already deduced knowledge, we
17343 would reject the possibility I=1. */
17344 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
17346 /* If unification failed, we're done. */
17347 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
17348 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
17349 return NULL_TREE;
17351 return arg;
17354 /* Given a template type PARM and a class type ARG, find the unique
17355 base type in ARG that is an instance of PARM. We do not examine
17356 ARG itself; only its base-classes. If there is not exactly one
17357 appropriate base class, return NULL_TREE. PARM may be the type of
17358 a partial specialization, as well as a plain template type. Used
17359 by unify. */
17361 static enum template_base_result
17362 get_template_base (tree tparms, tree targs, tree parm, tree arg,
17363 bool explain_p, tree *result)
17365 tree rval = NULL_TREE;
17366 tree binfo;
17368 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
17370 binfo = TYPE_BINFO (complete_type (arg));
17371 if (!binfo)
17373 /* The type could not be completed. */
17374 *result = NULL_TREE;
17375 return tbr_incomplete_type;
17378 /* Walk in inheritance graph order. The search order is not
17379 important, and this avoids multiple walks of virtual bases. */
17380 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
17382 tree r = try_class_unification (tparms, targs, parm,
17383 BINFO_TYPE (binfo), explain_p);
17385 if (r)
17387 /* If there is more than one satisfactory baseclass, then:
17389 [temp.deduct.call]
17391 If they yield more than one possible deduced A, the type
17392 deduction fails.
17394 applies. */
17395 if (rval && !same_type_p (r, rval))
17397 *result = NULL_TREE;
17398 return tbr_ambiguous_baseclass;
17401 rval = r;
17405 *result = rval;
17406 return tbr_success;
17409 /* Returns the level of DECL, which declares a template parameter. */
17411 static int
17412 template_decl_level (tree decl)
17414 switch (TREE_CODE (decl))
17416 case TYPE_DECL:
17417 case TEMPLATE_DECL:
17418 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
17420 case PARM_DECL:
17421 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
17423 default:
17424 gcc_unreachable ();
17426 return 0;
17429 /* Decide whether ARG can be unified with PARM, considering only the
17430 cv-qualifiers of each type, given STRICT as documented for unify.
17431 Returns nonzero iff the unification is OK on that basis. */
17433 static int
17434 check_cv_quals_for_unify (int strict, tree arg, tree parm)
17436 int arg_quals = cp_type_quals (arg);
17437 int parm_quals = cp_type_quals (parm);
17439 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17440 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17442 /* Although a CVR qualifier is ignored when being applied to a
17443 substituted template parameter ([8.3.2]/1 for example), that
17444 does not allow us to unify "const T" with "int&" because both
17445 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
17446 It is ok when we're allowing additional CV qualifiers
17447 at the outer level [14.8.2.1]/3,1st bullet. */
17448 if ((TREE_CODE (arg) == REFERENCE_TYPE
17449 || TREE_CODE (arg) == FUNCTION_TYPE
17450 || TREE_CODE (arg) == METHOD_TYPE)
17451 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
17452 return 0;
17454 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
17455 && (parm_quals & TYPE_QUAL_RESTRICT))
17456 return 0;
17459 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17460 && (arg_quals & parm_quals) != parm_quals)
17461 return 0;
17463 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
17464 && (parm_quals & arg_quals) != arg_quals)
17465 return 0;
17467 return 1;
17470 /* Determines the LEVEL and INDEX for the template parameter PARM. */
17471 void
17472 template_parm_level_and_index (tree parm, int* level, int* index)
17474 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17475 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17476 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17478 *index = TEMPLATE_TYPE_IDX (parm);
17479 *level = TEMPLATE_TYPE_LEVEL (parm);
17481 else
17483 *index = TEMPLATE_PARM_IDX (parm);
17484 *level = TEMPLATE_PARM_LEVEL (parm);
17488 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
17489 do { \
17490 if (unify (TP, TA, P, A, S, EP)) \
17491 return 1; \
17492 } while (0);
17494 /* Unifies the remaining arguments in PACKED_ARGS with the pack
17495 expansion at the end of PACKED_PARMS. Returns 0 if the type
17496 deduction succeeds, 1 otherwise. STRICT is the same as in
17497 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
17498 call argument list. We'll need to adjust the arguments to make them
17499 types. SUBR tells us if this is from a recursive call to
17500 type_unification_real, or for comparing two template argument
17501 lists. */
17503 static int
17504 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
17505 tree packed_args, unification_kind_t strict,
17506 bool subr, bool explain_p)
17508 tree parm
17509 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
17510 tree pattern = PACK_EXPANSION_PATTERN (parm);
17511 tree pack, packs = NULL_TREE;
17512 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
17514 packed_args = expand_template_argument_pack (packed_args);
17516 int len = TREE_VEC_LENGTH (packed_args);
17518 /* Determine the parameter packs we will be deducing from the
17519 pattern, and record their current deductions. */
17520 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
17521 pack; pack = TREE_CHAIN (pack))
17523 tree parm_pack = TREE_VALUE (pack);
17524 int idx, level;
17526 /* Determine the index and level of this parameter pack. */
17527 template_parm_level_and_index (parm_pack, &level, &idx);
17529 /* Keep track of the parameter packs and their corresponding
17530 argument packs. */
17531 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
17532 TREE_TYPE (packs) = make_tree_vec (len - start);
17535 /* Loop through all of the arguments that have not yet been
17536 unified and unify each with the pattern. */
17537 for (i = start; i < len; i++)
17539 tree parm;
17540 bool any_explicit = false;
17541 tree arg = TREE_VEC_ELT (packed_args, i);
17543 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
17544 or the element of its argument pack at the current index if
17545 this argument was explicitly specified. */
17546 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17548 int idx, level;
17549 tree arg, pargs;
17550 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17552 arg = NULL_TREE;
17553 if (TREE_VALUE (pack)
17554 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
17555 && (i - start < TREE_VEC_LENGTH (pargs)))
17557 any_explicit = true;
17558 arg = TREE_VEC_ELT (pargs, i - start);
17560 TMPL_ARG (targs, level, idx) = arg;
17563 /* If we had explicit template arguments, substitute them into the
17564 pattern before deduction. */
17565 if (any_explicit)
17567 /* Some arguments might still be unspecified or dependent. */
17568 bool dependent;
17569 ++processing_template_decl;
17570 dependent = any_dependent_template_arguments_p (targs);
17571 if (!dependent)
17572 --processing_template_decl;
17573 parm = tsubst (pattern, targs,
17574 explain_p ? tf_warning_or_error : tf_none,
17575 NULL_TREE);
17576 if (dependent)
17577 --processing_template_decl;
17578 if (parm == error_mark_node)
17579 return 1;
17581 else
17582 parm = pattern;
17584 /* Unify the pattern with the current argument. */
17585 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17586 LOOKUP_IMPLICIT, explain_p))
17587 return 1;
17589 /* For each parameter pack, collect the deduced value. */
17590 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17592 int idx, level;
17593 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17595 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
17596 TMPL_ARG (targs, level, idx);
17600 /* Verify that the results of unification with the parameter packs
17601 produce results consistent with what we've seen before, and make
17602 the deduced argument packs available. */
17603 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17605 tree old_pack = TREE_VALUE (pack);
17606 tree new_args = TREE_TYPE (pack);
17607 int i, len = TREE_VEC_LENGTH (new_args);
17608 int idx, level;
17609 bool nondeduced_p = false;
17611 /* By default keep the original deduced argument pack.
17612 If necessary, more specific code is going to update the
17613 resulting deduced argument later down in this function. */
17614 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17615 TMPL_ARG (targs, level, idx) = old_pack;
17617 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
17618 actually deduce anything. */
17619 for (i = 0; i < len && !nondeduced_p; ++i)
17620 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
17621 nondeduced_p = true;
17622 if (nondeduced_p)
17623 continue;
17625 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
17627 /* If we had fewer function args than explicit template args,
17628 just use the explicits. */
17629 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17630 int explicit_len = TREE_VEC_LENGTH (explicit_args);
17631 if (len < explicit_len)
17632 new_args = explicit_args;
17635 if (!old_pack)
17637 tree result;
17638 /* Build the deduced *_ARGUMENT_PACK. */
17639 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
17641 result = make_node (NONTYPE_ARGUMENT_PACK);
17642 TREE_TYPE (result) =
17643 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
17644 TREE_CONSTANT (result) = 1;
17646 else
17647 result = cxx_make_type (TYPE_ARGUMENT_PACK);
17649 SET_ARGUMENT_PACK_ARGS (result, new_args);
17651 /* Note the deduced argument packs for this parameter
17652 pack. */
17653 TMPL_ARG (targs, level, idx) = result;
17655 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
17656 && (ARGUMENT_PACK_ARGS (old_pack)
17657 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
17659 /* We only had the explicitly-provided arguments before, but
17660 now we have a complete set of arguments. */
17661 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17663 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
17664 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
17665 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
17667 else
17669 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
17670 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
17672 if (!comp_template_args_with_info (old_args, new_args,
17673 &bad_old_arg, &bad_new_arg))
17674 /* Inconsistent unification of this parameter pack. */
17675 return unify_parameter_pack_inconsistent (explain_p,
17676 bad_old_arg,
17677 bad_new_arg);
17681 return unify_success (explain_p);
17684 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
17685 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
17686 parameters and return value are as for unify. */
17688 static int
17689 unify_array_domain (tree tparms, tree targs,
17690 tree parm_dom, tree arg_dom,
17691 bool explain_p)
17693 tree parm_max;
17694 tree arg_max;
17695 bool parm_cst;
17696 bool arg_cst;
17698 /* Our representation of array types uses "N - 1" as the
17699 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
17700 not an integer constant. We cannot unify arbitrarily
17701 complex expressions, so we eliminate the MINUS_EXPRs
17702 here. */
17703 parm_max = TYPE_MAX_VALUE (parm_dom);
17704 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
17705 if (!parm_cst)
17707 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
17708 parm_max = TREE_OPERAND (parm_max, 0);
17710 arg_max = TYPE_MAX_VALUE (arg_dom);
17711 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
17712 if (!arg_cst)
17714 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
17715 trying to unify the type of a variable with the type
17716 of a template parameter. For example:
17718 template <unsigned int N>
17719 void f (char (&) [N]);
17720 int g();
17721 void h(int i) {
17722 char a[g(i)];
17723 f(a);
17726 Here, the type of the ARG will be "int [g(i)]", and
17727 may be a SAVE_EXPR, etc. */
17728 if (TREE_CODE (arg_max) != MINUS_EXPR)
17729 return unify_vla_arg (explain_p, arg_dom);
17730 arg_max = TREE_OPERAND (arg_max, 0);
17733 /* If only one of the bounds used a MINUS_EXPR, compensate
17734 by adding one to the other bound. */
17735 if (parm_cst && !arg_cst)
17736 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
17737 integer_type_node,
17738 parm_max,
17739 integer_one_node);
17740 else if (arg_cst && !parm_cst)
17741 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
17742 integer_type_node,
17743 arg_max,
17744 integer_one_node);
17746 return unify (tparms, targs, parm_max, arg_max,
17747 UNIFY_ALLOW_INTEGER, explain_p);
17750 /* Deduce the value of template parameters. TPARMS is the (innermost)
17751 set of template parameters to a template. TARGS is the bindings
17752 for those template parameters, as determined thus far; TARGS may
17753 include template arguments for outer levels of template parameters
17754 as well. PARM is a parameter to a template function, or a
17755 subcomponent of that parameter; ARG is the corresponding argument.
17756 This function attempts to match PARM with ARG in a manner
17757 consistent with the existing assignments in TARGS. If more values
17758 are deduced, then TARGS is updated.
17760 Returns 0 if the type deduction succeeds, 1 otherwise. The
17761 parameter STRICT is a bitwise or of the following flags:
17763 UNIFY_ALLOW_NONE:
17764 Require an exact match between PARM and ARG.
17765 UNIFY_ALLOW_MORE_CV_QUAL:
17766 Allow the deduced ARG to be more cv-qualified (by qualification
17767 conversion) than ARG.
17768 UNIFY_ALLOW_LESS_CV_QUAL:
17769 Allow the deduced ARG to be less cv-qualified than ARG.
17770 UNIFY_ALLOW_DERIVED:
17771 Allow the deduced ARG to be a template base class of ARG,
17772 or a pointer to a template base class of the type pointed to by
17773 ARG.
17774 UNIFY_ALLOW_INTEGER:
17775 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
17776 case for more information.
17777 UNIFY_ALLOW_OUTER_LEVEL:
17778 This is the outermost level of a deduction. Used to determine validity
17779 of qualification conversions. A valid qualification conversion must
17780 have const qualified pointers leading up to the inner type which
17781 requires additional CV quals, except at the outer level, where const
17782 is not required [conv.qual]. It would be normal to set this flag in
17783 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
17784 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
17785 This is the outermost level of a deduction, and PARM can be more CV
17786 qualified at this point.
17787 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
17788 This is the outermost level of a deduction, and PARM can be less CV
17789 qualified at this point. */
17791 static int
17792 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
17793 bool explain_p)
17795 int idx;
17796 tree targ;
17797 tree tparm;
17798 int strict_in = strict;
17800 /* I don't think this will do the right thing with respect to types.
17801 But the only case I've seen it in so far has been array bounds, where
17802 signedness is the only information lost, and I think that will be
17803 okay. */
17804 while (TREE_CODE (parm) == NOP_EXPR)
17805 parm = TREE_OPERAND (parm, 0);
17807 if (arg == error_mark_node)
17808 return unify_invalid (explain_p);
17809 if (arg == unknown_type_node
17810 || arg == init_list_type_node)
17811 /* We can't deduce anything from this, but we might get all the
17812 template args from other function args. */
17813 return unify_success (explain_p);
17815 /* If PARM uses template parameters, then we can't bail out here,
17816 even if ARG == PARM, since we won't record unifications for the
17817 template parameters. We might need them if we're trying to
17818 figure out which of two things is more specialized. */
17819 if (arg == parm && !uses_template_parms (parm))
17820 return unify_success (explain_p);
17822 /* Handle init lists early, so the rest of the function can assume
17823 we're dealing with a type. */
17824 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
17826 tree elt, elttype;
17827 unsigned i;
17828 tree orig_parm = parm;
17830 /* Replace T with std::initializer_list<T> for deduction. */
17831 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17832 && flag_deduce_init_list)
17833 parm = listify (parm);
17835 if (!is_std_init_list (parm)
17836 && TREE_CODE (parm) != ARRAY_TYPE)
17837 /* We can only deduce from an initializer list argument if the
17838 parameter is std::initializer_list or an array; otherwise this
17839 is a non-deduced context. */
17840 return unify_success (explain_p);
17842 if (TREE_CODE (parm) == ARRAY_TYPE)
17843 elttype = TREE_TYPE (parm);
17844 else
17845 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
17847 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
17849 int elt_strict = strict;
17851 if (elt == error_mark_node)
17852 return unify_invalid (explain_p);
17854 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
17856 tree type = TREE_TYPE (elt);
17857 /* It should only be possible to get here for a call. */
17858 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
17859 elt_strict |= maybe_adjust_types_for_deduction
17860 (DEDUCE_CALL, &elttype, &type, elt);
17861 elt = type;
17864 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
17865 explain_p);
17868 if (TREE_CODE (parm) == ARRAY_TYPE
17869 && deducible_array_bound (TYPE_DOMAIN (parm)))
17871 /* Also deduce from the length of the initializer list. */
17872 tree max = size_int (CONSTRUCTOR_NELTS (arg));
17873 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
17874 if (idx == error_mark_node)
17875 return unify_invalid (explain_p);
17876 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
17877 idx, explain_p);
17880 /* If the std::initializer_list<T> deduction worked, replace the
17881 deduced A with std::initializer_list<A>. */
17882 if (orig_parm != parm)
17884 idx = TEMPLATE_TYPE_IDX (orig_parm);
17885 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17886 targ = listify (targ);
17887 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
17889 return unify_success (explain_p);
17892 /* Immediately reject some pairs that won't unify because of
17893 cv-qualification mismatches. */
17894 if (TREE_CODE (arg) == TREE_CODE (parm)
17895 && TYPE_P (arg)
17896 /* It is the elements of the array which hold the cv quals of an array
17897 type, and the elements might be template type parms. We'll check
17898 when we recurse. */
17899 && TREE_CODE (arg) != ARRAY_TYPE
17900 /* We check the cv-qualifiers when unifying with template type
17901 parameters below. We want to allow ARG `const T' to unify with
17902 PARM `T' for example, when computing which of two templates
17903 is more specialized, for example. */
17904 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
17905 && !check_cv_quals_for_unify (strict_in, arg, parm))
17906 return unify_cv_qual_mismatch (explain_p, parm, arg);
17908 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
17909 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
17910 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
17911 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
17912 strict &= ~UNIFY_ALLOW_DERIVED;
17913 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17914 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
17916 switch (TREE_CODE (parm))
17918 case TYPENAME_TYPE:
17919 case SCOPE_REF:
17920 case UNBOUND_CLASS_TEMPLATE:
17921 /* In a type which contains a nested-name-specifier, template
17922 argument values cannot be deduced for template parameters used
17923 within the nested-name-specifier. */
17924 return unify_success (explain_p);
17926 case TEMPLATE_TYPE_PARM:
17927 case TEMPLATE_TEMPLATE_PARM:
17928 case BOUND_TEMPLATE_TEMPLATE_PARM:
17929 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
17930 if (error_operand_p (tparm))
17931 return unify_invalid (explain_p);
17933 if (TEMPLATE_TYPE_LEVEL (parm)
17934 != template_decl_level (tparm))
17935 /* The PARM is not one we're trying to unify. Just check
17936 to see if it matches ARG. */
17938 if (TREE_CODE (arg) == TREE_CODE (parm)
17939 && (is_auto (parm) ? is_auto (arg)
17940 : same_type_p (parm, arg)))
17941 return unify_success (explain_p);
17942 else
17943 return unify_type_mismatch (explain_p, parm, arg);
17945 idx = TEMPLATE_TYPE_IDX (parm);
17946 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17947 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
17948 if (error_operand_p (tparm))
17949 return unify_invalid (explain_p);
17951 /* Check for mixed types and values. */
17952 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17953 && TREE_CODE (tparm) != TYPE_DECL)
17954 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17955 && TREE_CODE (tparm) != TEMPLATE_DECL))
17956 gcc_unreachable ();
17958 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17960 /* ARG must be constructed from a template class or a template
17961 template parameter. */
17962 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
17963 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
17964 return unify_template_deduction_failure (explain_p, parm, arg);
17966 tree parmvec = TYPE_TI_ARGS (parm);
17967 /* An alias template name is never deduced. */
17968 if (TYPE_ALIAS_P (arg))
17969 arg = strip_typedefs (arg);
17970 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
17971 tree full_argvec = add_to_template_args (targs, argvec);
17972 tree parm_parms
17973 = DECL_INNERMOST_TEMPLATE_PARMS
17974 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
17975 int i, len;
17976 int parm_variadic_p = 0;
17978 /* The resolution to DR150 makes clear that default
17979 arguments for an N-argument may not be used to bind T
17980 to a template template parameter with fewer than N
17981 parameters. It is not safe to permit the binding of
17982 default arguments as an extension, as that may change
17983 the meaning of a conforming program. Consider:
17985 struct Dense { static const unsigned int dim = 1; };
17987 template <template <typename> class View,
17988 typename Block>
17989 void operator+(float, View<Block> const&);
17991 template <typename Block,
17992 unsigned int Dim = Block::dim>
17993 struct Lvalue_proxy { operator float() const; };
17995 void
17996 test_1d (void) {
17997 Lvalue_proxy<Dense> p;
17998 float b;
17999 b + p;
18002 Here, if Lvalue_proxy is permitted to bind to View, then
18003 the global operator+ will be used; if they are not, the
18004 Lvalue_proxy will be converted to float. */
18005 if (coerce_template_parms (parm_parms,
18006 full_argvec,
18007 TYPE_TI_TEMPLATE (parm),
18008 (explain_p
18009 ? tf_warning_or_error
18010 : tf_none),
18011 /*require_all_args=*/true,
18012 /*use_default_args=*/false)
18013 == error_mark_node)
18014 return 1;
18016 /* Deduce arguments T, i from TT<T> or TT<i>.
18017 We check each element of PARMVEC and ARGVEC individually
18018 rather than the whole TREE_VEC since they can have
18019 different number of elements. */
18021 parmvec = expand_template_argument_pack (parmvec);
18022 argvec = expand_template_argument_pack (argvec);
18024 len = TREE_VEC_LENGTH (parmvec);
18026 /* Check if the parameters end in a pack, making them
18027 variadic. */
18028 if (len > 0
18029 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
18030 parm_variadic_p = 1;
18032 for (i = 0; i < len - parm_variadic_p; ++i)
18033 /* If the template argument list of P contains a pack
18034 expansion that is not the last template argument, the
18035 entire template argument list is a non-deduced
18036 context. */
18037 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
18038 return unify_success (explain_p);
18040 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
18041 return unify_too_few_arguments (explain_p,
18042 TREE_VEC_LENGTH (argvec), len);
18044 for (i = 0; i < len - parm_variadic_p; ++i)
18046 RECUR_AND_CHECK_FAILURE (tparms, targs,
18047 TREE_VEC_ELT (parmvec, i),
18048 TREE_VEC_ELT (argvec, i),
18049 UNIFY_ALLOW_NONE, explain_p);
18052 if (parm_variadic_p
18053 && unify_pack_expansion (tparms, targs,
18054 parmvec, argvec,
18055 DEDUCE_EXACT,
18056 /*subr=*/true, explain_p))
18057 return 1;
18059 arg = TYPE_TI_TEMPLATE (arg);
18061 /* Fall through to deduce template name. */
18064 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18065 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18067 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
18069 /* Simple cases: Value already set, does match or doesn't. */
18070 if (targ != NULL_TREE && template_args_equal (targ, arg))
18071 return unify_success (explain_p);
18072 else if (targ)
18073 return unify_inconsistency (explain_p, parm, targ, arg);
18075 else
18077 /* If PARM is `const T' and ARG is only `int', we don't have
18078 a match unless we are allowing additional qualification.
18079 If ARG is `const int' and PARM is just `T' that's OK;
18080 that binds `const int' to `T'. */
18081 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
18082 arg, parm))
18083 return unify_cv_qual_mismatch (explain_p, parm, arg);
18085 /* Consider the case where ARG is `const volatile int' and
18086 PARM is `const T'. Then, T should be `volatile int'. */
18087 arg = cp_build_qualified_type_real
18088 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
18089 if (arg == error_mark_node)
18090 return unify_invalid (explain_p);
18092 /* Simple cases: Value already set, does match or doesn't. */
18093 if (targ != NULL_TREE && same_type_p (targ, arg))
18094 return unify_success (explain_p);
18095 else if (targ)
18096 return unify_inconsistency (explain_p, parm, targ, arg);
18098 /* Make sure that ARG is not a variable-sized array. (Note
18099 that were talking about variable-sized arrays (like
18100 `int[n]'), rather than arrays of unknown size (like
18101 `int[]').) We'll get very confused by such a type since
18102 the bound of the array is not constant, and therefore
18103 not mangleable. Besides, such types are not allowed in
18104 ISO C++, so we can do as we please here. We do allow
18105 them for 'auto' deduction, since that isn't ABI-exposed. */
18106 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
18107 return unify_vla_arg (explain_p, arg);
18109 /* Strip typedefs as in convert_template_argument. */
18110 arg = canonicalize_type_argument (arg, tf_none);
18113 /* If ARG is a parameter pack or an expansion, we cannot unify
18114 against it unless PARM is also a parameter pack. */
18115 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18116 && !template_parameter_pack_p (parm))
18117 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18119 /* If the argument deduction results is a METHOD_TYPE,
18120 then there is a problem.
18121 METHOD_TYPE doesn't map to any real C++ type the result of
18122 the deduction can not be of that type. */
18123 if (TREE_CODE (arg) == METHOD_TYPE)
18124 return unify_method_type_error (explain_p, arg);
18126 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18127 return unify_success (explain_p);
18129 case TEMPLATE_PARM_INDEX:
18130 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18131 if (error_operand_p (tparm))
18132 return unify_invalid (explain_p);
18134 if (TEMPLATE_PARM_LEVEL (parm)
18135 != template_decl_level (tparm))
18137 /* The PARM is not one we're trying to unify. Just check
18138 to see if it matches ARG. */
18139 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
18140 && cp_tree_equal (parm, arg));
18141 if (result)
18142 unify_expression_unequal (explain_p, parm, arg);
18143 return result;
18146 idx = TEMPLATE_PARM_IDX (parm);
18147 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18149 if (targ)
18151 int x = !cp_tree_equal (targ, arg);
18152 if (x)
18153 unify_inconsistency (explain_p, parm, targ, arg);
18154 return x;
18157 /* [temp.deduct.type] If, in the declaration of a function template
18158 with a non-type template-parameter, the non-type
18159 template-parameter is used in an expression in the function
18160 parameter-list and, if the corresponding template-argument is
18161 deduced, the template-argument type shall match the type of the
18162 template-parameter exactly, except that a template-argument
18163 deduced from an array bound may be of any integral type.
18164 The non-type parameter might use already deduced type parameters. */
18165 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
18166 if (!TREE_TYPE (arg))
18167 /* Template-parameter dependent expression. Just accept it for now.
18168 It will later be processed in convert_template_argument. */
18170 else if (same_type_p (TREE_TYPE (arg), tparm))
18171 /* OK */;
18172 else if ((strict & UNIFY_ALLOW_INTEGER)
18173 && CP_INTEGRAL_TYPE_P (tparm))
18174 /* Convert the ARG to the type of PARM; the deduced non-type
18175 template argument must exactly match the types of the
18176 corresponding parameter. */
18177 arg = fold (build_nop (tparm, arg));
18178 else if (uses_template_parms (tparm))
18179 /* We haven't deduced the type of this parameter yet. Try again
18180 later. */
18181 return unify_success (explain_p);
18182 else
18183 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
18185 /* If ARG is a parameter pack or an expansion, we cannot unify
18186 against it unless PARM is also a parameter pack. */
18187 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18188 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
18189 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18191 arg = strip_typedefs_expr (arg);
18192 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18193 return unify_success (explain_p);
18195 case PTRMEM_CST:
18197 /* A pointer-to-member constant can be unified only with
18198 another constant. */
18199 if (TREE_CODE (arg) != PTRMEM_CST)
18200 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
18202 /* Just unify the class member. It would be useless (and possibly
18203 wrong, depending on the strict flags) to unify also
18204 PTRMEM_CST_CLASS, because we want to be sure that both parm and
18205 arg refer to the same variable, even if through different
18206 classes. For instance:
18208 struct A { int x; };
18209 struct B : A { };
18211 Unification of &A::x and &B::x must succeed. */
18212 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
18213 PTRMEM_CST_MEMBER (arg), strict, explain_p);
18216 case POINTER_TYPE:
18218 if (!TYPE_PTR_P (arg))
18219 return unify_type_mismatch (explain_p, parm, arg);
18221 /* [temp.deduct.call]
18223 A can be another pointer or pointer to member type that can
18224 be converted to the deduced A via a qualification
18225 conversion (_conv.qual_).
18227 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
18228 This will allow for additional cv-qualification of the
18229 pointed-to types if appropriate. */
18231 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
18232 /* The derived-to-base conversion only persists through one
18233 level of pointers. */
18234 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
18236 return unify (tparms, targs, TREE_TYPE (parm),
18237 TREE_TYPE (arg), strict, explain_p);
18240 case REFERENCE_TYPE:
18241 if (TREE_CODE (arg) != REFERENCE_TYPE)
18242 return unify_type_mismatch (explain_p, parm, arg);
18243 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18244 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18246 case ARRAY_TYPE:
18247 if (TREE_CODE (arg) != ARRAY_TYPE)
18248 return unify_type_mismatch (explain_p, parm, arg);
18249 if ((TYPE_DOMAIN (parm) == NULL_TREE)
18250 != (TYPE_DOMAIN (arg) == NULL_TREE))
18251 return unify_type_mismatch (explain_p, parm, arg);
18252 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18253 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18254 if (TYPE_DOMAIN (parm) != NULL_TREE)
18255 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
18256 TYPE_DOMAIN (arg), explain_p);
18257 return unify_success (explain_p);
18259 case REAL_TYPE:
18260 case COMPLEX_TYPE:
18261 case VECTOR_TYPE:
18262 case INTEGER_TYPE:
18263 case BOOLEAN_TYPE:
18264 case ENUMERAL_TYPE:
18265 case VOID_TYPE:
18266 case NULLPTR_TYPE:
18267 if (TREE_CODE (arg) != TREE_CODE (parm))
18268 return unify_type_mismatch (explain_p, parm, arg);
18270 /* We have already checked cv-qualification at the top of the
18271 function. */
18272 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
18273 return unify_type_mismatch (explain_p, parm, arg);
18275 /* As far as unification is concerned, this wins. Later checks
18276 will invalidate it if necessary. */
18277 return unify_success (explain_p);
18279 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
18280 /* Type INTEGER_CST can come from ordinary constant template args. */
18281 case INTEGER_CST:
18282 while (TREE_CODE (arg) == NOP_EXPR)
18283 arg = TREE_OPERAND (arg, 0);
18285 if (TREE_CODE (arg) != INTEGER_CST)
18286 return unify_template_argument_mismatch (explain_p, parm, arg);
18287 return (tree_int_cst_equal (parm, arg)
18288 ? unify_success (explain_p)
18289 : unify_template_argument_mismatch (explain_p, parm, arg));
18291 case TREE_VEC:
18293 int i, len, argslen;
18294 int parm_variadic_p = 0;
18296 if (TREE_CODE (arg) != TREE_VEC)
18297 return unify_template_argument_mismatch (explain_p, parm, arg);
18299 len = TREE_VEC_LENGTH (parm);
18300 argslen = TREE_VEC_LENGTH (arg);
18302 /* Check for pack expansions in the parameters. */
18303 for (i = 0; i < len; ++i)
18305 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
18307 if (i == len - 1)
18308 /* We can unify against something with a trailing
18309 parameter pack. */
18310 parm_variadic_p = 1;
18311 else
18312 /* [temp.deduct.type]/9: If the template argument list of
18313 P contains a pack expansion that is not the last
18314 template argument, the entire template argument list
18315 is a non-deduced context. */
18316 return unify_success (explain_p);
18320 /* If we don't have enough arguments to satisfy the parameters
18321 (not counting the pack expression at the end), or we have
18322 too many arguments for a parameter list that doesn't end in
18323 a pack expression, we can't unify. */
18324 if (parm_variadic_p
18325 ? argslen < len - parm_variadic_p
18326 : argslen != len)
18327 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
18329 /* Unify all of the parameters that precede the (optional)
18330 pack expression. */
18331 for (i = 0; i < len - parm_variadic_p; ++i)
18333 RECUR_AND_CHECK_FAILURE (tparms, targs,
18334 TREE_VEC_ELT (parm, i),
18335 TREE_VEC_ELT (arg, i),
18336 UNIFY_ALLOW_NONE, explain_p);
18338 if (parm_variadic_p)
18339 return unify_pack_expansion (tparms, targs, parm, arg,
18340 DEDUCE_EXACT,
18341 /*subr=*/true, explain_p);
18342 return unify_success (explain_p);
18345 case RECORD_TYPE:
18346 case UNION_TYPE:
18347 if (TREE_CODE (arg) != TREE_CODE (parm))
18348 return unify_type_mismatch (explain_p, parm, arg);
18350 if (TYPE_PTRMEMFUNC_P (parm))
18352 if (!TYPE_PTRMEMFUNC_P (arg))
18353 return unify_type_mismatch (explain_p, parm, arg);
18355 return unify (tparms, targs,
18356 TYPE_PTRMEMFUNC_FN_TYPE (parm),
18357 TYPE_PTRMEMFUNC_FN_TYPE (arg),
18358 strict, explain_p);
18360 else if (TYPE_PTRMEMFUNC_P (arg))
18361 return unify_type_mismatch (explain_p, parm, arg);
18363 if (CLASSTYPE_TEMPLATE_INFO (parm))
18365 tree t = NULL_TREE;
18367 if (strict_in & UNIFY_ALLOW_DERIVED)
18369 /* First, we try to unify the PARM and ARG directly. */
18370 t = try_class_unification (tparms, targs,
18371 parm, arg, explain_p);
18373 if (!t)
18375 /* Fallback to the special case allowed in
18376 [temp.deduct.call]:
18378 If P is a class, and P has the form
18379 template-id, then A can be a derived class of
18380 the deduced A. Likewise, if P is a pointer to
18381 a class of the form template-id, A can be a
18382 pointer to a derived class pointed to by the
18383 deduced A. */
18384 enum template_base_result r;
18385 r = get_template_base (tparms, targs, parm, arg,
18386 explain_p, &t);
18388 if (!t)
18389 return unify_no_common_base (explain_p, r, parm, arg);
18392 else if (CLASSTYPE_TEMPLATE_INFO (arg)
18393 && (CLASSTYPE_TI_TEMPLATE (parm)
18394 == CLASSTYPE_TI_TEMPLATE (arg)))
18395 /* Perhaps PARM is something like S<U> and ARG is S<int>.
18396 Then, we should unify `int' and `U'. */
18397 t = arg;
18398 else
18399 /* There's no chance of unification succeeding. */
18400 return unify_type_mismatch (explain_p, parm, arg);
18402 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
18403 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
18405 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
18406 return unify_type_mismatch (explain_p, parm, arg);
18407 return unify_success (explain_p);
18409 case METHOD_TYPE:
18410 case FUNCTION_TYPE:
18412 unsigned int nargs;
18413 tree *args;
18414 tree a;
18415 unsigned int i;
18417 if (TREE_CODE (arg) != TREE_CODE (parm))
18418 return unify_type_mismatch (explain_p, parm, arg);
18420 /* CV qualifications for methods can never be deduced, they must
18421 match exactly. We need to check them explicitly here,
18422 because type_unification_real treats them as any other
18423 cv-qualified parameter. */
18424 if (TREE_CODE (parm) == METHOD_TYPE
18425 && (!check_cv_quals_for_unify
18426 (UNIFY_ALLOW_NONE,
18427 class_of_this_parm (arg),
18428 class_of_this_parm (parm))))
18429 return unify_cv_qual_mismatch (explain_p, parm, arg);
18431 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
18432 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
18434 nargs = list_length (TYPE_ARG_TYPES (arg));
18435 args = XALLOCAVEC (tree, nargs);
18436 for (a = TYPE_ARG_TYPES (arg), i = 0;
18437 a != NULL_TREE && a != void_list_node;
18438 a = TREE_CHAIN (a), ++i)
18439 args[i] = TREE_VALUE (a);
18440 nargs = i;
18442 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
18443 args, nargs, 1, DEDUCE_EXACT,
18444 LOOKUP_NORMAL, NULL, explain_p);
18447 case OFFSET_TYPE:
18448 /* Unify a pointer to member with a pointer to member function, which
18449 deduces the type of the member as a function type. */
18450 if (TYPE_PTRMEMFUNC_P (arg))
18452 /* Check top-level cv qualifiers */
18453 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
18454 return unify_cv_qual_mismatch (explain_p, parm, arg);
18456 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18457 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
18458 UNIFY_ALLOW_NONE, explain_p);
18460 /* Determine the type of the function we are unifying against. */
18461 tree fntype = static_fn_type (arg);
18463 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
18466 if (TREE_CODE (arg) != OFFSET_TYPE)
18467 return unify_type_mismatch (explain_p, parm, arg);
18468 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18469 TYPE_OFFSET_BASETYPE (arg),
18470 UNIFY_ALLOW_NONE, explain_p);
18471 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18472 strict, explain_p);
18474 case CONST_DECL:
18475 if (DECL_TEMPLATE_PARM_P (parm))
18476 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
18477 if (arg != scalar_constant_value (parm))
18478 return unify_template_argument_mismatch (explain_p, parm, arg);
18479 return unify_success (explain_p);
18481 case FIELD_DECL:
18482 case TEMPLATE_DECL:
18483 /* Matched cases are handled by the ARG == PARM test above. */
18484 return unify_template_argument_mismatch (explain_p, parm, arg);
18486 case VAR_DECL:
18487 /* A non-type template parameter that is a variable should be a
18488 an integral constant, in which case, it whould have been
18489 folded into its (constant) value. So we should not be getting
18490 a variable here. */
18491 gcc_unreachable ();
18493 case TYPE_ARGUMENT_PACK:
18494 case NONTYPE_ARGUMENT_PACK:
18495 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
18496 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
18498 case TYPEOF_TYPE:
18499 case DECLTYPE_TYPE:
18500 case UNDERLYING_TYPE:
18501 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
18502 or UNDERLYING_TYPE nodes. */
18503 return unify_success (explain_p);
18505 case ERROR_MARK:
18506 /* Unification fails if we hit an error node. */
18507 return unify_invalid (explain_p);
18509 case INDIRECT_REF:
18510 if (REFERENCE_REF_P (parm))
18512 if (REFERENCE_REF_P (arg))
18513 arg = TREE_OPERAND (arg, 0);
18514 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
18515 strict, explain_p);
18517 /* FALLTHRU */
18519 default:
18520 /* An unresolved overload is a nondeduced context. */
18521 if (is_overloaded_fn (parm) || type_unknown_p (parm))
18522 return unify_success (explain_p);
18523 gcc_assert (EXPR_P (parm));
18525 /* We must be looking at an expression. This can happen with
18526 something like:
18528 template <int I>
18529 void foo(S<I>, S<I + 2>);
18531 This is a "nondeduced context":
18533 [deduct.type]
18535 The nondeduced contexts are:
18537 --A type that is a template-id in which one or more of
18538 the template-arguments is an expression that references
18539 a template-parameter.
18541 In these cases, we assume deduction succeeded, but don't
18542 actually infer any unifications. */
18544 if (!uses_template_parms (parm)
18545 && !template_args_equal (parm, arg))
18546 return unify_expression_unequal (explain_p, parm, arg);
18547 else
18548 return unify_success (explain_p);
18551 #undef RECUR_AND_CHECK_FAILURE
18553 /* Note that DECL can be defined in this translation unit, if
18554 required. */
18556 static void
18557 mark_definable (tree decl)
18559 tree clone;
18560 DECL_NOT_REALLY_EXTERN (decl) = 1;
18561 FOR_EACH_CLONE (clone, decl)
18562 DECL_NOT_REALLY_EXTERN (clone) = 1;
18565 /* Called if RESULT is explicitly instantiated, or is a member of an
18566 explicitly instantiated class. */
18568 void
18569 mark_decl_instantiated (tree result, int extern_p)
18571 SET_DECL_EXPLICIT_INSTANTIATION (result);
18573 /* If this entity has already been written out, it's too late to
18574 make any modifications. */
18575 if (TREE_ASM_WRITTEN (result))
18576 return;
18578 /* For anonymous namespace we don't need to do anything. */
18579 if (decl_anon_ns_mem_p (result))
18581 gcc_assert (!TREE_PUBLIC (result));
18582 return;
18585 if (TREE_CODE (result) != FUNCTION_DECL)
18586 /* The TREE_PUBLIC flag for function declarations will have been
18587 set correctly by tsubst. */
18588 TREE_PUBLIC (result) = 1;
18590 /* This might have been set by an earlier implicit instantiation. */
18591 DECL_COMDAT (result) = 0;
18593 if (extern_p)
18594 DECL_NOT_REALLY_EXTERN (result) = 0;
18595 else
18597 mark_definable (result);
18598 mark_needed (result);
18599 /* Always make artificials weak. */
18600 if (DECL_ARTIFICIAL (result) && flag_weak)
18601 comdat_linkage (result);
18602 /* For WIN32 we also want to put explicit instantiations in
18603 linkonce sections. */
18604 else if (TREE_PUBLIC (result))
18605 maybe_make_one_only (result);
18608 /* If EXTERN_P, then this function will not be emitted -- unless
18609 followed by an explicit instantiation, at which point its linkage
18610 will be adjusted. If !EXTERN_P, then this function will be
18611 emitted here. In neither circumstance do we want
18612 import_export_decl to adjust the linkage. */
18613 DECL_INTERFACE_KNOWN (result) = 1;
18616 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
18617 important template arguments. If any are missing, we check whether
18618 they're important by using error_mark_node for substituting into any
18619 args that were used for partial ordering (the ones between ARGS and END)
18620 and seeing if it bubbles up. */
18622 static bool
18623 check_undeduced_parms (tree targs, tree args, tree end)
18625 bool found = false;
18626 int i;
18627 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
18628 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
18630 found = true;
18631 TREE_VEC_ELT (targs, i) = error_mark_node;
18633 if (found)
18635 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
18636 if (substed == error_mark_node)
18637 return true;
18639 return false;
18642 /* Given two function templates PAT1 and PAT2, return:
18644 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
18645 -1 if PAT2 is more specialized than PAT1.
18646 0 if neither is more specialized.
18648 LEN indicates the number of parameters we should consider
18649 (defaulted parameters should not be considered).
18651 The 1998 std underspecified function template partial ordering, and
18652 DR214 addresses the issue. We take pairs of arguments, one from
18653 each of the templates, and deduce them against each other. One of
18654 the templates will be more specialized if all the *other*
18655 template's arguments deduce against its arguments and at least one
18656 of its arguments *does* *not* deduce against the other template's
18657 corresponding argument. Deduction is done as for class templates.
18658 The arguments used in deduction have reference and top level cv
18659 qualifiers removed. Iff both arguments were originally reference
18660 types *and* deduction succeeds in both directions, an lvalue reference
18661 wins against an rvalue reference and otherwise the template
18662 with the more cv-qualified argument wins for that pairing (if
18663 neither is more cv-qualified, they both are equal). Unlike regular
18664 deduction, after all the arguments have been deduced in this way,
18665 we do *not* verify the deduced template argument values can be
18666 substituted into non-deduced contexts.
18668 The logic can be a bit confusing here, because we look at deduce1 and
18669 targs1 to see if pat2 is at least as specialized, and vice versa; if we
18670 can find template arguments for pat1 to make arg1 look like arg2, that
18671 means that arg2 is at least as specialized as arg1. */
18674 more_specialized_fn (tree pat1, tree pat2, int len)
18676 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
18677 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
18678 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
18679 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
18680 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
18681 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
18682 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
18683 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
18684 tree origs1, origs2;
18685 bool lose1 = false;
18686 bool lose2 = false;
18688 /* Remove the this parameter from non-static member functions. If
18689 one is a non-static member function and the other is not a static
18690 member function, remove the first parameter from that function
18691 also. This situation occurs for operator functions where we
18692 locate both a member function (with this pointer) and non-member
18693 operator (with explicit first operand). */
18694 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
18696 len--; /* LEN is the number of significant arguments for DECL1 */
18697 args1 = TREE_CHAIN (args1);
18698 if (!DECL_STATIC_FUNCTION_P (decl2))
18699 args2 = TREE_CHAIN (args2);
18701 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
18703 args2 = TREE_CHAIN (args2);
18704 if (!DECL_STATIC_FUNCTION_P (decl1))
18706 len--;
18707 args1 = TREE_CHAIN (args1);
18711 /* If only one is a conversion operator, they are unordered. */
18712 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
18713 return 0;
18715 /* Consider the return type for a conversion function */
18716 if (DECL_CONV_FN_P (decl1))
18718 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
18719 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
18720 len++;
18723 processing_template_decl++;
18725 origs1 = args1;
18726 origs2 = args2;
18728 while (len--
18729 /* Stop when an ellipsis is seen. */
18730 && args1 != NULL_TREE && args2 != NULL_TREE)
18732 tree arg1 = TREE_VALUE (args1);
18733 tree arg2 = TREE_VALUE (args2);
18734 int deduce1, deduce2;
18735 int quals1 = -1;
18736 int quals2 = -1;
18737 int ref1 = 0;
18738 int ref2 = 0;
18740 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18741 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18743 /* When both arguments are pack expansions, we need only
18744 unify the patterns themselves. */
18745 arg1 = PACK_EXPANSION_PATTERN (arg1);
18746 arg2 = PACK_EXPANSION_PATTERN (arg2);
18748 /* This is the last comparison we need to do. */
18749 len = 0;
18752 if (TREE_CODE (arg1) == REFERENCE_TYPE)
18754 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
18755 arg1 = TREE_TYPE (arg1);
18756 quals1 = cp_type_quals (arg1);
18759 if (TREE_CODE (arg2) == REFERENCE_TYPE)
18761 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
18762 arg2 = TREE_TYPE (arg2);
18763 quals2 = cp_type_quals (arg2);
18766 arg1 = TYPE_MAIN_VARIANT (arg1);
18767 arg2 = TYPE_MAIN_VARIANT (arg2);
18769 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
18771 int i, len2 = list_length (args2);
18772 tree parmvec = make_tree_vec (1);
18773 tree argvec = make_tree_vec (len2);
18774 tree ta = args2;
18776 /* Setup the parameter vector, which contains only ARG1. */
18777 TREE_VEC_ELT (parmvec, 0) = arg1;
18779 /* Setup the argument vector, which contains the remaining
18780 arguments. */
18781 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
18782 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18784 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
18785 argvec, DEDUCE_EXACT,
18786 /*subr=*/true, /*explain_p=*/false)
18787 == 0);
18789 /* We cannot deduce in the other direction, because ARG1 is
18790 a pack expansion but ARG2 is not. */
18791 deduce2 = 0;
18793 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18795 int i, len1 = list_length (args1);
18796 tree parmvec = make_tree_vec (1);
18797 tree argvec = make_tree_vec (len1);
18798 tree ta = args1;
18800 /* Setup the parameter vector, which contains only ARG1. */
18801 TREE_VEC_ELT (parmvec, 0) = arg2;
18803 /* Setup the argument vector, which contains the remaining
18804 arguments. */
18805 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
18806 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18808 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
18809 argvec, DEDUCE_EXACT,
18810 /*subr=*/true, /*explain_p=*/false)
18811 == 0);
18813 /* We cannot deduce in the other direction, because ARG2 is
18814 a pack expansion but ARG1 is not.*/
18815 deduce1 = 0;
18818 else
18820 /* The normal case, where neither argument is a pack
18821 expansion. */
18822 deduce1 = (unify (tparms1, targs1, arg1, arg2,
18823 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18824 == 0);
18825 deduce2 = (unify (tparms2, targs2, arg2, arg1,
18826 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18827 == 0);
18830 /* If we couldn't deduce arguments for tparms1 to make arg1 match
18831 arg2, then arg2 is not as specialized as arg1. */
18832 if (!deduce1)
18833 lose2 = true;
18834 if (!deduce2)
18835 lose1 = true;
18837 /* "If, for a given type, deduction succeeds in both directions
18838 (i.e., the types are identical after the transformations above)
18839 and both P and A were reference types (before being replaced with
18840 the type referred to above):
18841 - if the type from the argument template was an lvalue reference and
18842 the type from the parameter template was not, the argument type is
18843 considered to be more specialized than the other; otherwise,
18844 - if the type from the argument template is more cv-qualified
18845 than the type from the parameter template (as described above),
18846 the argument type is considered to be more specialized than the other;
18847 otherwise,
18848 - neither type is more specialized than the other." */
18850 if (deduce1 && deduce2)
18852 if (ref1 && ref2 && ref1 != ref2)
18854 if (ref1 > ref2)
18855 lose1 = true;
18856 else
18857 lose2 = true;
18859 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
18861 if ((quals1 & quals2) == quals2)
18862 lose2 = true;
18863 if ((quals1 & quals2) == quals1)
18864 lose1 = true;
18868 if (lose1 && lose2)
18869 /* We've failed to deduce something in either direction.
18870 These must be unordered. */
18871 break;
18873 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18874 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18875 /* We have already processed all of the arguments in our
18876 handing of the pack expansion type. */
18877 len = 0;
18879 args1 = TREE_CHAIN (args1);
18880 args2 = TREE_CHAIN (args2);
18883 /* "In most cases, all template parameters must have values in order for
18884 deduction to succeed, but for partial ordering purposes a template
18885 parameter may remain without a value provided it is not used in the
18886 types being used for partial ordering."
18888 Thus, if we are missing any of the targs1 we need to substitute into
18889 origs1, then pat2 is not as specialized as pat1. This can happen when
18890 there is a nondeduced context. */
18891 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
18892 lose2 = true;
18893 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
18894 lose1 = true;
18896 processing_template_decl--;
18898 /* All things being equal, if the next argument is a pack expansion
18899 for one function but not for the other, prefer the
18900 non-variadic function. FIXME this is bogus; see c++/41958. */
18901 if (lose1 == lose2
18902 && args1 && TREE_VALUE (args1)
18903 && args2 && TREE_VALUE (args2))
18905 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
18906 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
18909 if (lose1 == lose2)
18910 return 0;
18911 else if (!lose1)
18912 return 1;
18913 else
18914 return -1;
18917 /* Determine which of two partial specializations of TMPL is more
18918 specialized.
18920 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
18921 to the first partial specialization. The TREE_PURPOSE is the
18922 innermost set of template parameters for the partial
18923 specialization. PAT2 is similar, but for the second template.
18925 Return 1 if the first partial specialization is more specialized;
18926 -1 if the second is more specialized; 0 if neither is more
18927 specialized.
18929 See [temp.class.order] for information about determining which of
18930 two templates is more specialized. */
18932 static int
18933 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
18935 tree targs;
18936 int winner = 0;
18937 bool any_deductions = false;
18939 tree tmpl1 = TREE_VALUE (pat1);
18940 tree tmpl2 = TREE_VALUE (pat2);
18941 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
18942 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
18943 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
18944 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
18946 /* Just like what happens for functions, if we are ordering between
18947 different template specializations, we may encounter dependent
18948 types in the arguments, and we need our dependency check functions
18949 to behave correctly. */
18950 ++processing_template_decl;
18951 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
18952 if (targs)
18954 --winner;
18955 any_deductions = true;
18958 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
18959 if (targs)
18961 ++winner;
18962 any_deductions = true;
18964 --processing_template_decl;
18966 /* In the case of a tie where at least one of the templates
18967 has a parameter pack at the end, the template with the most
18968 non-packed parameters wins. */
18969 if (winner == 0
18970 && any_deductions
18971 && (template_args_variadic_p (TREE_PURPOSE (pat1))
18972 || template_args_variadic_p (TREE_PURPOSE (pat2))))
18974 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
18975 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
18976 int len1 = TREE_VEC_LENGTH (args1);
18977 int len2 = TREE_VEC_LENGTH (args2);
18979 /* We don't count the pack expansion at the end. */
18980 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
18981 --len1;
18982 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
18983 --len2;
18985 if (len1 > len2)
18986 return 1;
18987 else if (len1 < len2)
18988 return -1;
18991 return winner;
18994 /* Return the template arguments that will produce the function signature
18995 DECL from the function template FN, with the explicit template
18996 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
18997 also match. Return NULL_TREE if no satisfactory arguments could be
18998 found. */
19000 static tree
19001 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
19003 int ntparms = DECL_NTPARMS (fn);
19004 tree targs = make_tree_vec (ntparms);
19005 tree decl_type = TREE_TYPE (decl);
19006 tree decl_arg_types;
19007 tree *args;
19008 unsigned int nargs, ix;
19009 tree arg;
19011 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
19013 /* Never do unification on the 'this' parameter. */
19014 decl_arg_types = skip_artificial_parms_for (decl,
19015 TYPE_ARG_TYPES (decl_type));
19017 nargs = list_length (decl_arg_types);
19018 args = XALLOCAVEC (tree, nargs);
19019 for (arg = decl_arg_types, ix = 0;
19020 arg != NULL_TREE && arg != void_list_node;
19021 arg = TREE_CHAIN (arg), ++ix)
19022 args[ix] = TREE_VALUE (arg);
19024 if (fn_type_unification (fn, explicit_args, targs,
19025 args, ix,
19026 (check_rettype || DECL_CONV_FN_P (fn)
19027 ? TREE_TYPE (decl_type) : NULL_TREE),
19028 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
19029 /*decltype*/false)
19030 == error_mark_node)
19031 return NULL_TREE;
19033 return targs;
19036 /* Return the innermost template arguments that, when applied to a partial
19037 specialization of TMPL whose innermost template parameters are
19038 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
19039 ARGS.
19041 For example, suppose we have:
19043 template <class T, class U> struct S {};
19044 template <class T> struct S<T*, int> {};
19046 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
19047 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
19048 int}. The resulting vector will be {double}, indicating that `T'
19049 is bound to `double'. */
19051 static tree
19052 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
19054 int i, ntparms = TREE_VEC_LENGTH (tparms);
19055 tree deduced_args;
19056 tree innermost_deduced_args;
19058 innermost_deduced_args = make_tree_vec (ntparms);
19059 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19061 deduced_args = copy_node (args);
19062 SET_TMPL_ARGS_LEVEL (deduced_args,
19063 TMPL_ARGS_DEPTH (deduced_args),
19064 innermost_deduced_args);
19066 else
19067 deduced_args = innermost_deduced_args;
19069 if (unify (tparms, deduced_args,
19070 INNERMOST_TEMPLATE_ARGS (spec_args),
19071 INNERMOST_TEMPLATE_ARGS (args),
19072 UNIFY_ALLOW_NONE, /*explain_p=*/false))
19073 return NULL_TREE;
19075 for (i = 0; i < ntparms; ++i)
19076 if (! TREE_VEC_ELT (innermost_deduced_args, i))
19077 return NULL_TREE;
19079 /* Verify that nondeduced template arguments agree with the type
19080 obtained from argument deduction.
19082 For example:
19084 struct A { typedef int X; };
19085 template <class T, class U> struct C {};
19086 template <class T> struct C<T, typename T::X> {};
19088 Then with the instantiation `C<A, int>', we can deduce that
19089 `T' is `A' but unify () does not check whether `typename T::X'
19090 is `int'. */
19091 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
19092 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19093 spec_args, tmpl,
19094 tf_none, false, false);
19095 if (spec_args == error_mark_node
19096 /* We only need to check the innermost arguments; the other
19097 arguments will always agree. */
19098 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
19099 INNERMOST_TEMPLATE_ARGS (args)))
19100 return NULL_TREE;
19102 /* Now that we have bindings for all of the template arguments,
19103 ensure that the arguments deduced for the template template
19104 parameters have compatible template parameter lists. See the use
19105 of template_template_parm_bindings_ok_p in fn_type_unification
19106 for more information. */
19107 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
19108 return NULL_TREE;
19110 return deduced_args;
19113 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
19114 Return the TREE_LIST node with the most specialized template, if
19115 any. If there is no most specialized template, the error_mark_node
19116 is returned.
19118 Note that this function does not look at, or modify, the
19119 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
19120 returned is one of the elements of INSTANTIATIONS, callers may
19121 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
19122 and retrieve it from the value returned. */
19124 tree
19125 most_specialized_instantiation (tree templates)
19127 tree fn, champ;
19129 ++processing_template_decl;
19131 champ = templates;
19132 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
19134 int fate = 0;
19136 if (get_bindings (TREE_VALUE (champ),
19137 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19138 NULL_TREE, /*check_ret=*/true))
19139 fate--;
19141 if (get_bindings (TREE_VALUE (fn),
19142 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19143 NULL_TREE, /*check_ret=*/true))
19144 fate++;
19146 if (fate == -1)
19147 champ = fn;
19148 else if (!fate)
19150 /* Equally specialized, move to next function. If there
19151 is no next function, nothing's most specialized. */
19152 fn = TREE_CHAIN (fn);
19153 champ = fn;
19154 if (!fn)
19155 break;
19159 if (champ)
19160 /* Now verify that champ is better than everything earlier in the
19161 instantiation list. */
19162 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
19163 if (get_bindings (TREE_VALUE (champ),
19164 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19165 NULL_TREE, /*check_ret=*/true)
19166 || !get_bindings (TREE_VALUE (fn),
19167 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19168 NULL_TREE, /*check_ret=*/true))
19170 champ = NULL_TREE;
19171 break;
19174 processing_template_decl--;
19176 if (!champ)
19177 return error_mark_node;
19179 return champ;
19182 /* If DECL is a specialization of some template, return the most
19183 general such template. Otherwise, returns NULL_TREE.
19185 For example, given:
19187 template <class T> struct S { template <class U> void f(U); };
19189 if TMPL is `template <class U> void S<int>::f(U)' this will return
19190 the full template. This function will not trace past partial
19191 specializations, however. For example, given in addition:
19193 template <class T> struct S<T*> { template <class U> void f(U); };
19195 if TMPL is `template <class U> void S<int*>::f(U)' this will return
19196 `template <class T> template <class U> S<T*>::f(U)'. */
19198 tree
19199 most_general_template (tree decl)
19201 if (TREE_CODE (decl) != TEMPLATE_DECL)
19203 if (tree tinfo = get_template_info (decl))
19204 decl = TI_TEMPLATE (tinfo);
19205 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
19206 template friend, or a FIELD_DECL for a capture pack. */
19207 if (TREE_CODE (decl) != TEMPLATE_DECL)
19208 return NULL_TREE;
19211 /* Look for more and more general templates. */
19212 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
19214 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
19215 (See cp-tree.h for details.) */
19216 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
19217 break;
19219 if (CLASS_TYPE_P (TREE_TYPE (decl))
19220 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
19221 break;
19223 /* Stop if we run into an explicitly specialized class template. */
19224 if (!DECL_NAMESPACE_SCOPE_P (decl)
19225 && DECL_CONTEXT (decl)
19226 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
19227 break;
19229 decl = DECL_TI_TEMPLATE (decl);
19232 return decl;
19235 /* Return the most specialized of the template partial specializations
19236 which can produce TARGET, a specialization of some class or variable
19237 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
19238 a TEMPLATE_DECL node corresponding to the partial specialization, while
19239 the TREE_PURPOSE is the set of template arguments that must be
19240 substituted into the template pattern in order to generate TARGET.
19242 If the choice of partial specialization is ambiguous, a diagnostic
19243 is issued, and the error_mark_node is returned. If there are no
19244 partial specializations matching TARGET, then NULL_TREE is
19245 returned, indicating that the primary template should be used. */
19247 static tree
19248 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
19250 tree list = NULL_TREE;
19251 tree t;
19252 tree champ;
19253 int fate;
19254 bool ambiguous_p;
19255 tree outer_args = NULL_TREE;
19256 tree tmpl, args;
19258 if (TYPE_P (target))
19260 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
19261 tmpl = TI_TEMPLATE (tinfo);
19262 args = TI_ARGS (tinfo);
19264 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
19266 tmpl = TREE_OPERAND (target, 0);
19267 args = TREE_OPERAND (target, 1);
19269 else if (VAR_P (target))
19271 tree tinfo = DECL_TEMPLATE_INFO (target);
19272 tmpl = TI_TEMPLATE (tinfo);
19273 args = TI_ARGS (tinfo);
19275 else
19276 gcc_unreachable ();
19278 tree main_tmpl = most_general_template (tmpl);
19280 /* For determining which partial specialization to use, only the
19281 innermost args are interesting. */
19282 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19284 outer_args = strip_innermost_template_args (args, 1);
19285 args = INNERMOST_TEMPLATE_ARGS (args);
19288 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
19290 tree partial_spec_args;
19291 tree spec_args;
19292 tree spec_tmpl = TREE_VALUE (t);
19294 partial_spec_args = TREE_PURPOSE (t);
19296 ++processing_template_decl;
19298 if (outer_args)
19300 /* Discard the outer levels of args, and then substitute in the
19301 template args from the enclosing class. */
19302 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
19303 partial_spec_args = tsubst_template_args
19304 (partial_spec_args, outer_args, tf_none, NULL_TREE);
19306 /* And the same for the partial specialization TEMPLATE_DECL. */
19307 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
19310 partial_spec_args =
19311 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19312 partial_spec_args,
19313 tmpl, tf_none,
19314 /*require_all_args=*/true,
19315 /*use_default_args=*/true);
19317 --processing_template_decl;
19319 if (partial_spec_args == error_mark_node)
19320 return error_mark_node;
19321 if (spec_tmpl == error_mark_node)
19322 return error_mark_node;
19324 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
19325 spec_args = get_partial_spec_bindings (tmpl, parms,
19326 partial_spec_args,
19327 args);
19328 if (spec_args)
19330 if (outer_args)
19331 spec_args = add_to_template_args (outer_args, spec_args);
19332 list = tree_cons (spec_args, TREE_VALUE (t), list);
19333 TREE_TYPE (list) = TREE_TYPE (t);
19337 if (! list)
19338 return NULL_TREE;
19340 ambiguous_p = false;
19341 t = list;
19342 champ = t;
19343 t = TREE_CHAIN (t);
19344 for (; t; t = TREE_CHAIN (t))
19346 fate = more_specialized_partial_spec (tmpl, champ, t);
19347 if (fate == 1)
19349 else
19351 if (fate == 0)
19353 t = TREE_CHAIN (t);
19354 if (! t)
19356 ambiguous_p = true;
19357 break;
19360 champ = t;
19364 if (!ambiguous_p)
19365 for (t = list; t && t != champ; t = TREE_CHAIN (t))
19367 fate = more_specialized_partial_spec (tmpl, champ, t);
19368 if (fate != 1)
19370 ambiguous_p = true;
19371 break;
19375 if (ambiguous_p)
19377 const char *str;
19378 char *spaces = NULL;
19379 if (!(complain & tf_error))
19380 return error_mark_node;
19381 if (TYPE_P (target))
19382 error ("ambiguous template instantiation for %q#T", target);
19383 else
19384 error ("ambiguous template instantiation for %q#D", target);
19385 str = ngettext ("candidate is:", "candidates are:", list_length (list));
19386 for (t = list; t; t = TREE_CHAIN (t))
19388 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
19389 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
19390 "%s %#S", spaces ? spaces : str, subst);
19391 spaces = spaces ? spaces : get_spaces (str);
19393 free (spaces);
19394 return error_mark_node;
19397 return champ;
19400 /* Explicitly instantiate DECL. */
19402 void
19403 do_decl_instantiation (tree decl, tree storage)
19405 tree result = NULL_TREE;
19406 int extern_p = 0;
19408 if (!decl || decl == error_mark_node)
19409 /* An error occurred, for which grokdeclarator has already issued
19410 an appropriate message. */
19411 return;
19412 else if (! DECL_LANG_SPECIFIC (decl))
19414 error ("explicit instantiation of non-template %q#D", decl);
19415 return;
19418 bool var_templ = (DECL_TEMPLATE_INFO (decl)
19419 && variable_template_p (DECL_TI_TEMPLATE (decl)));
19421 if (VAR_P (decl) && !var_templ)
19423 /* There is an asymmetry here in the way VAR_DECLs and
19424 FUNCTION_DECLs are handled by grokdeclarator. In the case of
19425 the latter, the DECL we get back will be marked as a
19426 template instantiation, and the appropriate
19427 DECL_TEMPLATE_INFO will be set up. This does not happen for
19428 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
19429 should handle VAR_DECLs as it currently handles
19430 FUNCTION_DECLs. */
19431 if (!DECL_CLASS_SCOPE_P (decl))
19433 error ("%qD is not a static data member of a class template", decl);
19434 return;
19436 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
19437 if (!result || !VAR_P (result))
19439 error ("no matching template for %qD found", decl);
19440 return;
19442 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
19444 error ("type %qT for explicit instantiation %qD does not match "
19445 "declared type %qT", TREE_TYPE (result), decl,
19446 TREE_TYPE (decl));
19447 return;
19450 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
19452 error ("explicit instantiation of %q#D", decl);
19453 return;
19455 else
19456 result = decl;
19458 /* Check for various error cases. Note that if the explicit
19459 instantiation is valid the RESULT will currently be marked as an
19460 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
19461 until we get here. */
19463 if (DECL_TEMPLATE_SPECIALIZATION (result))
19465 /* DR 259 [temp.spec].
19467 Both an explicit instantiation and a declaration of an explicit
19468 specialization shall not appear in a program unless the explicit
19469 instantiation follows a declaration of the explicit specialization.
19471 For a given set of template parameters, if an explicit
19472 instantiation of a template appears after a declaration of an
19473 explicit specialization for that template, the explicit
19474 instantiation has no effect. */
19475 return;
19477 else if (DECL_EXPLICIT_INSTANTIATION (result))
19479 /* [temp.spec]
19481 No program shall explicitly instantiate any template more
19482 than once.
19484 We check DECL_NOT_REALLY_EXTERN so as not to complain when
19485 the first instantiation was `extern' and the second is not,
19486 and EXTERN_P for the opposite case. */
19487 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
19488 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
19489 /* If an "extern" explicit instantiation follows an ordinary
19490 explicit instantiation, the template is instantiated. */
19491 if (extern_p)
19492 return;
19494 else if (!DECL_IMPLICIT_INSTANTIATION (result))
19496 error ("no matching template for %qD found", result);
19497 return;
19499 else if (!DECL_TEMPLATE_INFO (result))
19501 permerror (input_location, "explicit instantiation of non-template %q#D", result);
19502 return;
19505 if (storage == NULL_TREE)
19507 else if (storage == ridpointers[(int) RID_EXTERN])
19509 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
19510 pedwarn (input_location, OPT_Wpedantic,
19511 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
19512 "instantiations");
19513 extern_p = 1;
19515 else
19516 error ("storage class %qD applied to template instantiation", storage);
19518 check_explicit_instantiation_namespace (result);
19519 mark_decl_instantiated (result, extern_p);
19520 if (! extern_p)
19521 instantiate_decl (result, /*defer_ok=*/1,
19522 /*expl_inst_class_mem_p=*/false);
19525 static void
19526 mark_class_instantiated (tree t, int extern_p)
19528 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
19529 SET_CLASSTYPE_INTERFACE_KNOWN (t);
19530 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
19531 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
19532 if (! extern_p)
19534 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
19535 rest_of_type_compilation (t, 1);
19539 /* Called from do_type_instantiation through binding_table_foreach to
19540 do recursive instantiation for the type bound in ENTRY. */
19541 static void
19542 bt_instantiate_type_proc (binding_entry entry, void *data)
19544 tree storage = *(tree *) data;
19546 if (MAYBE_CLASS_TYPE_P (entry->type)
19547 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
19548 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
19551 /* Called from do_type_instantiation to instantiate a member
19552 (a member function or a static member variable) of an
19553 explicitly instantiated class template. */
19554 static void
19555 instantiate_class_member (tree decl, int extern_p)
19557 mark_decl_instantiated (decl, extern_p);
19558 if (! extern_p)
19559 instantiate_decl (decl, /*defer_ok=*/1,
19560 /*expl_inst_class_mem_p=*/true);
19563 /* Perform an explicit instantiation of template class T. STORAGE, if
19564 non-null, is the RID for extern, inline or static. COMPLAIN is
19565 nonzero if this is called from the parser, zero if called recursively,
19566 since the standard is unclear (as detailed below). */
19568 void
19569 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
19571 int extern_p = 0;
19572 int nomem_p = 0;
19573 int static_p = 0;
19574 int previous_instantiation_extern_p = 0;
19576 if (TREE_CODE (t) == TYPE_DECL)
19577 t = TREE_TYPE (t);
19579 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
19581 tree tmpl =
19582 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
19583 if (tmpl)
19584 error ("explicit instantiation of non-class template %qD", tmpl);
19585 else
19586 error ("explicit instantiation of non-template type %qT", t);
19587 return;
19590 complete_type (t);
19592 if (!COMPLETE_TYPE_P (t))
19594 if (complain & tf_error)
19595 error ("explicit instantiation of %q#T before definition of template",
19597 return;
19600 if (storage != NULL_TREE)
19602 if (!in_system_header_at (input_location))
19604 if (storage == ridpointers[(int) RID_EXTERN])
19606 if (cxx_dialect == cxx98)
19607 pedwarn (input_location, OPT_Wpedantic,
19608 "ISO C++ 1998 forbids the use of %<extern%> on "
19609 "explicit instantiations");
19611 else
19612 pedwarn (input_location, OPT_Wpedantic,
19613 "ISO C++ forbids the use of %qE"
19614 " on explicit instantiations", storage);
19617 if (storage == ridpointers[(int) RID_INLINE])
19618 nomem_p = 1;
19619 else if (storage == ridpointers[(int) RID_EXTERN])
19620 extern_p = 1;
19621 else if (storage == ridpointers[(int) RID_STATIC])
19622 static_p = 1;
19623 else
19625 error ("storage class %qD applied to template instantiation",
19626 storage);
19627 extern_p = 0;
19631 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
19633 /* DR 259 [temp.spec].
19635 Both an explicit instantiation and a declaration of an explicit
19636 specialization shall not appear in a program unless the explicit
19637 instantiation follows a declaration of the explicit specialization.
19639 For a given set of template parameters, if an explicit
19640 instantiation of a template appears after a declaration of an
19641 explicit specialization for that template, the explicit
19642 instantiation has no effect. */
19643 return;
19645 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
19647 /* [temp.spec]
19649 No program shall explicitly instantiate any template more
19650 than once.
19652 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
19653 instantiation was `extern'. If EXTERN_P then the second is.
19654 These cases are OK. */
19655 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
19657 if (!previous_instantiation_extern_p && !extern_p
19658 && (complain & tf_error))
19659 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
19661 /* If we've already instantiated the template, just return now. */
19662 if (!CLASSTYPE_INTERFACE_ONLY (t))
19663 return;
19666 check_explicit_instantiation_namespace (TYPE_NAME (t));
19667 mark_class_instantiated (t, extern_p);
19669 if (nomem_p)
19670 return;
19673 tree tmp;
19675 /* In contrast to implicit instantiation, where only the
19676 declarations, and not the definitions, of members are
19677 instantiated, we have here:
19679 [temp.explicit]
19681 The explicit instantiation of a class template specialization
19682 implies the instantiation of all of its members not
19683 previously explicitly specialized in the translation unit
19684 containing the explicit instantiation.
19686 Of course, we can't instantiate member template classes, since
19687 we don't have any arguments for them. Note that the standard
19688 is unclear on whether the instantiation of the members are
19689 *explicit* instantiations or not. However, the most natural
19690 interpretation is that it should be an explicit instantiation. */
19692 if (! static_p)
19693 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
19694 if (TREE_CODE (tmp) == FUNCTION_DECL
19695 && DECL_TEMPLATE_INSTANTIATION (tmp))
19696 instantiate_class_member (tmp, extern_p);
19698 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
19699 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
19700 instantiate_class_member (tmp, extern_p);
19702 if (CLASSTYPE_NESTED_UTDS (t))
19703 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
19704 bt_instantiate_type_proc, &storage);
19708 /* Given a function DECL, which is a specialization of TMPL, modify
19709 DECL to be a re-instantiation of TMPL with the same template
19710 arguments. TMPL should be the template into which tsubst'ing
19711 should occur for DECL, not the most general template.
19713 One reason for doing this is a scenario like this:
19715 template <class T>
19716 void f(const T&, int i);
19718 void g() { f(3, 7); }
19720 template <class T>
19721 void f(const T& t, const int i) { }
19723 Note that when the template is first instantiated, with
19724 instantiate_template, the resulting DECL will have no name for the
19725 first parameter, and the wrong type for the second. So, when we go
19726 to instantiate the DECL, we regenerate it. */
19728 static void
19729 regenerate_decl_from_template (tree decl, tree tmpl)
19731 /* The arguments used to instantiate DECL, from the most general
19732 template. */
19733 tree args;
19734 tree code_pattern;
19736 args = DECL_TI_ARGS (decl);
19737 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
19739 /* Make sure that we can see identifiers, and compute access
19740 correctly. */
19741 push_access_scope (decl);
19743 if (TREE_CODE (decl) == FUNCTION_DECL)
19745 tree decl_parm;
19746 tree pattern_parm;
19747 tree specs;
19748 int args_depth;
19749 int parms_depth;
19751 args_depth = TMPL_ARGS_DEPTH (args);
19752 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
19753 if (args_depth > parms_depth)
19754 args = get_innermost_template_args (args, parms_depth);
19756 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
19757 args, tf_error, NULL_TREE,
19758 /*defer_ok*/false);
19759 if (specs && specs != error_mark_node)
19760 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
19761 specs);
19763 /* Merge parameter declarations. */
19764 decl_parm = skip_artificial_parms_for (decl,
19765 DECL_ARGUMENTS (decl));
19766 pattern_parm
19767 = skip_artificial_parms_for (code_pattern,
19768 DECL_ARGUMENTS (code_pattern));
19769 while (decl_parm && !DECL_PACK_P (pattern_parm))
19771 tree parm_type;
19772 tree attributes;
19774 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19775 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
19776 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
19777 NULL_TREE);
19778 parm_type = type_decays_to (parm_type);
19779 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19780 TREE_TYPE (decl_parm) = parm_type;
19781 attributes = DECL_ATTRIBUTES (pattern_parm);
19782 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19784 DECL_ATTRIBUTES (decl_parm) = attributes;
19785 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19787 decl_parm = DECL_CHAIN (decl_parm);
19788 pattern_parm = DECL_CHAIN (pattern_parm);
19790 /* Merge any parameters that match with the function parameter
19791 pack. */
19792 if (pattern_parm && DECL_PACK_P (pattern_parm))
19794 int i, len;
19795 tree expanded_types;
19796 /* Expand the TYPE_PACK_EXPANSION that provides the types for
19797 the parameters in this function parameter pack. */
19798 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
19799 args, tf_error, NULL_TREE);
19800 len = TREE_VEC_LENGTH (expanded_types);
19801 for (i = 0; i < len; i++)
19803 tree parm_type;
19804 tree attributes;
19806 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19807 /* Rename the parameter to include the index. */
19808 DECL_NAME (decl_parm) =
19809 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
19810 parm_type = TREE_VEC_ELT (expanded_types, i);
19811 parm_type = type_decays_to (parm_type);
19812 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19813 TREE_TYPE (decl_parm) = parm_type;
19814 attributes = DECL_ATTRIBUTES (pattern_parm);
19815 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19817 DECL_ATTRIBUTES (decl_parm) = attributes;
19818 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19820 decl_parm = DECL_CHAIN (decl_parm);
19823 /* Merge additional specifiers from the CODE_PATTERN. */
19824 if (DECL_DECLARED_INLINE_P (code_pattern)
19825 && !DECL_DECLARED_INLINE_P (decl))
19826 DECL_DECLARED_INLINE_P (decl) = 1;
19828 else if (VAR_P (decl))
19830 DECL_INITIAL (decl) =
19831 tsubst_expr (DECL_INITIAL (code_pattern), args,
19832 tf_error, DECL_TI_TEMPLATE (decl),
19833 /*integral_constant_expression_p=*/false);
19834 if (VAR_HAD_UNKNOWN_BOUND (decl))
19835 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
19836 tf_error, DECL_TI_TEMPLATE (decl));
19838 else
19839 gcc_unreachable ();
19841 pop_access_scope (decl);
19844 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
19845 substituted to get DECL. */
19847 tree
19848 template_for_substitution (tree decl)
19850 tree tmpl = DECL_TI_TEMPLATE (decl);
19852 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
19853 for the instantiation. This is not always the most general
19854 template. Consider, for example:
19856 template <class T>
19857 struct S { template <class U> void f();
19858 template <> void f<int>(); };
19860 and an instantiation of S<double>::f<int>. We want TD to be the
19861 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
19862 while (/* An instantiation cannot have a definition, so we need a
19863 more general template. */
19864 DECL_TEMPLATE_INSTANTIATION (tmpl)
19865 /* We must also deal with friend templates. Given:
19867 template <class T> struct S {
19868 template <class U> friend void f() {};
19871 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
19872 so far as the language is concerned, but that's still
19873 where we get the pattern for the instantiation from. On
19874 other hand, if the definition comes outside the class, say:
19876 template <class T> struct S {
19877 template <class U> friend void f();
19879 template <class U> friend void f() {}
19881 we don't need to look any further. That's what the check for
19882 DECL_INITIAL is for. */
19883 || (TREE_CODE (decl) == FUNCTION_DECL
19884 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
19885 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
19887 /* The present template, TD, should not be a definition. If it
19888 were a definition, we should be using it! Note that we
19889 cannot restructure the loop to just keep going until we find
19890 a template with a definition, since that might go too far if
19891 a specialization was declared, but not defined. */
19893 /* Fetch the more general template. */
19894 tmpl = DECL_TI_TEMPLATE (tmpl);
19897 return tmpl;
19900 /* Returns true if we need to instantiate this template instance even if we
19901 know we aren't going to emit it.. */
19903 bool
19904 always_instantiate_p (tree decl)
19906 /* We always instantiate inline functions so that we can inline them. An
19907 explicit instantiation declaration prohibits implicit instantiation of
19908 non-inline functions. With high levels of optimization, we would
19909 normally inline non-inline functions -- but we're not allowed to do
19910 that for "extern template" functions. Therefore, we check
19911 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
19912 return ((TREE_CODE (decl) == FUNCTION_DECL
19913 && (DECL_DECLARED_INLINE_P (decl)
19914 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
19915 /* And we need to instantiate static data members so that
19916 their initializers are available in integral constant
19917 expressions. */
19918 || (VAR_P (decl)
19919 && decl_maybe_constant_var_p (decl)));
19922 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
19923 instantiate it now, modifying TREE_TYPE (fn). */
19925 void
19926 maybe_instantiate_noexcept (tree fn)
19928 tree fntype, spec, noex, clone;
19930 /* Don't instantiate a noexcept-specification from template context. */
19931 if (processing_template_decl)
19932 return;
19934 if (DECL_CLONED_FUNCTION_P (fn))
19935 fn = DECL_CLONED_FUNCTION (fn);
19936 fntype = TREE_TYPE (fn);
19937 spec = TYPE_RAISES_EXCEPTIONS (fntype);
19939 if (!spec || !TREE_PURPOSE (spec))
19940 return;
19942 noex = TREE_PURPOSE (spec);
19944 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
19946 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
19947 spec = get_defaulted_eh_spec (fn);
19948 else if (push_tinst_level (fn))
19950 push_access_scope (fn);
19951 push_deferring_access_checks (dk_no_deferred);
19952 input_location = DECL_SOURCE_LOCATION (fn);
19953 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
19954 DEFERRED_NOEXCEPT_ARGS (noex),
19955 tf_warning_or_error, fn,
19956 /*function_p=*/false,
19957 /*integral_constant_expression_p=*/true);
19958 pop_deferring_access_checks ();
19959 pop_access_scope (fn);
19960 pop_tinst_level ();
19961 spec = build_noexcept_spec (noex, tf_warning_or_error);
19962 if (spec == error_mark_node)
19963 spec = noexcept_false_spec;
19965 else
19966 spec = noexcept_false_spec;
19968 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
19971 FOR_EACH_CLONE (clone, fn)
19973 if (TREE_TYPE (clone) == fntype)
19974 TREE_TYPE (clone) = TREE_TYPE (fn);
19975 else
19976 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
19980 /* Produce the definition of D, a _DECL generated from a template. If
19981 DEFER_OK is nonzero, then we don't have to actually do the
19982 instantiation now; we just have to do it sometime. Normally it is
19983 an error if this is an explicit instantiation but D is undefined.
19984 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
19985 explicitly instantiated class template. */
19987 tree
19988 instantiate_decl (tree d, int defer_ok,
19989 bool expl_inst_class_mem_p)
19991 tree tmpl = DECL_TI_TEMPLATE (d);
19992 tree gen_args;
19993 tree args;
19994 tree td;
19995 tree code_pattern;
19996 tree spec;
19997 tree gen_tmpl;
19998 bool pattern_defined;
19999 location_t saved_loc = input_location;
20000 int saved_unevaluated_operand = cp_unevaluated_operand;
20001 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
20002 bool external_p;
20003 bool deleted_p;
20004 tree fn_context;
20005 bool nested;
20007 /* This function should only be used to instantiate templates for
20008 functions and static member variables. */
20009 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
20011 /* Variables are never deferred; if instantiation is required, they
20012 are instantiated right away. That allows for better code in the
20013 case that an expression refers to the value of the variable --
20014 if the variable has a constant value the referring expression can
20015 take advantage of that fact. */
20016 if (VAR_P (d)
20017 || DECL_DECLARED_CONSTEXPR_P (d))
20018 defer_ok = 0;
20020 /* Don't instantiate cloned functions. Instead, instantiate the
20021 functions they cloned. */
20022 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
20023 d = DECL_CLONED_FUNCTION (d);
20025 if (DECL_TEMPLATE_INSTANTIATED (d)
20026 || (TREE_CODE (d) == FUNCTION_DECL
20027 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
20028 || DECL_TEMPLATE_SPECIALIZATION (d))
20029 /* D has already been instantiated or explicitly specialized, so
20030 there's nothing for us to do here.
20032 It might seem reasonable to check whether or not D is an explicit
20033 instantiation, and, if so, stop here. But when an explicit
20034 instantiation is deferred until the end of the compilation,
20035 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
20036 the instantiation. */
20037 return d;
20039 /* Check to see whether we know that this template will be
20040 instantiated in some other file, as with "extern template"
20041 extension. */
20042 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
20044 /* In general, we do not instantiate such templates. */
20045 if (external_p && !always_instantiate_p (d))
20046 return d;
20048 gen_tmpl = most_general_template (tmpl);
20049 gen_args = DECL_TI_ARGS (d);
20051 if (tmpl != gen_tmpl)
20052 /* We should already have the extra args. */
20053 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
20054 == TMPL_ARGS_DEPTH (gen_args));
20055 /* And what's in the hash table should match D. */
20056 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
20057 || spec == NULL_TREE);
20059 /* This needs to happen before any tsubsting. */
20060 if (! push_tinst_level (d))
20061 return d;
20063 timevar_push (TV_TEMPLATE_INST);
20065 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
20066 for the instantiation. */
20067 td = template_for_substitution (d);
20068 code_pattern = DECL_TEMPLATE_RESULT (td);
20070 /* We should never be trying to instantiate a member of a class
20071 template or partial specialization. */
20072 gcc_assert (d != code_pattern);
20074 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
20075 || DECL_TEMPLATE_SPECIALIZATION (td))
20076 /* In the case of a friend template whose definition is provided
20077 outside the class, we may have too many arguments. Drop the
20078 ones we don't need. The same is true for specializations. */
20079 args = get_innermost_template_args
20080 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
20081 else
20082 args = gen_args;
20084 if (TREE_CODE (d) == FUNCTION_DECL)
20086 deleted_p = DECL_DELETED_FN (code_pattern);
20087 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
20088 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
20089 || deleted_p);
20091 else
20093 deleted_p = false;
20094 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
20097 /* We may be in the middle of deferred access check. Disable it now. */
20098 push_deferring_access_checks (dk_no_deferred);
20100 /* Unless an explicit instantiation directive has already determined
20101 the linkage of D, remember that a definition is available for
20102 this entity. */
20103 if (pattern_defined
20104 && !DECL_INTERFACE_KNOWN (d)
20105 && !DECL_NOT_REALLY_EXTERN (d))
20106 mark_definable (d);
20108 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
20109 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
20110 input_location = DECL_SOURCE_LOCATION (d);
20112 /* If D is a member of an explicitly instantiated class template,
20113 and no definition is available, treat it like an implicit
20114 instantiation. */
20115 if (!pattern_defined && expl_inst_class_mem_p
20116 && DECL_EXPLICIT_INSTANTIATION (d))
20118 /* Leave linkage flags alone on instantiations with anonymous
20119 visibility. */
20120 if (TREE_PUBLIC (d))
20122 DECL_NOT_REALLY_EXTERN (d) = 0;
20123 DECL_INTERFACE_KNOWN (d) = 0;
20125 SET_DECL_IMPLICIT_INSTANTIATION (d);
20128 /* Defer all other templates, unless we have been explicitly
20129 forbidden from doing so. */
20130 if (/* If there is no definition, we cannot instantiate the
20131 template. */
20132 ! pattern_defined
20133 /* If it's OK to postpone instantiation, do so. */
20134 || defer_ok
20135 /* If this is a static data member that will be defined
20136 elsewhere, we don't want to instantiate the entire data
20137 member, but we do want to instantiate the initializer so that
20138 we can substitute that elsewhere. */
20139 || (external_p && VAR_P (d))
20140 /* Handle here a deleted function too, avoid generating
20141 its body (c++/61080). */
20142 || deleted_p)
20144 /* The definition of the static data member is now required so
20145 we must substitute the initializer. */
20146 if (VAR_P (d)
20147 && !DECL_INITIAL (d)
20148 && DECL_INITIAL (code_pattern))
20150 tree ns;
20151 tree init;
20152 bool const_init = false;
20153 bool enter_context = DECL_CLASS_SCOPE_P (d);
20155 ns = decl_namespace_context (d);
20156 push_nested_namespace (ns);
20157 if (enter_context)
20158 push_nested_class (DECL_CONTEXT (d));
20159 init = tsubst_expr (DECL_INITIAL (code_pattern),
20160 args,
20161 tf_warning_or_error, NULL_TREE,
20162 /*integral_constant_expression_p=*/false);
20163 /* If instantiating the initializer involved instantiating this
20164 again, don't call cp_finish_decl twice. */
20165 if (!DECL_INITIAL (d))
20167 /* Make sure the initializer is still constant, in case of
20168 circular dependency (template/instantiate6.C). */
20169 const_init
20170 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20171 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
20172 /*asmspec_tree=*/NULL_TREE,
20173 LOOKUP_ONLYCONVERTING);
20175 if (enter_context)
20176 pop_nested_class ();
20177 pop_nested_namespace (ns);
20180 /* We restore the source position here because it's used by
20181 add_pending_template. */
20182 input_location = saved_loc;
20184 if (at_eof && !pattern_defined
20185 && DECL_EXPLICIT_INSTANTIATION (d)
20186 && DECL_NOT_REALLY_EXTERN (d))
20187 /* [temp.explicit]
20189 The definition of a non-exported function template, a
20190 non-exported member function template, or a non-exported
20191 member function or static data member of a class template
20192 shall be present in every translation unit in which it is
20193 explicitly instantiated. */
20194 permerror (input_location, "explicit instantiation of %qD "
20195 "but no definition available", d);
20197 /* If we're in unevaluated context, we just wanted to get the
20198 constant value; this isn't an odr use, so don't queue
20199 a full instantiation. */
20200 if (cp_unevaluated_operand != 0)
20201 goto out;
20202 /* ??? Historically, we have instantiated inline functions, even
20203 when marked as "extern template". */
20204 if (!(external_p && VAR_P (d)))
20205 add_pending_template (d);
20206 goto out;
20208 /* Tell the repository that D is available in this translation unit
20209 -- and see if it is supposed to be instantiated here. */
20210 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
20212 /* In a PCH file, despite the fact that the repository hasn't
20213 requested instantiation in the PCH it is still possible that
20214 an instantiation will be required in a file that includes the
20215 PCH. */
20216 if (pch_file)
20217 add_pending_template (d);
20218 /* Instantiate inline functions so that the inliner can do its
20219 job, even though we'll not be emitting a copy of this
20220 function. */
20221 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
20222 goto out;
20225 fn_context = decl_function_context (d);
20226 nested = (current_function_decl != NULL_TREE);
20227 if (!fn_context)
20228 push_to_top_level ();
20229 else
20231 if (nested)
20232 push_function_context ();
20233 cp_unevaluated_operand = 0;
20234 c_inhibit_evaluation_warnings = 0;
20237 /* Mark D as instantiated so that recursive calls to
20238 instantiate_decl do not try to instantiate it again. */
20239 DECL_TEMPLATE_INSTANTIATED (d) = 1;
20241 /* Regenerate the declaration in case the template has been modified
20242 by a subsequent redeclaration. */
20243 regenerate_decl_from_template (d, td);
20245 /* We already set the file and line above. Reset them now in case
20246 they changed as a result of calling regenerate_decl_from_template. */
20247 input_location = DECL_SOURCE_LOCATION (d);
20249 if (VAR_P (d))
20251 tree init;
20252 bool const_init = false;
20254 /* Clear out DECL_RTL; whatever was there before may not be right
20255 since we've reset the type of the declaration. */
20256 SET_DECL_RTL (d, NULL);
20257 DECL_IN_AGGR_P (d) = 0;
20259 /* The initializer is placed in DECL_INITIAL by
20260 regenerate_decl_from_template so we don't need to
20261 push/pop_access_scope again here. Pull it out so that
20262 cp_finish_decl can process it. */
20263 init = DECL_INITIAL (d);
20264 DECL_INITIAL (d) = NULL_TREE;
20265 DECL_INITIALIZED_P (d) = 0;
20267 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
20268 initializer. That function will defer actual emission until
20269 we have a chance to determine linkage. */
20270 DECL_EXTERNAL (d) = 0;
20272 /* Enter the scope of D so that access-checking works correctly. */
20273 bool enter_context = DECL_CLASS_SCOPE_P (d);
20274 if (enter_context)
20275 push_nested_class (DECL_CONTEXT (d));
20277 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20278 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
20280 if (enter_context)
20281 pop_nested_class ();
20283 if (variable_template_p (td))
20284 note_variable_template_instantiation (d);
20286 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
20287 synthesize_method (d);
20288 else if (TREE_CODE (d) == FUNCTION_DECL)
20290 hash_map<tree, tree> *saved_local_specializations;
20291 tree subst_decl;
20292 tree tmpl_parm;
20293 tree spec_parm;
20294 tree block = NULL_TREE;
20296 /* Save away the current list, in case we are instantiating one
20297 template from within the body of another. */
20298 saved_local_specializations = local_specializations;
20300 /* Set up the list of local specializations. */
20301 local_specializations = new hash_map<tree, tree>;
20303 /* Set up context. */
20304 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20305 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20306 block = push_stmt_list ();
20307 else
20308 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
20310 /* Some typedefs referenced from within the template code need to be
20311 access checked at template instantiation time, i.e now. These
20312 types were added to the template at parsing time. Let's get those
20313 and perform the access checks then. */
20314 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
20315 gen_args);
20317 /* Create substitution entries for the parameters. */
20318 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
20319 tmpl_parm = DECL_ARGUMENTS (subst_decl);
20320 spec_parm = DECL_ARGUMENTS (d);
20321 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
20323 register_local_specialization (spec_parm, tmpl_parm);
20324 spec_parm = skip_artificial_parms_for (d, spec_parm);
20325 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
20327 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
20329 if (!DECL_PACK_P (tmpl_parm))
20331 register_local_specialization (spec_parm, tmpl_parm);
20332 spec_parm = DECL_CHAIN (spec_parm);
20334 else
20336 /* Register the (value) argument pack as a specialization of
20337 TMPL_PARM, then move on. */
20338 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
20339 register_local_specialization (argpack, tmpl_parm);
20342 gcc_assert (!spec_parm);
20344 /* Substitute into the body of the function. */
20345 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20346 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
20347 tf_warning_or_error, tmpl);
20348 else
20350 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
20351 tf_warning_or_error, tmpl,
20352 /*integral_constant_expression_p=*/false);
20354 /* Set the current input_location to the end of the function
20355 so that finish_function knows where we are. */
20356 input_location
20357 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
20359 /* Remember if we saw an infinite loop in the template. */
20360 current_function_infinite_loop
20361 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
20364 /* We don't need the local specializations any more. */
20365 delete local_specializations;
20366 local_specializations = saved_local_specializations;
20368 /* Finish the function. */
20369 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20370 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20371 DECL_SAVED_TREE (d) = pop_stmt_list (block);
20372 else
20374 d = finish_function (0);
20375 expand_or_defer_fn (d);
20378 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20379 cp_check_omp_declare_reduction (d);
20382 /* We're not deferring instantiation any more. */
20383 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
20385 if (!fn_context)
20386 pop_from_top_level ();
20387 else if (nested)
20388 pop_function_context ();
20390 out:
20391 input_location = saved_loc;
20392 cp_unevaluated_operand = saved_unevaluated_operand;
20393 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
20394 pop_deferring_access_checks ();
20395 pop_tinst_level ();
20397 timevar_pop (TV_TEMPLATE_INST);
20399 return d;
20402 /* Run through the list of templates that we wish we could
20403 instantiate, and instantiate any we can. RETRIES is the
20404 number of times we retry pending template instantiation. */
20406 void
20407 instantiate_pending_templates (int retries)
20409 int reconsider;
20410 location_t saved_loc = input_location;
20412 /* Instantiating templates may trigger vtable generation. This in turn
20413 may require further template instantiations. We place a limit here
20414 to avoid infinite loop. */
20415 if (pending_templates && retries >= max_tinst_depth)
20417 tree decl = pending_templates->tinst->decl;
20419 fatal_error ("template instantiation depth exceeds maximum of %d"
20420 " instantiating %q+D, possibly from virtual table generation"
20421 " (use -ftemplate-depth= to increase the maximum)",
20422 max_tinst_depth, decl);
20423 if (TREE_CODE (decl) == FUNCTION_DECL)
20424 /* Pretend that we defined it. */
20425 DECL_INITIAL (decl) = error_mark_node;
20426 return;
20431 struct pending_template **t = &pending_templates;
20432 struct pending_template *last = NULL;
20433 reconsider = 0;
20434 while (*t)
20436 tree instantiation = reopen_tinst_level ((*t)->tinst);
20437 bool complete = false;
20439 if (TYPE_P (instantiation))
20441 tree fn;
20443 if (!COMPLETE_TYPE_P (instantiation))
20445 instantiate_class_template (instantiation);
20446 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
20447 for (fn = TYPE_METHODS (instantiation);
20449 fn = TREE_CHAIN (fn))
20450 if (! DECL_ARTIFICIAL (fn))
20451 instantiate_decl (fn,
20452 /*defer_ok=*/0,
20453 /*expl_inst_class_mem_p=*/false);
20454 if (COMPLETE_TYPE_P (instantiation))
20455 reconsider = 1;
20458 complete = COMPLETE_TYPE_P (instantiation);
20460 else
20462 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
20463 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
20465 instantiation
20466 = instantiate_decl (instantiation,
20467 /*defer_ok=*/0,
20468 /*expl_inst_class_mem_p=*/false);
20469 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
20470 reconsider = 1;
20473 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
20474 || DECL_TEMPLATE_INSTANTIATED (instantiation));
20477 if (complete)
20478 /* If INSTANTIATION has been instantiated, then we don't
20479 need to consider it again in the future. */
20480 *t = (*t)->next;
20481 else
20483 last = *t;
20484 t = &(*t)->next;
20486 tinst_depth = 0;
20487 current_tinst_level = NULL;
20489 last_pending_template = last;
20491 while (reconsider);
20493 input_location = saved_loc;
20496 /* Substitute ARGVEC into T, which is a list of initializers for
20497 either base class or a non-static data member. The TREE_PURPOSEs
20498 are DECLs, and the TREE_VALUEs are the initializer values. Used by
20499 instantiate_decl. */
20501 static tree
20502 tsubst_initializer_list (tree t, tree argvec)
20504 tree inits = NULL_TREE;
20506 for (; t; t = TREE_CHAIN (t))
20508 tree decl;
20509 tree init;
20510 tree expanded_bases = NULL_TREE;
20511 tree expanded_arguments = NULL_TREE;
20512 int i, len = 1;
20514 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
20516 tree expr;
20517 tree arg;
20519 /* Expand the base class expansion type into separate base
20520 classes. */
20521 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
20522 tf_warning_or_error,
20523 NULL_TREE);
20524 if (expanded_bases == error_mark_node)
20525 continue;
20527 /* We'll be building separate TREE_LISTs of arguments for
20528 each base. */
20529 len = TREE_VEC_LENGTH (expanded_bases);
20530 expanded_arguments = make_tree_vec (len);
20531 for (i = 0; i < len; i++)
20532 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
20534 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
20535 expand each argument in the TREE_VALUE of t. */
20536 expr = make_node (EXPR_PACK_EXPANSION);
20537 PACK_EXPANSION_LOCAL_P (expr) = true;
20538 PACK_EXPANSION_PARAMETER_PACKS (expr) =
20539 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
20541 if (TREE_VALUE (t) == void_type_node)
20542 /* VOID_TYPE_NODE is used to indicate
20543 value-initialization. */
20545 for (i = 0; i < len; i++)
20546 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
20548 else
20550 /* Substitute parameter packs into each argument in the
20551 TREE_LIST. */
20552 in_base_initializer = 1;
20553 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
20555 tree expanded_exprs;
20557 /* Expand the argument. */
20558 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
20559 expanded_exprs
20560 = tsubst_pack_expansion (expr, argvec,
20561 tf_warning_or_error,
20562 NULL_TREE);
20563 if (expanded_exprs == error_mark_node)
20564 continue;
20566 /* Prepend each of the expanded expressions to the
20567 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
20568 for (i = 0; i < len; i++)
20570 TREE_VEC_ELT (expanded_arguments, i) =
20571 tree_cons (NULL_TREE,
20572 TREE_VEC_ELT (expanded_exprs, i),
20573 TREE_VEC_ELT (expanded_arguments, i));
20576 in_base_initializer = 0;
20578 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
20579 since we built them backwards. */
20580 for (i = 0; i < len; i++)
20582 TREE_VEC_ELT (expanded_arguments, i) =
20583 nreverse (TREE_VEC_ELT (expanded_arguments, i));
20588 for (i = 0; i < len; ++i)
20590 if (expanded_bases)
20592 decl = TREE_VEC_ELT (expanded_bases, i);
20593 decl = expand_member_init (decl);
20594 init = TREE_VEC_ELT (expanded_arguments, i);
20596 else
20598 tree tmp;
20599 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
20600 tf_warning_or_error, NULL_TREE);
20602 decl = expand_member_init (decl);
20603 if (decl && !DECL_P (decl))
20604 in_base_initializer = 1;
20606 init = TREE_VALUE (t);
20607 tmp = init;
20608 if (init != void_type_node)
20609 init = tsubst_expr (init, argvec,
20610 tf_warning_or_error, NULL_TREE,
20611 /*integral_constant_expression_p=*/false);
20612 if (init == NULL_TREE && tmp != NULL_TREE)
20613 /* If we had an initializer but it instantiated to nothing,
20614 value-initialize the object. This will only occur when
20615 the initializer was a pack expansion where the parameter
20616 packs used in that expansion were of length zero. */
20617 init = void_type_node;
20618 in_base_initializer = 0;
20621 if (decl)
20623 init = build_tree_list (decl, init);
20624 TREE_CHAIN (init) = inits;
20625 inits = init;
20629 return inits;
20632 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
20634 static void
20635 set_current_access_from_decl (tree decl)
20637 if (TREE_PRIVATE (decl))
20638 current_access_specifier = access_private_node;
20639 else if (TREE_PROTECTED (decl))
20640 current_access_specifier = access_protected_node;
20641 else
20642 current_access_specifier = access_public_node;
20645 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
20646 is the instantiation (which should have been created with
20647 start_enum) and ARGS are the template arguments to use. */
20649 static void
20650 tsubst_enum (tree tag, tree newtag, tree args)
20652 tree e;
20654 if (SCOPED_ENUM_P (newtag))
20655 begin_scope (sk_scoped_enum, newtag);
20657 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
20659 tree value;
20660 tree decl;
20662 decl = TREE_VALUE (e);
20663 /* Note that in a template enum, the TREE_VALUE is the
20664 CONST_DECL, not the corresponding INTEGER_CST. */
20665 value = tsubst_expr (DECL_INITIAL (decl),
20666 args, tf_warning_or_error, NULL_TREE,
20667 /*integral_constant_expression_p=*/true);
20669 /* Give this enumeration constant the correct access. */
20670 set_current_access_from_decl (decl);
20672 /* Actually build the enumerator itself. */
20673 build_enumerator
20674 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
20677 if (SCOPED_ENUM_P (newtag))
20678 finish_scope ();
20680 finish_enum_value_list (newtag);
20681 finish_enum (newtag);
20683 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
20684 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
20687 /* DECL is a FUNCTION_DECL that is a template specialization. Return
20688 its type -- but without substituting the innermost set of template
20689 arguments. So, innermost set of template parameters will appear in
20690 the type. */
20692 tree
20693 get_mostly_instantiated_function_type (tree decl)
20695 tree fn_type;
20696 tree tmpl;
20697 tree targs;
20698 tree tparms;
20699 int parm_depth;
20701 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
20702 targs = DECL_TI_ARGS (decl);
20703 tparms = DECL_TEMPLATE_PARMS (tmpl);
20704 parm_depth = TMPL_PARMS_DEPTH (tparms);
20706 /* There should be as many levels of arguments as there are levels
20707 of parameters. */
20708 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
20710 fn_type = TREE_TYPE (tmpl);
20712 if (parm_depth == 1)
20713 /* No substitution is necessary. */
20715 else
20717 int i;
20718 tree partial_args;
20720 /* Replace the innermost level of the TARGS with NULL_TREEs to
20721 let tsubst know not to substitute for those parameters. */
20722 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
20723 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
20724 SET_TMPL_ARGS_LEVEL (partial_args, i,
20725 TMPL_ARGS_LEVEL (targs, i));
20726 SET_TMPL_ARGS_LEVEL (partial_args,
20727 TMPL_ARGS_DEPTH (targs),
20728 make_tree_vec (DECL_NTPARMS (tmpl)));
20730 /* Make sure that we can see identifiers, and compute access
20731 correctly. */
20732 push_access_scope (decl);
20734 ++processing_template_decl;
20735 /* Now, do the (partial) substitution to figure out the
20736 appropriate function type. */
20737 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
20738 --processing_template_decl;
20740 /* Substitute into the template parameters to obtain the real
20741 innermost set of parameters. This step is important if the
20742 innermost set of template parameters contains value
20743 parameters whose types depend on outer template parameters. */
20744 TREE_VEC_LENGTH (partial_args)--;
20745 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
20747 pop_access_scope (decl);
20750 return fn_type;
20753 /* Return truthvalue if we're processing a template different from
20754 the last one involved in diagnostics. */
20755 bool
20756 problematic_instantiation_changed (void)
20758 return current_tinst_level != last_error_tinst_level;
20761 /* Remember current template involved in diagnostics. */
20762 void
20763 record_last_problematic_instantiation (void)
20765 last_error_tinst_level = current_tinst_level;
20768 struct tinst_level *
20769 current_instantiation (void)
20771 return current_tinst_level;
20774 /* [temp.param] Check that template non-type parm TYPE is of an allowable
20775 type. Return zero for ok, nonzero for disallowed. Issue error and
20776 warning messages under control of COMPLAIN. */
20778 static int
20779 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
20781 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
20782 return 0;
20783 else if (POINTER_TYPE_P (type))
20784 return 0;
20785 else if (TYPE_PTRMEM_P (type))
20786 return 0;
20787 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
20788 return 0;
20789 else if (TREE_CODE (type) == TYPENAME_TYPE)
20790 return 0;
20791 else if (TREE_CODE (type) == DECLTYPE_TYPE)
20792 return 0;
20793 else if (TREE_CODE (type) == NULLPTR_TYPE)
20794 return 0;
20796 if (complain & tf_error)
20798 if (type == error_mark_node)
20799 inform (input_location, "invalid template non-type parameter");
20800 else
20801 error ("%q#T is not a valid type for a template non-type parameter",
20802 type);
20804 return 1;
20807 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
20808 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
20810 static bool
20811 dependent_type_p_r (tree type)
20813 tree scope;
20815 /* [temp.dep.type]
20817 A type is dependent if it is:
20819 -- a template parameter. Template template parameters are types
20820 for us (since TYPE_P holds true for them) so we handle
20821 them here. */
20822 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20823 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
20824 return true;
20825 /* -- a qualified-id with a nested-name-specifier which contains a
20826 class-name that names a dependent type or whose unqualified-id
20827 names a dependent type. */
20828 if (TREE_CODE (type) == TYPENAME_TYPE)
20829 return true;
20830 /* -- a cv-qualified type where the cv-unqualified type is
20831 dependent.
20832 No code is necessary for this bullet; the code below handles
20833 cv-qualified types, and we don't want to strip aliases with
20834 TYPE_MAIN_VARIANT because of DR 1558. */
20835 /* -- a compound type constructed from any dependent type. */
20836 if (TYPE_PTRMEM_P (type))
20837 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
20838 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
20839 (type)));
20840 else if (TYPE_PTR_P (type)
20841 || TREE_CODE (type) == REFERENCE_TYPE)
20842 return dependent_type_p (TREE_TYPE (type));
20843 else if (TREE_CODE (type) == FUNCTION_TYPE
20844 || TREE_CODE (type) == METHOD_TYPE)
20846 tree arg_type;
20848 if (dependent_type_p (TREE_TYPE (type)))
20849 return true;
20850 for (arg_type = TYPE_ARG_TYPES (type);
20851 arg_type;
20852 arg_type = TREE_CHAIN (arg_type))
20853 if (dependent_type_p (TREE_VALUE (arg_type)))
20854 return true;
20855 return false;
20857 /* -- an array type constructed from any dependent type or whose
20858 size is specified by a constant expression that is
20859 value-dependent.
20861 We checked for type- and value-dependence of the bounds in
20862 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
20863 if (TREE_CODE (type) == ARRAY_TYPE)
20865 if (TYPE_DOMAIN (type)
20866 && dependent_type_p (TYPE_DOMAIN (type)))
20867 return true;
20868 return dependent_type_p (TREE_TYPE (type));
20871 /* -- a template-id in which either the template name is a template
20872 parameter ... */
20873 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
20874 return true;
20875 /* ... or any of the template arguments is a dependent type or
20876 an expression that is type-dependent or value-dependent. */
20877 else if (TYPE_TEMPLATE_INFO (type)
20878 && (any_dependent_template_arguments_p
20879 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (type)))))
20880 return true;
20882 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
20883 dependent; if the argument of the `typeof' expression is not
20884 type-dependent, then it should already been have resolved. */
20885 if (TREE_CODE (type) == TYPEOF_TYPE
20886 || TREE_CODE (type) == DECLTYPE_TYPE
20887 || TREE_CODE (type) == UNDERLYING_TYPE)
20888 return true;
20890 /* A template argument pack is dependent if any of its packed
20891 arguments are. */
20892 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
20894 tree args = ARGUMENT_PACK_ARGS (type);
20895 int i, len = TREE_VEC_LENGTH (args);
20896 for (i = 0; i < len; ++i)
20897 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
20898 return true;
20901 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
20902 be template parameters. */
20903 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
20904 return true;
20906 /* The standard does not specifically mention types that are local
20907 to template functions or local classes, but they should be
20908 considered dependent too. For example:
20910 template <int I> void f() {
20911 enum E { a = I };
20912 S<sizeof (E)> s;
20915 The size of `E' cannot be known until the value of `I' has been
20916 determined. Therefore, `E' must be considered dependent. */
20917 scope = TYPE_CONTEXT (type);
20918 if (scope && TYPE_P (scope))
20919 return dependent_type_p (scope);
20920 /* Don't use type_dependent_expression_p here, as it can lead
20921 to infinite recursion trying to determine whether a lambda
20922 nested in a lambda is dependent (c++/47687). */
20923 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
20924 && DECL_LANG_SPECIFIC (scope)
20925 && DECL_TEMPLATE_INFO (scope)
20926 && (any_dependent_template_arguments_p
20927 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
20928 return true;
20930 /* Other types are non-dependent. */
20931 return false;
20934 /* Returns TRUE if TYPE is dependent, in the sense of
20935 [temp.dep.type]. Note that a NULL type is considered dependent. */
20937 bool
20938 dependent_type_p (tree type)
20940 /* If there are no template parameters in scope, then there can't be
20941 any dependent types. */
20942 if (!processing_template_decl)
20944 /* If we are not processing a template, then nobody should be
20945 providing us with a dependent type. */
20946 gcc_assert (type);
20947 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
20948 return false;
20951 /* If the type is NULL, we have not computed a type for the entity
20952 in question; in that case, the type is dependent. */
20953 if (!type)
20954 return true;
20956 /* Erroneous types can be considered non-dependent. */
20957 if (type == error_mark_node)
20958 return false;
20960 /* If we have not already computed the appropriate value for TYPE,
20961 do so now. */
20962 if (!TYPE_DEPENDENT_P_VALID (type))
20964 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
20965 TYPE_DEPENDENT_P_VALID (type) = 1;
20968 return TYPE_DEPENDENT_P (type);
20971 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
20972 lookup. In other words, a dependent type that is not the current
20973 instantiation. */
20975 bool
20976 dependent_scope_p (tree scope)
20978 return (scope && TYPE_P (scope) && dependent_type_p (scope)
20979 && !currently_open_class (scope));
20982 /* T is a SCOPE_REF; return whether we need to consider it
20983 instantiation-dependent so that we can check access at instantiation
20984 time even though we know which member it resolves to. */
20986 static bool
20987 instantiation_dependent_scope_ref_p (tree t)
20989 if (DECL_P (TREE_OPERAND (t, 1))
20990 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
20991 && accessible_in_template_p (TREE_OPERAND (t, 0),
20992 TREE_OPERAND (t, 1)))
20993 return false;
20994 else
20995 return true;
20998 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
20999 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
21000 expression. */
21002 /* Note that this predicate is not appropriate for general expressions;
21003 only constant expressions (that satisfy potential_constant_expression)
21004 can be tested for value dependence. */
21006 bool
21007 value_dependent_expression_p (tree expression)
21009 if (!processing_template_decl)
21010 return false;
21012 /* A name declared with a dependent type. */
21013 if (DECL_P (expression) && type_dependent_expression_p (expression))
21014 return true;
21016 switch (TREE_CODE (expression))
21018 case IDENTIFIER_NODE:
21019 /* A name that has not been looked up -- must be dependent. */
21020 return true;
21022 case TEMPLATE_PARM_INDEX:
21023 /* A non-type template parm. */
21024 return true;
21026 case CONST_DECL:
21027 /* A non-type template parm. */
21028 if (DECL_TEMPLATE_PARM_P (expression))
21029 return true;
21030 return value_dependent_expression_p (DECL_INITIAL (expression));
21032 case VAR_DECL:
21033 /* A constant with literal type and is initialized
21034 with an expression that is value-dependent.
21036 Note that a non-dependent parenthesized initializer will have
21037 already been replaced with its constant value, so if we see
21038 a TREE_LIST it must be dependent. */
21039 if (DECL_INITIAL (expression)
21040 && decl_constant_var_p (expression)
21041 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
21042 /* cp_finish_decl doesn't fold reference initializers. */
21043 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
21044 || value_dependent_expression_p (DECL_INITIAL (expression))))
21045 return true;
21046 return false;
21048 case DYNAMIC_CAST_EXPR:
21049 case STATIC_CAST_EXPR:
21050 case CONST_CAST_EXPR:
21051 case REINTERPRET_CAST_EXPR:
21052 case CAST_EXPR:
21053 /* These expressions are value-dependent if the type to which
21054 the cast occurs is dependent or the expression being casted
21055 is value-dependent. */
21057 tree type = TREE_TYPE (expression);
21059 if (dependent_type_p (type))
21060 return true;
21062 /* A functional cast has a list of operands. */
21063 expression = TREE_OPERAND (expression, 0);
21064 if (!expression)
21066 /* If there are no operands, it must be an expression such
21067 as "int()". This should not happen for aggregate types
21068 because it would form non-constant expressions. */
21069 gcc_assert (cxx_dialect >= cxx11
21070 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
21072 return false;
21075 if (TREE_CODE (expression) == TREE_LIST)
21076 return any_value_dependent_elements_p (expression);
21078 return value_dependent_expression_p (expression);
21081 case SIZEOF_EXPR:
21082 if (SIZEOF_EXPR_TYPE_P (expression))
21083 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
21084 /* FALLTHRU */
21085 case ALIGNOF_EXPR:
21086 case TYPEID_EXPR:
21087 /* A `sizeof' expression is value-dependent if the operand is
21088 type-dependent or is a pack expansion. */
21089 expression = TREE_OPERAND (expression, 0);
21090 if (PACK_EXPANSION_P (expression))
21091 return true;
21092 else if (TYPE_P (expression))
21093 return dependent_type_p (expression);
21094 return instantiation_dependent_expression_p (expression);
21096 case AT_ENCODE_EXPR:
21097 /* An 'encode' expression is value-dependent if the operand is
21098 type-dependent. */
21099 expression = TREE_OPERAND (expression, 0);
21100 return dependent_type_p (expression);
21102 case NOEXCEPT_EXPR:
21103 expression = TREE_OPERAND (expression, 0);
21104 return instantiation_dependent_expression_p (expression);
21106 case SCOPE_REF:
21107 /* All instantiation-dependent expressions should also be considered
21108 value-dependent. */
21109 return instantiation_dependent_scope_ref_p (expression);
21111 case COMPONENT_REF:
21112 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
21113 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
21115 case NONTYPE_ARGUMENT_PACK:
21116 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
21117 is value-dependent. */
21119 tree values = ARGUMENT_PACK_ARGS (expression);
21120 int i, len = TREE_VEC_LENGTH (values);
21122 for (i = 0; i < len; ++i)
21123 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
21124 return true;
21126 return false;
21129 case TRAIT_EXPR:
21131 tree type2 = TRAIT_EXPR_TYPE2 (expression);
21132 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
21133 || (type2 ? dependent_type_p (type2) : false));
21136 case MODOP_EXPR:
21137 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21138 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
21140 case ARRAY_REF:
21141 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21142 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
21144 case ADDR_EXPR:
21146 tree op = TREE_OPERAND (expression, 0);
21147 return (value_dependent_expression_p (op)
21148 || has_value_dependent_address (op));
21151 case CALL_EXPR:
21153 tree fn = get_callee_fndecl (expression);
21154 int i, nargs;
21155 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
21156 return true;
21157 nargs = call_expr_nargs (expression);
21158 for (i = 0; i < nargs; ++i)
21160 tree op = CALL_EXPR_ARG (expression, i);
21161 /* In a call to a constexpr member function, look through the
21162 implicit ADDR_EXPR on the object argument so that it doesn't
21163 cause the call to be considered value-dependent. We also
21164 look through it in potential_constant_expression. */
21165 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
21166 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
21167 && TREE_CODE (op) == ADDR_EXPR)
21168 op = TREE_OPERAND (op, 0);
21169 if (value_dependent_expression_p (op))
21170 return true;
21172 return false;
21175 case TEMPLATE_ID_EXPR:
21176 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
21177 type-dependent. */
21178 return type_dependent_expression_p (expression);
21180 case CONSTRUCTOR:
21182 unsigned ix;
21183 tree val;
21184 if (dependent_type_p (TREE_TYPE (expression)))
21185 return true;
21186 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
21187 if (value_dependent_expression_p (val))
21188 return true;
21189 return false;
21192 case STMT_EXPR:
21193 /* Treat a GNU statement expression as dependent to avoid crashing
21194 under instantiate_non_dependent_expr; it can't be constant. */
21195 return true;
21197 default:
21198 /* A constant expression is value-dependent if any subexpression is
21199 value-dependent. */
21200 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
21202 case tcc_reference:
21203 case tcc_unary:
21204 case tcc_comparison:
21205 case tcc_binary:
21206 case tcc_expression:
21207 case tcc_vl_exp:
21209 int i, len = cp_tree_operand_length (expression);
21211 for (i = 0; i < len; i++)
21213 tree t = TREE_OPERAND (expression, i);
21215 /* In some cases, some of the operands may be missing.l
21216 (For example, in the case of PREDECREMENT_EXPR, the
21217 amount to increment by may be missing.) That doesn't
21218 make the expression dependent. */
21219 if (t && value_dependent_expression_p (t))
21220 return true;
21223 break;
21224 default:
21225 break;
21227 break;
21230 /* The expression is not value-dependent. */
21231 return false;
21234 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
21235 [temp.dep.expr]. Note that an expression with no type is
21236 considered dependent. Other parts of the compiler arrange for an
21237 expression with type-dependent subexpressions to have no type, so
21238 this function doesn't have to be fully recursive. */
21240 bool
21241 type_dependent_expression_p (tree expression)
21243 if (!processing_template_decl)
21244 return false;
21246 if (expression == NULL_TREE || expression == error_mark_node)
21247 return false;
21249 /* An unresolved name is always dependent. */
21250 if (identifier_p (expression) || TREE_CODE (expression) == USING_DECL)
21251 return true;
21253 /* Some expression forms are never type-dependent. */
21254 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
21255 || TREE_CODE (expression) == SIZEOF_EXPR
21256 || TREE_CODE (expression) == ALIGNOF_EXPR
21257 || TREE_CODE (expression) == AT_ENCODE_EXPR
21258 || TREE_CODE (expression) == NOEXCEPT_EXPR
21259 || TREE_CODE (expression) == TRAIT_EXPR
21260 || TREE_CODE (expression) == TYPEID_EXPR
21261 || TREE_CODE (expression) == DELETE_EXPR
21262 || TREE_CODE (expression) == VEC_DELETE_EXPR
21263 || TREE_CODE (expression) == THROW_EXPR)
21264 return false;
21266 /* The types of these expressions depends only on the type to which
21267 the cast occurs. */
21268 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
21269 || TREE_CODE (expression) == STATIC_CAST_EXPR
21270 || TREE_CODE (expression) == CONST_CAST_EXPR
21271 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
21272 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
21273 || TREE_CODE (expression) == CAST_EXPR)
21274 return dependent_type_p (TREE_TYPE (expression));
21276 /* The types of these expressions depends only on the type created
21277 by the expression. */
21278 if (TREE_CODE (expression) == NEW_EXPR
21279 || TREE_CODE (expression) == VEC_NEW_EXPR)
21281 /* For NEW_EXPR tree nodes created inside a template, either
21282 the object type itself or a TREE_LIST may appear as the
21283 operand 1. */
21284 tree type = TREE_OPERAND (expression, 1);
21285 if (TREE_CODE (type) == TREE_LIST)
21286 /* This is an array type. We need to check array dimensions
21287 as well. */
21288 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
21289 || value_dependent_expression_p
21290 (TREE_OPERAND (TREE_VALUE (type), 1));
21291 else
21292 return dependent_type_p (type);
21295 if (TREE_CODE (expression) == SCOPE_REF)
21297 tree scope = TREE_OPERAND (expression, 0);
21298 tree name = TREE_OPERAND (expression, 1);
21300 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
21301 contains an identifier associated by name lookup with one or more
21302 declarations declared with a dependent type, or...a
21303 nested-name-specifier or qualified-id that names a member of an
21304 unknown specialization. */
21305 return (type_dependent_expression_p (name)
21306 || dependent_scope_p (scope));
21309 if (TREE_CODE (expression) == FUNCTION_DECL
21310 && DECL_LANG_SPECIFIC (expression)
21311 && DECL_TEMPLATE_INFO (expression)
21312 && (any_dependent_template_arguments_p
21313 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
21314 return true;
21316 if (TREE_CODE (expression) == TEMPLATE_DECL
21317 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
21318 return false;
21320 if (TREE_CODE (expression) == STMT_EXPR)
21321 expression = stmt_expr_value_expr (expression);
21323 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
21325 tree elt;
21326 unsigned i;
21328 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
21330 if (type_dependent_expression_p (elt))
21331 return true;
21333 return false;
21336 /* A static data member of the current instantiation with incomplete
21337 array type is type-dependent, as the definition and specializations
21338 can have different bounds. */
21339 if (VAR_P (expression)
21340 && DECL_CLASS_SCOPE_P (expression)
21341 && dependent_type_p (DECL_CONTEXT (expression))
21342 && VAR_HAD_UNKNOWN_BOUND (expression))
21343 return true;
21345 /* An array of unknown bound depending on a variadic parameter, eg:
21347 template<typename... Args>
21348 void foo (Args... args)
21350 int arr[] = { args... };
21353 template<int... vals>
21354 void bar ()
21356 int arr[] = { vals... };
21359 If the array has no length and has an initializer, it must be that
21360 we couldn't determine its length in cp_complete_array_type because
21361 it is dependent. */
21362 if (VAR_P (expression)
21363 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
21364 && !TYPE_DOMAIN (TREE_TYPE (expression))
21365 && DECL_INITIAL (expression))
21366 return true;
21368 if (TREE_TYPE (expression) == unknown_type_node)
21370 if (TREE_CODE (expression) == ADDR_EXPR)
21371 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
21372 if (TREE_CODE (expression) == COMPONENT_REF
21373 || TREE_CODE (expression) == OFFSET_REF)
21375 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
21376 return true;
21377 expression = TREE_OPERAND (expression, 1);
21378 if (identifier_p (expression))
21379 return false;
21381 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
21382 if (TREE_CODE (expression) == SCOPE_REF)
21383 return false;
21385 /* Always dependent, on the number of arguments if nothing else. */
21386 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
21387 return true;
21389 if (BASELINK_P (expression))
21391 if (BASELINK_OPTYPE (expression)
21392 && dependent_type_p (BASELINK_OPTYPE (expression)))
21393 return true;
21394 expression = BASELINK_FUNCTIONS (expression);
21397 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
21399 if (any_dependent_template_arguments_p
21400 (TREE_OPERAND (expression, 1)))
21401 return true;
21402 expression = TREE_OPERAND (expression, 0);
21404 gcc_assert (TREE_CODE (expression) == OVERLOAD
21405 || TREE_CODE (expression) == FUNCTION_DECL);
21407 while (expression)
21409 if (type_dependent_expression_p (OVL_CURRENT (expression)))
21410 return true;
21411 expression = OVL_NEXT (expression);
21413 return false;
21416 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
21418 return (dependent_type_p (TREE_TYPE (expression)));
21421 /* walk_tree callback function for instantiation_dependent_expression_p,
21422 below. Returns non-zero if a dependent subexpression is found. */
21424 static tree
21425 instantiation_dependent_r (tree *tp, int *walk_subtrees,
21426 void * /*data*/)
21428 if (TYPE_P (*tp))
21430 /* We don't have to worry about decltype currently because decltype
21431 of an instantiation-dependent expr is a dependent type. This
21432 might change depending on the resolution of DR 1172. */
21433 *walk_subtrees = false;
21434 return NULL_TREE;
21436 enum tree_code code = TREE_CODE (*tp);
21437 switch (code)
21439 /* Don't treat an argument list as dependent just because it has no
21440 TREE_TYPE. */
21441 case TREE_LIST:
21442 case TREE_VEC:
21443 return NULL_TREE;
21445 case VAR_DECL:
21446 case CONST_DECL:
21447 /* A constant with a dependent initializer is dependent. */
21448 if (value_dependent_expression_p (*tp))
21449 return *tp;
21450 break;
21452 case TEMPLATE_PARM_INDEX:
21453 return *tp;
21455 /* Handle expressions with type operands. */
21456 case SIZEOF_EXPR:
21457 case ALIGNOF_EXPR:
21458 case TYPEID_EXPR:
21459 case AT_ENCODE_EXPR:
21461 tree op = TREE_OPERAND (*tp, 0);
21462 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
21463 op = TREE_TYPE (op);
21464 if (TYPE_P (op))
21466 if (dependent_type_p (op))
21467 return *tp;
21468 else
21470 *walk_subtrees = false;
21471 return NULL_TREE;
21474 break;
21477 case TRAIT_EXPR:
21478 if (dependent_type_p (TRAIT_EXPR_TYPE1 (*tp))
21479 || (TRAIT_EXPR_TYPE2 (*tp)
21480 && dependent_type_p (TRAIT_EXPR_TYPE2 (*tp))))
21481 return *tp;
21482 *walk_subtrees = false;
21483 return NULL_TREE;
21485 case COMPONENT_REF:
21486 if (identifier_p (TREE_OPERAND (*tp, 1)))
21487 /* In a template, finish_class_member_access_expr creates a
21488 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
21489 type-dependent, so that we can check access control at
21490 instantiation time (PR 42277). See also Core issue 1273. */
21491 return *tp;
21492 break;
21494 case SCOPE_REF:
21495 if (instantiation_dependent_scope_ref_p (*tp))
21496 return *tp;
21497 else
21498 break;
21500 /* Treat statement-expressions as dependent. */
21501 case BIND_EXPR:
21502 return *tp;
21504 default:
21505 break;
21508 if (type_dependent_expression_p (*tp))
21509 return *tp;
21510 else
21511 return NULL_TREE;
21514 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
21515 sense defined by the ABI:
21517 "An expression is instantiation-dependent if it is type-dependent
21518 or value-dependent, or it has a subexpression that is type-dependent
21519 or value-dependent." */
21521 bool
21522 instantiation_dependent_expression_p (tree expression)
21524 tree result;
21526 if (!processing_template_decl)
21527 return false;
21529 if (expression == error_mark_node)
21530 return false;
21532 result = cp_walk_tree_without_duplicates (&expression,
21533 instantiation_dependent_r, NULL);
21534 return result != NULL_TREE;
21537 /* Like type_dependent_expression_p, but it also works while not processing
21538 a template definition, i.e. during substitution or mangling. */
21540 bool
21541 type_dependent_expression_p_push (tree expr)
21543 bool b;
21544 ++processing_template_decl;
21545 b = type_dependent_expression_p (expr);
21546 --processing_template_decl;
21547 return b;
21550 /* Returns TRUE if ARGS contains a type-dependent expression. */
21552 bool
21553 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
21555 unsigned int i;
21556 tree arg;
21558 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
21560 if (type_dependent_expression_p (arg))
21561 return true;
21563 return false;
21566 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21567 expressions) contains any type-dependent expressions. */
21569 bool
21570 any_type_dependent_elements_p (const_tree list)
21572 for (; list; list = TREE_CHAIN (list))
21573 if (type_dependent_expression_p (TREE_VALUE (list)))
21574 return true;
21576 return false;
21579 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21580 expressions) contains any value-dependent expressions. */
21582 bool
21583 any_value_dependent_elements_p (const_tree list)
21585 for (; list; list = TREE_CHAIN (list))
21586 if (value_dependent_expression_p (TREE_VALUE (list)))
21587 return true;
21589 return false;
21592 /* Returns TRUE if the ARG (a template argument) is dependent. */
21594 bool
21595 dependent_template_arg_p (tree arg)
21597 if (!processing_template_decl)
21598 return false;
21600 /* Assume a template argument that was wrongly written by the user
21601 is dependent. This is consistent with what
21602 any_dependent_template_arguments_p [that calls this function]
21603 does. */
21604 if (!arg || arg == error_mark_node)
21605 return true;
21607 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
21608 arg = ARGUMENT_PACK_SELECT_ARG (arg);
21610 if (TREE_CODE (arg) == TEMPLATE_DECL
21611 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
21612 return dependent_template_p (arg);
21613 else if (ARGUMENT_PACK_P (arg))
21615 tree args = ARGUMENT_PACK_ARGS (arg);
21616 int i, len = TREE_VEC_LENGTH (args);
21617 for (i = 0; i < len; ++i)
21619 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21620 return true;
21623 return false;
21625 else if (TYPE_P (arg))
21626 return dependent_type_p (arg);
21627 else
21628 return (type_dependent_expression_p (arg)
21629 || value_dependent_expression_p (arg));
21632 /* Returns true if ARGS (a collection of template arguments) contains
21633 any types that require structural equality testing. */
21635 bool
21636 any_template_arguments_need_structural_equality_p (tree args)
21638 int i;
21639 int j;
21641 if (!args)
21642 return false;
21643 if (args == error_mark_node)
21644 return true;
21646 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21648 tree level = TMPL_ARGS_LEVEL (args, i + 1);
21649 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21651 tree arg = TREE_VEC_ELT (level, j);
21652 tree packed_args = NULL_TREE;
21653 int k, len = 1;
21655 if (ARGUMENT_PACK_P (arg))
21657 /* Look inside the argument pack. */
21658 packed_args = ARGUMENT_PACK_ARGS (arg);
21659 len = TREE_VEC_LENGTH (packed_args);
21662 for (k = 0; k < len; ++k)
21664 if (packed_args)
21665 arg = TREE_VEC_ELT (packed_args, k);
21667 if (error_operand_p (arg))
21668 return true;
21669 else if (TREE_CODE (arg) == TEMPLATE_DECL)
21670 continue;
21671 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
21672 return true;
21673 else if (!TYPE_P (arg) && TREE_TYPE (arg)
21674 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
21675 return true;
21680 return false;
21683 /* Returns true if ARGS (a collection of template arguments) contains
21684 any dependent arguments. */
21686 bool
21687 any_dependent_template_arguments_p (const_tree args)
21689 int i;
21690 int j;
21692 if (!args)
21693 return false;
21694 if (args == error_mark_node)
21695 return true;
21697 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21699 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
21700 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21701 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
21702 return true;
21705 return false;
21708 /* Returns TRUE if the template TMPL is dependent. */
21710 bool
21711 dependent_template_p (tree tmpl)
21713 if (TREE_CODE (tmpl) == OVERLOAD)
21715 while (tmpl)
21717 if (dependent_template_p (OVL_CURRENT (tmpl)))
21718 return true;
21719 tmpl = OVL_NEXT (tmpl);
21721 return false;
21724 /* Template template parameters are dependent. */
21725 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
21726 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
21727 return true;
21728 /* So are names that have not been looked up. */
21729 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
21730 return true;
21731 /* So are member templates of dependent classes. */
21732 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
21733 return dependent_type_p (DECL_CONTEXT (tmpl));
21734 return false;
21737 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
21739 bool
21740 dependent_template_id_p (tree tmpl, tree args)
21742 return (dependent_template_p (tmpl)
21743 || any_dependent_template_arguments_p (args));
21746 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
21747 is dependent. */
21749 bool
21750 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
21752 int i;
21754 if (!processing_template_decl)
21755 return false;
21757 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
21759 tree decl = TREE_VEC_ELT (declv, i);
21760 tree init = TREE_VEC_ELT (initv, i);
21761 tree cond = TREE_VEC_ELT (condv, i);
21762 tree incr = TREE_VEC_ELT (incrv, i);
21764 if (type_dependent_expression_p (decl))
21765 return true;
21767 if (init && type_dependent_expression_p (init))
21768 return true;
21770 if (type_dependent_expression_p (cond))
21771 return true;
21773 if (COMPARISON_CLASS_P (cond)
21774 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
21775 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
21776 return true;
21778 if (TREE_CODE (incr) == MODOP_EXPR)
21780 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
21781 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
21782 return true;
21784 else if (type_dependent_expression_p (incr))
21785 return true;
21786 else if (TREE_CODE (incr) == MODIFY_EXPR)
21788 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
21789 return true;
21790 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
21792 tree t = TREE_OPERAND (incr, 1);
21793 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
21794 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
21795 return true;
21800 return false;
21803 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
21804 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
21805 no such TYPE can be found. Note that this function peers inside
21806 uninstantiated templates and therefore should be used only in
21807 extremely limited situations. ONLY_CURRENT_P restricts this
21808 peering to the currently open classes hierarchy (which is required
21809 when comparing types). */
21811 tree
21812 resolve_typename_type (tree type, bool only_current_p)
21814 tree scope;
21815 tree name;
21816 tree decl;
21817 int quals;
21818 tree pushed_scope;
21819 tree result;
21821 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
21823 scope = TYPE_CONTEXT (type);
21824 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
21825 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
21826 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
21827 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
21828 identifier of the TYPENAME_TYPE anymore.
21829 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
21830 TYPENAME_TYPE instead, we avoid messing up with a possible
21831 typedef variant case. */
21832 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
21834 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
21835 it first before we can figure out what NAME refers to. */
21836 if (TREE_CODE (scope) == TYPENAME_TYPE)
21838 if (TYPENAME_IS_RESOLVING_P (scope))
21839 /* Given a class template A with a dependent base with nested type C,
21840 typedef typename A::C::C C will land us here, as trying to resolve
21841 the initial A::C leads to the local C typedef, which leads back to
21842 A::C::C. So we break the recursion now. */
21843 return type;
21844 else
21845 scope = resolve_typename_type (scope, only_current_p);
21847 /* If we don't know what SCOPE refers to, then we cannot resolve the
21848 TYPENAME_TYPE. */
21849 if (TREE_CODE (scope) == TYPENAME_TYPE)
21850 return type;
21851 /* If the SCOPE is a template type parameter, we have no way of
21852 resolving the name. */
21853 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
21854 return type;
21855 /* If the SCOPE is not the current instantiation, there's no reason
21856 to look inside it. */
21857 if (only_current_p && !currently_open_class (scope))
21858 return type;
21859 /* If this is a typedef, we don't want to look inside (c++/11987). */
21860 if (typedef_variant_p (type))
21861 return type;
21862 /* If SCOPE isn't the template itself, it will not have a valid
21863 TYPE_FIELDS list. */
21864 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
21865 /* scope is either the template itself or a compatible instantiation
21866 like X<T>, so look up the name in the original template. */
21867 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
21868 else
21869 /* scope is a partial instantiation, so we can't do the lookup or we
21870 will lose the template arguments. */
21871 return type;
21872 /* Enter the SCOPE so that name lookup will be resolved as if we
21873 were in the class definition. In particular, SCOPE will no
21874 longer be considered a dependent type. */
21875 pushed_scope = push_scope (scope);
21876 /* Look up the declaration. */
21877 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
21878 tf_warning_or_error);
21880 result = NULL_TREE;
21882 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
21883 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
21884 if (!decl)
21885 /*nop*/;
21886 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
21887 && TREE_CODE (decl) == TYPE_DECL)
21889 result = TREE_TYPE (decl);
21890 if (result == error_mark_node)
21891 result = NULL_TREE;
21893 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
21894 && DECL_CLASS_TEMPLATE_P (decl))
21896 tree tmpl;
21897 tree args;
21898 /* Obtain the template and the arguments. */
21899 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
21900 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
21901 /* Instantiate the template. */
21902 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
21903 /*entering_scope=*/0,
21904 tf_error | tf_user);
21905 if (result == error_mark_node)
21906 result = NULL_TREE;
21909 /* Leave the SCOPE. */
21910 if (pushed_scope)
21911 pop_scope (pushed_scope);
21913 /* If we failed to resolve it, return the original typename. */
21914 if (!result)
21915 return type;
21917 /* If lookup found a typename type, resolve that too. */
21918 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
21920 /* Ill-formed programs can cause infinite recursion here, so we
21921 must catch that. */
21922 TYPENAME_IS_RESOLVING_P (type) = 1;
21923 result = resolve_typename_type (result, only_current_p);
21924 TYPENAME_IS_RESOLVING_P (type) = 0;
21927 /* Qualify the resulting type. */
21928 quals = cp_type_quals (type);
21929 if (quals)
21930 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
21932 return result;
21935 /* EXPR is an expression which is not type-dependent. Return a proxy
21936 for EXPR that can be used to compute the types of larger
21937 expressions containing EXPR. */
21939 tree
21940 build_non_dependent_expr (tree expr)
21942 tree inner_expr;
21944 #ifdef ENABLE_CHECKING
21945 /* Try to get a constant value for all non-dependent expressions in
21946 order to expose bugs in *_dependent_expression_p and constexpr. */
21947 if (cxx_dialect >= cxx11)
21948 fold_non_dependent_expr (expr);
21949 #endif
21951 /* Preserve OVERLOADs; the functions must be available to resolve
21952 types. */
21953 inner_expr = expr;
21954 if (TREE_CODE (inner_expr) == STMT_EXPR)
21955 inner_expr = stmt_expr_value_expr (inner_expr);
21956 if (TREE_CODE (inner_expr) == ADDR_EXPR)
21957 inner_expr = TREE_OPERAND (inner_expr, 0);
21958 if (TREE_CODE (inner_expr) == COMPONENT_REF)
21959 inner_expr = TREE_OPERAND (inner_expr, 1);
21960 if (is_overloaded_fn (inner_expr)
21961 || TREE_CODE (inner_expr) == OFFSET_REF)
21962 return expr;
21963 /* There is no need to return a proxy for a variable. */
21964 if (VAR_P (expr))
21965 return expr;
21966 /* Preserve string constants; conversions from string constants to
21967 "char *" are allowed, even though normally a "const char *"
21968 cannot be used to initialize a "char *". */
21969 if (TREE_CODE (expr) == STRING_CST)
21970 return expr;
21971 /* Preserve void and arithmetic constants, as an optimization -- there is no
21972 reason to create a new node. */
21973 if (TREE_CODE (expr) == VOID_CST
21974 || TREE_CODE (expr) == INTEGER_CST
21975 || TREE_CODE (expr) == REAL_CST)
21976 return expr;
21977 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
21978 There is at least one place where we want to know that a
21979 particular expression is a throw-expression: when checking a ?:
21980 expression, there are special rules if the second or third
21981 argument is a throw-expression. */
21982 if (TREE_CODE (expr) == THROW_EXPR)
21983 return expr;
21985 /* Don't wrap an initializer list, we need to be able to look inside. */
21986 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
21987 return expr;
21989 /* Don't wrap a dummy object, we need to be able to test for it. */
21990 if (is_dummy_object (expr))
21991 return expr;
21993 if (TREE_CODE (expr) == COND_EXPR)
21994 return build3 (COND_EXPR,
21995 TREE_TYPE (expr),
21996 TREE_OPERAND (expr, 0),
21997 (TREE_OPERAND (expr, 1)
21998 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
21999 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
22000 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
22001 if (TREE_CODE (expr) == COMPOUND_EXPR
22002 && !COMPOUND_EXPR_OVERLOADED (expr))
22003 return build2 (COMPOUND_EXPR,
22004 TREE_TYPE (expr),
22005 TREE_OPERAND (expr, 0),
22006 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
22008 /* If the type is unknown, it can't really be non-dependent */
22009 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
22011 /* Otherwise, build a NON_DEPENDENT_EXPR. */
22012 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
22015 /* ARGS is a vector of expressions as arguments to a function call.
22016 Replace the arguments with equivalent non-dependent expressions.
22017 This modifies ARGS in place. */
22019 void
22020 make_args_non_dependent (vec<tree, va_gc> *args)
22022 unsigned int ix;
22023 tree arg;
22025 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
22027 tree newarg = build_non_dependent_expr (arg);
22028 if (newarg != arg)
22029 (*args)[ix] = newarg;
22033 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
22034 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
22035 parms. */
22037 static tree
22038 make_auto_1 (tree name)
22040 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
22041 TYPE_NAME (au) = build_decl (input_location,
22042 TYPE_DECL, name, au);
22043 TYPE_STUB_DECL (au) = TYPE_NAME (au);
22044 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
22045 (0, processing_template_decl + 1, processing_template_decl + 1,
22046 TYPE_NAME (au), NULL_TREE);
22047 TYPE_CANONICAL (au) = canonical_type_parameter (au);
22048 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
22049 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
22051 return au;
22054 tree
22055 make_decltype_auto (void)
22057 return make_auto_1 (get_identifier ("decltype(auto)"));
22060 tree
22061 make_auto (void)
22063 return make_auto_1 (get_identifier ("auto"));
22066 /* Given type ARG, return std::initializer_list<ARG>. */
22068 static tree
22069 listify (tree arg)
22071 tree std_init_list = namespace_binding
22072 (get_identifier ("initializer_list"), std_node);
22073 tree argvec;
22074 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
22076 error ("deducing from brace-enclosed initializer list requires "
22077 "#include <initializer_list>");
22078 return error_mark_node;
22080 argvec = make_tree_vec (1);
22081 TREE_VEC_ELT (argvec, 0) = arg;
22082 return lookup_template_class (std_init_list, argvec, NULL_TREE,
22083 NULL_TREE, 0, tf_warning_or_error);
22086 /* Replace auto in TYPE with std::initializer_list<auto>. */
22088 static tree
22089 listify_autos (tree type, tree auto_node)
22091 tree init_auto = listify (auto_node);
22092 tree argvec = make_tree_vec (1);
22093 TREE_VEC_ELT (argvec, 0) = init_auto;
22094 if (processing_template_decl)
22095 argvec = add_to_template_args (current_template_args (), argvec);
22096 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22099 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
22100 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
22102 tree
22103 do_auto_deduction (tree type, tree init, tree auto_node)
22105 tree targs;
22107 if (init == error_mark_node)
22108 return error_mark_node;
22110 if (type_dependent_expression_p (init))
22111 /* Defining a subset of type-dependent expressions that we can deduce
22112 from ahead of time isn't worth the trouble. */
22113 return type;
22115 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
22116 with either a new invented type template parameter U or, if the
22117 initializer is a braced-init-list (8.5.4), with
22118 std::initializer_list<U>. */
22119 if (BRACE_ENCLOSED_INITIALIZER_P (init))
22120 type = listify_autos (type, auto_node);
22122 init = resolve_nondeduced_context (init);
22124 targs = make_tree_vec (1);
22125 if (AUTO_IS_DECLTYPE (auto_node))
22127 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
22128 && !REF_PARENTHESIZED_P (init)));
22129 TREE_VEC_ELT (targs, 0)
22130 = finish_decltype_type (init, id, tf_warning_or_error);
22131 if (type != auto_node)
22133 error ("%qT as type rather than plain %<decltype(auto)%>", type);
22134 return error_mark_node;
22137 else
22139 tree parms = build_tree_list (NULL_TREE, type);
22140 tree tparms = make_tree_vec (1);
22141 int val;
22143 TREE_VEC_ELT (tparms, 0)
22144 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
22145 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
22146 DEDUCE_CALL, LOOKUP_NORMAL,
22147 NULL, /*explain_p=*/false);
22148 if (val > 0)
22150 if (processing_template_decl)
22151 /* Try again at instantiation time. */
22152 return type;
22153 if (type && type != error_mark_node)
22154 /* If type is error_mark_node a diagnostic must have been
22155 emitted by now. Also, having a mention to '<type error>'
22156 in the diagnostic is not really useful to the user. */
22158 if (cfun && auto_node == current_function_auto_return_pattern
22159 && LAMBDA_FUNCTION_P (current_function_decl))
22160 error ("unable to deduce lambda return type from %qE", init);
22161 else
22162 error ("unable to deduce %qT from %qE", type, init);
22164 return error_mark_node;
22168 /* If the list of declarators contains more than one declarator, the type
22169 of each declared variable is determined as described above. If the
22170 type deduced for the template parameter U is not the same in each
22171 deduction, the program is ill-formed. */
22172 if (TREE_TYPE (auto_node)
22173 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
22175 if (cfun && auto_node == current_function_auto_return_pattern
22176 && LAMBDA_FUNCTION_P (current_function_decl))
22177 error ("inconsistent types %qT and %qT deduced for "
22178 "lambda return type", TREE_TYPE (auto_node),
22179 TREE_VEC_ELT (targs, 0));
22180 else
22181 error ("inconsistent deduction for %qT: %qT and then %qT",
22182 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
22183 return error_mark_node;
22185 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
22187 if (processing_template_decl)
22188 targs = add_to_template_args (current_template_args (), targs);
22189 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
22192 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
22193 result. */
22195 tree
22196 splice_late_return_type (tree type, tree late_return_type)
22198 tree argvec;
22200 if (late_return_type == NULL_TREE)
22201 return type;
22202 argvec = make_tree_vec (1);
22203 TREE_VEC_ELT (argvec, 0) = late_return_type;
22204 if (processing_template_parmlist)
22205 /* For a late-specified return type in a template type-parameter, we
22206 need to add a dummy argument level for its parmlist. */
22207 argvec = add_to_template_args
22208 (make_tree_vec (processing_template_parmlist), argvec);
22209 if (current_template_parms)
22210 argvec = add_to_template_args (current_template_args (), argvec);
22211 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22214 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
22215 'decltype(auto)'. */
22217 bool
22218 is_auto (const_tree type)
22220 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22221 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
22222 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
22223 return true;
22224 else
22225 return false;
22228 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
22229 a use of `auto'. Returns NULL_TREE otherwise. */
22231 tree
22232 type_uses_auto (tree type)
22234 return find_type_usage (type, is_auto);
22237 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
22238 'decltype(auto)' or a concept. */
22240 bool
22241 is_auto_or_concept (const_tree type)
22243 return is_auto (type); // or concept
22246 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
22247 a concept identifier) iff TYPE contains a use of a generic type. Returns
22248 NULL_TREE otherwise. */
22250 tree
22251 type_uses_auto_or_concept (tree type)
22253 return find_type_usage (type, is_auto_or_concept);
22257 /* For a given template T, return the vector of typedefs referenced
22258 in T for which access check is needed at T instantiation time.
22259 T is either a FUNCTION_DECL or a RECORD_TYPE.
22260 Those typedefs were added to T by the function
22261 append_type_to_template_for_access_check. */
22263 vec<qualified_typedef_usage_t, va_gc> *
22264 get_types_needing_access_check (tree t)
22266 tree ti;
22267 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
22269 if (!t || t == error_mark_node)
22270 return NULL;
22272 if (!(ti = get_template_info (t)))
22273 return NULL;
22275 if (CLASS_TYPE_P (t)
22276 || TREE_CODE (t) == FUNCTION_DECL)
22278 if (!TI_TEMPLATE (ti))
22279 return NULL;
22281 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
22284 return result;
22287 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
22288 tied to T. That list of typedefs will be access checked at
22289 T instantiation time.
22290 T is either a FUNCTION_DECL or a RECORD_TYPE.
22291 TYPE_DECL is a TYPE_DECL node representing a typedef.
22292 SCOPE is the scope through which TYPE_DECL is accessed.
22293 LOCATION is the location of the usage point of TYPE_DECL.
22295 This function is a subroutine of
22296 append_type_to_template_for_access_check. */
22298 static void
22299 append_type_to_template_for_access_check_1 (tree t,
22300 tree type_decl,
22301 tree scope,
22302 location_t location)
22304 qualified_typedef_usage_t typedef_usage;
22305 tree ti;
22307 if (!t || t == error_mark_node)
22308 return;
22310 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
22311 || CLASS_TYPE_P (t))
22312 && type_decl
22313 && TREE_CODE (type_decl) == TYPE_DECL
22314 && scope);
22316 if (!(ti = get_template_info (t)))
22317 return;
22319 gcc_assert (TI_TEMPLATE (ti));
22321 typedef_usage.typedef_decl = type_decl;
22322 typedef_usage.context = scope;
22323 typedef_usage.locus = location;
22325 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
22328 /* Append TYPE_DECL to the template TEMPL.
22329 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
22330 At TEMPL instanciation time, TYPE_DECL will be checked to see
22331 if it can be accessed through SCOPE.
22332 LOCATION is the location of the usage point of TYPE_DECL.
22334 e.g. consider the following code snippet:
22336 class C
22338 typedef int myint;
22341 template<class U> struct S
22343 C::myint mi; // <-- usage point of the typedef C::myint
22346 S<char> s;
22348 At S<char> instantiation time, we need to check the access of C::myint
22349 In other words, we need to check the access of the myint typedef through
22350 the C scope. For that purpose, this function will add the myint typedef
22351 and the scope C through which its being accessed to a list of typedefs
22352 tied to the template S. That list will be walked at template instantiation
22353 time and access check performed on each typedefs it contains.
22354 Note that this particular code snippet should yield an error because
22355 myint is private to C. */
22357 void
22358 append_type_to_template_for_access_check (tree templ,
22359 tree type_decl,
22360 tree scope,
22361 location_t location)
22363 qualified_typedef_usage_t *iter;
22364 unsigned i;
22366 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
22368 /* Make sure we don't append the type to the template twice. */
22369 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
22370 if (iter->typedef_decl == type_decl && scope == iter->context)
22371 return;
22373 append_type_to_template_for_access_check_1 (templ, type_decl,
22374 scope, location);
22377 /* Convert the generic type parameters in PARM that match the types given in the
22378 range [START_IDX, END_IDX) from the current_template_parms into generic type
22379 packs. */
22381 tree
22382 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
22384 tree current = current_template_parms;
22385 int depth = TMPL_PARMS_DEPTH (current);
22386 current = INNERMOST_TEMPLATE_PARMS (current);
22387 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
22389 for (int i = 0; i < start_idx; ++i)
22390 TREE_VEC_ELT (replacement, i)
22391 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22393 for (int i = start_idx; i < end_idx; ++i)
22395 /* Create a distinct parameter pack type from the current parm and add it
22396 to the replacement args to tsubst below into the generic function
22397 parameter. */
22399 tree o = TREE_TYPE (TREE_VALUE
22400 (TREE_VEC_ELT (current, i)));
22401 tree t = copy_type (o);
22402 TEMPLATE_TYPE_PARM_INDEX (t)
22403 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
22404 o, 0, 0, tf_none);
22405 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
22406 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
22407 TYPE_MAIN_VARIANT (t) = t;
22408 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
22409 TYPE_CANONICAL (t) = canonical_type_parameter (t);
22410 TREE_VEC_ELT (replacement, i) = t;
22411 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
22414 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
22415 TREE_VEC_ELT (replacement, i)
22416 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22418 /* If there are more levels then build up the replacement with the outer
22419 template parms. */
22420 if (depth > 1)
22421 replacement = add_to_template_args (template_parms_to_args
22422 (TREE_CHAIN (current_template_parms)),
22423 replacement);
22425 return tsubst (parm, replacement, tf_none, NULL_TREE);
22429 /* Set up the hash tables for template instantiations. */
22431 void
22432 init_template_processing (void)
22434 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
22435 type_specializations = hash_table<spec_hasher>::create_ggc (37);
22438 /* Print stats about the template hash tables for -fstats. */
22440 void
22441 print_template_statistics (void)
22443 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
22444 "%f collisions\n", (long) decl_specializations->size (),
22445 (long) decl_specializations->elements (),
22446 decl_specializations->collisions ());
22447 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
22448 "%f collisions\n", (long) type_specializations->size (),
22449 (long) type_specializations->elements (),
22450 type_specializations->collisions ());
22453 #include "gt-cp-pt.h"