Always pass explicit location to fatal_error.
[official-gcc.git] / gcc / cp / pt.c
blob3317dad35d79d6cfba5fb90df6f5cc7fa895252c
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2015 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 "hash-set.h"
32 #include "machmode.h"
33 #include "vec.h"
34 #include "double-int.h"
35 #include "input.h"
36 #include "alias.h"
37 #include "symtab.h"
38 #include "wide-int.h"
39 #include "inchash.h"
40 #include "tree.h"
41 #include "stringpool.h"
42 #include "varasm.h"
43 #include "attribs.h"
44 #include "stor-layout.h"
45 #include "intl.h"
46 #include "flags.h"
47 #include "cp-tree.h"
48 #include "c-family/c-common.h"
49 #include "c-family/c-objc.h"
50 #include "cp-objcp-common.h"
51 #include "tree-inline.h"
52 #include "decl.h"
53 #include "toplev.h"
54 #include "timevar.h"
55 #include "tree-iterator.h"
56 #include "type-utils.h"
57 #include "gimplify.h"
59 /* The type of functions taking a tree, and some additional data, and
60 returning an int. */
61 typedef int (*tree_fn_t) (tree, void*);
63 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
64 instantiations have been deferred, either because their definitions
65 were not yet available, or because we were putting off doing the work. */
66 struct GTY ((chain_next ("%h.next"))) pending_template {
67 struct pending_template *next;
68 struct tinst_level *tinst;
71 static GTY(()) struct pending_template *pending_templates;
72 static GTY(()) struct pending_template *last_pending_template;
74 int processing_template_parmlist;
75 static int template_header_count;
77 static GTY(()) tree saved_trees;
78 static vec<int> inline_parm_levels;
80 static GTY(()) struct tinst_level *current_tinst_level;
82 static GTY(()) tree saved_access_scope;
84 /* Live only within one (recursive) call to tsubst_expr. We use
85 this to pass the statement expression node from the STMT_EXPR
86 to the EXPR_STMT that is its result. */
87 static tree cur_stmt_expr;
89 /* True if we've recursed into fn_type_unification too many times. */
90 static bool excessive_deduction_depth;
92 struct GTY((for_user)) spec_entry
94 tree tmpl;
95 tree args;
96 tree spec;
99 struct spec_hasher : ggc_hasher<spec_entry *>
101 static hashval_t hash (spec_entry *);
102 static bool equal (spec_entry *, spec_entry *);
105 static GTY (()) hash_table<spec_hasher> *decl_specializations;
107 static GTY (()) hash_table<spec_hasher> *type_specializations;
109 /* Contains canonical template parameter types. The vector is indexed by
110 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
111 TREE_LIST, whose TREE_VALUEs contain the canonical template
112 parameters of various types and levels. */
113 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
115 #define UNIFY_ALLOW_NONE 0
116 #define UNIFY_ALLOW_MORE_CV_QUAL 1
117 #define UNIFY_ALLOW_LESS_CV_QUAL 2
118 #define UNIFY_ALLOW_DERIVED 4
119 #define UNIFY_ALLOW_INTEGER 8
120 #define UNIFY_ALLOW_OUTER_LEVEL 16
121 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
122 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
124 enum template_base_result {
125 tbr_incomplete_type,
126 tbr_ambiguous_baseclass,
127 tbr_success
130 static void push_access_scope (tree);
131 static void pop_access_scope (tree);
132 static bool resolve_overloaded_unification (tree, tree, tree, tree,
133 unification_kind_t, int,
134 bool);
135 static int try_one_overload (tree, tree, tree, tree, tree,
136 unification_kind_t, int, bool, bool);
137 static int unify (tree, tree, tree, tree, int, bool);
138 static void add_pending_template (tree);
139 static tree reopen_tinst_level (struct tinst_level *);
140 static tree tsubst_initializer_list (tree, tree);
141 static tree get_partial_spec_bindings (tree, tree, tree, tree);
142 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
143 bool, bool);
144 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
145 bool, bool);
146 static void tsubst_enum (tree, tree, tree);
147 static tree add_to_template_args (tree, tree);
148 static tree add_outermost_template_args (tree, tree);
149 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
150 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
151 tree);
152 static int type_unification_real (tree, tree, tree, const tree *,
153 unsigned int, int, unification_kind_t, int,
154 vec<deferred_access_check, va_gc> **,
155 bool);
156 static void note_template_header (int);
157 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
158 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
159 static tree convert_template_argument (tree, tree, tree,
160 tsubst_flags_t, int, tree);
161 static int for_each_template_parm (tree, tree_fn_t, void*,
162 hash_set<tree> *, bool);
163 static tree expand_template_argument_pack (tree);
164 static tree build_template_parm_index (int, int, int, tree, tree);
165 static bool inline_needs_template_parms (tree, bool);
166 static void push_inline_template_parms_recursive (tree, int);
167 static tree retrieve_local_specialization (tree);
168 static void register_local_specialization (tree, tree);
169 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
170 static int mark_template_parm (tree, void *);
171 static int template_parm_this_level_p (tree, void *);
172 static tree tsubst_friend_function (tree, tree);
173 static tree tsubst_friend_class (tree, tree);
174 static int can_complete_type_without_circularity (tree);
175 static tree get_bindings (tree, tree, tree, bool);
176 static int template_decl_level (tree);
177 static int check_cv_quals_for_unify (int, tree, tree);
178 static void template_parm_level_and_index (tree, int*, int*);
179 static int unify_pack_expansion (tree, tree, tree,
180 tree, unification_kind_t, bool, bool);
181 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
182 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
183 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
184 static void regenerate_decl_from_template (tree, tree);
185 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
186 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
187 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
188 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
189 static bool check_specialization_scope (void);
190 static tree process_partial_specialization (tree);
191 static void set_current_access_from_decl (tree);
192 static enum template_base_result get_template_base (tree, tree, tree, tree,
193 bool , tree *);
194 static tree try_class_unification (tree, tree, tree, tree, bool);
195 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
196 tree, tree);
197 static bool template_template_parm_bindings_ok_p (tree, tree);
198 static int template_args_equal (tree, tree);
199 static void tsubst_default_arguments (tree, tsubst_flags_t);
200 static tree for_each_template_parm_r (tree *, int *, void *);
201 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
202 static void copy_default_args_to_explicit_spec (tree);
203 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
204 static bool dependent_template_arg_p (tree);
205 static bool any_template_arguments_need_structural_equality_p (tree);
206 static bool dependent_type_p_r (tree);
207 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
208 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
209 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
210 static tree tsubst_decl (tree, tree, tsubst_flags_t);
211 static void perform_typedefs_access_check (tree tmpl, tree targs);
212 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
213 location_t);
214 static tree listify (tree);
215 static tree listify_autos (tree, tree);
216 static tree template_parm_to_arg (tree t);
217 static tree current_template_args (void);
218 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
219 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
221 /* Make the current scope suitable for access checking when we are
222 processing T. T can be FUNCTION_DECL for instantiated function
223 template, VAR_DECL for static member variable, or TYPE_DECL for
224 alias template (needed by instantiate_decl). */
226 static void
227 push_access_scope (tree t)
229 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
230 || TREE_CODE (t) == TYPE_DECL);
232 if (DECL_FRIEND_CONTEXT (t))
233 push_nested_class (DECL_FRIEND_CONTEXT (t));
234 else if (DECL_CLASS_SCOPE_P (t))
235 push_nested_class (DECL_CONTEXT (t));
236 else
237 push_to_top_level ();
239 if (TREE_CODE (t) == FUNCTION_DECL)
241 saved_access_scope = tree_cons
242 (NULL_TREE, current_function_decl, saved_access_scope);
243 current_function_decl = t;
247 /* Restore the scope set up by push_access_scope. T is the node we
248 are processing. */
250 static void
251 pop_access_scope (tree t)
253 if (TREE_CODE (t) == FUNCTION_DECL)
255 current_function_decl = TREE_VALUE (saved_access_scope);
256 saved_access_scope = TREE_CHAIN (saved_access_scope);
259 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
260 pop_nested_class ();
261 else
262 pop_from_top_level ();
265 /* Do any processing required when DECL (a member template
266 declaration) is finished. Returns the TEMPLATE_DECL corresponding
267 to DECL, unless it is a specialization, in which case the DECL
268 itself is returned. */
270 tree
271 finish_member_template_decl (tree decl)
273 if (decl == error_mark_node)
274 return error_mark_node;
276 gcc_assert (DECL_P (decl));
278 if (TREE_CODE (decl) == TYPE_DECL)
280 tree type;
282 type = TREE_TYPE (decl);
283 if (type == error_mark_node)
284 return error_mark_node;
285 if (MAYBE_CLASS_TYPE_P (type)
286 && CLASSTYPE_TEMPLATE_INFO (type)
287 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
289 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
290 check_member_template (tmpl);
291 return tmpl;
293 return NULL_TREE;
295 else if (TREE_CODE (decl) == FIELD_DECL)
296 error ("data member %qD cannot be a member template", decl);
297 else if (DECL_TEMPLATE_INFO (decl))
299 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
301 check_member_template (DECL_TI_TEMPLATE (decl));
302 return DECL_TI_TEMPLATE (decl);
304 else
305 return decl;
307 else
308 error ("invalid member template declaration %qD", decl);
310 return error_mark_node;
313 /* Create a template info node. */
315 tree
316 build_template_info (tree template_decl, tree template_args)
318 tree result = make_node (TEMPLATE_INFO);
319 TI_TEMPLATE (result) = template_decl;
320 TI_ARGS (result) = template_args;
321 return result;
324 /* Return the template info node corresponding to T, whatever T is. */
326 tree
327 get_template_info (const_tree t)
329 tree tinfo = NULL_TREE;
331 if (!t || t == error_mark_node)
332 return NULL;
334 if (TREE_CODE (t) == NAMESPACE_DECL)
335 return NULL;
337 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
338 tinfo = DECL_TEMPLATE_INFO (t);
340 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
341 t = TREE_TYPE (t);
343 if (OVERLOAD_TYPE_P (t))
344 tinfo = TYPE_TEMPLATE_INFO (t);
345 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
346 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
348 return tinfo;
351 /* Returns the template nesting level of the indicated class TYPE.
353 For example, in:
354 template <class T>
355 struct A
357 template <class U>
358 struct B {};
361 A<T>::B<U> has depth two, while A<T> has depth one.
362 Both A<T>::B<int> and A<int>::B<U> have depth one, if
363 they are instantiations, not specializations.
365 This function is guaranteed to return 0 if passed NULL_TREE so
366 that, for example, `template_class_depth (current_class_type)' is
367 always safe. */
370 template_class_depth (tree type)
372 int depth;
374 for (depth = 0;
375 type && TREE_CODE (type) != NAMESPACE_DECL;
376 type = (TREE_CODE (type) == FUNCTION_DECL)
377 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
379 tree tinfo = get_template_info (type);
381 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
382 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
383 ++depth;
386 return depth;
389 /* Subroutine of maybe_begin_member_template_processing.
390 Returns true if processing DECL needs us to push template parms. */
392 static bool
393 inline_needs_template_parms (tree decl, bool nsdmi)
395 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
396 return false;
398 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
399 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
402 /* Subroutine of maybe_begin_member_template_processing.
403 Push the template parms in PARMS, starting from LEVELS steps into the
404 chain, and ending at the beginning, since template parms are listed
405 innermost first. */
407 static void
408 push_inline_template_parms_recursive (tree parmlist, int levels)
410 tree parms = TREE_VALUE (parmlist);
411 int i;
413 if (levels > 1)
414 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
416 ++processing_template_decl;
417 current_template_parms
418 = tree_cons (size_int (processing_template_decl),
419 parms, current_template_parms);
420 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
422 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
423 NULL);
424 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
426 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
428 if (error_operand_p (parm))
429 continue;
431 gcc_assert (DECL_P (parm));
433 switch (TREE_CODE (parm))
435 case TYPE_DECL:
436 case TEMPLATE_DECL:
437 pushdecl (parm);
438 break;
440 case PARM_DECL:
442 /* Make a CONST_DECL as is done in process_template_parm.
443 It is ugly that we recreate this here; the original
444 version built in process_template_parm is no longer
445 available. */
446 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
447 CONST_DECL, DECL_NAME (parm),
448 TREE_TYPE (parm));
449 DECL_ARTIFICIAL (decl) = 1;
450 TREE_CONSTANT (decl) = 1;
451 TREE_READONLY (decl) = 1;
452 DECL_INITIAL (decl) = DECL_INITIAL (parm);
453 SET_DECL_TEMPLATE_PARM_P (decl);
454 pushdecl (decl);
456 break;
458 default:
459 gcc_unreachable ();
464 /* Restore the template parameter context for a member template, a
465 friend template defined in a class definition, or a non-template
466 member of template class. */
468 void
469 maybe_begin_member_template_processing (tree decl)
471 tree parms;
472 int levels = 0;
473 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
475 if (nsdmi)
477 tree ctx = DECL_CONTEXT (decl);
478 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
479 /* Disregard full specializations (c++/60999). */
480 && uses_template_parms (ctx)
481 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
484 if (inline_needs_template_parms (decl, nsdmi))
486 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
487 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
489 if (DECL_TEMPLATE_SPECIALIZATION (decl))
491 --levels;
492 parms = TREE_CHAIN (parms);
495 push_inline_template_parms_recursive (parms, levels);
498 /* Remember how many levels of template parameters we pushed so that
499 we can pop them later. */
500 inline_parm_levels.safe_push (levels);
503 /* Undo the effects of maybe_begin_member_template_processing. */
505 void
506 maybe_end_member_template_processing (void)
508 int i;
509 int last;
511 if (inline_parm_levels.length () == 0)
512 return;
514 last = inline_parm_levels.pop ();
515 for (i = 0; i < last; ++i)
517 --processing_template_decl;
518 current_template_parms = TREE_CHAIN (current_template_parms);
519 poplevel (0, 0, 0);
523 /* Return a new template argument vector which contains all of ARGS,
524 but has as its innermost set of arguments the EXTRA_ARGS. */
526 static tree
527 add_to_template_args (tree args, tree extra_args)
529 tree new_args;
530 int extra_depth;
531 int i;
532 int j;
534 if (args == NULL_TREE || extra_args == error_mark_node)
535 return extra_args;
537 extra_depth = TMPL_ARGS_DEPTH (extra_args);
538 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
540 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
541 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
543 for (j = 1; j <= extra_depth; ++j, ++i)
544 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
546 return new_args;
549 /* Like add_to_template_args, but only the outermost ARGS are added to
550 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
551 (EXTRA_ARGS) levels are added. This function is used to combine
552 the template arguments from a partial instantiation with the
553 template arguments used to attain the full instantiation from the
554 partial instantiation. */
556 static tree
557 add_outermost_template_args (tree args, tree extra_args)
559 tree new_args;
561 /* If there are more levels of EXTRA_ARGS than there are ARGS,
562 something very fishy is going on. */
563 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
565 /* If *all* the new arguments will be the EXTRA_ARGS, just return
566 them. */
567 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
568 return extra_args;
570 /* For the moment, we make ARGS look like it contains fewer levels. */
571 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
573 new_args = add_to_template_args (args, extra_args);
575 /* Now, we restore ARGS to its full dimensions. */
576 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
578 return new_args;
581 /* Return the N levels of innermost template arguments from the ARGS. */
583 tree
584 get_innermost_template_args (tree args, int n)
586 tree new_args;
587 int extra_levels;
588 int i;
590 gcc_assert (n >= 0);
592 /* If N is 1, just return the innermost set of template arguments. */
593 if (n == 1)
594 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
596 /* If we're not removing anything, just return the arguments we were
597 given. */
598 extra_levels = TMPL_ARGS_DEPTH (args) - n;
599 gcc_assert (extra_levels >= 0);
600 if (extra_levels == 0)
601 return args;
603 /* Make a new set of arguments, not containing the outer arguments. */
604 new_args = make_tree_vec (n);
605 for (i = 1; i <= n; ++i)
606 SET_TMPL_ARGS_LEVEL (new_args, i,
607 TMPL_ARGS_LEVEL (args, i + extra_levels));
609 return new_args;
612 /* The inverse of get_innermost_template_args: Return all but the innermost
613 EXTRA_LEVELS levels of template arguments from the ARGS. */
615 static tree
616 strip_innermost_template_args (tree args, int extra_levels)
618 tree new_args;
619 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
620 int i;
622 gcc_assert (n >= 0);
624 /* If N is 1, just return the outermost set of template arguments. */
625 if (n == 1)
626 return TMPL_ARGS_LEVEL (args, 1);
628 /* If we're not removing anything, just return the arguments we were
629 given. */
630 gcc_assert (extra_levels >= 0);
631 if (extra_levels == 0)
632 return args;
634 /* Make a new set of arguments, not containing the inner arguments. */
635 new_args = make_tree_vec (n);
636 for (i = 1; i <= n; ++i)
637 SET_TMPL_ARGS_LEVEL (new_args, i,
638 TMPL_ARGS_LEVEL (args, i));
640 return new_args;
643 /* We've got a template header coming up; push to a new level for storing
644 the parms. */
646 void
647 begin_template_parm_list (void)
649 /* We use a non-tag-transparent scope here, which causes pushtag to
650 put tags in this scope, rather than in the enclosing class or
651 namespace scope. This is the right thing, since we want
652 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
653 global template class, push_template_decl handles putting the
654 TEMPLATE_DECL into top-level scope. For a nested template class,
655 e.g.:
657 template <class T> struct S1 {
658 template <class T> struct S2 {};
661 pushtag contains special code to call pushdecl_with_scope on the
662 TEMPLATE_DECL for S2. */
663 begin_scope (sk_template_parms, NULL);
664 ++processing_template_decl;
665 ++processing_template_parmlist;
666 note_template_header (0);
669 /* This routine is called when a specialization is declared. If it is
670 invalid to declare a specialization here, an error is reported and
671 false is returned, otherwise this routine will return true. */
673 static bool
674 check_specialization_scope (void)
676 tree scope = current_scope ();
678 /* [temp.expl.spec]
680 An explicit specialization shall be declared in the namespace of
681 which the template is a member, or, for member templates, in the
682 namespace of which the enclosing class or enclosing class
683 template is a member. An explicit specialization of a member
684 function, member class or static data member of a class template
685 shall be declared in the namespace of which the class template
686 is a member. */
687 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
689 error ("explicit specialization in non-namespace scope %qD", scope);
690 return false;
693 /* [temp.expl.spec]
695 In an explicit specialization declaration for a member of a class
696 template or a member template that appears in namespace scope,
697 the member template and some of its enclosing class templates may
698 remain unspecialized, except that the declaration shall not
699 explicitly specialize a class member template if its enclosing
700 class templates are not explicitly specialized as well. */
701 if (current_template_parms)
703 error ("enclosing class templates are not explicitly specialized");
704 return false;
707 return true;
710 /* We've just seen template <>. */
712 bool
713 begin_specialization (void)
715 begin_scope (sk_template_spec, NULL);
716 note_template_header (1);
717 return check_specialization_scope ();
720 /* Called at then end of processing a declaration preceded by
721 template<>. */
723 void
724 end_specialization (void)
726 finish_scope ();
727 reset_specialization ();
730 /* Any template <>'s that we have seen thus far are not referring to a
731 function specialization. */
733 void
734 reset_specialization (void)
736 processing_specialization = 0;
737 template_header_count = 0;
740 /* We've just seen a template header. If SPECIALIZATION is nonzero,
741 it was of the form template <>. */
743 static void
744 note_template_header (int specialization)
746 processing_specialization = specialization;
747 template_header_count++;
750 /* We're beginning an explicit instantiation. */
752 void
753 begin_explicit_instantiation (void)
755 gcc_assert (!processing_explicit_instantiation);
756 processing_explicit_instantiation = true;
760 void
761 end_explicit_instantiation (void)
763 gcc_assert (processing_explicit_instantiation);
764 processing_explicit_instantiation = false;
767 /* An explicit specialization or partial specialization of TMPL is being
768 declared. Check that the namespace in which the specialization is
769 occurring is permissible. Returns false iff it is invalid to
770 specialize TMPL in the current namespace. */
772 static bool
773 check_specialization_namespace (tree tmpl)
775 tree tpl_ns = decl_namespace_context (tmpl);
777 /* [tmpl.expl.spec]
779 An explicit specialization shall be declared in the namespace of
780 which the template is a member, or, for member templates, in the
781 namespace of which the enclosing class or enclosing class
782 template is a member. An explicit specialization of a member
783 function, member class or static data member of a class template
784 shall be declared in the namespace of which the class template is
785 a member. */
786 if (current_scope() != DECL_CONTEXT (tmpl)
787 && !at_namespace_scope_p ())
789 error ("specialization of %qD must appear at namespace scope", tmpl);
790 return false;
792 if (is_associated_namespace (current_namespace, tpl_ns))
793 /* Same or super-using namespace. */
794 return true;
795 else
797 permerror (input_location, "specialization of %qD in different namespace", tmpl);
798 permerror (input_location, " from definition of %q+#D", tmpl);
799 return false;
803 /* SPEC is an explicit instantiation. Check that it is valid to
804 perform this explicit instantiation in the current namespace. */
806 static void
807 check_explicit_instantiation_namespace (tree spec)
809 tree ns;
811 /* DR 275: An explicit instantiation shall appear in an enclosing
812 namespace of its template. */
813 ns = decl_namespace_context (spec);
814 if (!is_ancestor (current_namespace, ns))
815 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
816 "(which does not enclose namespace %qD)",
817 spec, current_namespace, ns);
820 /* The TYPE is being declared. If it is a template type, that means it
821 is a partial specialization. Do appropriate error-checking. */
823 tree
824 maybe_process_partial_specialization (tree type)
826 tree context;
828 if (type == error_mark_node)
829 return error_mark_node;
831 /* A lambda that appears in specialization context is not itself a
832 specialization. */
833 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
834 return type;
836 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
838 error ("name of class shadows template template parameter %qD",
839 TYPE_NAME (type));
840 return error_mark_node;
843 context = TYPE_CONTEXT (type);
845 if (TYPE_ALIAS_P (type))
847 if (TYPE_TEMPLATE_INFO (type)
848 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
849 error ("specialization of alias template %qD",
850 TYPE_TI_TEMPLATE (type));
851 else
852 error ("explicit specialization of non-template %qT", type);
853 return error_mark_node;
855 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
857 /* This is for ordinary explicit specialization and partial
858 specialization of a template class such as:
860 template <> class C<int>;
864 template <class T> class C<T*>;
866 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
868 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
869 && !COMPLETE_TYPE_P (type))
871 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type))
872 && !at_namespace_scope_p ())
873 return error_mark_node;
874 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
875 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
876 if (processing_template_decl)
878 if (push_template_decl (TYPE_MAIN_DECL (type))
879 == error_mark_node)
880 return error_mark_node;
883 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
884 error ("specialization of %qT after instantiation", type);
885 else if (errorcount && !processing_specialization
886 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
887 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
888 /* Trying to define a specialization either without a template<> header
889 or in an inappropriate place. We've already given an error, so just
890 bail now so we don't actually define the specialization. */
891 return error_mark_node;
893 else if (CLASS_TYPE_P (type)
894 && !CLASSTYPE_USE_TEMPLATE (type)
895 && CLASSTYPE_TEMPLATE_INFO (type)
896 && context && CLASS_TYPE_P (context)
897 && CLASSTYPE_TEMPLATE_INFO (context))
899 /* This is for an explicit specialization of member class
900 template according to [temp.expl.spec/18]:
902 template <> template <class U> class C<int>::D;
904 The context `C<int>' must be an implicit instantiation.
905 Otherwise this is just a member class template declared
906 earlier like:
908 template <> class C<int> { template <class U> class D; };
909 template <> template <class U> class C<int>::D;
911 In the first case, `C<int>::D' is a specialization of `C<T>::D'
912 while in the second case, `C<int>::D' is a primary template
913 and `C<T>::D' may not exist. */
915 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
916 && !COMPLETE_TYPE_P (type))
918 tree t;
919 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
921 if (current_namespace
922 != decl_namespace_context (tmpl))
924 permerror (input_location, "specializing %q#T in different namespace", type);
925 permerror (input_location, " from definition of %q+#D", tmpl);
928 /* Check for invalid specialization after instantiation:
930 template <> template <> class C<int>::D<int>;
931 template <> template <class U> class C<int>::D; */
933 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
934 t; t = TREE_CHAIN (t))
936 tree inst = TREE_VALUE (t);
937 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
938 || !COMPLETE_OR_OPEN_TYPE_P (inst))
940 /* We already have a full specialization of this partial
941 instantiation, or a full specialization has been
942 looked up but not instantiated. Reassign it to the
943 new member specialization template. */
944 spec_entry elt;
945 spec_entry *entry;
947 elt.tmpl = most_general_template (tmpl);
948 elt.args = CLASSTYPE_TI_ARGS (inst);
949 elt.spec = inst;
951 type_specializations->remove_elt (&elt);
953 elt.tmpl = tmpl;
954 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
956 spec_entry **slot
957 = type_specializations->find_slot (&elt, INSERT);
958 entry = ggc_alloc<spec_entry> ();
959 *entry = elt;
960 *slot = entry;
962 else
963 /* But if we've had an implicit instantiation, that's a
964 problem ([temp.expl.spec]/6). */
965 error ("specialization %qT after instantiation %qT",
966 type, inst);
969 /* Mark TYPE as a specialization. And as a result, we only
970 have one level of template argument for the innermost
971 class template. */
972 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
973 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
974 CLASSTYPE_TI_ARGS (type)
975 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
978 else if (processing_specialization)
980 /* Someday C++0x may allow for enum template specialization. */
981 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
982 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
983 pedwarn (input_location, OPT_Wpedantic, "template specialization "
984 "of %qD not allowed by ISO C++", type);
985 else
987 error ("explicit specialization of non-template %qT", type);
988 return error_mark_node;
992 return type;
995 /* Returns nonzero if we can optimize the retrieval of specializations
996 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
997 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
999 static inline bool
1000 optimize_specialization_lookup_p (tree tmpl)
1002 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1003 && DECL_CLASS_SCOPE_P (tmpl)
1004 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1005 parameter. */
1006 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1007 /* The optimized lookup depends on the fact that the
1008 template arguments for the member function template apply
1009 purely to the containing class, which is not true if the
1010 containing class is an explicit or partial
1011 specialization. */
1012 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1013 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1014 && !DECL_CONV_FN_P (tmpl)
1015 /* It is possible to have a template that is not a member
1016 template and is not a member of a template class:
1018 template <typename T>
1019 struct S { friend A::f(); };
1021 Here, the friend function is a template, but the context does
1022 not have template information. The optimized lookup relies
1023 on having ARGS be the template arguments for both the class
1024 and the function template. */
1025 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1028 /* Retrieve the specialization (in the sense of [temp.spec] - a
1029 specialization is either an instantiation or an explicit
1030 specialization) of TMPL for the given template ARGS. If there is
1031 no such specialization, return NULL_TREE. The ARGS are a vector of
1032 arguments, or a vector of vectors of arguments, in the case of
1033 templates with more than one level of parameters.
1035 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1036 then we search for a partial specialization matching ARGS. This
1037 parameter is ignored if TMPL is not a class template.
1039 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1040 result is a NONTYPE_ARGUMENT_PACK. */
1042 static tree
1043 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1045 if (tmpl == NULL_TREE)
1046 return NULL_TREE;
1048 if (args == error_mark_node)
1049 return NULL_TREE;
1051 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1052 || TREE_CODE (tmpl) == FIELD_DECL);
1054 /* There should be as many levels of arguments as there are
1055 levels of parameters. */
1056 gcc_assert (TMPL_ARGS_DEPTH (args)
1057 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1058 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1059 : template_class_depth (DECL_CONTEXT (tmpl))));
1061 if (optimize_specialization_lookup_p (tmpl))
1063 tree class_template;
1064 tree class_specialization;
1065 vec<tree, va_gc> *methods;
1066 tree fns;
1067 int idx;
1069 /* The template arguments actually apply to the containing
1070 class. Find the class specialization with those
1071 arguments. */
1072 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1073 class_specialization
1074 = retrieve_specialization (class_template, args, 0);
1075 if (!class_specialization)
1076 return NULL_TREE;
1077 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1078 for the specialization. */
1079 idx = class_method_index_for_fn (class_specialization, tmpl);
1080 if (idx == -1)
1081 return NULL_TREE;
1082 /* Iterate through the methods with the indicated name, looking
1083 for the one that has an instance of TMPL. */
1084 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1085 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1087 tree fn = OVL_CURRENT (fns);
1088 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1089 /* using-declarations can add base methods to the method vec,
1090 and we don't want those here. */
1091 && DECL_CONTEXT (fn) == class_specialization)
1092 return fn;
1094 return NULL_TREE;
1096 else
1098 spec_entry *found;
1099 spec_entry elt;
1100 hash_table<spec_hasher> *specializations;
1102 elt.tmpl = tmpl;
1103 elt.args = args;
1104 elt.spec = NULL_TREE;
1106 if (DECL_CLASS_TEMPLATE_P (tmpl))
1107 specializations = type_specializations;
1108 else
1109 specializations = decl_specializations;
1111 if (hash == 0)
1112 hash = spec_hasher::hash (&elt);
1113 found = specializations->find_with_hash (&elt, hash);
1114 if (found)
1115 return found->spec;
1118 return NULL_TREE;
1121 /* Like retrieve_specialization, but for local declarations. */
1123 static tree
1124 retrieve_local_specialization (tree tmpl)
1126 if (local_specializations == NULL)
1127 return NULL_TREE;
1129 tree *slot = local_specializations->get (tmpl);
1130 return slot ? *slot : NULL_TREE;
1133 /* Returns nonzero iff DECL is a specialization of TMPL. */
1136 is_specialization_of (tree decl, tree tmpl)
1138 tree t;
1140 if (TREE_CODE (decl) == FUNCTION_DECL)
1142 for (t = decl;
1143 t != NULL_TREE;
1144 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1145 if (t == tmpl)
1146 return 1;
1148 else
1150 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1152 for (t = TREE_TYPE (decl);
1153 t != NULL_TREE;
1154 t = CLASSTYPE_USE_TEMPLATE (t)
1155 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1156 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1157 return 1;
1160 return 0;
1163 /* Returns nonzero iff DECL is a specialization of friend declaration
1164 FRIEND_DECL according to [temp.friend]. */
1166 bool
1167 is_specialization_of_friend (tree decl, tree friend_decl)
1169 bool need_template = true;
1170 int template_depth;
1172 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1173 || TREE_CODE (decl) == TYPE_DECL);
1175 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1176 of a template class, we want to check if DECL is a specialization
1177 if this. */
1178 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1179 && DECL_TEMPLATE_INFO (friend_decl)
1180 && !DECL_USE_TEMPLATE (friend_decl))
1182 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1183 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1184 need_template = false;
1186 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1187 && !PRIMARY_TEMPLATE_P (friend_decl))
1188 need_template = false;
1190 /* There is nothing to do if this is not a template friend. */
1191 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1192 return false;
1194 if (is_specialization_of (decl, friend_decl))
1195 return true;
1197 /* [temp.friend/6]
1198 A member of a class template may be declared to be a friend of a
1199 non-template class. In this case, the corresponding member of
1200 every specialization of the class template is a friend of the
1201 class granting friendship.
1203 For example, given a template friend declaration
1205 template <class T> friend void A<T>::f();
1207 the member function below is considered a friend
1209 template <> struct A<int> {
1210 void f();
1213 For this type of template friend, TEMPLATE_DEPTH below will be
1214 nonzero. To determine if DECL is a friend of FRIEND, we first
1215 check if the enclosing class is a specialization of another. */
1217 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1218 if (template_depth
1219 && DECL_CLASS_SCOPE_P (decl)
1220 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1221 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1223 /* Next, we check the members themselves. In order to handle
1224 a few tricky cases, such as when FRIEND_DECL's are
1226 template <class T> friend void A<T>::g(T t);
1227 template <class T> template <T t> friend void A<T>::h();
1229 and DECL's are
1231 void A<int>::g(int);
1232 template <int> void A<int>::h();
1234 we need to figure out ARGS, the template arguments from
1235 the context of DECL. This is required for template substitution
1236 of `T' in the function parameter of `g' and template parameter
1237 of `h' in the above examples. Here ARGS corresponds to `int'. */
1239 tree context = DECL_CONTEXT (decl);
1240 tree args = NULL_TREE;
1241 int current_depth = 0;
1243 while (current_depth < template_depth)
1245 if (CLASSTYPE_TEMPLATE_INFO (context))
1247 if (current_depth == 0)
1248 args = TYPE_TI_ARGS (context);
1249 else
1250 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1251 current_depth++;
1253 context = TYPE_CONTEXT (context);
1256 if (TREE_CODE (decl) == FUNCTION_DECL)
1258 bool is_template;
1259 tree friend_type;
1260 tree decl_type;
1261 tree friend_args_type;
1262 tree decl_args_type;
1264 /* Make sure that both DECL and FRIEND_DECL are templates or
1265 non-templates. */
1266 is_template = DECL_TEMPLATE_INFO (decl)
1267 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1268 if (need_template ^ is_template)
1269 return false;
1270 else if (is_template)
1272 /* If both are templates, check template parameter list. */
1273 tree friend_parms
1274 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1275 args, tf_none);
1276 if (!comp_template_parms
1277 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1278 friend_parms))
1279 return false;
1281 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1283 else
1284 decl_type = TREE_TYPE (decl);
1286 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1287 tf_none, NULL_TREE);
1288 if (friend_type == error_mark_node)
1289 return false;
1291 /* Check if return types match. */
1292 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1293 return false;
1295 /* Check if function parameter types match, ignoring the
1296 `this' parameter. */
1297 friend_args_type = TYPE_ARG_TYPES (friend_type);
1298 decl_args_type = TYPE_ARG_TYPES (decl_type);
1299 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1300 friend_args_type = TREE_CHAIN (friend_args_type);
1301 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1302 decl_args_type = TREE_CHAIN (decl_args_type);
1304 return compparms (decl_args_type, friend_args_type);
1306 else
1308 /* DECL is a TYPE_DECL */
1309 bool is_template;
1310 tree decl_type = TREE_TYPE (decl);
1312 /* Make sure that both DECL and FRIEND_DECL are templates or
1313 non-templates. */
1314 is_template
1315 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1316 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1318 if (need_template ^ is_template)
1319 return false;
1320 else if (is_template)
1322 tree friend_parms;
1323 /* If both are templates, check the name of the two
1324 TEMPLATE_DECL's first because is_friend didn't. */
1325 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1326 != DECL_NAME (friend_decl))
1327 return false;
1329 /* Now check template parameter list. */
1330 friend_parms
1331 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1332 args, tf_none);
1333 return comp_template_parms
1334 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1335 friend_parms);
1337 else
1338 return (DECL_NAME (decl)
1339 == DECL_NAME (friend_decl));
1342 return false;
1345 /* Register the specialization SPEC as a specialization of TMPL with
1346 the indicated ARGS. IS_FRIEND indicates whether the specialization
1347 is actually just a friend declaration. Returns SPEC, or an
1348 equivalent prior declaration, if available.
1350 We also store instantiations of field packs in the hash table, even
1351 though they are not themselves templates, to make lookup easier. */
1353 static tree
1354 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1355 hashval_t hash)
1357 tree fn;
1358 spec_entry **slot = NULL;
1359 spec_entry elt;
1361 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1362 || (TREE_CODE (tmpl) == FIELD_DECL
1363 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1365 if (TREE_CODE (spec) == FUNCTION_DECL
1366 && uses_template_parms (DECL_TI_ARGS (spec)))
1367 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1368 register it; we want the corresponding TEMPLATE_DECL instead.
1369 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1370 the more obvious `uses_template_parms (spec)' to avoid problems
1371 with default function arguments. In particular, given
1372 something like this:
1374 template <class T> void f(T t1, T t = T())
1376 the default argument expression is not substituted for in an
1377 instantiation unless and until it is actually needed. */
1378 return spec;
1380 if (optimize_specialization_lookup_p (tmpl))
1381 /* We don't put these specializations in the hash table, but we might
1382 want to give an error about a mismatch. */
1383 fn = retrieve_specialization (tmpl, args, 0);
1384 else
1386 elt.tmpl = tmpl;
1387 elt.args = args;
1388 elt.spec = spec;
1390 if (hash == 0)
1391 hash = spec_hasher::hash (&elt);
1393 slot =
1394 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1395 if (*slot)
1396 fn = ((spec_entry *) *slot)->spec;
1397 else
1398 fn = NULL_TREE;
1401 /* We can sometimes try to re-register a specialization that we've
1402 already got. In particular, regenerate_decl_from_template calls
1403 duplicate_decls which will update the specialization list. But,
1404 we'll still get called again here anyhow. It's more convenient
1405 to simply allow this than to try to prevent it. */
1406 if (fn == spec)
1407 return spec;
1408 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1410 if (DECL_TEMPLATE_INSTANTIATION (fn))
1412 if (DECL_ODR_USED (fn)
1413 || DECL_EXPLICIT_INSTANTIATION (fn))
1415 error ("specialization of %qD after instantiation",
1416 fn);
1417 return error_mark_node;
1419 else
1421 tree clone;
1422 /* This situation should occur only if the first
1423 specialization is an implicit instantiation, the
1424 second is an explicit specialization, and the
1425 implicit instantiation has not yet been used. That
1426 situation can occur if we have implicitly
1427 instantiated a member function and then specialized
1428 it later.
1430 We can also wind up here if a friend declaration that
1431 looked like an instantiation turns out to be a
1432 specialization:
1434 template <class T> void foo(T);
1435 class S { friend void foo<>(int) };
1436 template <> void foo(int);
1438 We transform the existing DECL in place so that any
1439 pointers to it become pointers to the updated
1440 declaration.
1442 If there was a definition for the template, but not
1443 for the specialization, we want this to look as if
1444 there were no definition, and vice versa. */
1445 DECL_INITIAL (fn) = NULL_TREE;
1446 duplicate_decls (spec, fn, is_friend);
1447 /* The call to duplicate_decls will have applied
1448 [temp.expl.spec]:
1450 An explicit specialization of a function template
1451 is inline only if it is explicitly declared to be,
1452 and independently of whether its function template
1455 to the primary function; now copy the inline bits to
1456 the various clones. */
1457 FOR_EACH_CLONE (clone, fn)
1459 DECL_DECLARED_INLINE_P (clone)
1460 = DECL_DECLARED_INLINE_P (fn);
1461 DECL_SOURCE_LOCATION (clone)
1462 = DECL_SOURCE_LOCATION (fn);
1463 DECL_DELETED_FN (clone)
1464 = DECL_DELETED_FN (fn);
1466 check_specialization_namespace (tmpl);
1468 return fn;
1471 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1473 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1474 /* Dup decl failed, but this is a new definition. Set the
1475 line number so any errors match this new
1476 definition. */
1477 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1479 return fn;
1482 else if (fn)
1483 return duplicate_decls (spec, fn, is_friend);
1485 /* A specialization must be declared in the same namespace as the
1486 template it is specializing. */
1487 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1488 && !check_specialization_namespace (tmpl))
1489 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1491 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1493 spec_entry *entry = ggc_alloc<spec_entry> ();
1494 gcc_assert (tmpl && args && spec);
1495 *entry = elt;
1496 *slot = entry;
1497 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1498 && PRIMARY_TEMPLATE_P (tmpl)
1499 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1500 || variable_template_p (tmpl))
1501 /* If TMPL is a forward declaration of a template function, keep a list
1502 of all specializations in case we need to reassign them to a friend
1503 template later in tsubst_friend_function.
1505 Also keep a list of all variable template instantiations so that
1506 process_partial_specialization can check whether a later partial
1507 specialization would have used it. */
1508 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1509 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1512 return spec;
1515 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1516 TMPL and ARGS members, ignores SPEC. */
1518 int comparing_specializations;
1520 bool
1521 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1523 int equal;
1525 ++comparing_specializations;
1526 equal = (e1->tmpl == e2->tmpl
1527 && comp_template_args (e1->args, e2->args));
1528 --comparing_specializations;
1530 return equal;
1533 /* Returns a hash for a template TMPL and template arguments ARGS. */
1535 static hashval_t
1536 hash_tmpl_and_args (tree tmpl, tree args)
1538 hashval_t val = DECL_UID (tmpl);
1539 return iterative_hash_template_arg (args, val);
1542 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1543 ignoring SPEC. */
1545 hashval_t
1546 spec_hasher::hash (spec_entry *e)
1548 return hash_tmpl_and_args (e->tmpl, e->args);
1551 /* Recursively calculate a hash value for a template argument ARG, for use
1552 in the hash tables of template specializations. */
1554 hashval_t
1555 iterative_hash_template_arg (tree arg, hashval_t val)
1557 unsigned HOST_WIDE_INT i;
1558 enum tree_code code;
1559 char tclass;
1561 if (arg == NULL_TREE)
1562 return iterative_hash_object (arg, val);
1564 if (!TYPE_P (arg))
1565 STRIP_NOPS (arg);
1567 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1568 /* We can get one of these when re-hashing a previous entry in the middle
1569 of substituting into a pack expansion. Just look through it. */
1570 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1572 code = TREE_CODE (arg);
1573 tclass = TREE_CODE_CLASS (code);
1575 val = iterative_hash_object (code, val);
1577 switch (code)
1579 case ERROR_MARK:
1580 return val;
1582 case IDENTIFIER_NODE:
1583 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1585 case TREE_VEC:
1587 int i, len = TREE_VEC_LENGTH (arg);
1588 for (i = 0; i < len; ++i)
1589 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1590 return val;
1593 case TYPE_PACK_EXPANSION:
1594 case EXPR_PACK_EXPANSION:
1595 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1596 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1598 case TYPE_ARGUMENT_PACK:
1599 case NONTYPE_ARGUMENT_PACK:
1600 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1602 case TREE_LIST:
1603 for (; arg; arg = TREE_CHAIN (arg))
1604 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1605 return val;
1607 case OVERLOAD:
1608 for (; arg; arg = OVL_NEXT (arg))
1609 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1610 return val;
1612 case CONSTRUCTOR:
1614 tree field, value;
1615 iterative_hash_template_arg (TREE_TYPE (arg), val);
1616 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1618 val = iterative_hash_template_arg (field, val);
1619 val = iterative_hash_template_arg (value, val);
1621 return val;
1624 case PARM_DECL:
1625 if (!DECL_ARTIFICIAL (arg))
1627 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1628 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1630 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1632 case TARGET_EXPR:
1633 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1635 case PTRMEM_CST:
1636 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1637 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1639 case TEMPLATE_PARM_INDEX:
1640 val = iterative_hash_template_arg
1641 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1642 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1643 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1645 case TRAIT_EXPR:
1646 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1647 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1648 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1650 case BASELINK:
1651 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1652 val);
1653 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1654 val);
1656 case MODOP_EXPR:
1657 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1658 code = TREE_CODE (TREE_OPERAND (arg, 1));
1659 val = iterative_hash_object (code, val);
1660 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1662 case LAMBDA_EXPR:
1663 /* A lambda can't appear in a template arg, but don't crash on
1664 erroneous input. */
1665 gcc_assert (seen_error ());
1666 return val;
1668 case CAST_EXPR:
1669 case IMPLICIT_CONV_EXPR:
1670 case STATIC_CAST_EXPR:
1671 case REINTERPRET_CAST_EXPR:
1672 case CONST_CAST_EXPR:
1673 case DYNAMIC_CAST_EXPR:
1674 case NEW_EXPR:
1675 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1676 /* Now hash operands as usual. */
1677 break;
1679 default:
1680 break;
1683 switch (tclass)
1685 case tcc_type:
1686 if (alias_template_specialization_p (arg))
1688 // We want an alias specialization that survived strip_typedefs
1689 // to hash differently from its TYPE_CANONICAL, to avoid hash
1690 // collisions that compare as different in template_args_equal.
1691 // These could be dependent specializations that strip_typedefs
1692 // left alone, or untouched specializations because
1693 // coerce_template_parms returns the unconverted template
1694 // arguments if it sees incomplete argument packs.
1695 tree ti = TYPE_TEMPLATE_INFO (arg);
1696 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1698 if (TYPE_CANONICAL (arg))
1699 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1700 val);
1701 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1702 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1703 /* Otherwise just compare the types during lookup. */
1704 return val;
1706 case tcc_declaration:
1707 case tcc_constant:
1708 return iterative_hash_expr (arg, val);
1710 default:
1711 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1713 unsigned n = cp_tree_operand_length (arg);
1714 for (i = 0; i < n; ++i)
1715 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1716 return val;
1719 gcc_unreachable ();
1720 return 0;
1723 /* Unregister the specialization SPEC as a specialization of TMPL.
1724 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1725 if the SPEC was listed as a specialization of TMPL.
1727 Note that SPEC has been ggc_freed, so we can't look inside it. */
1729 bool
1730 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1732 spec_entry *entry;
1733 spec_entry elt;
1735 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1736 elt.args = TI_ARGS (tinfo);
1737 elt.spec = NULL_TREE;
1739 entry = decl_specializations->find (&elt);
1740 if (entry != NULL)
1742 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1743 gcc_assert (new_spec != NULL_TREE);
1744 entry->spec = new_spec;
1745 return 1;
1748 return 0;
1751 /* Like register_specialization, but for local declarations. We are
1752 registering SPEC, an instantiation of TMPL. */
1754 static void
1755 register_local_specialization (tree spec, tree tmpl)
1757 local_specializations->put (tmpl, spec);
1760 /* TYPE is a class type. Returns true if TYPE is an explicitly
1761 specialized class. */
1763 bool
1764 explicit_class_specialization_p (tree type)
1766 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1767 return false;
1768 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1771 /* Print the list of functions at FNS, going through all the overloads
1772 for each element of the list. Alternatively, FNS can not be a
1773 TREE_LIST, in which case it will be printed together with all the
1774 overloads.
1776 MORE and *STR should respectively be FALSE and NULL when the function
1777 is called from the outside. They are used internally on recursive
1778 calls. print_candidates manages the two parameters and leaves NULL
1779 in *STR when it ends. */
1781 static void
1782 print_candidates_1 (tree fns, bool more, const char **str)
1784 tree fn, fn2;
1785 char *spaces = NULL;
1787 for (fn = fns; fn; fn = OVL_NEXT (fn))
1788 if (TREE_CODE (fn) == TREE_LIST)
1790 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1791 print_candidates_1 (TREE_VALUE (fn2),
1792 TREE_CHAIN (fn2) || more, str);
1794 else
1796 tree cand = OVL_CURRENT (fn);
1797 if (!*str)
1799 /* Pick the prefix string. */
1800 if (!more && !OVL_NEXT (fns))
1802 inform (DECL_SOURCE_LOCATION (cand),
1803 "candidate is: %#D", cand);
1804 continue;
1807 *str = _("candidates are:");
1808 spaces = get_spaces (*str);
1810 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1811 *str = spaces ? spaces : *str;
1814 if (!more)
1816 free (spaces);
1817 *str = NULL;
1821 /* Print the list of candidate FNS in an error message. FNS can also
1822 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1824 void
1825 print_candidates (tree fns)
1827 const char *str = NULL;
1828 print_candidates_1 (fns, false, &str);
1829 gcc_assert (str == NULL);
1832 /* Returns the template (one of the functions given by TEMPLATE_ID)
1833 which can be specialized to match the indicated DECL with the
1834 explicit template args given in TEMPLATE_ID. The DECL may be
1835 NULL_TREE if none is available. In that case, the functions in
1836 TEMPLATE_ID are non-members.
1838 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1839 specialization of a member template.
1841 The TEMPLATE_COUNT is the number of references to qualifying
1842 template classes that appeared in the name of the function. See
1843 check_explicit_specialization for a more accurate description.
1845 TSK indicates what kind of template declaration (if any) is being
1846 declared. TSK_TEMPLATE indicates that the declaration given by
1847 DECL, though a FUNCTION_DECL, has template parameters, and is
1848 therefore a template function.
1850 The template args (those explicitly specified and those deduced)
1851 are output in a newly created vector *TARGS_OUT.
1853 If it is impossible to determine the result, an error message is
1854 issued. The error_mark_node is returned to indicate failure. */
1856 static tree
1857 determine_specialization (tree template_id,
1858 tree decl,
1859 tree* targs_out,
1860 int need_member_template,
1861 int template_count,
1862 tmpl_spec_kind tsk)
1864 tree fns;
1865 tree targs;
1866 tree explicit_targs;
1867 tree candidates = NULL_TREE;
1868 /* A TREE_LIST of templates of which DECL may be a specialization.
1869 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1870 corresponding TREE_PURPOSE is the set of template arguments that,
1871 when used to instantiate the template, would produce a function
1872 with the signature of DECL. */
1873 tree templates = NULL_TREE;
1874 int header_count;
1875 cp_binding_level *b;
1877 *targs_out = NULL_TREE;
1879 if (template_id == error_mark_node || decl == error_mark_node)
1880 return error_mark_node;
1882 /* We shouldn't be specializing a member template of an
1883 unspecialized class template; we already gave an error in
1884 check_specialization_scope, now avoid crashing. */
1885 if (template_count && DECL_CLASS_SCOPE_P (decl)
1886 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1888 gcc_assert (errorcount);
1889 return error_mark_node;
1892 fns = TREE_OPERAND (template_id, 0);
1893 explicit_targs = TREE_OPERAND (template_id, 1);
1895 if (fns == error_mark_node)
1896 return error_mark_node;
1898 /* Check for baselinks. */
1899 if (BASELINK_P (fns))
1900 fns = BASELINK_FUNCTIONS (fns);
1902 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
1904 error ("%qD is not a function template", fns);
1905 return error_mark_node;
1907 else if (VAR_P (decl) && !variable_template_p (fns))
1909 error ("%qD is not a variable template", fns);
1910 return error_mark_node;
1913 /* Count the number of template headers specified for this
1914 specialization. */
1915 header_count = 0;
1916 for (b = current_binding_level;
1917 b->kind == sk_template_parms;
1918 b = b->level_chain)
1919 ++header_count;
1921 if (variable_template_p (fns))
1922 templates = tree_cons (explicit_targs, fns, templates);
1923 else for (; fns; fns = OVL_NEXT (fns))
1925 tree fn = OVL_CURRENT (fns);
1927 if (TREE_CODE (fn) == TEMPLATE_DECL)
1929 tree decl_arg_types;
1930 tree fn_arg_types;
1931 tree insttype;
1933 /* In case of explicit specialization, we need to check if
1934 the number of template headers appearing in the specialization
1935 is correct. This is usually done in check_explicit_specialization,
1936 but the check done there cannot be exhaustive when specializing
1937 member functions. Consider the following code:
1939 template <> void A<int>::f(int);
1940 template <> template <> void A<int>::f(int);
1942 Assuming that A<int> is not itself an explicit specialization
1943 already, the first line specializes "f" which is a non-template
1944 member function, whilst the second line specializes "f" which
1945 is a template member function. So both lines are syntactically
1946 correct, and check_explicit_specialization does not reject
1947 them.
1949 Here, we can do better, as we are matching the specialization
1950 against the declarations. We count the number of template
1951 headers, and we check if they match TEMPLATE_COUNT + 1
1952 (TEMPLATE_COUNT is the number of qualifying template classes,
1953 plus there must be another header for the member template
1954 itself).
1956 Notice that if header_count is zero, this is not a
1957 specialization but rather a template instantiation, so there
1958 is no check we can perform here. */
1959 if (header_count && header_count != template_count + 1)
1960 continue;
1962 /* Check that the number of template arguments at the
1963 innermost level for DECL is the same as for FN. */
1964 if (current_binding_level->kind == sk_template_parms
1965 && !current_binding_level->explicit_spec_p
1966 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1967 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1968 (current_template_parms))))
1969 continue;
1971 /* DECL might be a specialization of FN. */
1972 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1973 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1975 /* For a non-static member function, we need to make sure
1976 that the const qualification is the same. Since
1977 get_bindings does not try to merge the "this" parameter,
1978 we must do the comparison explicitly. */
1979 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1980 && !same_type_p (TREE_VALUE (fn_arg_types),
1981 TREE_VALUE (decl_arg_types)))
1982 continue;
1984 /* Skip the "this" parameter and, for constructors of
1985 classes with virtual bases, the VTT parameter. A
1986 full specialization of a constructor will have a VTT
1987 parameter, but a template never will. */
1988 decl_arg_types
1989 = skip_artificial_parms_for (decl, decl_arg_types);
1990 fn_arg_types
1991 = skip_artificial_parms_for (fn, fn_arg_types);
1993 /* Function templates cannot be specializations; there are
1994 no partial specializations of functions. Therefore, if
1995 the type of DECL does not match FN, there is no
1996 match. */
1997 if (tsk == tsk_template)
1999 if (compparms (fn_arg_types, decl_arg_types))
2000 candidates = tree_cons (NULL_TREE, fn, candidates);
2001 continue;
2004 /* See whether this function might be a specialization of this
2005 template. Suppress access control because we might be trying
2006 to make this specialization a friend, and we have already done
2007 access control for the declaration of the specialization. */
2008 push_deferring_access_checks (dk_no_check);
2009 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2010 pop_deferring_access_checks ();
2012 if (!targs)
2013 /* We cannot deduce template arguments that when used to
2014 specialize TMPL will produce DECL. */
2015 continue;
2017 /* Make sure that the deduced arguments actually work. */
2018 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2019 if (insttype == error_mark_node)
2020 continue;
2021 fn_arg_types
2022 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2023 if (!compparms (fn_arg_types, decl_arg_types))
2024 continue;
2026 /* Save this template, and the arguments deduced. */
2027 templates = tree_cons (targs, fn, templates);
2029 else if (need_member_template)
2030 /* FN is an ordinary member function, and we need a
2031 specialization of a member template. */
2033 else if (TREE_CODE (fn) != FUNCTION_DECL)
2034 /* We can get IDENTIFIER_NODEs here in certain erroneous
2035 cases. */
2037 else if (!DECL_FUNCTION_MEMBER_P (fn))
2038 /* This is just an ordinary non-member function. Nothing can
2039 be a specialization of that. */
2041 else if (DECL_ARTIFICIAL (fn))
2042 /* Cannot specialize functions that are created implicitly. */
2044 else
2046 tree decl_arg_types;
2048 /* This is an ordinary member function. However, since
2049 we're here, we can assume its enclosing class is a
2050 template class. For example,
2052 template <typename T> struct S { void f(); };
2053 template <> void S<int>::f() {}
2055 Here, S<int>::f is a non-template, but S<int> is a
2056 template class. If FN has the same type as DECL, we
2057 might be in business. */
2059 if (!DECL_TEMPLATE_INFO (fn))
2060 /* Its enclosing class is an explicit specialization
2061 of a template class. This is not a candidate. */
2062 continue;
2064 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2065 TREE_TYPE (TREE_TYPE (fn))))
2066 /* The return types differ. */
2067 continue;
2069 /* Adjust the type of DECL in case FN is a static member. */
2070 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2071 if (DECL_STATIC_FUNCTION_P (fn)
2072 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2073 decl_arg_types = TREE_CHAIN (decl_arg_types);
2075 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2076 decl_arg_types))
2077 /* They match! */
2078 candidates = tree_cons (NULL_TREE, fn, candidates);
2082 if (templates && TREE_CHAIN (templates))
2084 /* We have:
2086 [temp.expl.spec]
2088 It is possible for a specialization with a given function
2089 signature to be instantiated from more than one function
2090 template. In such cases, explicit specification of the
2091 template arguments must be used to uniquely identify the
2092 function template specialization being specialized.
2094 Note that here, there's no suggestion that we're supposed to
2095 determine which of the candidate templates is most
2096 specialized. However, we, also have:
2098 [temp.func.order]
2100 Partial ordering of overloaded function template
2101 declarations is used in the following contexts to select
2102 the function template to which a function template
2103 specialization refers:
2105 -- when an explicit specialization refers to a function
2106 template.
2108 So, we do use the partial ordering rules, at least for now.
2109 This extension can only serve to make invalid programs valid,
2110 so it's safe. And, there is strong anecdotal evidence that
2111 the committee intended the partial ordering rules to apply;
2112 the EDG front end has that behavior, and John Spicer claims
2113 that the committee simply forgot to delete the wording in
2114 [temp.expl.spec]. */
2115 tree tmpl = most_specialized_instantiation (templates);
2116 if (tmpl != error_mark_node)
2118 templates = tmpl;
2119 TREE_CHAIN (templates) = NULL_TREE;
2123 if (templates == NULL_TREE && candidates == NULL_TREE)
2125 error ("template-id %qD for %q+D does not match any template "
2126 "declaration", template_id, decl);
2127 if (header_count && header_count != template_count + 1)
2128 inform (input_location, "saw %d %<template<>%>, need %d for "
2129 "specializing a member function template",
2130 header_count, template_count + 1);
2131 return error_mark_node;
2133 else if ((templates && TREE_CHAIN (templates))
2134 || (candidates && TREE_CHAIN (candidates))
2135 || (templates && candidates))
2137 error ("ambiguous template specialization %qD for %q+D",
2138 template_id, decl);
2139 candidates = chainon (candidates, templates);
2140 print_candidates (candidates);
2141 return error_mark_node;
2144 /* We have one, and exactly one, match. */
2145 if (candidates)
2147 tree fn = TREE_VALUE (candidates);
2148 *targs_out = copy_node (DECL_TI_ARGS (fn));
2149 /* DECL is a re-declaration or partial instantiation of a template
2150 function. */
2151 if (TREE_CODE (fn) == TEMPLATE_DECL)
2152 return fn;
2153 /* It was a specialization of an ordinary member function in a
2154 template class. */
2155 return DECL_TI_TEMPLATE (fn);
2158 /* It was a specialization of a template. */
2159 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2160 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2162 *targs_out = copy_node (targs);
2163 SET_TMPL_ARGS_LEVEL (*targs_out,
2164 TMPL_ARGS_DEPTH (*targs_out),
2165 TREE_PURPOSE (templates));
2167 else
2168 *targs_out = TREE_PURPOSE (templates);
2169 return TREE_VALUE (templates);
2172 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2173 but with the default argument values filled in from those in the
2174 TMPL_TYPES. */
2176 static tree
2177 copy_default_args_to_explicit_spec_1 (tree spec_types,
2178 tree tmpl_types)
2180 tree new_spec_types;
2182 if (!spec_types)
2183 return NULL_TREE;
2185 if (spec_types == void_list_node)
2186 return void_list_node;
2188 /* Substitute into the rest of the list. */
2189 new_spec_types =
2190 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2191 TREE_CHAIN (tmpl_types));
2193 /* Add the default argument for this parameter. */
2194 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2195 TREE_VALUE (spec_types),
2196 new_spec_types);
2199 /* DECL is an explicit specialization. Replicate default arguments
2200 from the template it specializes. (That way, code like:
2202 template <class T> void f(T = 3);
2203 template <> void f(double);
2204 void g () { f (); }
2206 works, as required.) An alternative approach would be to look up
2207 the correct default arguments at the call-site, but this approach
2208 is consistent with how implicit instantiations are handled. */
2210 static void
2211 copy_default_args_to_explicit_spec (tree decl)
2213 tree tmpl;
2214 tree spec_types;
2215 tree tmpl_types;
2216 tree new_spec_types;
2217 tree old_type;
2218 tree new_type;
2219 tree t;
2220 tree object_type = NULL_TREE;
2221 tree in_charge = NULL_TREE;
2222 tree vtt = NULL_TREE;
2224 /* See if there's anything we need to do. */
2225 tmpl = DECL_TI_TEMPLATE (decl);
2226 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2227 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2228 if (TREE_PURPOSE (t))
2229 break;
2230 if (!t)
2231 return;
2233 old_type = TREE_TYPE (decl);
2234 spec_types = TYPE_ARG_TYPES (old_type);
2236 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2238 /* Remove the this pointer, but remember the object's type for
2239 CV quals. */
2240 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2241 spec_types = TREE_CHAIN (spec_types);
2242 tmpl_types = TREE_CHAIN (tmpl_types);
2244 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2246 /* DECL may contain more parameters than TMPL due to the extra
2247 in-charge parameter in constructors and destructors. */
2248 in_charge = spec_types;
2249 spec_types = TREE_CHAIN (spec_types);
2251 if (DECL_HAS_VTT_PARM_P (decl))
2253 vtt = spec_types;
2254 spec_types = TREE_CHAIN (spec_types);
2258 /* Compute the merged default arguments. */
2259 new_spec_types =
2260 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2262 /* Compute the new FUNCTION_TYPE. */
2263 if (object_type)
2265 if (vtt)
2266 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2267 TREE_VALUE (vtt),
2268 new_spec_types);
2270 if (in_charge)
2271 /* Put the in-charge parameter back. */
2272 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2273 TREE_VALUE (in_charge),
2274 new_spec_types);
2276 new_type = build_method_type_directly (object_type,
2277 TREE_TYPE (old_type),
2278 new_spec_types);
2280 else
2281 new_type = build_function_type (TREE_TYPE (old_type),
2282 new_spec_types);
2283 new_type = cp_build_type_attribute_variant (new_type,
2284 TYPE_ATTRIBUTES (old_type));
2285 new_type = build_exception_variant (new_type,
2286 TYPE_RAISES_EXCEPTIONS (old_type));
2288 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2289 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2291 TREE_TYPE (decl) = new_type;
2294 /* Return the number of template headers we expect to see for a definition
2295 or specialization of CTYPE or one of its non-template members. */
2298 num_template_headers_for_class (tree ctype)
2300 int num_templates = 0;
2302 while (ctype && CLASS_TYPE_P (ctype))
2304 /* You're supposed to have one `template <...>' for every
2305 template class, but you don't need one for a full
2306 specialization. For example:
2308 template <class T> struct S{};
2309 template <> struct S<int> { void f(); };
2310 void S<int>::f () {}
2312 is correct; there shouldn't be a `template <>' for the
2313 definition of `S<int>::f'. */
2314 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2315 /* If CTYPE does not have template information of any
2316 kind, then it is not a template, nor is it nested
2317 within a template. */
2318 break;
2319 if (explicit_class_specialization_p (ctype))
2320 break;
2321 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2322 ++num_templates;
2324 ctype = TYPE_CONTEXT (ctype);
2327 return num_templates;
2330 /* Do a simple sanity check on the template headers that precede the
2331 variable declaration DECL. */
2333 void
2334 check_template_variable (tree decl)
2336 tree ctx = CP_DECL_CONTEXT (decl);
2337 int wanted = num_template_headers_for_class (ctx);
2338 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2339 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2341 if (cxx_dialect < cxx14)
2342 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2343 "variable templates only available with "
2344 "-std=c++14 or -std=gnu++14");
2346 // Namespace-scope variable templates should have a template header.
2347 ++wanted;
2349 if (template_header_count > wanted)
2351 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2352 "too many template headers for %D (should be %d)",
2353 decl, wanted);
2354 if (warned && CLASS_TYPE_P (ctx)
2355 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2356 inform (DECL_SOURCE_LOCATION (decl),
2357 "members of an explicitly specialized class are defined "
2358 "without a template header");
2362 /* Check to see if the function just declared, as indicated in
2363 DECLARATOR, and in DECL, is a specialization of a function
2364 template. We may also discover that the declaration is an explicit
2365 instantiation at this point.
2367 Returns DECL, or an equivalent declaration that should be used
2368 instead if all goes well. Issues an error message if something is
2369 amiss. Returns error_mark_node if the error is not easily
2370 recoverable.
2372 FLAGS is a bitmask consisting of the following flags:
2374 2: The function has a definition.
2375 4: The function is a friend.
2377 The TEMPLATE_COUNT is the number of references to qualifying
2378 template classes that appeared in the name of the function. For
2379 example, in
2381 template <class T> struct S { void f(); };
2382 void S<int>::f();
2384 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2385 classes are not counted in the TEMPLATE_COUNT, so that in
2387 template <class T> struct S {};
2388 template <> struct S<int> { void f(); }
2389 template <> void S<int>::f();
2391 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2392 invalid; there should be no template <>.)
2394 If the function is a specialization, it is marked as such via
2395 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2396 is set up correctly, and it is added to the list of specializations
2397 for that template. */
2399 tree
2400 check_explicit_specialization (tree declarator,
2401 tree decl,
2402 int template_count,
2403 int flags)
2405 int have_def = flags & 2;
2406 int is_friend = flags & 4;
2407 int specialization = 0;
2408 int explicit_instantiation = 0;
2409 int member_specialization = 0;
2410 tree ctype = DECL_CLASS_CONTEXT (decl);
2411 tree dname = DECL_NAME (decl);
2412 tmpl_spec_kind tsk;
2414 if (is_friend)
2416 if (!processing_specialization)
2417 tsk = tsk_none;
2418 else
2419 tsk = tsk_excessive_parms;
2421 else
2422 tsk = current_tmpl_spec_kind (template_count);
2424 switch (tsk)
2426 case tsk_none:
2427 if (processing_specialization)
2429 specialization = 1;
2430 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2432 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2434 if (is_friend)
2435 /* This could be something like:
2437 template <class T> void f(T);
2438 class S { friend void f<>(int); } */
2439 specialization = 1;
2440 else
2442 /* This case handles bogus declarations like template <>
2443 template <class T> void f<int>(); */
2445 error ("template-id %qD in declaration of primary template",
2446 declarator);
2447 return decl;
2450 break;
2452 case tsk_invalid_member_spec:
2453 /* The error has already been reported in
2454 check_specialization_scope. */
2455 return error_mark_node;
2457 case tsk_invalid_expl_inst:
2458 error ("template parameter list used in explicit instantiation");
2460 /* Fall through. */
2462 case tsk_expl_inst:
2463 if (have_def)
2464 error ("definition provided for explicit instantiation");
2466 explicit_instantiation = 1;
2467 break;
2469 case tsk_excessive_parms:
2470 case tsk_insufficient_parms:
2471 if (tsk == tsk_excessive_parms)
2472 error ("too many template parameter lists in declaration of %qD",
2473 decl);
2474 else if (template_header_count)
2475 error("too few template parameter lists in declaration of %qD", decl);
2476 else
2477 error("explicit specialization of %qD must be introduced by "
2478 "%<template <>%>", decl);
2480 /* Fall through. */
2481 case tsk_expl_spec:
2482 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2483 /* In cases like template<> constexpr bool v = true;
2484 We'll give an error in check_template_variable. */
2485 break;
2487 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2488 if (ctype)
2489 member_specialization = 1;
2490 else
2491 specialization = 1;
2492 break;
2494 case tsk_template:
2495 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2497 /* This case handles bogus declarations like template <>
2498 template <class T> void f<int>(); */
2500 if (!uses_template_parms (declarator))
2501 error ("template-id %qD in declaration of primary template",
2502 declarator);
2503 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2505 /* Partial specialization of variable template. */
2506 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2507 specialization = 1;
2508 goto ok;
2510 else if (cxx_dialect < cxx14)
2511 error ("non-type partial specialization %qD "
2512 "is not allowed", declarator);
2513 else
2514 error ("non-class, non-variable partial specialization %qD "
2515 "is not allowed", declarator);
2516 return decl;
2517 ok:;
2520 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2521 /* This is a specialization of a member template, without
2522 specialization the containing class. Something like:
2524 template <class T> struct S {
2525 template <class U> void f (U);
2527 template <> template <class U> void S<int>::f(U) {}
2529 That's a specialization -- but of the entire template. */
2530 specialization = 1;
2531 break;
2533 default:
2534 gcc_unreachable ();
2537 if ((specialization || member_specialization)
2538 /* This doesn't apply to variable templates. */
2539 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2540 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2542 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2543 for (; t; t = TREE_CHAIN (t))
2544 if (TREE_PURPOSE (t))
2546 permerror (input_location,
2547 "default argument specified in explicit specialization");
2548 break;
2552 if (specialization || member_specialization || explicit_instantiation)
2554 tree tmpl = NULL_TREE;
2555 tree targs = NULL_TREE;
2556 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2558 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2559 if (!was_template_id)
2561 tree fns;
2563 gcc_assert (identifier_p (declarator));
2564 if (ctype)
2565 fns = dname;
2566 else
2568 /* If there is no class context, the explicit instantiation
2569 must be at namespace scope. */
2570 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2572 /* Find the namespace binding, using the declaration
2573 context. */
2574 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2575 false, true);
2576 if (fns == error_mark_node || !is_overloaded_fn (fns))
2578 error ("%qD is not a template function", dname);
2579 fns = error_mark_node;
2581 else
2583 tree fn = OVL_CURRENT (fns);
2584 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2585 CP_DECL_CONTEXT (fn)))
2586 error ("%qD is not declared in %qD",
2587 decl, current_namespace);
2591 declarator = lookup_template_function (fns, NULL_TREE);
2594 if (declarator == error_mark_node)
2595 return error_mark_node;
2597 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2599 if (!explicit_instantiation)
2600 /* A specialization in class scope. This is invalid,
2601 but the error will already have been flagged by
2602 check_specialization_scope. */
2603 return error_mark_node;
2604 else
2606 /* It's not valid to write an explicit instantiation in
2607 class scope, e.g.:
2609 class C { template void f(); }
2611 This case is caught by the parser. However, on
2612 something like:
2614 template class C { void f(); };
2616 (which is invalid) we can get here. The error will be
2617 issued later. */
2621 return decl;
2623 else if (ctype != NULL_TREE
2624 && (identifier_p (TREE_OPERAND (declarator, 0))))
2626 // We'll match variable templates in start_decl.
2627 if (VAR_P (decl))
2628 return decl;
2630 /* Find the list of functions in ctype that have the same
2631 name as the declared function. */
2632 tree name = TREE_OPERAND (declarator, 0);
2633 tree fns = NULL_TREE;
2634 int idx;
2636 if (constructor_name_p (name, ctype))
2638 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2640 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2641 : !CLASSTYPE_DESTRUCTORS (ctype))
2643 /* From [temp.expl.spec]:
2645 If such an explicit specialization for the member
2646 of a class template names an implicitly-declared
2647 special member function (clause _special_), the
2648 program is ill-formed.
2650 Similar language is found in [temp.explicit]. */
2651 error ("specialization of implicitly-declared special member function");
2652 return error_mark_node;
2655 name = is_constructor ? ctor_identifier : dtor_identifier;
2658 if (!DECL_CONV_FN_P (decl))
2660 idx = lookup_fnfields_1 (ctype, name);
2661 if (idx >= 0)
2662 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2664 else
2666 vec<tree, va_gc> *methods;
2667 tree ovl;
2669 /* For a type-conversion operator, we cannot do a
2670 name-based lookup. We might be looking for `operator
2671 int' which will be a specialization of `operator T'.
2672 So, we find *all* the conversion operators, and then
2673 select from them. */
2674 fns = NULL_TREE;
2676 methods = CLASSTYPE_METHOD_VEC (ctype);
2677 if (methods)
2678 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2679 methods->iterate (idx, &ovl);
2680 ++idx)
2682 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2683 /* There are no more conversion functions. */
2684 break;
2686 /* Glue all these conversion functions together
2687 with those we already have. */
2688 for (; ovl; ovl = OVL_NEXT (ovl))
2689 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2693 if (fns == NULL_TREE)
2695 error ("no member function %qD declared in %qT", name, ctype);
2696 return error_mark_node;
2698 else
2699 TREE_OPERAND (declarator, 0) = fns;
2702 /* Figure out what exactly is being specialized at this point.
2703 Note that for an explicit instantiation, even one for a
2704 member function, we cannot tell apriori whether the
2705 instantiation is for a member template, or just a member
2706 function of a template class. Even if a member template is
2707 being instantiated, the member template arguments may be
2708 elided if they can be deduced from the rest of the
2709 declaration. */
2710 tmpl = determine_specialization (declarator, decl,
2711 &targs,
2712 member_specialization,
2713 template_count,
2714 tsk);
2716 if (!tmpl || tmpl == error_mark_node)
2717 /* We couldn't figure out what this declaration was
2718 specializing. */
2719 return error_mark_node;
2720 else
2722 tree gen_tmpl = most_general_template (tmpl);
2724 if (explicit_instantiation)
2726 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2727 is done by do_decl_instantiation later. */
2729 int arg_depth = TMPL_ARGS_DEPTH (targs);
2730 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2732 if (arg_depth > parm_depth)
2734 /* If TMPL is not the most general template (for
2735 example, if TMPL is a friend template that is
2736 injected into namespace scope), then there will
2737 be too many levels of TARGS. Remove some of them
2738 here. */
2739 int i;
2740 tree new_targs;
2742 new_targs = make_tree_vec (parm_depth);
2743 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2744 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2745 = TREE_VEC_ELT (targs, i);
2746 targs = new_targs;
2749 return instantiate_template (tmpl, targs, tf_error);
2752 /* If we thought that the DECL was a member function, but it
2753 turns out to be specializing a static member function,
2754 make DECL a static member function as well. */
2755 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2756 && DECL_STATIC_FUNCTION_P (tmpl)
2757 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2758 revert_static_member_fn (decl);
2760 /* If this is a specialization of a member template of a
2761 template class, we want to return the TEMPLATE_DECL, not
2762 the specialization of it. */
2763 if (tsk == tsk_template && !was_template_id)
2765 tree result = DECL_TEMPLATE_RESULT (tmpl);
2766 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2767 DECL_INITIAL (result) = NULL_TREE;
2768 if (have_def)
2770 tree parm;
2771 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2772 DECL_SOURCE_LOCATION (result)
2773 = DECL_SOURCE_LOCATION (decl);
2774 /* We want to use the argument list specified in the
2775 definition, not in the original declaration. */
2776 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2777 for (parm = DECL_ARGUMENTS (result); parm;
2778 parm = DECL_CHAIN (parm))
2779 DECL_CONTEXT (parm) = result;
2781 return register_specialization (tmpl, gen_tmpl, targs,
2782 is_friend, 0);
2785 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2786 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2788 if (was_template_id)
2789 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
2791 /* Inherit default function arguments from the template
2792 DECL is specializing. */
2793 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
2794 copy_default_args_to_explicit_spec (decl);
2796 /* This specialization has the same protection as the
2797 template it specializes. */
2798 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2799 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2801 /* 7.1.1-1 [dcl.stc]
2803 A storage-class-specifier shall not be specified in an
2804 explicit specialization...
2806 The parser rejects these, so unless action is taken here,
2807 explicit function specializations will always appear with
2808 global linkage.
2810 The action recommended by the C++ CWG in response to C++
2811 defect report 605 is to make the storage class and linkage
2812 of the explicit specialization match the templated function:
2814 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2816 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2818 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2819 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2821 /* This specialization has the same linkage and visibility as
2822 the function template it specializes. */
2823 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2824 if (! TREE_PUBLIC (decl))
2826 DECL_INTERFACE_KNOWN (decl) = 1;
2827 DECL_NOT_REALLY_EXTERN (decl) = 1;
2829 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2830 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2832 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2833 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2837 /* If DECL is a friend declaration, declared using an
2838 unqualified name, the namespace associated with DECL may
2839 have been set incorrectly. For example, in:
2841 template <typename T> void f(T);
2842 namespace N {
2843 struct S { friend void f<int>(int); }
2846 we will have set the DECL_CONTEXT for the friend
2847 declaration to N, rather than to the global namespace. */
2848 if (DECL_NAMESPACE_SCOPE_P (decl))
2849 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2851 if (is_friend && !have_def)
2852 /* This is not really a declaration of a specialization.
2853 It's just the name of an instantiation. But, it's not
2854 a request for an instantiation, either. */
2855 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2856 else if (TREE_CODE (decl) == FUNCTION_DECL)
2857 /* A specialization is not necessarily COMDAT. */
2858 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
2859 && DECL_DECLARED_INLINE_P (decl));
2860 else if (TREE_CODE (decl) == VAR_DECL)
2861 DECL_COMDAT (decl) = false;
2863 /* Register this specialization so that we can find it
2864 again. */
2865 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2867 /* A 'structor should already have clones. */
2868 gcc_assert (decl == error_mark_node
2869 || variable_template_p (tmpl)
2870 || !(DECL_CONSTRUCTOR_P (decl)
2871 || DECL_DESTRUCTOR_P (decl))
2872 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
2876 return decl;
2879 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2880 parameters. These are represented in the same format used for
2881 DECL_TEMPLATE_PARMS. */
2884 comp_template_parms (const_tree parms1, const_tree parms2)
2886 const_tree p1;
2887 const_tree p2;
2889 if (parms1 == parms2)
2890 return 1;
2892 for (p1 = parms1, p2 = parms2;
2893 p1 != NULL_TREE && p2 != NULL_TREE;
2894 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2896 tree t1 = TREE_VALUE (p1);
2897 tree t2 = TREE_VALUE (p2);
2898 int i;
2900 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2901 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2903 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2904 return 0;
2906 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2908 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2909 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2911 /* If either of the template parameters are invalid, assume
2912 they match for the sake of error recovery. */
2913 if (error_operand_p (parm1) || error_operand_p (parm2))
2914 return 1;
2916 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2917 return 0;
2919 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2920 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2921 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2922 continue;
2923 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2924 return 0;
2928 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2929 /* One set of parameters has more parameters lists than the
2930 other. */
2931 return 0;
2933 return 1;
2936 /* Determine whether PARM is a parameter pack. */
2938 bool
2939 template_parameter_pack_p (const_tree parm)
2941 /* Determine if we have a non-type template parameter pack. */
2942 if (TREE_CODE (parm) == PARM_DECL)
2943 return (DECL_TEMPLATE_PARM_P (parm)
2944 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2945 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2946 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2948 /* If this is a list of template parameters, we could get a
2949 TYPE_DECL or a TEMPLATE_DECL. */
2950 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2951 parm = TREE_TYPE (parm);
2953 /* Otherwise it must be a type template parameter. */
2954 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2955 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2956 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2959 /* Determine if T is a function parameter pack. */
2961 bool
2962 function_parameter_pack_p (const_tree t)
2964 if (t && TREE_CODE (t) == PARM_DECL)
2965 return DECL_PACK_P (t);
2966 return false;
2969 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2970 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2972 tree
2973 get_function_template_decl (const_tree primary_func_tmpl_inst)
2975 if (! primary_func_tmpl_inst
2976 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2977 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2978 return NULL;
2980 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2983 /* Return true iff the function parameter PARAM_DECL was expanded
2984 from the function parameter pack PACK. */
2986 bool
2987 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2989 if (DECL_ARTIFICIAL (param_decl)
2990 || !function_parameter_pack_p (pack))
2991 return false;
2993 /* The parameter pack and its pack arguments have the same
2994 DECL_PARM_INDEX. */
2995 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2998 /* Determine whether ARGS describes a variadic template args list,
2999 i.e., one that is terminated by a template argument pack. */
3001 static bool
3002 template_args_variadic_p (tree args)
3004 int nargs;
3005 tree last_parm;
3007 if (args == NULL_TREE)
3008 return false;
3010 args = INNERMOST_TEMPLATE_ARGS (args);
3011 nargs = TREE_VEC_LENGTH (args);
3013 if (nargs == 0)
3014 return false;
3016 last_parm = TREE_VEC_ELT (args, nargs - 1);
3018 return ARGUMENT_PACK_P (last_parm);
3021 /* Generate a new name for the parameter pack name NAME (an
3022 IDENTIFIER_NODE) that incorporates its */
3024 static tree
3025 make_ith_pack_parameter_name (tree name, int i)
3027 /* Munge the name to include the parameter index. */
3028 #define NUMBUF_LEN 128
3029 char numbuf[NUMBUF_LEN];
3030 char* newname;
3031 int newname_len;
3033 if (name == NULL_TREE)
3034 return name;
3035 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3036 newname_len = IDENTIFIER_LENGTH (name)
3037 + strlen (numbuf) + 2;
3038 newname = (char*)alloca (newname_len);
3039 snprintf (newname, newname_len,
3040 "%s#%i", IDENTIFIER_POINTER (name), i);
3041 return get_identifier (newname);
3044 /* Return true if T is a primary function, class or alias template
3045 instantiation. */
3047 bool
3048 primary_template_instantiation_p (const_tree t)
3050 if (!t)
3051 return false;
3053 if (TREE_CODE (t) == FUNCTION_DECL)
3054 return DECL_LANG_SPECIFIC (t)
3055 && DECL_TEMPLATE_INSTANTIATION (t)
3056 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3057 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3058 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3059 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3060 else if (alias_template_specialization_p (t))
3061 return true;
3062 return false;
3065 /* Return true if PARM is a template template parameter. */
3067 bool
3068 template_template_parameter_p (const_tree parm)
3070 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3073 /* Return true iff PARM is a DECL representing a type template
3074 parameter. */
3076 bool
3077 template_type_parameter_p (const_tree parm)
3079 return (parm
3080 && (TREE_CODE (parm) == TYPE_DECL
3081 || TREE_CODE (parm) == TEMPLATE_DECL)
3082 && DECL_TEMPLATE_PARM_P (parm));
3085 /* Return the template parameters of T if T is a
3086 primary template instantiation, NULL otherwise. */
3088 tree
3089 get_primary_template_innermost_parameters (const_tree t)
3091 tree parms = NULL, template_info = NULL;
3093 if ((template_info = get_template_info (t))
3094 && primary_template_instantiation_p (t))
3095 parms = INNERMOST_TEMPLATE_PARMS
3096 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3098 return parms;
3101 /* Return the template parameters of the LEVELth level from the full list
3102 of template parameters PARMS. */
3104 tree
3105 get_template_parms_at_level (tree parms, int level)
3107 tree p;
3108 if (!parms
3109 || TREE_CODE (parms) != TREE_LIST
3110 || level > TMPL_PARMS_DEPTH (parms))
3111 return NULL_TREE;
3113 for (p = parms; p; p = TREE_CHAIN (p))
3114 if (TMPL_PARMS_DEPTH (p) == level)
3115 return p;
3117 return NULL_TREE;
3120 /* Returns the template arguments of T if T is a template instantiation,
3121 NULL otherwise. */
3123 tree
3124 get_template_innermost_arguments (const_tree t)
3126 tree args = NULL, template_info = NULL;
3128 if ((template_info = get_template_info (t))
3129 && TI_ARGS (template_info))
3130 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3132 return args;
3135 /* Return the argument pack elements of T if T is a template argument pack,
3136 NULL otherwise. */
3138 tree
3139 get_template_argument_pack_elems (const_tree t)
3141 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3142 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3143 return NULL;
3145 return ARGUMENT_PACK_ARGS (t);
3148 /* Structure used to track the progress of find_parameter_packs_r. */
3149 struct find_parameter_pack_data
3151 /* TREE_LIST that will contain all of the parameter packs found by
3152 the traversal. */
3153 tree* parameter_packs;
3155 /* Set of AST nodes that have been visited by the traversal. */
3156 hash_set<tree> *visited;
3159 /* Identifies all of the argument packs that occur in a template
3160 argument and appends them to the TREE_LIST inside DATA, which is a
3161 find_parameter_pack_data structure. This is a subroutine of
3162 make_pack_expansion and uses_parameter_packs. */
3163 static tree
3164 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3166 tree t = *tp;
3167 struct find_parameter_pack_data* ppd =
3168 (struct find_parameter_pack_data*)data;
3169 bool parameter_pack_p = false;
3171 /* Handle type aliases/typedefs. */
3172 if (TYPE_ALIAS_P (t))
3174 if (TYPE_TEMPLATE_INFO (t))
3175 cp_walk_tree (&TYPE_TI_ARGS (t),
3176 &find_parameter_packs_r,
3177 ppd, ppd->visited);
3178 *walk_subtrees = 0;
3179 return NULL_TREE;
3182 /* Identify whether this is a parameter pack or not. */
3183 switch (TREE_CODE (t))
3185 case TEMPLATE_PARM_INDEX:
3186 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3187 parameter_pack_p = true;
3188 break;
3190 case TEMPLATE_TYPE_PARM:
3191 t = TYPE_MAIN_VARIANT (t);
3192 case TEMPLATE_TEMPLATE_PARM:
3193 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3194 parameter_pack_p = true;
3195 break;
3197 case FIELD_DECL:
3198 case PARM_DECL:
3199 if (DECL_PACK_P (t))
3201 /* We don't want to walk into the type of a PARM_DECL,
3202 because we don't want to see the type parameter pack. */
3203 *walk_subtrees = 0;
3204 parameter_pack_p = true;
3206 break;
3208 /* Look through a lambda capture proxy to the field pack. */
3209 case VAR_DECL:
3210 if (DECL_HAS_VALUE_EXPR_P (t))
3212 tree v = DECL_VALUE_EXPR (t);
3213 cp_walk_tree (&v,
3214 &find_parameter_packs_r,
3215 ppd, ppd->visited);
3216 *walk_subtrees = 0;
3218 break;
3220 case BASES:
3221 parameter_pack_p = true;
3222 break;
3223 default:
3224 /* Not a parameter pack. */
3225 break;
3228 if (parameter_pack_p)
3230 /* Add this parameter pack to the list. */
3231 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3234 if (TYPE_P (t))
3235 cp_walk_tree (&TYPE_CONTEXT (t),
3236 &find_parameter_packs_r, ppd, ppd->visited);
3238 /* This switch statement will return immediately if we don't find a
3239 parameter pack. */
3240 switch (TREE_CODE (t))
3242 case TEMPLATE_PARM_INDEX:
3243 return NULL_TREE;
3245 case BOUND_TEMPLATE_TEMPLATE_PARM:
3246 /* Check the template itself. */
3247 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3248 &find_parameter_packs_r, ppd, ppd->visited);
3249 /* Check the template arguments. */
3250 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3251 ppd->visited);
3252 *walk_subtrees = 0;
3253 return NULL_TREE;
3255 case TEMPLATE_TYPE_PARM:
3256 case TEMPLATE_TEMPLATE_PARM:
3257 return NULL_TREE;
3259 case PARM_DECL:
3260 return NULL_TREE;
3262 case RECORD_TYPE:
3263 if (TYPE_PTRMEMFUNC_P (t))
3264 return NULL_TREE;
3265 /* Fall through. */
3267 case UNION_TYPE:
3268 case ENUMERAL_TYPE:
3269 if (TYPE_TEMPLATE_INFO (t))
3270 cp_walk_tree (&TYPE_TI_ARGS (t),
3271 &find_parameter_packs_r, ppd, ppd->visited);
3273 *walk_subtrees = 0;
3274 return NULL_TREE;
3276 case CONSTRUCTOR:
3277 case TEMPLATE_DECL:
3278 cp_walk_tree (&TREE_TYPE (t),
3279 &find_parameter_packs_r, ppd, ppd->visited);
3280 return NULL_TREE;
3282 case TYPENAME_TYPE:
3283 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3284 ppd, ppd->visited);
3285 *walk_subtrees = 0;
3286 return NULL_TREE;
3288 case TYPE_PACK_EXPANSION:
3289 case EXPR_PACK_EXPANSION:
3290 *walk_subtrees = 0;
3291 return NULL_TREE;
3293 case INTEGER_TYPE:
3294 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3295 ppd, ppd->visited);
3296 *walk_subtrees = 0;
3297 return NULL_TREE;
3299 case IDENTIFIER_NODE:
3300 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3301 ppd->visited);
3302 *walk_subtrees = 0;
3303 return NULL_TREE;
3305 default:
3306 return NULL_TREE;
3309 return NULL_TREE;
3312 /* Determines if the expression or type T uses any parameter packs. */
3313 bool
3314 uses_parameter_packs (tree t)
3316 tree parameter_packs = NULL_TREE;
3317 struct find_parameter_pack_data ppd;
3318 ppd.parameter_packs = &parameter_packs;
3319 ppd.visited = new hash_set<tree>;
3320 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3321 delete ppd.visited;
3322 return parameter_packs != NULL_TREE;
3325 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3326 representation a base-class initializer into a parameter pack
3327 expansion. If all goes well, the resulting node will be an
3328 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3329 respectively. */
3330 tree
3331 make_pack_expansion (tree arg)
3333 tree result;
3334 tree parameter_packs = NULL_TREE;
3335 bool for_types = false;
3336 struct find_parameter_pack_data ppd;
3338 if (!arg || arg == error_mark_node)
3339 return arg;
3341 if (TREE_CODE (arg) == TREE_LIST)
3343 /* The only time we will see a TREE_LIST here is for a base
3344 class initializer. In this case, the TREE_PURPOSE will be a
3345 _TYPE node (representing the base class expansion we're
3346 initializing) and the TREE_VALUE will be a TREE_LIST
3347 containing the initialization arguments.
3349 The resulting expansion looks somewhat different from most
3350 expansions. Rather than returning just one _EXPANSION, we
3351 return a TREE_LIST whose TREE_PURPOSE is a
3352 TYPE_PACK_EXPANSION containing the bases that will be
3353 initialized. The TREE_VALUE will be identical to the
3354 original TREE_VALUE, which is a list of arguments that will
3355 be passed to each base. We do not introduce any new pack
3356 expansion nodes into the TREE_VALUE (although it is possible
3357 that some already exist), because the TREE_PURPOSE and
3358 TREE_VALUE all need to be expanded together with the same
3359 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3360 resulting TREE_PURPOSE will mention the parameter packs in
3361 both the bases and the arguments to the bases. */
3362 tree purpose;
3363 tree value;
3364 tree parameter_packs = NULL_TREE;
3366 /* Determine which parameter packs will be used by the base
3367 class expansion. */
3368 ppd.visited = new hash_set<tree>;
3369 ppd.parameter_packs = &parameter_packs;
3370 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3371 &ppd, ppd.visited);
3373 if (parameter_packs == NULL_TREE)
3375 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3376 delete ppd.visited;
3377 return error_mark_node;
3380 if (TREE_VALUE (arg) != void_type_node)
3382 /* Collect the sets of parameter packs used in each of the
3383 initialization arguments. */
3384 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3386 /* Determine which parameter packs will be expanded in this
3387 argument. */
3388 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3389 &ppd, ppd.visited);
3393 delete ppd.visited;
3395 /* Create the pack expansion type for the base type. */
3396 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3397 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3398 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3400 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3401 they will rarely be compared to anything. */
3402 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3404 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3407 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3408 for_types = true;
3410 /* Build the PACK_EXPANSION_* node. */
3411 result = for_types
3412 ? cxx_make_type (TYPE_PACK_EXPANSION)
3413 : make_node (EXPR_PACK_EXPANSION);
3414 SET_PACK_EXPANSION_PATTERN (result, arg);
3415 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3417 /* Propagate type and const-expression information. */
3418 TREE_TYPE (result) = TREE_TYPE (arg);
3419 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3421 else
3422 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3423 they will rarely be compared to anything. */
3424 SET_TYPE_STRUCTURAL_EQUALITY (result);
3426 /* Determine which parameter packs will be expanded. */
3427 ppd.parameter_packs = &parameter_packs;
3428 ppd.visited = new hash_set<tree>;
3429 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3430 delete ppd.visited;
3432 /* Make sure we found some parameter packs. */
3433 if (parameter_packs == NULL_TREE)
3435 if (TYPE_P (arg))
3436 error ("expansion pattern %<%T%> contains no argument packs", arg);
3437 else
3438 error ("expansion pattern %<%E%> contains no argument packs", arg);
3439 return error_mark_node;
3441 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3443 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3445 return result;
3448 /* Checks T for any "bare" parameter packs, which have not yet been
3449 expanded, and issues an error if any are found. This operation can
3450 only be done on full expressions or types (e.g., an expression
3451 statement, "if" condition, etc.), because we could have expressions like:
3453 foo(f(g(h(args)))...)
3455 where "args" is a parameter pack. check_for_bare_parameter_packs
3456 should not be called for the subexpressions args, h(args),
3457 g(h(args)), or f(g(h(args))), because we would produce erroneous
3458 error messages.
3460 Returns TRUE and emits an error if there were bare parameter packs,
3461 returns FALSE otherwise. */
3462 bool
3463 check_for_bare_parameter_packs (tree t)
3465 tree parameter_packs = NULL_TREE;
3466 struct find_parameter_pack_data ppd;
3468 if (!processing_template_decl || !t || t == error_mark_node)
3469 return false;
3471 if (TREE_CODE (t) == TYPE_DECL)
3472 t = TREE_TYPE (t);
3474 ppd.parameter_packs = &parameter_packs;
3475 ppd.visited = new hash_set<tree>;
3476 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3477 delete ppd.visited;
3479 if (parameter_packs)
3481 error ("parameter packs not expanded with %<...%>:");
3482 while (parameter_packs)
3484 tree pack = TREE_VALUE (parameter_packs);
3485 tree name = NULL_TREE;
3487 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3488 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3489 name = TYPE_NAME (pack);
3490 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3491 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3492 else
3493 name = DECL_NAME (pack);
3495 if (name)
3496 inform (input_location, " %qD", name);
3497 else
3498 inform (input_location, " <anonymous>");
3500 parameter_packs = TREE_CHAIN (parameter_packs);
3503 return true;
3506 return false;
3509 /* Expand any parameter packs that occur in the template arguments in
3510 ARGS. */
3511 tree
3512 expand_template_argument_pack (tree args)
3514 tree result_args = NULL_TREE;
3515 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3516 int num_result_args = -1;
3517 int non_default_args_count = -1;
3519 /* First, determine if we need to expand anything, and the number of
3520 slots we'll need. */
3521 for (in_arg = 0; in_arg < nargs; ++in_arg)
3523 tree arg = TREE_VEC_ELT (args, in_arg);
3524 if (arg == NULL_TREE)
3525 return args;
3526 if (ARGUMENT_PACK_P (arg))
3528 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3529 if (num_result_args < 0)
3530 num_result_args = in_arg + num_packed;
3531 else
3532 num_result_args += num_packed;
3534 else
3536 if (num_result_args >= 0)
3537 num_result_args++;
3541 /* If no expansion is necessary, we're done. */
3542 if (num_result_args < 0)
3543 return args;
3545 /* Expand arguments. */
3546 result_args = make_tree_vec (num_result_args);
3547 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3548 non_default_args_count =
3549 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3550 for (in_arg = 0; in_arg < nargs; ++in_arg)
3552 tree arg = TREE_VEC_ELT (args, in_arg);
3553 if (ARGUMENT_PACK_P (arg))
3555 tree packed = ARGUMENT_PACK_ARGS (arg);
3556 int i, num_packed = TREE_VEC_LENGTH (packed);
3557 for (i = 0; i < num_packed; ++i, ++out_arg)
3558 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3559 if (non_default_args_count > 0)
3560 non_default_args_count += num_packed - 1;
3562 else
3564 TREE_VEC_ELT (result_args, out_arg) = arg;
3565 ++out_arg;
3568 if (non_default_args_count >= 0)
3569 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3570 return result_args;
3573 /* Checks if DECL shadows a template parameter.
3575 [temp.local]: A template-parameter shall not be redeclared within its
3576 scope (including nested scopes).
3578 Emits an error and returns TRUE if the DECL shadows a parameter,
3579 returns FALSE otherwise. */
3581 bool
3582 check_template_shadow (tree decl)
3584 tree olddecl;
3586 /* If we're not in a template, we can't possibly shadow a template
3587 parameter. */
3588 if (!current_template_parms)
3589 return true;
3591 /* Figure out what we're shadowing. */
3592 if (TREE_CODE (decl) == OVERLOAD)
3593 decl = OVL_CURRENT (decl);
3594 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3596 /* If there's no previous binding for this name, we're not shadowing
3597 anything, let alone a template parameter. */
3598 if (!olddecl)
3599 return true;
3601 /* If we're not shadowing a template parameter, we're done. Note
3602 that OLDDECL might be an OVERLOAD (or perhaps even an
3603 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3604 node. */
3605 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3606 return true;
3608 /* We check for decl != olddecl to avoid bogus errors for using a
3609 name inside a class. We check TPFI to avoid duplicate errors for
3610 inline member templates. */
3611 if (decl == olddecl
3612 || (DECL_TEMPLATE_PARM_P (decl)
3613 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3614 return true;
3616 /* Don't complain about the injected class name, as we've already
3617 complained about the class itself. */
3618 if (DECL_SELF_REFERENCE_P (decl))
3619 return false;
3621 error ("declaration of %q+#D", decl);
3622 error (" shadows template parm %q+#D", olddecl);
3623 return false;
3626 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3627 ORIG_LEVEL, DECL, and TYPE. */
3629 static tree
3630 build_template_parm_index (int index,
3631 int level,
3632 int orig_level,
3633 tree decl,
3634 tree type)
3636 tree t = make_node (TEMPLATE_PARM_INDEX);
3637 TEMPLATE_PARM_IDX (t) = index;
3638 TEMPLATE_PARM_LEVEL (t) = level;
3639 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3640 TEMPLATE_PARM_DECL (t) = decl;
3641 TREE_TYPE (t) = type;
3642 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3643 TREE_READONLY (t) = TREE_READONLY (decl);
3645 return t;
3648 /* Find the canonical type parameter for the given template type
3649 parameter. Returns the canonical type parameter, which may be TYPE
3650 if no such parameter existed. */
3652 static tree
3653 canonical_type_parameter (tree type)
3655 tree list;
3656 int idx = TEMPLATE_TYPE_IDX (type);
3657 if (!canonical_template_parms)
3658 vec_alloc (canonical_template_parms, idx+1);
3660 while (canonical_template_parms->length () <= (unsigned)idx)
3661 vec_safe_push (canonical_template_parms, NULL_TREE);
3663 list = (*canonical_template_parms)[idx];
3664 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3665 list = TREE_CHAIN (list);
3667 if (list)
3668 return TREE_VALUE (list);
3669 else
3671 (*canonical_template_parms)[idx]
3672 = tree_cons (NULL_TREE, type,
3673 (*canonical_template_parms)[idx]);
3674 return type;
3678 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3679 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3680 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3681 new one is created. */
3683 static tree
3684 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3685 tsubst_flags_t complain)
3687 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3688 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3689 != TEMPLATE_PARM_LEVEL (index) - levels)
3690 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3692 tree orig_decl = TEMPLATE_PARM_DECL (index);
3693 tree decl, t;
3695 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3696 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3697 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3698 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3699 DECL_ARTIFICIAL (decl) = 1;
3700 SET_DECL_TEMPLATE_PARM_P (decl);
3702 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3703 TEMPLATE_PARM_LEVEL (index) - levels,
3704 TEMPLATE_PARM_ORIG_LEVEL (index),
3705 decl, type);
3706 TEMPLATE_PARM_DESCENDANTS (index) = t;
3707 TEMPLATE_PARM_PARAMETER_PACK (t)
3708 = TEMPLATE_PARM_PARAMETER_PACK (index);
3710 /* Template template parameters need this. */
3711 if (TREE_CODE (decl) == TEMPLATE_DECL)
3712 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3713 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3714 args, complain);
3717 return TEMPLATE_PARM_DESCENDANTS (index);
3720 /* Process information from new template parameter PARM and append it
3721 to the LIST being built. This new parameter is a non-type
3722 parameter iff IS_NON_TYPE is true. This new parameter is a
3723 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3724 is in PARM_LOC. */
3726 tree
3727 process_template_parm (tree list, location_t parm_loc, tree parm,
3728 bool is_non_type, bool is_parameter_pack)
3730 tree decl = 0;
3731 tree defval;
3732 int idx = 0;
3734 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3735 defval = TREE_PURPOSE (parm);
3737 if (list)
3739 tree p = tree_last (list);
3741 if (p && TREE_VALUE (p) != error_mark_node)
3743 p = TREE_VALUE (p);
3744 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3745 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3746 else
3747 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3750 ++idx;
3753 if (is_non_type)
3755 parm = TREE_VALUE (parm);
3757 SET_DECL_TEMPLATE_PARM_P (parm);
3759 if (TREE_TYPE (parm) != error_mark_node)
3761 /* [temp.param]
3763 The top-level cv-qualifiers on the template-parameter are
3764 ignored when determining its type. */
3765 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3766 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3767 TREE_TYPE (parm) = error_mark_node;
3768 else if (uses_parameter_packs (TREE_TYPE (parm))
3769 && !is_parameter_pack
3770 /* If we're in a nested template parameter list, the template
3771 template parameter could be a parameter pack. */
3772 && processing_template_parmlist == 1)
3774 /* This template parameter is not a parameter pack, but it
3775 should be. Complain about "bare" parameter packs. */
3776 check_for_bare_parameter_packs (TREE_TYPE (parm));
3778 /* Recover by calling this a parameter pack. */
3779 is_parameter_pack = true;
3783 /* A template parameter is not modifiable. */
3784 TREE_CONSTANT (parm) = 1;
3785 TREE_READONLY (parm) = 1;
3786 decl = build_decl (parm_loc,
3787 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3788 TREE_CONSTANT (decl) = 1;
3789 TREE_READONLY (decl) = 1;
3790 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3791 = build_template_parm_index (idx, processing_template_decl,
3792 processing_template_decl,
3793 decl, TREE_TYPE (parm));
3795 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3796 = is_parameter_pack;
3798 else
3800 tree t;
3801 parm = TREE_VALUE (TREE_VALUE (parm));
3803 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3805 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3806 /* This is for distinguishing between real templates and template
3807 template parameters */
3808 TREE_TYPE (parm) = t;
3809 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3810 decl = parm;
3812 else
3814 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3815 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3816 decl = build_decl (parm_loc,
3817 TYPE_DECL, parm, t);
3820 TYPE_NAME (t) = decl;
3821 TYPE_STUB_DECL (t) = decl;
3822 parm = decl;
3823 TEMPLATE_TYPE_PARM_INDEX (t)
3824 = build_template_parm_index (idx, processing_template_decl,
3825 processing_template_decl,
3826 decl, TREE_TYPE (parm));
3827 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3828 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3830 DECL_ARTIFICIAL (decl) = 1;
3831 SET_DECL_TEMPLATE_PARM_P (decl);
3832 pushdecl (decl);
3833 parm = build_tree_list (defval, parm);
3834 return chainon (list, parm);
3837 /* The end of a template parameter list has been reached. Process the
3838 tree list into a parameter vector, converting each parameter into a more
3839 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3840 as PARM_DECLs. */
3842 tree
3843 end_template_parm_list (tree parms)
3845 int nparms;
3846 tree parm, next;
3847 tree saved_parmlist = make_tree_vec (list_length (parms));
3849 current_template_parms
3850 = tree_cons (size_int (processing_template_decl),
3851 saved_parmlist, current_template_parms);
3853 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3855 next = TREE_CHAIN (parm);
3856 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3857 TREE_CHAIN (parm) = NULL_TREE;
3860 --processing_template_parmlist;
3862 return saved_parmlist;
3865 /* end_template_decl is called after a template declaration is seen. */
3867 void
3868 end_template_decl (void)
3870 reset_specialization ();
3872 if (! processing_template_decl)
3873 return;
3875 /* This matches the pushlevel in begin_template_parm_list. */
3876 finish_scope ();
3878 --processing_template_decl;
3879 current_template_parms = TREE_CHAIN (current_template_parms);
3882 /* Takes a TREE_LIST representing a template parameter and convert it
3883 into an argument suitable to be passed to the type substitution
3884 functions. Note that If the TREE_LIST contains an error_mark
3885 node, the returned argument is error_mark_node. */
3887 static tree
3888 template_parm_to_arg (tree t)
3891 if (t == NULL_TREE
3892 || TREE_CODE (t) != TREE_LIST)
3893 return t;
3895 if (error_operand_p (TREE_VALUE (t)))
3896 return error_mark_node;
3898 t = TREE_VALUE (t);
3900 if (TREE_CODE (t) == TYPE_DECL
3901 || TREE_CODE (t) == TEMPLATE_DECL)
3903 t = TREE_TYPE (t);
3905 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3907 /* Turn this argument into a TYPE_ARGUMENT_PACK
3908 with a single element, which expands T. */
3909 tree vec = make_tree_vec (1);
3910 #ifdef ENABLE_CHECKING
3911 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3912 (vec, TREE_VEC_LENGTH (vec));
3913 #endif
3914 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3916 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3917 SET_ARGUMENT_PACK_ARGS (t, vec);
3920 else
3922 t = DECL_INITIAL (t);
3924 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3926 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3927 with a single element, which expands T. */
3928 tree vec = make_tree_vec (1);
3929 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3930 #ifdef ENABLE_CHECKING
3931 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3932 (vec, TREE_VEC_LENGTH (vec));
3933 #endif
3934 t = convert_from_reference (t);
3935 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3937 t = make_node (NONTYPE_ARGUMENT_PACK);
3938 SET_ARGUMENT_PACK_ARGS (t, vec);
3939 TREE_TYPE (t) = type;
3941 else
3942 t = convert_from_reference (t);
3944 return t;
3947 /* Given a set of template parameters, return them as a set of template
3948 arguments. The template parameters are represented as a TREE_VEC, in
3949 the form documented in cp-tree.h for template arguments. */
3951 static tree
3952 template_parms_to_args (tree parms)
3954 tree header;
3955 tree args = NULL_TREE;
3956 int length = TMPL_PARMS_DEPTH (parms);
3957 int l = length;
3959 /* If there is only one level of template parameters, we do not
3960 create a TREE_VEC of TREE_VECs. Instead, we return a single
3961 TREE_VEC containing the arguments. */
3962 if (length > 1)
3963 args = make_tree_vec (length);
3965 for (header = parms; header; header = TREE_CHAIN (header))
3967 tree a = copy_node (TREE_VALUE (header));
3968 int i;
3970 TREE_TYPE (a) = NULL_TREE;
3971 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3972 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3974 #ifdef ENABLE_CHECKING
3975 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3976 #endif
3978 if (length > 1)
3979 TREE_VEC_ELT (args, --l) = a;
3980 else
3981 args = a;
3984 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3985 /* This can happen for template parms of a template template
3986 parameter, e.g:
3988 template<template<class T, class U> class TT> struct S;
3990 Consider the level of the parms of TT; T and U both have
3991 level 2; TT has no template parm of level 1. So in this case
3992 the first element of full_template_args is NULL_TREE. If we
3993 leave it like this TMPL_ARGS_DEPTH on args returns 1 instead
3994 of 2. This will make tsubst wrongly consider that T and U
3995 have level 1. Instead, let's create a dummy vector as the
3996 first element of full_template_args so that TMPL_ARGS_DEPTH
3997 returns the correct depth for args. */
3998 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3999 return args;
4002 /* Within the declaration of a template, return the currently active
4003 template parameters as an argument TREE_VEC. */
4005 static tree
4006 current_template_args (void)
4008 return template_parms_to_args (current_template_parms);
4011 /* Update the declared TYPE by doing any lookups which were thought to be
4012 dependent, but are not now that we know the SCOPE of the declarator. */
4014 tree
4015 maybe_update_decl_type (tree orig_type, tree scope)
4017 tree type = orig_type;
4019 if (type == NULL_TREE)
4020 return type;
4022 if (TREE_CODE (orig_type) == TYPE_DECL)
4023 type = TREE_TYPE (type);
4025 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4026 && dependent_type_p (type)
4027 /* Don't bother building up the args in this case. */
4028 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4030 /* tsubst in the args corresponding to the template parameters,
4031 including auto if present. Most things will be unchanged, but
4032 make_typename_type and tsubst_qualified_id will resolve
4033 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4034 tree args = current_template_args ();
4035 tree auto_node = type_uses_auto (type);
4036 tree pushed;
4037 if (auto_node)
4039 tree auto_vec = make_tree_vec (1);
4040 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4041 args = add_to_template_args (args, auto_vec);
4043 pushed = push_scope (scope);
4044 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4045 if (pushed)
4046 pop_scope (scope);
4049 if (type == error_mark_node)
4050 return orig_type;
4052 if (TREE_CODE (orig_type) == TYPE_DECL)
4054 if (same_type_p (type, TREE_TYPE (orig_type)))
4055 type = orig_type;
4056 else
4057 type = TYPE_NAME (type);
4059 return type;
4062 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4063 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
4064 a member template. Used by push_template_decl below. */
4066 static tree
4067 build_template_decl (tree decl, tree parms, bool member_template_p)
4069 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4070 DECL_TEMPLATE_PARMS (tmpl) = parms;
4071 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4072 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4073 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4075 return tmpl;
4078 struct template_parm_data
4080 /* The level of the template parameters we are currently
4081 processing. */
4082 int level;
4084 /* The index of the specialization argument we are currently
4085 processing. */
4086 int current_arg;
4088 /* An array whose size is the number of template parameters. The
4089 elements are nonzero if the parameter has been used in any one
4090 of the arguments processed so far. */
4091 int* parms;
4093 /* An array whose size is the number of template arguments. The
4094 elements are nonzero if the argument makes use of template
4095 parameters of this level. */
4096 int* arg_uses_template_parms;
4099 /* Subroutine of push_template_decl used to see if each template
4100 parameter in a partial specialization is used in the explicit
4101 argument list. If T is of the LEVEL given in DATA (which is
4102 treated as a template_parm_data*), then DATA->PARMS is marked
4103 appropriately. */
4105 static int
4106 mark_template_parm (tree t, void* data)
4108 int level;
4109 int idx;
4110 struct template_parm_data* tpd = (struct template_parm_data*) data;
4112 template_parm_level_and_index (t, &level, &idx);
4114 if (level == tpd->level)
4116 tpd->parms[idx] = 1;
4117 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4120 /* Return zero so that for_each_template_parm will continue the
4121 traversal of the tree; we want to mark *every* template parm. */
4122 return 0;
4125 /* Process the partial specialization DECL. */
4127 static tree
4128 process_partial_specialization (tree decl)
4130 tree type = TREE_TYPE (decl);
4131 tree tinfo = get_template_info (decl);
4132 tree maintmpl = TI_TEMPLATE (tinfo);
4133 tree specargs = TI_ARGS (tinfo);
4134 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4135 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4136 tree inner_parms;
4137 tree inst;
4138 int nargs = TREE_VEC_LENGTH (inner_args);
4139 int ntparms;
4140 int i;
4141 bool did_error_intro = false;
4142 struct template_parm_data tpd;
4143 struct template_parm_data tpd2;
4145 gcc_assert (current_template_parms);
4147 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4148 ntparms = TREE_VEC_LENGTH (inner_parms);
4150 /* We check that each of the template parameters given in the
4151 partial specialization is used in the argument list to the
4152 specialization. For example:
4154 template <class T> struct S;
4155 template <class T> struct S<T*>;
4157 The second declaration is OK because `T*' uses the template
4158 parameter T, whereas
4160 template <class T> struct S<int>;
4162 is no good. Even trickier is:
4164 template <class T>
4165 struct S1
4167 template <class U>
4168 struct S2;
4169 template <class U>
4170 struct S2<T>;
4173 The S2<T> declaration is actually invalid; it is a
4174 full-specialization. Of course,
4176 template <class U>
4177 struct S2<T (*)(U)>;
4179 or some such would have been OK. */
4180 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4181 tpd.parms = XALLOCAVEC (int, ntparms);
4182 memset (tpd.parms, 0, sizeof (int) * ntparms);
4184 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4185 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4186 for (i = 0; i < nargs; ++i)
4188 tpd.current_arg = i;
4189 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4190 &mark_template_parm,
4191 &tpd,
4192 NULL,
4193 /*include_nondeduced_p=*/false);
4195 for (i = 0; i < ntparms; ++i)
4196 if (tpd.parms[i] == 0)
4198 /* One of the template parms was not used in a deduced context in the
4199 specialization. */
4200 if (!did_error_intro)
4202 error ("template parameters not deducible in "
4203 "partial specialization:");
4204 did_error_intro = true;
4207 inform (input_location, " %qD",
4208 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4211 if (did_error_intro)
4212 return error_mark_node;
4214 /* [temp.class.spec]
4216 The argument list of the specialization shall not be identical to
4217 the implicit argument list of the primary template. */
4218 tree main_args
4219 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4220 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args)))
4221 error ("partial specialization %qD does not specialize "
4222 "any template arguments", decl);
4224 /* A partial specialization that replaces multiple parameters of the
4225 primary template with a pack expansion is less specialized for those
4226 parameters. */
4227 if (nargs < DECL_NTPARMS (maintmpl))
4229 error ("partial specialization is not more specialized than the "
4230 "primary template because it replaces multiple parameters "
4231 "with a pack expansion");
4232 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4233 return decl;
4236 /* [temp.class.spec]
4238 A partially specialized non-type argument expression shall not
4239 involve template parameters of the partial specialization except
4240 when the argument expression is a simple identifier.
4242 The type of a template parameter corresponding to a specialized
4243 non-type argument shall not be dependent on a parameter of the
4244 specialization.
4246 Also, we verify that pack expansions only occur at the
4247 end of the argument list. */
4248 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4249 tpd2.parms = 0;
4250 for (i = 0; i < nargs; ++i)
4252 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4253 tree arg = TREE_VEC_ELT (inner_args, i);
4254 tree packed_args = NULL_TREE;
4255 int j, len = 1;
4257 if (ARGUMENT_PACK_P (arg))
4259 /* Extract the arguments from the argument pack. We'll be
4260 iterating over these in the following loop. */
4261 packed_args = ARGUMENT_PACK_ARGS (arg);
4262 len = TREE_VEC_LENGTH (packed_args);
4265 for (j = 0; j < len; j++)
4267 if (packed_args)
4268 /* Get the Jth argument in the parameter pack. */
4269 arg = TREE_VEC_ELT (packed_args, j);
4271 if (PACK_EXPANSION_P (arg))
4273 /* Pack expansions must come at the end of the
4274 argument list. */
4275 if ((packed_args && j < len - 1)
4276 || (!packed_args && i < nargs - 1))
4278 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4279 error ("parameter pack argument %qE must be at the "
4280 "end of the template argument list", arg);
4281 else
4282 error ("parameter pack argument %qT must be at the "
4283 "end of the template argument list", arg);
4287 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4288 /* We only care about the pattern. */
4289 arg = PACK_EXPANSION_PATTERN (arg);
4291 if (/* These first two lines are the `non-type' bit. */
4292 !TYPE_P (arg)
4293 && TREE_CODE (arg) != TEMPLATE_DECL
4294 /* This next two lines are the `argument expression is not just a
4295 simple identifier' condition and also the `specialized
4296 non-type argument' bit. */
4297 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4298 && !(REFERENCE_REF_P (arg)
4299 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4301 if ((!packed_args && tpd.arg_uses_template_parms[i])
4302 || (packed_args && uses_template_parms (arg)))
4303 error ("template argument %qE involves template parameter(s)",
4304 arg);
4305 else
4307 /* Look at the corresponding template parameter,
4308 marking which template parameters its type depends
4309 upon. */
4310 tree type = TREE_TYPE (parm);
4312 if (!tpd2.parms)
4314 /* We haven't yet initialized TPD2. Do so now. */
4315 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4316 /* The number of parameters here is the number in the
4317 main template, which, as checked in the assertion
4318 above, is NARGS. */
4319 tpd2.parms = XALLOCAVEC (int, nargs);
4320 tpd2.level =
4321 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4324 /* Mark the template parameters. But this time, we're
4325 looking for the template parameters of the main
4326 template, not in the specialization. */
4327 tpd2.current_arg = i;
4328 tpd2.arg_uses_template_parms[i] = 0;
4329 memset (tpd2.parms, 0, sizeof (int) * nargs);
4330 for_each_template_parm (type,
4331 &mark_template_parm,
4332 &tpd2,
4333 NULL,
4334 /*include_nondeduced_p=*/false);
4336 if (tpd2.arg_uses_template_parms [i])
4338 /* The type depended on some template parameters.
4339 If they are fully specialized in the
4340 specialization, that's OK. */
4341 int j;
4342 int count = 0;
4343 for (j = 0; j < nargs; ++j)
4344 if (tpd2.parms[j] != 0
4345 && tpd.arg_uses_template_parms [j])
4346 ++count;
4347 if (count != 0)
4348 error_n (input_location, count,
4349 "type %qT of template argument %qE depends "
4350 "on a template parameter",
4351 "type %qT of template argument %qE depends "
4352 "on template parameters",
4353 type,
4354 arg);
4361 /* We should only get here once. */
4362 if (TREE_CODE (decl) == TYPE_DECL)
4363 gcc_assert (!COMPLETE_TYPE_P (type));
4365 tree tmpl = build_template_decl (decl, current_template_parms,
4366 DECL_MEMBER_TEMPLATE_P (maintmpl));
4367 TREE_TYPE (tmpl) = type;
4368 DECL_TEMPLATE_RESULT (tmpl) = decl;
4369 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4370 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4371 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4373 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4374 = tree_cons (specargs, tmpl,
4375 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4376 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4378 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4379 inst = TREE_CHAIN (inst))
4381 tree instance = TREE_VALUE (inst);
4382 if (TYPE_P (instance)
4383 ? (COMPLETE_TYPE_P (instance)
4384 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4385 : DECL_TEMPLATE_INSTANTIATION (instance))
4387 tree spec = most_specialized_partial_spec (instance, tf_none);
4388 if (spec && TREE_VALUE (spec) == tmpl)
4390 tree inst_decl = (DECL_P (instance)
4391 ? instance : TYPE_NAME (instance));
4392 permerror (input_location,
4393 "partial specialization of %qD after instantiation "
4394 "of %qD", decl, inst_decl);
4399 return decl;
4402 /* PARM is a template parameter of some form; return the corresponding
4403 TEMPLATE_PARM_INDEX. */
4405 static tree
4406 get_template_parm_index (tree parm)
4408 if (TREE_CODE (parm) == PARM_DECL
4409 || TREE_CODE (parm) == CONST_DECL)
4410 parm = DECL_INITIAL (parm);
4411 else if (TREE_CODE (parm) == TYPE_DECL
4412 || TREE_CODE (parm) == TEMPLATE_DECL)
4413 parm = TREE_TYPE (parm);
4414 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4415 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4416 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4417 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4418 return parm;
4421 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4422 parameter packs used by the template parameter PARM. */
4424 static void
4425 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4427 /* A type parm can't refer to another parm. */
4428 if (TREE_CODE (parm) == TYPE_DECL)
4429 return;
4430 else if (TREE_CODE (parm) == PARM_DECL)
4432 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4433 ppd, ppd->visited);
4434 return;
4437 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4439 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4440 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4441 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4444 /* PARM is a template parameter pack. Return any parameter packs used in
4445 its type or the type of any of its template parameters. If there are
4446 any such packs, it will be instantiated into a fixed template parameter
4447 list by partial instantiation rather than be fully deduced. */
4449 tree
4450 fixed_parameter_pack_p (tree parm)
4452 /* This can only be true in a member template. */
4453 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4454 return NULL_TREE;
4455 /* This can only be true for a parameter pack. */
4456 if (!template_parameter_pack_p (parm))
4457 return NULL_TREE;
4458 /* A type parm can't refer to another parm. */
4459 if (TREE_CODE (parm) == TYPE_DECL)
4460 return NULL_TREE;
4462 tree parameter_packs = NULL_TREE;
4463 struct find_parameter_pack_data ppd;
4464 ppd.parameter_packs = &parameter_packs;
4465 ppd.visited = new hash_set<tree>;
4467 fixed_parameter_pack_p_1 (parm, &ppd);
4469 delete ppd.visited;
4470 return parameter_packs;
4473 /* Check that a template declaration's use of default arguments and
4474 parameter packs is not invalid. Here, PARMS are the template
4475 parameters. IS_PRIMARY is true if DECL is the thing declared by
4476 a primary template. IS_PARTIAL is true if DECL is a partial
4477 specialization.
4479 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4480 declaration (but not a definition); 1 indicates a declaration, 2
4481 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4482 emitted for extraneous default arguments.
4484 Returns TRUE if there were no errors found, FALSE otherwise. */
4486 bool
4487 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4488 bool is_partial, int is_friend_decl)
4490 const char *msg;
4491 int last_level_to_check;
4492 tree parm_level;
4493 bool no_errors = true;
4495 /* [temp.param]
4497 A default template-argument shall not be specified in a
4498 function template declaration or a function template definition, nor
4499 in the template-parameter-list of the definition of a member of a
4500 class template. */
4502 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4503 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4504 /* You can't have a function template declaration in a local
4505 scope, nor you can you define a member of a class template in a
4506 local scope. */
4507 return true;
4509 if ((TREE_CODE (decl) == TYPE_DECL
4510 && TREE_TYPE (decl)
4511 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4512 || (TREE_CODE (decl) == FUNCTION_DECL
4513 && LAMBDA_FUNCTION_P (decl)))
4514 /* A lambda doesn't have an explicit declaration; don't complain
4515 about the parms of the enclosing class. */
4516 return true;
4518 if (current_class_type
4519 && !TYPE_BEING_DEFINED (current_class_type)
4520 && DECL_LANG_SPECIFIC (decl)
4521 && DECL_DECLARES_FUNCTION_P (decl)
4522 /* If this is either a friend defined in the scope of the class
4523 or a member function. */
4524 && (DECL_FUNCTION_MEMBER_P (decl)
4525 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4526 : DECL_FRIEND_CONTEXT (decl)
4527 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4528 : false)
4529 /* And, if it was a member function, it really was defined in
4530 the scope of the class. */
4531 && (!DECL_FUNCTION_MEMBER_P (decl)
4532 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4533 /* We already checked these parameters when the template was
4534 declared, so there's no need to do it again now. This function
4535 was defined in class scope, but we're processing its body now
4536 that the class is complete. */
4537 return true;
4539 /* Core issue 226 (C++0x only): the following only applies to class
4540 templates. */
4541 if (is_primary
4542 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4544 /* [temp.param]
4546 If a template-parameter has a default template-argument, all
4547 subsequent template-parameters shall have a default
4548 template-argument supplied. */
4549 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4551 tree inner_parms = TREE_VALUE (parm_level);
4552 int ntparms = TREE_VEC_LENGTH (inner_parms);
4553 int seen_def_arg_p = 0;
4554 int i;
4556 for (i = 0; i < ntparms; ++i)
4558 tree parm = TREE_VEC_ELT (inner_parms, i);
4560 if (parm == error_mark_node)
4561 continue;
4563 if (TREE_PURPOSE (parm))
4564 seen_def_arg_p = 1;
4565 else if (seen_def_arg_p
4566 && !template_parameter_pack_p (TREE_VALUE (parm)))
4568 error ("no default argument for %qD", TREE_VALUE (parm));
4569 /* For better subsequent error-recovery, we indicate that
4570 there should have been a default argument. */
4571 TREE_PURPOSE (parm) = error_mark_node;
4572 no_errors = false;
4574 else if (!is_partial
4575 && !is_friend_decl
4576 /* Don't complain about an enclosing partial
4577 specialization. */
4578 && parm_level == parms
4579 && TREE_CODE (decl) == TYPE_DECL
4580 && i < ntparms - 1
4581 && template_parameter_pack_p (TREE_VALUE (parm))
4582 /* A fixed parameter pack will be partially
4583 instantiated into a fixed length list. */
4584 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4586 /* A primary class template can only have one
4587 parameter pack, at the end of the template
4588 parameter list. */
4590 error ("parameter pack %q+D must be at the end of the"
4591 " template parameter list", TREE_VALUE (parm));
4593 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4594 = error_mark_node;
4595 no_errors = false;
4601 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4602 || is_partial
4603 || !is_primary
4604 || is_friend_decl)
4605 /* For an ordinary class template, default template arguments are
4606 allowed at the innermost level, e.g.:
4607 template <class T = int>
4608 struct S {};
4609 but, in a partial specialization, they're not allowed even
4610 there, as we have in [temp.class.spec]:
4612 The template parameter list of a specialization shall not
4613 contain default template argument values.
4615 So, for a partial specialization, or for a function template
4616 (in C++98/C++03), we look at all of them. */
4618 else
4619 /* But, for a primary class template that is not a partial
4620 specialization we look at all template parameters except the
4621 innermost ones. */
4622 parms = TREE_CHAIN (parms);
4624 /* Figure out what error message to issue. */
4625 if (is_friend_decl == 2)
4626 msg = G_("default template arguments may not be used in function template "
4627 "friend re-declaration");
4628 else if (is_friend_decl)
4629 msg = G_("default template arguments may not be used in function template "
4630 "friend declarations");
4631 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4632 msg = G_("default template arguments may not be used in function templates "
4633 "without -std=c++11 or -std=gnu++11");
4634 else if (is_partial)
4635 msg = G_("default template arguments may not be used in "
4636 "partial specializations");
4637 else
4638 msg = G_("default argument for template parameter for class enclosing %qD");
4640 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4641 /* If we're inside a class definition, there's no need to
4642 examine the parameters to the class itself. On the one
4643 hand, they will be checked when the class is defined, and,
4644 on the other, default arguments are valid in things like:
4645 template <class T = double>
4646 struct S { template <class U> void f(U); };
4647 Here the default argument for `S' has no bearing on the
4648 declaration of `f'. */
4649 last_level_to_check = template_class_depth (current_class_type) + 1;
4650 else
4651 /* Check everything. */
4652 last_level_to_check = 0;
4654 for (parm_level = parms;
4655 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4656 parm_level = TREE_CHAIN (parm_level))
4658 tree inner_parms = TREE_VALUE (parm_level);
4659 int i;
4660 int ntparms;
4662 ntparms = TREE_VEC_LENGTH (inner_parms);
4663 for (i = 0; i < ntparms; ++i)
4665 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4666 continue;
4668 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4670 if (msg)
4672 no_errors = false;
4673 if (is_friend_decl == 2)
4674 return no_errors;
4676 error (msg, decl);
4677 msg = 0;
4680 /* Clear out the default argument so that we are not
4681 confused later. */
4682 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4686 /* At this point, if we're still interested in issuing messages,
4687 they must apply to classes surrounding the object declared. */
4688 if (msg)
4689 msg = G_("default argument for template parameter for class "
4690 "enclosing %qD");
4693 return no_errors;
4696 /* Worker for push_template_decl_real, called via
4697 for_each_template_parm. DATA is really an int, indicating the
4698 level of the parameters we are interested in. If T is a template
4699 parameter of that level, return nonzero. */
4701 static int
4702 template_parm_this_level_p (tree t, void* data)
4704 int this_level = *(int *)data;
4705 int level;
4707 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4708 level = TEMPLATE_PARM_LEVEL (t);
4709 else
4710 level = TEMPLATE_TYPE_LEVEL (t);
4711 return level == this_level;
4714 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4715 parameters given by current_template_args, or reuses a
4716 previously existing one, if appropriate. Returns the DECL, or an
4717 equivalent one, if it is replaced via a call to duplicate_decls.
4719 If IS_FRIEND is true, DECL is a friend declaration. */
4721 tree
4722 push_template_decl_real (tree decl, bool is_friend)
4724 tree tmpl;
4725 tree args;
4726 tree info;
4727 tree ctx;
4728 bool is_primary;
4729 bool is_partial;
4730 int new_template_p = 0;
4731 /* True if the template is a member template, in the sense of
4732 [temp.mem]. */
4733 bool member_template_p = false;
4735 if (decl == error_mark_node || !current_template_parms)
4736 return error_mark_node;
4738 /* See if this is a partial specialization. */
4739 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
4740 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4741 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
4742 || (TREE_CODE (decl) == VAR_DECL
4743 && DECL_LANG_SPECIFIC (decl)
4744 && DECL_TEMPLATE_SPECIALIZATION (decl)
4745 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
4747 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4748 is_friend = true;
4750 if (is_friend)
4751 /* For a friend, we want the context of the friend function, not
4752 the type of which it is a friend. */
4753 ctx = CP_DECL_CONTEXT (decl);
4754 else if (CP_DECL_CONTEXT (decl)
4755 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4756 /* In the case of a virtual function, we want the class in which
4757 it is defined. */
4758 ctx = CP_DECL_CONTEXT (decl);
4759 else
4760 /* Otherwise, if we're currently defining some class, the DECL
4761 is assumed to be a member of the class. */
4762 ctx = current_scope ();
4764 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4765 ctx = NULL_TREE;
4767 if (!DECL_CONTEXT (decl))
4768 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4770 /* See if this is a primary template. */
4771 if (is_friend && ctx
4772 && uses_template_parms_level (ctx, processing_template_decl))
4773 /* A friend template that specifies a class context, i.e.
4774 template <typename T> friend void A<T>::f();
4775 is not primary. */
4776 is_primary = false;
4777 else if (TREE_CODE (decl) == TYPE_DECL
4778 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4779 is_primary = false;
4780 else
4781 is_primary = template_parm_scope_p ();
4783 if (is_primary)
4785 if (DECL_CLASS_SCOPE_P (decl))
4786 member_template_p = true;
4787 if (TREE_CODE (decl) == TYPE_DECL
4788 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4790 error ("template class without a name");
4791 return error_mark_node;
4793 else if (TREE_CODE (decl) == FUNCTION_DECL)
4795 if (member_template_p)
4797 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
4798 error ("member template %qD may not have virt-specifiers", decl);
4800 if (DECL_DESTRUCTOR_P (decl))
4802 /* [temp.mem]
4804 A destructor shall not be a member template. */
4805 error ("destructor %qD declared as member template", decl);
4806 return error_mark_node;
4808 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4809 && (!prototype_p (TREE_TYPE (decl))
4810 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4811 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4812 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4813 == void_list_node)))
4815 /* [basic.stc.dynamic.allocation]
4817 An allocation function can be a function
4818 template. ... Template allocation functions shall
4819 have two or more parameters. */
4820 error ("invalid template declaration of %qD", decl);
4821 return error_mark_node;
4824 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4825 && CLASS_TYPE_P (TREE_TYPE (decl)))
4826 /* OK */;
4827 else if (TREE_CODE (decl) == TYPE_DECL
4828 && TYPE_DECL_ALIAS_P (decl))
4829 /* alias-declaration */
4830 gcc_assert (!DECL_ARTIFICIAL (decl));
4831 else if (VAR_P (decl))
4832 /* C++14 variable template. */;
4833 else
4835 error ("template declaration of %q#D", decl);
4836 return error_mark_node;
4840 /* Check to see that the rules regarding the use of default
4841 arguments are not being violated. */
4842 check_default_tmpl_args (decl, current_template_parms,
4843 is_primary, is_partial, /*is_friend_decl=*/0);
4845 /* Ensure that there are no parameter packs in the type of this
4846 declaration that have not been expanded. */
4847 if (TREE_CODE (decl) == FUNCTION_DECL)
4849 /* Check each of the arguments individually to see if there are
4850 any bare parameter packs. */
4851 tree type = TREE_TYPE (decl);
4852 tree arg = DECL_ARGUMENTS (decl);
4853 tree argtype = TYPE_ARG_TYPES (type);
4855 while (arg && argtype)
4857 if (!DECL_PACK_P (arg)
4858 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4860 /* This is a PARM_DECL that contains unexpanded parameter
4861 packs. We have already complained about this in the
4862 check_for_bare_parameter_packs call, so just replace
4863 these types with ERROR_MARK_NODE. */
4864 TREE_TYPE (arg) = error_mark_node;
4865 TREE_VALUE (argtype) = error_mark_node;
4868 arg = DECL_CHAIN (arg);
4869 argtype = TREE_CHAIN (argtype);
4872 /* Check for bare parameter packs in the return type and the
4873 exception specifiers. */
4874 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4875 /* Errors were already issued, set return type to int
4876 as the frontend doesn't expect error_mark_node as
4877 the return type. */
4878 TREE_TYPE (type) = integer_type_node;
4879 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4880 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4882 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4883 && TYPE_DECL_ALIAS_P (decl))
4884 ? DECL_ORIGINAL_TYPE (decl)
4885 : TREE_TYPE (decl)))
4887 TREE_TYPE (decl) = error_mark_node;
4888 return error_mark_node;
4891 if (is_partial)
4892 return process_partial_specialization (decl);
4894 args = current_template_args ();
4896 if (!ctx
4897 || TREE_CODE (ctx) == FUNCTION_DECL
4898 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4899 || (TREE_CODE (decl) == TYPE_DECL
4900 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4901 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4903 if (DECL_LANG_SPECIFIC (decl)
4904 && DECL_TEMPLATE_INFO (decl)
4905 && DECL_TI_TEMPLATE (decl))
4906 tmpl = DECL_TI_TEMPLATE (decl);
4907 /* If DECL is a TYPE_DECL for a class-template, then there won't
4908 be DECL_LANG_SPECIFIC. The information equivalent to
4909 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4910 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4911 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4912 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4914 /* Since a template declaration already existed for this
4915 class-type, we must be redeclaring it here. Make sure
4916 that the redeclaration is valid. */
4917 redeclare_class_template (TREE_TYPE (decl),
4918 current_template_parms);
4919 /* We don't need to create a new TEMPLATE_DECL; just use the
4920 one we already had. */
4921 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4923 else
4925 tmpl = build_template_decl (decl, current_template_parms,
4926 member_template_p);
4927 new_template_p = 1;
4929 if (DECL_LANG_SPECIFIC (decl)
4930 && DECL_TEMPLATE_SPECIALIZATION (decl))
4932 /* A specialization of a member template of a template
4933 class. */
4934 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4935 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4936 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4940 else
4942 tree a, t, current, parms;
4943 int i;
4944 tree tinfo = get_template_info (decl);
4946 if (!tinfo)
4948 error ("template definition of non-template %q#D", decl);
4949 return error_mark_node;
4952 tmpl = TI_TEMPLATE (tinfo);
4954 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4955 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4956 && DECL_TEMPLATE_SPECIALIZATION (decl)
4957 && DECL_MEMBER_TEMPLATE_P (tmpl))
4959 tree new_tmpl;
4961 /* The declaration is a specialization of a member
4962 template, declared outside the class. Therefore, the
4963 innermost template arguments will be NULL, so we
4964 replace them with the arguments determined by the
4965 earlier call to check_explicit_specialization. */
4966 args = DECL_TI_ARGS (decl);
4968 new_tmpl
4969 = build_template_decl (decl, current_template_parms,
4970 member_template_p);
4971 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4972 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4973 DECL_TI_TEMPLATE (decl) = new_tmpl;
4974 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4975 DECL_TEMPLATE_INFO (new_tmpl)
4976 = build_template_info (tmpl, args);
4978 register_specialization (new_tmpl,
4979 most_general_template (tmpl),
4980 args,
4981 is_friend, 0);
4982 return decl;
4985 /* Make sure the template headers we got make sense. */
4987 parms = DECL_TEMPLATE_PARMS (tmpl);
4988 i = TMPL_PARMS_DEPTH (parms);
4989 if (TMPL_ARGS_DEPTH (args) != i)
4991 error ("expected %d levels of template parms for %q#D, got %d",
4992 i, decl, TMPL_ARGS_DEPTH (args));
4993 DECL_INTERFACE_KNOWN (decl) = 1;
4994 return error_mark_node;
4996 else
4997 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4999 a = TMPL_ARGS_LEVEL (args, i);
5000 t = INNERMOST_TEMPLATE_PARMS (parms);
5002 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5004 if (current == decl)
5005 error ("got %d template parameters for %q#D",
5006 TREE_VEC_LENGTH (a), decl);
5007 else
5008 error ("got %d template parameters for %q#T",
5009 TREE_VEC_LENGTH (a), current);
5010 error (" but %d required", TREE_VEC_LENGTH (t));
5011 /* Avoid crash in import_export_decl. */
5012 DECL_INTERFACE_KNOWN (decl) = 1;
5013 return error_mark_node;
5016 if (current == decl)
5017 current = ctx;
5018 else if (current == NULL_TREE)
5019 /* Can happen in erroneous input. */
5020 break;
5021 else
5022 current = get_containing_scope (current);
5025 /* Check that the parms are used in the appropriate qualifying scopes
5026 in the declarator. */
5027 if (!comp_template_args
5028 (TI_ARGS (tinfo),
5029 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5031 error ("\
5032 template arguments to %qD do not match original template %qD",
5033 decl, DECL_TEMPLATE_RESULT (tmpl));
5034 if (!uses_template_parms (TI_ARGS (tinfo)))
5035 inform (input_location, "use template<> for an explicit specialization");
5036 /* Avoid crash in import_export_decl. */
5037 DECL_INTERFACE_KNOWN (decl) = 1;
5038 return error_mark_node;
5042 DECL_TEMPLATE_RESULT (tmpl) = decl;
5043 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5045 /* Push template declarations for global functions and types. Note
5046 that we do not try to push a global template friend declared in a
5047 template class; such a thing may well depend on the template
5048 parameters of the class. */
5049 if (new_template_p && !ctx
5050 && !(is_friend && template_class_depth (current_class_type) > 0))
5052 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5053 if (tmpl == error_mark_node)
5054 return error_mark_node;
5056 /* Hide template friend classes that haven't been declared yet. */
5057 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5059 DECL_ANTICIPATED (tmpl) = 1;
5060 DECL_FRIEND_P (tmpl) = 1;
5064 if (is_primary)
5066 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5067 int i;
5069 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5070 if (DECL_CONV_FN_P (tmpl))
5072 int depth = TMPL_PARMS_DEPTH (parms);
5074 /* It is a conversion operator. See if the type converted to
5075 depends on innermost template operands. */
5077 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5078 depth))
5079 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5082 /* Give template template parms a DECL_CONTEXT of the template
5083 for which they are a parameter. */
5084 parms = INNERMOST_TEMPLATE_PARMS (parms);
5085 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5087 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5088 if (TREE_CODE (parm) == TEMPLATE_DECL)
5089 DECL_CONTEXT (parm) = tmpl;
5093 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5094 back to its most general template. If TMPL is a specialization,
5095 ARGS may only have the innermost set of arguments. Add the missing
5096 argument levels if necessary. */
5097 if (DECL_TEMPLATE_INFO (tmpl))
5098 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5100 info = build_template_info (tmpl, args);
5102 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5103 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5104 else
5106 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5107 retrofit_lang_decl (decl);
5108 if (DECL_LANG_SPECIFIC (decl))
5109 DECL_TEMPLATE_INFO (decl) = info;
5112 if (flag_implicit_templates
5113 && !is_friend
5114 && TREE_PUBLIC (decl)
5115 && VAR_OR_FUNCTION_DECL_P (decl))
5116 /* Set DECL_COMDAT on template instantiations; if we force
5117 them to be emitted by explicit instantiation or -frepo,
5118 mark_needed will tell cgraph to do the right thing. */
5119 DECL_COMDAT (decl) = true;
5121 return DECL_TEMPLATE_RESULT (tmpl);
5124 tree
5125 push_template_decl (tree decl)
5127 return push_template_decl_real (decl, false);
5130 /* FN is an inheriting constructor that inherits from the constructor
5131 template INHERITED; turn FN into a constructor template with a matching
5132 template header. */
5134 tree
5135 add_inherited_template_parms (tree fn, tree inherited)
5137 tree inner_parms
5138 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5139 inner_parms = copy_node (inner_parms);
5140 tree parms
5141 = tree_cons (size_int (processing_template_decl + 1),
5142 inner_parms, current_template_parms);
5143 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5144 tree args = template_parms_to_args (parms);
5145 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5146 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5147 DECL_TEMPLATE_RESULT (tmpl) = fn;
5148 DECL_ARTIFICIAL (tmpl) = true;
5149 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5150 return tmpl;
5153 /* Called when a class template TYPE is redeclared with the indicated
5154 template PARMS, e.g.:
5156 template <class T> struct S;
5157 template <class T> struct S {}; */
5159 bool
5160 redeclare_class_template (tree type, tree parms)
5162 tree tmpl;
5163 tree tmpl_parms;
5164 int i;
5166 if (!TYPE_TEMPLATE_INFO (type))
5168 error ("%qT is not a template type", type);
5169 return false;
5172 tmpl = TYPE_TI_TEMPLATE (type);
5173 if (!PRIMARY_TEMPLATE_P (tmpl))
5174 /* The type is nested in some template class. Nothing to worry
5175 about here; there are no new template parameters for the nested
5176 type. */
5177 return true;
5179 if (!parms)
5181 error ("template specifiers not specified in declaration of %qD",
5182 tmpl);
5183 return false;
5186 parms = INNERMOST_TEMPLATE_PARMS (parms);
5187 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5189 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5191 error_n (input_location, TREE_VEC_LENGTH (parms),
5192 "redeclared with %d template parameter",
5193 "redeclared with %d template parameters",
5194 TREE_VEC_LENGTH (parms));
5195 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
5196 "previous declaration %q+D used %d template parameter",
5197 "previous declaration %q+D used %d template parameters",
5198 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5199 return false;
5202 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5204 tree tmpl_parm;
5205 tree parm;
5206 tree tmpl_default;
5207 tree parm_default;
5209 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5210 || TREE_VEC_ELT (parms, i) == error_mark_node)
5211 continue;
5213 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5214 if (error_operand_p (tmpl_parm))
5215 return false;
5217 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5218 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5219 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5221 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5222 TEMPLATE_DECL. */
5223 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5224 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5225 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5226 || (TREE_CODE (tmpl_parm) != PARM_DECL
5227 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5228 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5229 || (TREE_CODE (tmpl_parm) == PARM_DECL
5230 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5231 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5233 error ("template parameter %q+#D", tmpl_parm);
5234 error ("redeclared here as %q#D", parm);
5235 return false;
5238 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5240 /* We have in [temp.param]:
5242 A template-parameter may not be given default arguments
5243 by two different declarations in the same scope. */
5244 error_at (input_location, "redefinition of default argument for %q#D", parm);
5245 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5246 "original definition appeared here");
5247 return false;
5250 if (parm_default != NULL_TREE)
5251 /* Update the previous template parameters (which are the ones
5252 that will really count) with the new default value. */
5253 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5254 else if (tmpl_default != NULL_TREE)
5255 /* Update the new parameters, too; they'll be used as the
5256 parameters for any members. */
5257 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5260 return true;
5263 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5264 to be used when the caller has already checked
5265 (processing_template_decl
5266 && !instantiation_dependent_expression_p (expr)
5267 && potential_constant_expression (expr))
5268 and cleared processing_template_decl. */
5270 tree
5271 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5273 return tsubst_copy_and_build (expr,
5274 /*args=*/NULL_TREE,
5275 complain,
5276 /*in_decl=*/NULL_TREE,
5277 /*function_p=*/false,
5278 /*integral_constant_expression_p=*/true);
5281 /* Simplify EXPR if it is a non-dependent expression. Returns the
5282 (possibly simplified) expression. */
5284 tree
5285 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5287 if (expr == NULL_TREE)
5288 return NULL_TREE;
5290 /* If we're in a template, but EXPR isn't value dependent, simplify
5291 it. We're supposed to treat:
5293 template <typename T> void f(T[1 + 1]);
5294 template <typename T> void f(T[2]);
5296 as two declarations of the same function, for example. */
5297 if (processing_template_decl
5298 && !instantiation_dependent_expression_p (expr)
5299 && potential_constant_expression (expr))
5301 processing_template_decl_sentinel s;
5302 expr = instantiate_non_dependent_expr_internal (expr, complain);
5304 return expr;
5307 tree
5308 instantiate_non_dependent_expr (tree expr)
5310 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5313 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5314 template declaration, or a TYPE_DECL for an alias declaration. */
5316 bool
5317 alias_type_or_template_p (tree t)
5319 if (t == NULL_TREE)
5320 return false;
5321 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5322 || (TYPE_P (t)
5323 && TYPE_NAME (t)
5324 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5325 || DECL_ALIAS_TEMPLATE_P (t));
5328 /* Return TRUE iff T is a specialization of an alias template. */
5330 bool
5331 alias_template_specialization_p (const_tree t)
5333 /* It's an alias template specialization if it's an alias and its
5334 TYPE_NAME is a specialization of a primary template. */
5335 if (TYPE_ALIAS_P (t))
5337 tree name = TYPE_NAME (t);
5338 if (DECL_LANG_SPECIFIC (name))
5339 if (tree ti = DECL_TEMPLATE_INFO (name))
5341 tree tmpl = TI_TEMPLATE (ti);
5342 return PRIMARY_TEMPLATE_P (tmpl);
5345 return false;
5348 /* Return TRUE iff T is a specialization of an alias template with
5349 dependent template-arguments. */
5351 bool
5352 dependent_alias_template_spec_p (const_tree t)
5354 return (alias_template_specialization_p (t)
5355 && (any_dependent_template_arguments_p
5356 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5359 /* Return the number of innermost template parameters in TMPL. */
5361 static int
5362 num_innermost_template_parms (tree tmpl)
5364 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5365 return TREE_VEC_LENGTH (parms);
5368 /* Return either TMPL or another template that it is equivalent to under DR
5369 1286: An alias that just changes the name of a template is equivalent to
5370 the other template. */
5372 static tree
5373 get_underlying_template (tree tmpl)
5375 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5376 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5378 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5379 if (TYPE_TEMPLATE_INFO (result))
5381 tree sub = TYPE_TI_TEMPLATE (result);
5382 if (PRIMARY_TEMPLATE_P (sub)
5383 && (num_innermost_template_parms (tmpl)
5384 == num_innermost_template_parms (sub)))
5386 tree alias_args = INNERMOST_TEMPLATE_ARGS
5387 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5388 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5389 break;
5390 /* The alias type is equivalent to the pattern of the
5391 underlying template, so strip the alias. */
5392 tmpl = sub;
5393 continue;
5396 break;
5398 return tmpl;
5401 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5402 must be a function or a pointer-to-function type, as specified
5403 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5404 and check that the resulting function has external linkage. */
5406 static tree
5407 convert_nontype_argument_function (tree type, tree expr,
5408 tsubst_flags_t complain)
5410 tree fns = expr;
5411 tree fn, fn_no_ptr;
5412 linkage_kind linkage;
5414 fn = instantiate_type (type, fns, tf_none);
5415 if (fn == error_mark_node)
5416 return error_mark_node;
5418 fn_no_ptr = fn;
5419 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5420 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5421 if (BASELINK_P (fn_no_ptr))
5422 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5424 /* [temp.arg.nontype]/1
5426 A template-argument for a non-type, non-template template-parameter
5427 shall be one of:
5428 [...]
5429 -- the address of an object or function with external [C++11: or
5430 internal] linkage. */
5432 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5434 if (complain & tf_error)
5436 error ("%qE is not a valid template argument for type %qT",
5437 expr, type);
5438 if (TYPE_PTR_P (type))
5439 error ("it must be the address of a function with "
5440 "external linkage");
5441 else
5442 error ("it must be the name of a function with "
5443 "external linkage");
5445 return NULL_TREE;
5448 linkage = decl_linkage (fn_no_ptr);
5449 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5451 if (complain & tf_error)
5453 if (cxx_dialect >= cxx11)
5454 error ("%qE is not a valid template argument for type %qT "
5455 "because %qD has no linkage",
5456 expr, type, fn_no_ptr);
5457 else
5458 error ("%qE is not a valid template argument for type %qT "
5459 "because %qD does not have external linkage",
5460 expr, type, fn_no_ptr);
5462 return NULL_TREE;
5465 return fn;
5468 /* Subroutine of convert_nontype_argument.
5469 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5470 Emit an error otherwise. */
5472 static bool
5473 check_valid_ptrmem_cst_expr (tree type, tree expr,
5474 tsubst_flags_t complain)
5476 STRIP_NOPS (expr);
5477 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5478 return true;
5479 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5480 return true;
5481 if (processing_template_decl
5482 && TREE_CODE (expr) == ADDR_EXPR
5483 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5484 return true;
5485 if (complain & tf_error)
5487 error ("%qE is not a valid template argument for type %qT",
5488 expr, type);
5489 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5491 return false;
5494 /* Returns TRUE iff the address of OP is value-dependent.
5496 14.6.2.4 [temp.dep.temp]:
5497 A non-integral non-type template-argument is dependent if its type is
5498 dependent or it has either of the following forms
5499 qualified-id
5500 & qualified-id
5501 and contains a nested-name-specifier which specifies a class-name that
5502 names a dependent type.
5504 We generalize this to just say that the address of a member of a
5505 dependent class is value-dependent; the above doesn't cover the
5506 address of a static data member named with an unqualified-id. */
5508 static bool
5509 has_value_dependent_address (tree op)
5511 /* We could use get_inner_reference here, but there's no need;
5512 this is only relevant for template non-type arguments, which
5513 can only be expressed as &id-expression. */
5514 if (DECL_P (op))
5516 tree ctx = CP_DECL_CONTEXT (op);
5517 if (TYPE_P (ctx) && dependent_type_p (ctx))
5518 return true;
5521 return false;
5524 /* The next set of functions are used for providing helpful explanatory
5525 diagnostics for failed overload resolution. Their messages should be
5526 indented by two spaces for consistency with the messages in
5527 call.c */
5529 static int
5530 unify_success (bool /*explain_p*/)
5532 return 0;
5535 static int
5536 unify_parameter_deduction_failure (bool explain_p, tree parm)
5538 if (explain_p)
5539 inform (input_location,
5540 " couldn't deduce template parameter %qD", parm);
5541 return 1;
5544 static int
5545 unify_invalid (bool /*explain_p*/)
5547 return 1;
5550 static int
5551 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5553 if (explain_p)
5554 inform (input_location,
5555 " types %qT and %qT have incompatible cv-qualifiers",
5556 parm, arg);
5557 return 1;
5560 static int
5561 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5563 if (explain_p)
5564 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5565 return 1;
5568 static int
5569 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5571 if (explain_p)
5572 inform (input_location,
5573 " template parameter %qD is not a parameter pack, but "
5574 "argument %qD is",
5575 parm, arg);
5576 return 1;
5579 static int
5580 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5582 if (explain_p)
5583 inform (input_location,
5584 " template argument %qE does not match "
5585 "pointer-to-member constant %qE",
5586 arg, parm);
5587 return 1;
5590 static int
5591 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5593 if (explain_p)
5594 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5595 return 1;
5598 static int
5599 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5601 if (explain_p)
5602 inform (input_location,
5603 " inconsistent parameter pack deduction with %qT and %qT",
5604 old_arg, new_arg);
5605 return 1;
5608 static int
5609 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5611 if (explain_p)
5613 if (TYPE_P (parm))
5614 inform (input_location,
5615 " deduced conflicting types for parameter %qT (%qT and %qT)",
5616 parm, first, second);
5617 else
5618 inform (input_location,
5619 " deduced conflicting values for non-type parameter "
5620 "%qE (%qE and %qE)", parm, first, second);
5622 return 1;
5625 static int
5626 unify_vla_arg (bool explain_p, tree arg)
5628 if (explain_p)
5629 inform (input_location,
5630 " variable-sized array type %qT is not "
5631 "a valid template argument",
5632 arg);
5633 return 1;
5636 static int
5637 unify_method_type_error (bool explain_p, tree arg)
5639 if (explain_p)
5640 inform (input_location,
5641 " member function type %qT is not a valid template argument",
5642 arg);
5643 return 1;
5646 static int
5647 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
5649 if (explain_p)
5651 if (least_p)
5652 inform_n (input_location, wanted,
5653 " candidate expects at least %d argument, %d provided",
5654 " candidate expects at least %d arguments, %d provided",
5655 wanted, have);
5656 else
5657 inform_n (input_location, wanted,
5658 " candidate expects %d argument, %d provided",
5659 " candidate expects %d arguments, %d provided",
5660 wanted, have);
5662 return 1;
5665 static int
5666 unify_too_many_arguments (bool explain_p, int have, int wanted)
5668 return unify_arity (explain_p, have, wanted);
5671 static int
5672 unify_too_few_arguments (bool explain_p, int have, int wanted,
5673 bool least_p = false)
5675 return unify_arity (explain_p, have, wanted, least_p);
5678 static int
5679 unify_arg_conversion (bool explain_p, tree to_type,
5680 tree from_type, tree arg)
5682 if (explain_p)
5683 inform (EXPR_LOC_OR_LOC (arg, input_location),
5684 " cannot convert %qE (type %qT) to type %qT",
5685 arg, from_type, to_type);
5686 return 1;
5689 static int
5690 unify_no_common_base (bool explain_p, enum template_base_result r,
5691 tree parm, tree arg)
5693 if (explain_p)
5694 switch (r)
5696 case tbr_ambiguous_baseclass:
5697 inform (input_location, " %qT is an ambiguous base class of %qT",
5698 parm, arg);
5699 break;
5700 default:
5701 inform (input_location, " %qT is not derived from %qT", arg, parm);
5702 break;
5704 return 1;
5707 static int
5708 unify_inconsistent_template_template_parameters (bool explain_p)
5710 if (explain_p)
5711 inform (input_location,
5712 " template parameters of a template template argument are "
5713 "inconsistent with other deduced template arguments");
5714 return 1;
5717 static int
5718 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5720 if (explain_p)
5721 inform (input_location,
5722 " can't deduce a template for %qT from non-template type %qT",
5723 parm, arg);
5724 return 1;
5727 static int
5728 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5730 if (explain_p)
5731 inform (input_location,
5732 " template argument %qE does not match %qD", arg, parm);
5733 return 1;
5736 static int
5737 unify_overload_resolution_failure (bool explain_p, tree arg)
5739 if (explain_p)
5740 inform (input_location,
5741 " could not resolve address from overloaded function %qE",
5742 arg);
5743 return 1;
5746 /* Attempt to convert the non-type template parameter EXPR to the
5747 indicated TYPE. If the conversion is successful, return the
5748 converted value. If the conversion is unsuccessful, return
5749 NULL_TREE if we issued an error message, or error_mark_node if we
5750 did not. We issue error messages for out-and-out bad template
5751 parameters, but not simply because the conversion failed, since we
5752 might be just trying to do argument deduction. Both TYPE and EXPR
5753 must be non-dependent.
5755 The conversion follows the special rules described in
5756 [temp.arg.nontype], and it is much more strict than an implicit
5757 conversion.
5759 This function is called twice for each template argument (see
5760 lookup_template_class for a more accurate description of this
5761 problem). This means that we need to handle expressions which
5762 are not valid in a C++ source, but can be created from the
5763 first call (for instance, casts to perform conversions). These
5764 hacks can go away after we fix the double coercion problem. */
5766 static tree
5767 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5769 tree expr_type;
5771 /* Detect immediately string literals as invalid non-type argument.
5772 This special-case is not needed for correctness (we would easily
5773 catch this later), but only to provide better diagnostic for this
5774 common user mistake. As suggested by DR 100, we do not mention
5775 linkage issues in the diagnostic as this is not the point. */
5776 /* FIXME we're making this OK. */
5777 if (TREE_CODE (expr) == STRING_CST)
5779 if (complain & tf_error)
5780 error ("%qE is not a valid template argument for type %qT "
5781 "because string literals can never be used in this context",
5782 expr, type);
5783 return NULL_TREE;
5786 /* Add the ADDR_EXPR now for the benefit of
5787 value_dependent_expression_p. */
5788 if (TYPE_PTROBV_P (type)
5789 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5791 expr = decay_conversion (expr, complain);
5792 if (expr == error_mark_node)
5793 return error_mark_node;
5796 /* If we are in a template, EXPR may be non-dependent, but still
5797 have a syntactic, rather than semantic, form. For example, EXPR
5798 might be a SCOPE_REF, rather than the VAR_DECL to which the
5799 SCOPE_REF refers. Preserving the qualifying scope is necessary
5800 so that access checking can be performed when the template is
5801 instantiated -- but here we need the resolved form so that we can
5802 convert the argument. */
5803 bool non_dep = false;
5804 if (TYPE_REF_OBJ_P (type)
5805 && has_value_dependent_address (expr))
5806 /* If we want the address and it's value-dependent, don't fold. */;
5807 else if (!type_unknown_p (expr)
5808 && processing_template_decl
5809 && !instantiation_dependent_expression_p (expr)
5810 && potential_constant_expression (expr))
5811 non_dep = true;
5812 if (error_operand_p (expr))
5813 return error_mark_node;
5814 expr_type = TREE_TYPE (expr);
5815 if (TREE_CODE (type) == REFERENCE_TYPE)
5816 expr = mark_lvalue_use (expr);
5817 else
5818 expr = mark_rvalue_use (expr);
5820 /* If the argument is non-dependent, perform any conversions in
5821 non-dependent context as well. */
5822 processing_template_decl_sentinel s (non_dep);
5823 if (non_dep)
5824 expr = instantiate_non_dependent_expr_internal (expr, complain);
5826 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5827 to a non-type argument of "nullptr". */
5828 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5829 expr = convert (type, expr);
5831 /* In C++11, integral or enumeration non-type template arguments can be
5832 arbitrary constant expressions. Pointer and pointer to
5833 member arguments can be general constant expressions that evaluate
5834 to a null value, but otherwise still need to be of a specific form. */
5835 if (cxx_dialect >= cxx11)
5837 if (TREE_CODE (expr) == PTRMEM_CST)
5838 /* A PTRMEM_CST is already constant, and a valid template
5839 argument for a parameter of pointer to member type, we just want
5840 to leave it in that form rather than lower it to a
5841 CONSTRUCTOR. */;
5842 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5843 expr = maybe_constant_value (expr);
5844 else if (TYPE_PTR_OR_PTRMEM_P (type))
5846 tree folded = maybe_constant_value (expr);
5847 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5848 : null_member_pointer_value_p (folded))
5849 expr = folded;
5853 /* HACK: Due to double coercion, we can get a
5854 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5855 which is the tree that we built on the first call (see
5856 below when coercing to reference to object or to reference to
5857 function). We just strip everything and get to the arg.
5858 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5859 for examples. */
5860 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5862 tree probe_type, probe = expr;
5863 if (REFERENCE_REF_P (probe))
5864 probe = TREE_OPERAND (probe, 0);
5865 probe_type = TREE_TYPE (probe);
5866 if (TREE_CODE (probe) == NOP_EXPR)
5868 /* ??? Maybe we could use convert_from_reference here, but we
5869 would need to relax its constraints because the NOP_EXPR
5870 could actually change the type to something more cv-qualified,
5871 and this is not folded by convert_from_reference. */
5872 tree addr = TREE_OPERAND (probe, 0);
5873 if (TREE_CODE (probe_type) == REFERENCE_TYPE
5874 && TREE_CODE (addr) == ADDR_EXPR
5875 && TYPE_PTR_P (TREE_TYPE (addr))
5876 && (same_type_ignoring_top_level_qualifiers_p
5877 (TREE_TYPE (probe_type),
5878 TREE_TYPE (TREE_TYPE (addr)))))
5880 expr = TREE_OPERAND (addr, 0);
5881 expr_type = TREE_TYPE (probe_type);
5886 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5887 parameter is a pointer to object, through decay and
5888 qualification conversion. Let's strip everything. */
5889 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5891 tree probe = expr;
5892 STRIP_NOPS (probe);
5893 if (TREE_CODE (probe) == ADDR_EXPR
5894 && TYPE_PTR_P (TREE_TYPE (probe)))
5896 /* Skip the ADDR_EXPR only if it is part of the decay for
5897 an array. Otherwise, it is part of the original argument
5898 in the source code. */
5899 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
5900 probe = TREE_OPERAND (probe, 0);
5901 expr = probe;
5902 expr_type = TREE_TYPE (expr);
5906 /* [temp.arg.nontype]/5, bullet 1
5908 For a non-type template-parameter of integral or enumeration type,
5909 integral promotions (_conv.prom_) and integral conversions
5910 (_conv.integral_) are applied. */
5911 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5913 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5914 t = maybe_constant_value (t);
5915 if (t != error_mark_node)
5916 expr = t;
5918 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5919 return error_mark_node;
5921 /* Notice that there are constant expressions like '4 % 0' which
5922 do not fold into integer constants. */
5923 if (TREE_CODE (expr) != INTEGER_CST)
5925 if (complain & tf_error)
5927 int errs = errorcount, warns = warningcount + werrorcount;
5928 if (processing_template_decl
5929 && !require_potential_constant_expression (expr))
5930 return NULL_TREE;
5931 expr = cxx_constant_value (expr);
5932 if (errorcount > errs || warningcount + werrorcount > warns)
5933 inform (EXPR_LOC_OR_LOC (expr, input_location),
5934 "in template argument for type %qT ", type);
5935 if (expr == error_mark_node)
5936 return NULL_TREE;
5937 /* else cxx_constant_value complained but gave us
5938 a real constant, so go ahead. */
5939 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5941 else
5942 return NULL_TREE;
5945 /* Avoid typedef problems. */
5946 if (TREE_TYPE (expr) != type)
5947 expr = fold_convert (type, expr);
5949 /* [temp.arg.nontype]/5, bullet 2
5951 For a non-type template-parameter of type pointer to object,
5952 qualification conversions (_conv.qual_) and the array-to-pointer
5953 conversion (_conv.array_) are applied. */
5954 else if (TYPE_PTROBV_P (type))
5956 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5958 A template-argument for a non-type, non-template template-parameter
5959 shall be one of: [...]
5961 -- the name of a non-type template-parameter;
5962 -- the address of an object or function with external linkage, [...]
5963 expressed as "& id-expression" where the & is optional if the name
5964 refers to a function or array, or if the corresponding
5965 template-parameter is a reference.
5967 Here, we do not care about functions, as they are invalid anyway
5968 for a parameter of type pointer-to-object. */
5970 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5971 /* Non-type template parameters are OK. */
5973 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
5974 /* Null pointer values are OK in C++11. */;
5975 else if (TREE_CODE (expr) != ADDR_EXPR
5976 && TREE_CODE (expr_type) != ARRAY_TYPE)
5978 if (VAR_P (expr))
5980 if (complain & tf_error)
5981 error ("%qD is not a valid template argument "
5982 "because %qD is a variable, not the address of "
5983 "a variable", expr, expr);
5984 return NULL_TREE;
5986 if (POINTER_TYPE_P (expr_type))
5988 if (complain & tf_error)
5989 error ("%qE is not a valid template argument for %qT "
5990 "because it is not the address of a variable",
5991 expr, type);
5992 return NULL_TREE;
5994 /* Other values, like integer constants, might be valid
5995 non-type arguments of some other type. */
5996 return error_mark_node;
5998 else
6000 tree decl;
6002 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6003 ? TREE_OPERAND (expr, 0) : expr);
6004 if (!VAR_P (decl))
6006 if (complain & tf_error)
6007 error ("%qE is not a valid template argument of type %qT "
6008 "because %qE is not a variable", expr, type, decl);
6009 return NULL_TREE;
6011 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6013 if (complain & tf_error)
6014 error ("%qE is not a valid template argument of type %qT "
6015 "because %qD does not have external linkage",
6016 expr, type, decl);
6017 return NULL_TREE;
6019 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6021 if (complain & tf_error)
6022 error ("%qE is not a valid template argument of type %qT "
6023 "because %qD has no linkage", expr, type, decl);
6024 return NULL_TREE;
6028 expr = decay_conversion (expr, complain);
6029 if (expr == error_mark_node)
6030 return error_mark_node;
6032 expr = perform_qualification_conversions (type, expr);
6033 if (expr == error_mark_node)
6034 return error_mark_node;
6036 /* [temp.arg.nontype]/5, bullet 3
6038 For a non-type template-parameter of type reference to object, no
6039 conversions apply. The type referred to by the reference may be more
6040 cv-qualified than the (otherwise identical) type of the
6041 template-argument. The template-parameter is bound directly to the
6042 template-argument, which must be an lvalue. */
6043 else if (TYPE_REF_OBJ_P (type))
6045 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6046 expr_type))
6047 return error_mark_node;
6049 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6051 if (complain & tf_error)
6052 error ("%qE is not a valid template argument for type %qT "
6053 "because of conflicts in cv-qualification", expr, type);
6054 return NULL_TREE;
6057 if (!real_lvalue_p (expr))
6059 if (complain & tf_error)
6060 error ("%qE is not a valid template argument for type %qT "
6061 "because it is not an lvalue", expr, type);
6062 return NULL_TREE;
6065 /* [temp.arg.nontype]/1
6067 A template-argument for a non-type, non-template template-parameter
6068 shall be one of: [...]
6070 -- the address of an object or function with external linkage. */
6071 if (INDIRECT_REF_P (expr)
6072 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6074 expr = TREE_OPERAND (expr, 0);
6075 if (DECL_P (expr))
6077 if (complain & tf_error)
6078 error ("%q#D is not a valid template argument for type %qT "
6079 "because a reference variable does not have a constant "
6080 "address", expr, type);
6081 return NULL_TREE;
6085 if (!DECL_P (expr))
6087 if (complain & tf_error)
6088 error ("%qE is not a valid template argument for type %qT "
6089 "because it is not an object with external linkage",
6090 expr, type);
6091 return NULL_TREE;
6094 if (!DECL_EXTERNAL_LINKAGE_P (expr))
6096 if (complain & tf_error)
6097 error ("%qE is not a valid template argument for type %qT "
6098 "because object %qD has not external linkage",
6099 expr, type, expr);
6100 return NULL_TREE;
6103 expr = build_nop (type, build_address (expr));
6105 /* [temp.arg.nontype]/5, bullet 4
6107 For a non-type template-parameter of type pointer to function, only
6108 the function-to-pointer conversion (_conv.func_) is applied. If the
6109 template-argument represents a set of overloaded functions (or a
6110 pointer to such), the matching function is selected from the set
6111 (_over.over_). */
6112 else if (TYPE_PTRFN_P (type))
6114 /* If the argument is a template-id, we might not have enough
6115 context information to decay the pointer. */
6116 if (!type_unknown_p (expr_type))
6118 expr = decay_conversion (expr, complain);
6119 if (expr == error_mark_node)
6120 return error_mark_node;
6123 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6124 /* Null pointer values are OK in C++11. */
6125 return perform_qualification_conversions (type, expr);
6127 expr = convert_nontype_argument_function (type, expr, complain);
6128 if (!expr || expr == error_mark_node)
6129 return expr;
6131 /* [temp.arg.nontype]/5, bullet 5
6133 For a non-type template-parameter of type reference to function, no
6134 conversions apply. If the template-argument represents a set of
6135 overloaded functions, the matching function is selected from the set
6136 (_over.over_). */
6137 else if (TYPE_REFFN_P (type))
6139 if (TREE_CODE (expr) == ADDR_EXPR)
6141 if (complain & tf_error)
6143 error ("%qE is not a valid template argument for type %qT "
6144 "because it is a pointer", expr, type);
6145 inform (input_location, "try using %qE instead",
6146 TREE_OPERAND (expr, 0));
6148 return NULL_TREE;
6151 expr = convert_nontype_argument_function (type, expr, complain);
6152 if (!expr || expr == error_mark_node)
6153 return expr;
6155 expr = build_nop (type, build_address (expr));
6157 /* [temp.arg.nontype]/5, bullet 6
6159 For a non-type template-parameter of type pointer to member function,
6160 no conversions apply. If the template-argument represents a set of
6161 overloaded member functions, the matching member function is selected
6162 from the set (_over.over_). */
6163 else if (TYPE_PTRMEMFUNC_P (type))
6165 expr = instantiate_type (type, expr, tf_none);
6166 if (expr == error_mark_node)
6167 return error_mark_node;
6169 /* [temp.arg.nontype] bullet 1 says the pointer to member
6170 expression must be a pointer-to-member constant. */
6171 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6172 return error_mark_node;
6174 /* There is no way to disable standard conversions in
6175 resolve_address_of_overloaded_function (called by
6176 instantiate_type). It is possible that the call succeeded by
6177 converting &B::I to &D::I (where B is a base of D), so we need
6178 to reject this conversion here.
6180 Actually, even if there was a way to disable standard conversions,
6181 it would still be better to reject them here so that we can
6182 provide a superior diagnostic. */
6183 if (!same_type_p (TREE_TYPE (expr), type))
6185 if (complain & tf_error)
6187 error ("%qE is not a valid template argument for type %qT "
6188 "because it is of type %qT", expr, type,
6189 TREE_TYPE (expr));
6190 /* If we are just one standard conversion off, explain. */
6191 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6192 inform (input_location,
6193 "standard conversions are not allowed in this context");
6195 return NULL_TREE;
6198 /* [temp.arg.nontype]/5, bullet 7
6200 For a non-type template-parameter of type pointer to data member,
6201 qualification conversions (_conv.qual_) are applied. */
6202 else if (TYPE_PTRDATAMEM_P (type))
6204 /* [temp.arg.nontype] bullet 1 says the pointer to member
6205 expression must be a pointer-to-member constant. */
6206 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6207 return error_mark_node;
6209 expr = perform_qualification_conversions (type, expr);
6210 if (expr == error_mark_node)
6211 return expr;
6213 else if (NULLPTR_TYPE_P (type))
6215 if (expr != nullptr_node)
6217 if (complain & tf_error)
6218 error ("%qE is not a valid template argument for type %qT "
6219 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6220 return NULL_TREE;
6222 return expr;
6224 /* A template non-type parameter must be one of the above. */
6225 else
6226 gcc_unreachable ();
6228 /* Sanity check: did we actually convert the argument to the
6229 right type? */
6230 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6231 (type, TREE_TYPE (expr)));
6232 return convert_from_reference (expr);
6235 /* Subroutine of coerce_template_template_parms, which returns 1 if
6236 PARM_PARM and ARG_PARM match using the rule for the template
6237 parameters of template template parameters. Both PARM and ARG are
6238 template parameters; the rest of the arguments are the same as for
6239 coerce_template_template_parms.
6241 static int
6242 coerce_template_template_parm (tree parm,
6243 tree arg,
6244 tsubst_flags_t complain,
6245 tree in_decl,
6246 tree outer_args)
6248 if (arg == NULL_TREE || error_operand_p (arg)
6249 || parm == NULL_TREE || error_operand_p (parm))
6250 return 0;
6252 if (TREE_CODE (arg) != TREE_CODE (parm))
6253 return 0;
6255 switch (TREE_CODE (parm))
6257 case TEMPLATE_DECL:
6258 /* We encounter instantiations of templates like
6259 template <template <template <class> class> class TT>
6260 class C; */
6262 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6263 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6265 if (!coerce_template_template_parms
6266 (parmparm, argparm, complain, in_decl, outer_args))
6267 return 0;
6269 /* Fall through. */
6271 case TYPE_DECL:
6272 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6273 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6274 /* Argument is a parameter pack but parameter is not. */
6275 return 0;
6276 break;
6278 case PARM_DECL:
6279 /* The tsubst call is used to handle cases such as
6281 template <int> class C {};
6282 template <class T, template <T> class TT> class D {};
6283 D<int, C> d;
6285 i.e. the parameter list of TT depends on earlier parameters. */
6286 if (!uses_template_parms (TREE_TYPE (arg))
6287 && !same_type_p
6288 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
6289 TREE_TYPE (arg)))
6290 return 0;
6292 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6293 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6294 /* Argument is a parameter pack but parameter is not. */
6295 return 0;
6297 break;
6299 default:
6300 gcc_unreachable ();
6303 return 1;
6307 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6308 template template parameters. Both PARM_PARMS and ARG_PARMS are
6309 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6310 or PARM_DECL.
6312 Consider the example:
6313 template <class T> class A;
6314 template<template <class U> class TT> class B;
6316 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6317 the parameters to A, and OUTER_ARGS contains A. */
6319 static int
6320 coerce_template_template_parms (tree parm_parms,
6321 tree arg_parms,
6322 tsubst_flags_t complain,
6323 tree in_decl,
6324 tree outer_args)
6326 int nparms, nargs, i;
6327 tree parm, arg;
6328 int variadic_p = 0;
6330 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6331 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6333 nparms = TREE_VEC_LENGTH (parm_parms);
6334 nargs = TREE_VEC_LENGTH (arg_parms);
6336 /* Determine whether we have a parameter pack at the end of the
6337 template template parameter's template parameter list. */
6338 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6340 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6342 if (error_operand_p (parm))
6343 return 0;
6345 switch (TREE_CODE (parm))
6347 case TEMPLATE_DECL:
6348 case TYPE_DECL:
6349 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6350 variadic_p = 1;
6351 break;
6353 case PARM_DECL:
6354 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6355 variadic_p = 1;
6356 break;
6358 default:
6359 gcc_unreachable ();
6363 if (nargs != nparms
6364 && !(variadic_p && nargs >= nparms - 1))
6365 return 0;
6367 /* Check all of the template parameters except the parameter pack at
6368 the end (if any). */
6369 for (i = 0; i < nparms - variadic_p; ++i)
6371 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6372 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6373 continue;
6375 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
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 if (variadic_p)
6386 /* Check each of the template parameters in the template
6387 argument against the template parameter pack at the end of
6388 the template template parameter. */
6389 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6390 return 0;
6392 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6394 for (; i < nargs; ++i)
6396 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6397 continue;
6399 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6401 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6402 outer_args))
6403 return 0;
6407 return 1;
6410 /* Verifies that the deduced template arguments (in TARGS) for the
6411 template template parameters (in TPARMS) represent valid bindings,
6412 by comparing the template parameter list of each template argument
6413 to the template parameter list of its corresponding template
6414 template parameter, in accordance with DR150. This
6415 routine can only be called after all template arguments have been
6416 deduced. It will return TRUE if all of the template template
6417 parameter bindings are okay, FALSE otherwise. */
6418 bool
6419 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6421 int i, ntparms = TREE_VEC_LENGTH (tparms);
6422 bool ret = true;
6424 /* We're dealing with template parms in this process. */
6425 ++processing_template_decl;
6427 targs = INNERMOST_TEMPLATE_ARGS (targs);
6429 for (i = 0; i < ntparms; ++i)
6431 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6432 tree targ = TREE_VEC_ELT (targs, i);
6434 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6436 tree packed_args = NULL_TREE;
6437 int idx, len = 1;
6439 if (ARGUMENT_PACK_P (targ))
6441 /* Look inside the argument pack. */
6442 packed_args = ARGUMENT_PACK_ARGS (targ);
6443 len = TREE_VEC_LENGTH (packed_args);
6446 for (idx = 0; idx < len; ++idx)
6448 tree targ_parms = NULL_TREE;
6450 if (packed_args)
6451 /* Extract the next argument from the argument
6452 pack. */
6453 targ = TREE_VEC_ELT (packed_args, idx);
6455 if (PACK_EXPANSION_P (targ))
6456 /* Look at the pattern of the pack expansion. */
6457 targ = PACK_EXPANSION_PATTERN (targ);
6459 /* Extract the template parameters from the template
6460 argument. */
6461 if (TREE_CODE (targ) == TEMPLATE_DECL)
6462 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6463 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6464 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6466 /* Verify that we can coerce the template template
6467 parameters from the template argument to the template
6468 parameter. This requires an exact match. */
6469 if (targ_parms
6470 && !coerce_template_template_parms
6471 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6472 targ_parms,
6473 tf_none,
6474 tparm,
6475 targs))
6477 ret = false;
6478 goto out;
6484 out:
6486 --processing_template_decl;
6487 return ret;
6490 /* Since type attributes aren't mangled, we need to strip them from
6491 template type arguments. */
6493 static tree
6494 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6496 tree mv;
6497 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6498 return arg;
6499 mv = TYPE_MAIN_VARIANT (arg);
6500 arg = strip_typedefs (arg);
6501 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6502 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6504 if (complain & tf_warning)
6505 warning (0, "ignoring attributes on template argument %qT", arg);
6506 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6507 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6509 return arg;
6512 /* Convert the indicated template ARG as necessary to match the
6513 indicated template PARM. Returns the converted ARG, or
6514 error_mark_node if the conversion was unsuccessful. Error and
6515 warning messages are issued under control of COMPLAIN. This
6516 conversion is for the Ith parameter in the parameter list. ARGS is
6517 the full set of template arguments deduced so far. */
6519 static tree
6520 convert_template_argument (tree parm,
6521 tree arg,
6522 tree args,
6523 tsubst_flags_t complain,
6524 int i,
6525 tree in_decl)
6527 tree orig_arg;
6528 tree val;
6529 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6531 if (parm == error_mark_node)
6532 return error_mark_node;
6534 if (TREE_CODE (arg) == TREE_LIST
6535 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6537 /* The template argument was the name of some
6538 member function. That's usually
6539 invalid, but static members are OK. In any
6540 case, grab the underlying fields/functions
6541 and issue an error later if required. */
6542 orig_arg = TREE_VALUE (arg);
6543 TREE_TYPE (arg) = unknown_type_node;
6546 orig_arg = arg;
6548 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6549 requires_type = (TREE_CODE (parm) == TYPE_DECL
6550 || requires_tmpl_type);
6552 /* When determining whether an argument pack expansion is a template,
6553 look at the pattern. */
6554 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6555 arg = PACK_EXPANSION_PATTERN (arg);
6557 /* Deal with an injected-class-name used as a template template arg. */
6558 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6560 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6561 if (TREE_CODE (t) == TEMPLATE_DECL)
6563 if (cxx_dialect >= cxx11)
6564 /* OK under DR 1004. */;
6565 else if (complain & tf_warning_or_error)
6566 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6567 " used as template template argument", TYPE_NAME (arg));
6568 else if (flag_pedantic_errors)
6569 t = arg;
6571 arg = t;
6575 is_tmpl_type =
6576 ((TREE_CODE (arg) == TEMPLATE_DECL
6577 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6578 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6579 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6580 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6582 if (is_tmpl_type
6583 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6584 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6585 arg = TYPE_STUB_DECL (arg);
6587 is_type = TYPE_P (arg) || is_tmpl_type;
6589 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6590 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6592 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6594 if (complain & tf_error)
6595 error ("invalid use of destructor %qE as a type", orig_arg);
6596 return error_mark_node;
6599 permerror (input_location,
6600 "to refer to a type member of a template parameter, "
6601 "use %<typename %E%>", orig_arg);
6603 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6604 TREE_OPERAND (arg, 1),
6605 typename_type,
6606 complain);
6607 arg = orig_arg;
6608 is_type = 1;
6610 if (is_type != requires_type)
6612 if (in_decl)
6614 if (complain & tf_error)
6616 error ("type/value mismatch at argument %d in template "
6617 "parameter list for %qD",
6618 i + 1, in_decl);
6619 if (is_type)
6620 inform (input_location,
6621 " expected a constant of type %qT, got %qT",
6622 TREE_TYPE (parm),
6623 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6624 else if (requires_tmpl_type)
6625 inform (input_location,
6626 " expected a class template, got %qE", orig_arg);
6627 else
6628 inform (input_location,
6629 " expected a type, got %qE", orig_arg);
6632 return error_mark_node;
6634 if (is_tmpl_type ^ requires_tmpl_type)
6636 if (in_decl && (complain & tf_error))
6638 error ("type/value mismatch at argument %d in template "
6639 "parameter list for %qD",
6640 i + 1, in_decl);
6641 if (is_tmpl_type)
6642 inform (input_location,
6643 " expected a type, got %qT", DECL_NAME (arg));
6644 else
6645 inform (input_location,
6646 " expected a class template, got %qT", orig_arg);
6648 return error_mark_node;
6651 if (is_type)
6653 if (requires_tmpl_type)
6655 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6656 val = orig_arg;
6657 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6658 /* The number of argument required is not known yet.
6659 Just accept it for now. */
6660 val = TREE_TYPE (arg);
6661 else
6663 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6664 tree argparm;
6666 /* Strip alias templates that are equivalent to another
6667 template. */
6668 arg = get_underlying_template (arg);
6669 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6671 if (coerce_template_template_parms (parmparm, argparm,
6672 complain, in_decl,
6673 args))
6675 val = arg;
6677 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6678 TEMPLATE_DECL. */
6679 if (val != error_mark_node)
6681 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6682 val = TREE_TYPE (val);
6683 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6684 val = make_pack_expansion (val);
6687 else
6689 if (in_decl && (complain & tf_error))
6691 error ("type/value mismatch at argument %d in "
6692 "template parameter list for %qD",
6693 i + 1, in_decl);
6694 inform (input_location,
6695 " expected a template of type %qD, got %qT",
6696 parm, orig_arg);
6699 val = error_mark_node;
6703 else
6704 val = orig_arg;
6705 /* We only form one instance of each template specialization.
6706 Therefore, if we use a non-canonical variant (i.e., a
6707 typedef), any future messages referring to the type will use
6708 the typedef, which is confusing if those future uses do not
6709 themselves also use the typedef. */
6710 if (TYPE_P (val))
6711 val = canonicalize_type_argument (val, complain);
6713 else
6715 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6717 if (invalid_nontype_parm_type_p (t, complain))
6718 return error_mark_node;
6720 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6722 if (same_type_p (t, TREE_TYPE (orig_arg)))
6723 val = orig_arg;
6724 else
6726 /* Not sure if this is reachable, but it doesn't hurt
6727 to be robust. */
6728 error ("type mismatch in nontype parameter pack");
6729 val = error_mark_node;
6732 else if (!dependent_template_arg_p (orig_arg)
6733 && !uses_template_parms (t))
6734 /* We used to call digest_init here. However, digest_init
6735 will report errors, which we don't want when complain
6736 is zero. More importantly, digest_init will try too
6737 hard to convert things: for example, `0' should not be
6738 converted to pointer type at this point according to
6739 the standard. Accepting this is not merely an
6740 extension, since deciding whether or not these
6741 conversions can occur is part of determining which
6742 function template to call, or whether a given explicit
6743 argument specification is valid. */
6744 val = convert_nontype_argument (t, orig_arg, complain);
6745 else
6746 val = strip_typedefs_expr (orig_arg);
6748 if (val == NULL_TREE)
6749 val = error_mark_node;
6750 else if (val == error_mark_node && (complain & tf_error))
6751 error ("could not convert template argument %qE to %qT", orig_arg, t);
6753 if (TREE_CODE (val) == SCOPE_REF)
6755 /* Strip typedefs from the SCOPE_REF. */
6756 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6757 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6758 complain);
6759 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6760 QUALIFIED_NAME_IS_TEMPLATE (val));
6764 return val;
6767 /* Coerces the remaining template arguments in INNER_ARGS (from
6768 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6769 Returns the coerced argument pack. PARM_IDX is the position of this
6770 parameter in the template parameter list. ARGS is the original
6771 template argument list. */
6772 static tree
6773 coerce_template_parameter_pack (tree parms,
6774 int parm_idx,
6775 tree args,
6776 tree inner_args,
6777 int arg_idx,
6778 tree new_args,
6779 int* lost,
6780 tree in_decl,
6781 tsubst_flags_t complain)
6783 tree parm = TREE_VEC_ELT (parms, parm_idx);
6784 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6785 tree packed_args;
6786 tree argument_pack;
6787 tree packed_parms = NULL_TREE;
6789 if (arg_idx > nargs)
6790 arg_idx = nargs;
6792 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
6794 /* When the template parameter is a non-type template parameter pack
6795 or template template parameter pack whose type or template
6796 parameters use parameter packs, we know exactly how many arguments
6797 we are looking for. Build a vector of the instantiated decls for
6798 these template parameters in PACKED_PARMS. */
6799 /* We can't use make_pack_expansion here because it would interpret a
6800 _DECL as a use rather than a declaration. */
6801 tree decl = TREE_VALUE (parm);
6802 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
6803 SET_PACK_EXPANSION_PATTERN (exp, decl);
6804 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
6805 SET_TYPE_STRUCTURAL_EQUALITY (exp);
6807 TREE_VEC_LENGTH (args)--;
6808 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
6809 TREE_VEC_LENGTH (args)++;
6811 if (packed_parms == error_mark_node)
6812 return error_mark_node;
6814 /* If we're doing a partial instantiation of a member template,
6815 verify that all of the types used for the non-type
6816 template parameter pack are, in fact, valid for non-type
6817 template parameters. */
6818 if (arg_idx < nargs
6819 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6821 int j, len = TREE_VEC_LENGTH (packed_parms);
6822 for (j = 0; j < len; ++j)
6824 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
6825 if (invalid_nontype_parm_type_p (t, complain))
6826 return error_mark_node;
6828 /* We don't know how many args we have yet, just
6829 use the unconverted ones for now. */
6830 return NULL_TREE;
6833 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
6835 else
6836 packed_args = make_tree_vec (nargs - arg_idx);
6838 /* Convert the remaining arguments, which will be a part of the
6839 parameter pack "parm". */
6840 for (; arg_idx < nargs; ++arg_idx)
6842 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6843 tree actual_parm = TREE_VALUE (parm);
6844 int pack_idx = arg_idx - parm_idx;
6846 if (packed_parms)
6848 /* Once we've packed as many args as we have types, stop. */
6849 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
6850 break;
6851 else if (PACK_EXPANSION_P (arg))
6852 /* We don't know how many args we have yet, just
6853 use the unconverted ones for now. */
6854 return NULL_TREE;
6855 else
6856 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
6859 if (arg == error_mark_node)
6861 if (complain & tf_error)
6862 error ("template argument %d is invalid", arg_idx + 1);
6864 else
6865 arg = convert_template_argument (actual_parm,
6866 arg, new_args, complain, parm_idx,
6867 in_decl);
6868 if (arg == error_mark_node)
6869 (*lost)++;
6870 TREE_VEC_ELT (packed_args, pack_idx) = arg;
6873 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
6874 && TREE_VEC_LENGTH (packed_args) > 0)
6876 if (complain & tf_error)
6877 error ("wrong number of template arguments (%d, should be %d)",
6878 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
6879 return error_mark_node;
6882 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6883 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6884 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6885 else
6887 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6888 TREE_TYPE (argument_pack)
6889 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6890 TREE_CONSTANT (argument_pack) = 1;
6893 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6894 #ifdef ENABLE_CHECKING
6895 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6896 TREE_VEC_LENGTH (packed_args));
6897 #endif
6898 return argument_pack;
6901 /* Returns the number of pack expansions in the template argument vector
6902 ARGS. */
6904 static int
6905 pack_expansion_args_count (tree args)
6907 int i;
6908 int count = 0;
6909 if (args)
6910 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6912 tree elt = TREE_VEC_ELT (args, i);
6913 if (elt && PACK_EXPANSION_P (elt))
6914 ++count;
6916 return count;
6919 /* Convert all template arguments to their appropriate types, and
6920 return a vector containing the innermost resulting template
6921 arguments. If any error occurs, return error_mark_node. Error and
6922 warning messages are issued under control of COMPLAIN.
6924 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6925 for arguments not specified in ARGS. Otherwise, if
6926 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6927 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6928 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6929 ARGS. */
6931 static tree
6932 coerce_template_parms (tree parms,
6933 tree args,
6934 tree in_decl,
6935 tsubst_flags_t complain,
6936 bool require_all_args,
6937 bool use_default_args)
6939 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6940 tree orig_inner_args;
6941 tree inner_args;
6942 tree new_args;
6943 tree new_inner_args;
6944 int saved_unevaluated_operand;
6945 int saved_inhibit_evaluation_warnings;
6947 /* When used as a boolean value, indicates whether this is a
6948 variadic template parameter list. Since it's an int, we can also
6949 subtract it from nparms to get the number of non-variadic
6950 parameters. */
6951 int variadic_p = 0;
6952 int variadic_args_p = 0;
6953 int post_variadic_parms = 0;
6955 /* Likewise for parameters with default arguments. */
6956 int default_p = 0;
6958 if (args == error_mark_node)
6959 return error_mark_node;
6961 nparms = TREE_VEC_LENGTH (parms);
6963 /* Determine if there are any parameter packs or default arguments. */
6964 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6966 tree parm = TREE_VEC_ELT (parms, parm_idx);
6967 if (variadic_p)
6968 ++post_variadic_parms;
6969 if (template_parameter_pack_p (TREE_VALUE (parm)))
6970 ++variadic_p;
6971 if (TREE_PURPOSE (parm))
6972 ++default_p;
6975 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
6976 /* If there are no parameters that follow a parameter pack, we need to
6977 expand any argument packs so that we can deduce a parameter pack from
6978 some non-packed args followed by an argument pack, as in variadic85.C.
6979 If there are such parameters, we need to leave argument packs intact
6980 so the arguments are assigned properly. This can happen when dealing
6981 with a nested class inside a partial specialization of a class
6982 template, as in variadic92.C, or when deducing a template parameter pack
6983 from a sub-declarator, as in variadic114.C. */
6984 if (!post_variadic_parms)
6985 inner_args = expand_template_argument_pack (inner_args);
6987 /* Count any pack expansion args. */
6988 variadic_args_p = pack_expansion_args_count (inner_args);
6990 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6991 if ((nargs > nparms && !variadic_p)
6992 || (nargs < nparms - variadic_p
6993 && require_all_args
6994 && !variadic_args_p
6995 && (!use_default_args
6996 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6997 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6999 if (complain & tf_error)
7001 if (variadic_p || default_p)
7003 nparms -= variadic_p + default_p;
7004 error ("wrong number of template arguments "
7005 "(%d, should be at least %d)", nargs, nparms);
7007 else
7008 error ("wrong number of template arguments "
7009 "(%d, should be %d)", nargs, nparms);
7011 if (in_decl)
7012 inform (input_location, "provided for %q+D", in_decl);
7015 return error_mark_node;
7017 /* We can't pass a pack expansion to a non-pack parameter of an alias
7018 template (DR 1430). */
7019 else if (in_decl && DECL_ALIAS_TEMPLATE_P (in_decl)
7020 && variadic_args_p
7021 && nargs - variadic_args_p < nparms - variadic_p)
7023 if (complain & tf_error)
7025 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7027 tree arg = TREE_VEC_ELT (inner_args, i);
7028 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7030 if (PACK_EXPANSION_P (arg)
7031 && !template_parameter_pack_p (parm))
7033 error ("pack expansion argument for non-pack parameter "
7034 "%qD of alias template %qD", parm, in_decl);
7035 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7036 goto found;
7039 gcc_unreachable ();
7040 found:;
7042 return error_mark_node;
7045 /* We need to evaluate the template arguments, even though this
7046 template-id may be nested within a "sizeof". */
7047 saved_unevaluated_operand = cp_unevaluated_operand;
7048 cp_unevaluated_operand = 0;
7049 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7050 c_inhibit_evaluation_warnings = 0;
7051 new_inner_args = make_tree_vec (nparms);
7052 new_args = add_outermost_template_args (args, new_inner_args);
7053 int pack_adjust = 0;
7054 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7056 tree arg;
7057 tree parm;
7059 /* Get the Ith template parameter. */
7060 parm = TREE_VEC_ELT (parms, parm_idx);
7062 if (parm == error_mark_node)
7064 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7065 continue;
7068 /* Calculate the next argument. */
7069 if (arg_idx < nargs)
7070 arg = TREE_VEC_ELT (inner_args, arg_idx);
7071 else
7072 arg = NULL_TREE;
7074 if (template_parameter_pack_p (TREE_VALUE (parm))
7075 && !(arg && ARGUMENT_PACK_P (arg)))
7077 /* Some arguments will be placed in the
7078 template parameter pack PARM. */
7079 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7080 inner_args, arg_idx,
7081 new_args, &lost,
7082 in_decl, complain);
7084 if (arg == NULL_TREE)
7086 /* We don't know how many args we have yet, just use the
7087 unconverted (and still packed) ones for now. */
7088 new_inner_args = orig_inner_args;
7089 arg_idx = nargs;
7090 break;
7093 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7095 /* Store this argument. */
7096 if (arg == error_mark_node)
7098 lost++;
7099 /* We are done with all of the arguments. */
7100 arg_idx = nargs;
7102 else
7104 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7105 arg_idx += pack_adjust;
7108 continue;
7110 else if (arg)
7112 if (PACK_EXPANSION_P (arg))
7114 /* "If every valid specialization of a variadic template
7115 requires an empty template parameter pack, the template is
7116 ill-formed, no diagnostic required." So check that the
7117 pattern works with this parameter. */
7118 tree pattern = PACK_EXPANSION_PATTERN (arg);
7119 tree conv = convert_template_argument (TREE_VALUE (parm),
7120 pattern, new_args,
7121 complain, parm_idx,
7122 in_decl);
7123 if (conv == error_mark_node)
7125 inform (input_location, "so any instantiation with a "
7126 "non-empty parameter pack would be ill-formed");
7127 ++lost;
7129 else if (TYPE_P (conv) && !TYPE_P (pattern))
7130 /* Recover from missing typename. */
7131 TREE_VEC_ELT (inner_args, arg_idx)
7132 = make_pack_expansion (conv);
7134 /* We don't know how many args we have yet, just
7135 use the unconverted ones for now. */
7136 new_inner_args = inner_args;
7137 arg_idx = nargs;
7138 break;
7141 else if (require_all_args)
7143 /* There must be a default arg in this case. */
7144 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7145 complain, in_decl);
7146 /* The position of the first default template argument,
7147 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7148 Record that. */
7149 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7150 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7151 arg_idx - pack_adjust);
7153 else
7154 break;
7156 if (arg == error_mark_node)
7158 if (complain & tf_error)
7159 error ("template argument %d is invalid", arg_idx + 1);
7161 else if (!arg)
7162 /* This only occurs if there was an error in the template
7163 parameter list itself (which we would already have
7164 reported) that we are trying to recover from, e.g., a class
7165 template with a parameter list such as
7166 template<typename..., typename>. */
7167 ++lost;
7168 else
7169 arg = convert_template_argument (TREE_VALUE (parm),
7170 arg, new_args, complain,
7171 parm_idx, in_decl);
7173 if (arg == error_mark_node)
7174 lost++;
7175 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7177 cp_unevaluated_operand = saved_unevaluated_operand;
7178 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7180 if (variadic_p && arg_idx < nargs)
7182 if (complain & tf_error)
7184 error ("wrong number of template arguments "
7185 "(%d, should be %d)", nargs, arg_idx);
7186 if (in_decl)
7187 error ("provided for %q+D", in_decl);
7189 return error_mark_node;
7192 if (lost)
7193 return error_mark_node;
7195 #ifdef ENABLE_CHECKING
7196 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7197 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7198 TREE_VEC_LENGTH (new_inner_args));
7199 #endif
7201 return new_inner_args;
7204 /* Like coerce_template_parms. If PARMS represents all template
7205 parameters levels, this function returns a vector of vectors
7206 representing all the resulting argument levels. Note that in this
7207 case, only the innermost arguments are coerced because the
7208 outermost ones are supposed to have been coerced already.
7210 Otherwise, if PARMS represents only (the innermost) vector of
7211 parameters, this function returns a vector containing just the
7212 innermost resulting arguments. */
7214 static tree
7215 coerce_innermost_template_parms (tree parms,
7216 tree args,
7217 tree in_decl,
7218 tsubst_flags_t complain,
7219 bool require_all_args,
7220 bool use_default_args)
7222 int parms_depth = TMPL_PARMS_DEPTH (parms);
7223 int args_depth = TMPL_ARGS_DEPTH (args);
7224 tree coerced_args;
7226 if (parms_depth > 1)
7228 coerced_args = make_tree_vec (parms_depth);
7229 tree level;
7230 int cur_depth;
7232 for (level = parms, cur_depth = parms_depth;
7233 parms_depth > 0 && level != NULL_TREE;
7234 level = TREE_CHAIN (level), --cur_depth)
7236 tree l;
7237 if (cur_depth == args_depth)
7238 l = coerce_template_parms (TREE_VALUE (level),
7239 args, in_decl, complain,
7240 require_all_args,
7241 use_default_args);
7242 else
7243 l = TMPL_ARGS_LEVEL (args, cur_depth);
7245 if (l == error_mark_node)
7246 return error_mark_node;
7248 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7251 else
7252 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7253 args, in_decl, complain,
7254 require_all_args,
7255 use_default_args);
7256 return coerced_args;
7259 /* Returns 1 if template args OT and NT are equivalent. */
7261 static int
7262 template_args_equal (tree ot, tree nt)
7264 if (nt == ot)
7265 return 1;
7266 if (nt == NULL_TREE || ot == NULL_TREE)
7267 return false;
7269 if (TREE_CODE (nt) == TREE_VEC)
7270 /* For member templates */
7271 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7272 else if (PACK_EXPANSION_P (ot))
7273 return (PACK_EXPANSION_P (nt)
7274 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7275 PACK_EXPANSION_PATTERN (nt))
7276 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7277 PACK_EXPANSION_EXTRA_ARGS (nt)));
7278 else if (ARGUMENT_PACK_P (ot))
7280 int i, len;
7281 tree opack, npack;
7283 if (!ARGUMENT_PACK_P (nt))
7284 return 0;
7286 opack = ARGUMENT_PACK_ARGS (ot);
7287 npack = ARGUMENT_PACK_ARGS (nt);
7288 len = TREE_VEC_LENGTH (opack);
7289 if (TREE_VEC_LENGTH (npack) != len)
7290 return 0;
7291 for (i = 0; i < len; ++i)
7292 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7293 TREE_VEC_ELT (npack, i)))
7294 return 0;
7295 return 1;
7297 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7299 /* We get here probably because we are in the middle of substituting
7300 into the pattern of a pack expansion. In that case the
7301 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7302 interested in. So we want to use the initial pack argument for
7303 the comparison. */
7304 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7305 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7306 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7307 return template_args_equal (ot, nt);
7309 else if (TYPE_P (nt))
7311 if (!TYPE_P (ot))
7312 return false;
7313 /* Don't treat an alias template specialization with dependent
7314 arguments as equivalent to its underlying type when used as a
7315 template argument; we need them to be distinct so that we
7316 substitute into the specialization arguments at instantiation
7317 time. And aliases can't be equivalent without being ==, so
7318 we don't need to look any deeper. */
7319 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7320 return false;
7321 else
7322 return same_type_p (ot, nt);
7324 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7325 return 0;
7326 else
7327 return cp_tree_equal (ot, nt);
7330 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7331 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7332 NEWARG_PTR with the offending arguments if they are non-NULL. */
7334 static int
7335 comp_template_args_with_info (tree oldargs, tree newargs,
7336 tree *oldarg_ptr, tree *newarg_ptr)
7338 int i;
7340 if (oldargs == newargs)
7341 return 1;
7343 if (!oldargs || !newargs)
7344 return 0;
7346 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7347 return 0;
7349 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7351 tree nt = TREE_VEC_ELT (newargs, i);
7352 tree ot = TREE_VEC_ELT (oldargs, i);
7354 if (! template_args_equal (ot, nt))
7356 if (oldarg_ptr != NULL)
7357 *oldarg_ptr = ot;
7358 if (newarg_ptr != NULL)
7359 *newarg_ptr = nt;
7360 return 0;
7363 return 1;
7366 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7367 of template arguments. Returns 0 otherwise. */
7370 comp_template_args (tree oldargs, tree newargs)
7372 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7375 static void
7376 add_pending_template (tree d)
7378 tree ti = (TYPE_P (d)
7379 ? CLASSTYPE_TEMPLATE_INFO (d)
7380 : DECL_TEMPLATE_INFO (d));
7381 struct pending_template *pt;
7382 int level;
7384 if (TI_PENDING_TEMPLATE_FLAG (ti))
7385 return;
7387 /* We are called both from instantiate_decl, where we've already had a
7388 tinst_level pushed, and instantiate_template, where we haven't.
7389 Compensate. */
7390 level = !current_tinst_level || current_tinst_level->decl != d;
7392 if (level)
7393 push_tinst_level (d);
7395 pt = ggc_alloc<pending_template> ();
7396 pt->next = NULL;
7397 pt->tinst = current_tinst_level;
7398 if (last_pending_template)
7399 last_pending_template->next = pt;
7400 else
7401 pending_templates = pt;
7403 last_pending_template = pt;
7405 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7407 if (level)
7408 pop_tinst_level ();
7412 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7413 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7414 documentation for TEMPLATE_ID_EXPR. */
7416 tree
7417 lookup_template_function (tree fns, tree arglist)
7419 tree type;
7421 if (fns == error_mark_node || arglist == error_mark_node)
7422 return error_mark_node;
7424 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7426 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7428 error ("%q#D is not a function template", fns);
7429 return error_mark_node;
7432 if (BASELINK_P (fns))
7434 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7435 unknown_type_node,
7436 BASELINK_FUNCTIONS (fns),
7437 arglist);
7438 return fns;
7441 type = TREE_TYPE (fns);
7442 if (TREE_CODE (fns) == OVERLOAD || !type)
7443 type = unknown_type_node;
7445 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7448 /* Within the scope of a template class S<T>, the name S gets bound
7449 (in build_self_reference) to a TYPE_DECL for the class, not a
7450 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7451 or one of its enclosing classes, and that type is a template,
7452 return the associated TEMPLATE_DECL. Otherwise, the original
7453 DECL is returned.
7455 Also handle the case when DECL is a TREE_LIST of ambiguous
7456 injected-class-names from different bases. */
7458 tree
7459 maybe_get_template_decl_from_type_decl (tree decl)
7461 if (decl == NULL_TREE)
7462 return decl;
7464 /* DR 176: A lookup that finds an injected-class-name (10.2
7465 [class.member.lookup]) can result in an ambiguity in certain cases
7466 (for example, if it is found in more than one base class). If all of
7467 the injected-class-names that are found refer to specializations of
7468 the same class template, and if the name is followed by a
7469 template-argument-list, the reference refers to the class template
7470 itself and not a specialization thereof, and is not ambiguous. */
7471 if (TREE_CODE (decl) == TREE_LIST)
7473 tree t, tmpl = NULL_TREE;
7474 for (t = decl; t; t = TREE_CHAIN (t))
7476 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7477 if (!tmpl)
7478 tmpl = elt;
7479 else if (tmpl != elt)
7480 break;
7482 if (tmpl && t == NULL_TREE)
7483 return tmpl;
7484 else
7485 return decl;
7488 return (decl != NULL_TREE
7489 && DECL_SELF_REFERENCE_P (decl)
7490 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7491 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7494 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
7495 parameters, find the desired type.
7497 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
7499 IN_DECL, if non-NULL, is the template declaration we are trying to
7500 instantiate.
7502 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
7503 the class we are looking up.
7505 Issue error and warning messages under control of COMPLAIN.
7507 If the template class is really a local class in a template
7508 function, then the FUNCTION_CONTEXT is the function in which it is
7509 being instantiated.
7511 ??? Note that this function is currently called *twice* for each
7512 template-id: the first time from the parser, while creating the
7513 incomplete type (finish_template_type), and the second type during the
7514 real instantiation (instantiate_template_class). This is surely something
7515 that we want to avoid. It also causes some problems with argument
7516 coercion (see convert_nontype_argument for more information on this). */
7518 static tree
7519 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7520 int entering_scope, tsubst_flags_t complain)
7522 tree templ = NULL_TREE, parmlist;
7523 tree t;
7524 spec_entry **slot;
7525 spec_entry *entry;
7526 spec_entry elt;
7527 hashval_t hash;
7529 if (identifier_p (d1))
7531 tree value = innermost_non_namespace_value (d1);
7532 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7533 templ = value;
7534 else
7536 if (context)
7537 push_decl_namespace (context);
7538 templ = lookup_name (d1);
7539 templ = maybe_get_template_decl_from_type_decl (templ);
7540 if (context)
7541 pop_decl_namespace ();
7543 if (templ)
7544 context = DECL_CONTEXT (templ);
7546 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7548 tree type = TREE_TYPE (d1);
7550 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7551 an implicit typename for the second A. Deal with it. */
7552 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7553 type = TREE_TYPE (type);
7555 if (CLASSTYPE_TEMPLATE_INFO (type))
7557 templ = CLASSTYPE_TI_TEMPLATE (type);
7558 d1 = DECL_NAME (templ);
7561 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7562 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7564 templ = TYPE_TI_TEMPLATE (d1);
7565 d1 = DECL_NAME (templ);
7567 else if (DECL_TYPE_TEMPLATE_P (d1))
7569 templ = d1;
7570 d1 = DECL_NAME (templ);
7571 context = DECL_CONTEXT (templ);
7573 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
7575 templ = d1;
7576 d1 = DECL_NAME (templ);
7579 /* Issue an error message if we didn't find a template. */
7580 if (! templ)
7582 if (complain & tf_error)
7583 error ("%qT is not a template", d1);
7584 return error_mark_node;
7587 if (TREE_CODE (templ) != TEMPLATE_DECL
7588 /* Make sure it's a user visible template, if it was named by
7589 the user. */
7590 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7591 && !PRIMARY_TEMPLATE_P (templ)))
7593 if (complain & tf_error)
7595 error ("non-template type %qT used as a template", d1);
7596 if (in_decl)
7597 error ("for template declaration %q+D", in_decl);
7599 return error_mark_node;
7602 complain &= ~tf_user;
7604 /* An alias that just changes the name of a template is equivalent to the
7605 other template, so if any of the arguments are pack expansions, strip
7606 the alias to avoid problems with a pack expansion passed to a non-pack
7607 alias template parameter (DR 1430). */
7608 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
7609 templ = get_underlying_template (templ);
7611 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7613 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7614 template arguments */
7616 tree parm;
7617 tree arglist2;
7618 tree outer;
7620 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7622 /* Consider an example where a template template parameter declared as
7624 template <class T, class U = std::allocator<T> > class TT
7626 The template parameter level of T and U are one level larger than
7627 of TT. To proper process the default argument of U, say when an
7628 instantiation `TT<int>' is seen, we need to build the full
7629 arguments containing {int} as the innermost level. Outer levels,
7630 available when not appearing as default template argument, can be
7631 obtained from the arguments of the enclosing template.
7633 Suppose that TT is later substituted with std::vector. The above
7634 instantiation is `TT<int, std::allocator<T> >' with TT at
7635 level 1, and T at level 2, while the template arguments at level 1
7636 becomes {std::vector} and the inner level 2 is {int}. */
7638 outer = DECL_CONTEXT (templ);
7639 if (outer)
7640 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7641 else if (current_template_parms)
7642 /* This is an argument of the current template, so we haven't set
7643 DECL_CONTEXT yet. */
7644 outer = current_template_args ();
7646 if (outer)
7647 arglist = add_to_template_args (outer, arglist);
7649 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7650 complain,
7651 /*require_all_args=*/true,
7652 /*use_default_args=*/true);
7653 if (arglist2 == error_mark_node
7654 || (!uses_template_parms (arglist2)
7655 && check_instantiated_args (templ, arglist2, complain)))
7656 return error_mark_node;
7658 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7659 return parm;
7661 else
7663 tree template_type = TREE_TYPE (templ);
7664 tree gen_tmpl;
7665 tree type_decl;
7666 tree found = NULL_TREE;
7667 int arg_depth;
7668 int parm_depth;
7669 int is_dependent_type;
7670 int use_partial_inst_tmpl = false;
7672 if (template_type == error_mark_node)
7673 /* An error occurred while building the template TEMPL, and a
7674 diagnostic has most certainly been emitted for that
7675 already. Let's propagate that error. */
7676 return error_mark_node;
7678 gen_tmpl = most_general_template (templ);
7679 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7680 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7681 arg_depth = TMPL_ARGS_DEPTH (arglist);
7683 if (arg_depth == 1 && parm_depth > 1)
7685 /* We've been given an incomplete set of template arguments.
7686 For example, given:
7688 template <class T> struct S1 {
7689 template <class U> struct S2 {};
7690 template <class U> struct S2<U*> {};
7693 we will be called with an ARGLIST of `U*', but the
7694 TEMPLATE will be `template <class T> template
7695 <class U> struct S1<T>::S2'. We must fill in the missing
7696 arguments. */
7697 arglist
7698 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7699 arglist);
7700 arg_depth = TMPL_ARGS_DEPTH (arglist);
7703 /* Now we should have enough arguments. */
7704 gcc_assert (parm_depth == arg_depth);
7706 /* From here on, we're only interested in the most general
7707 template. */
7709 /* Calculate the BOUND_ARGS. These will be the args that are
7710 actually tsubst'd into the definition to create the
7711 instantiation. */
7712 if (parm_depth > 1)
7714 /* We have multiple levels of arguments to coerce, at once. */
7715 int i;
7716 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7718 tree bound_args = make_tree_vec (parm_depth);
7720 for (i = saved_depth,
7721 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7722 i > 0 && t != NULL_TREE;
7723 --i, t = TREE_CHAIN (t))
7725 tree a;
7726 if (i == saved_depth)
7727 a = coerce_template_parms (TREE_VALUE (t),
7728 arglist, gen_tmpl,
7729 complain,
7730 /*require_all_args=*/true,
7731 /*use_default_args=*/true);
7732 else
7733 /* Outer levels should have already been coerced. */
7734 a = TMPL_ARGS_LEVEL (arglist, i);
7736 /* Don't process further if one of the levels fails. */
7737 if (a == error_mark_node)
7739 /* Restore the ARGLIST to its full size. */
7740 TREE_VEC_LENGTH (arglist) = saved_depth;
7741 return error_mark_node;
7744 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7746 /* We temporarily reduce the length of the ARGLIST so
7747 that coerce_template_parms will see only the arguments
7748 corresponding to the template parameters it is
7749 examining. */
7750 TREE_VEC_LENGTH (arglist)--;
7753 /* Restore the ARGLIST to its full size. */
7754 TREE_VEC_LENGTH (arglist) = saved_depth;
7756 arglist = bound_args;
7758 else
7759 arglist
7760 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7761 INNERMOST_TEMPLATE_ARGS (arglist),
7762 gen_tmpl,
7763 complain,
7764 /*require_all_args=*/true,
7765 /*use_default_args=*/true);
7767 if (arglist == error_mark_node)
7768 /* We were unable to bind the arguments. */
7769 return error_mark_node;
7771 /* In the scope of a template class, explicit references to the
7772 template class refer to the type of the template, not any
7773 instantiation of it. For example, in:
7775 template <class T> class C { void f(C<T>); }
7777 the `C<T>' is just the same as `C'. Outside of the
7778 class, however, such a reference is an instantiation. */
7779 if ((entering_scope
7780 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7781 || currently_open_class (template_type))
7782 /* comp_template_args is expensive, check it last. */
7783 && comp_template_args (TYPE_TI_ARGS (template_type),
7784 arglist))
7785 return template_type;
7787 /* If we already have this specialization, return it. */
7788 elt.tmpl = gen_tmpl;
7789 elt.args = arglist;
7790 hash = spec_hasher::hash (&elt);
7791 entry = type_specializations->find_with_hash (&elt, hash);
7793 if (entry)
7794 return entry->spec;
7796 is_dependent_type = uses_template_parms (arglist);
7798 /* If the deduced arguments are invalid, then the binding
7799 failed. */
7800 if (!is_dependent_type
7801 && check_instantiated_args (gen_tmpl,
7802 INNERMOST_TEMPLATE_ARGS (arglist),
7803 complain))
7804 return error_mark_node;
7806 if (!is_dependent_type
7807 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7808 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7809 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7811 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7812 DECL_NAME (gen_tmpl),
7813 /*tag_scope=*/ts_global);
7814 return found;
7817 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7818 complain, in_decl);
7819 if (context == error_mark_node)
7820 return error_mark_node;
7822 if (!context)
7823 context = global_namespace;
7825 /* Create the type. */
7826 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7828 /* The user referred to a specialization of an alias
7829 template represented by GEN_TMPL.
7831 [temp.alias]/2 says:
7833 When a template-id refers to the specialization of an
7834 alias template, it is equivalent to the associated
7835 type obtained by substitution of its
7836 template-arguments for the template-parameters in the
7837 type-id of the alias template. */
7839 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7840 /* Note that the call above (by indirectly calling
7841 register_specialization in tsubst_decl) registers the
7842 TYPE_DECL representing the specialization of the alias
7843 template. So next time someone substitutes ARGLIST for
7844 the template parms into the alias template (GEN_TMPL),
7845 she'll get that TYPE_DECL back. */
7847 if (t == error_mark_node)
7848 return t;
7850 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7852 if (!is_dependent_type)
7854 set_current_access_from_decl (TYPE_NAME (template_type));
7855 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7856 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7857 arglist, complain, in_decl),
7858 SCOPED_ENUM_P (template_type), NULL);
7860 if (t == error_mark_node)
7861 return t;
7863 else
7865 /* We don't want to call start_enum for this type, since
7866 the values for the enumeration constants may involve
7867 template parameters. And, no one should be interested
7868 in the enumeration constants for such a type. */
7869 t = cxx_make_type (ENUMERAL_TYPE);
7870 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7872 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7873 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7874 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7876 else if (CLASS_TYPE_P (template_type))
7878 t = make_class_type (TREE_CODE (template_type));
7879 CLASSTYPE_DECLARED_CLASS (t)
7880 = CLASSTYPE_DECLARED_CLASS (template_type);
7881 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7882 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7884 /* A local class. Make sure the decl gets registered properly. */
7885 if (context == current_function_decl)
7886 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7888 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7889 /* This instantiation is another name for the primary
7890 template type. Set the TYPE_CANONICAL field
7891 appropriately. */
7892 TYPE_CANONICAL (t) = template_type;
7893 else if (any_template_arguments_need_structural_equality_p (arglist))
7894 /* Some of the template arguments require structural
7895 equality testing, so this template class requires
7896 structural equality testing. */
7897 SET_TYPE_STRUCTURAL_EQUALITY (t);
7899 else
7900 gcc_unreachable ();
7902 /* If we called start_enum or pushtag above, this information
7903 will already be set up. */
7904 if (!TYPE_NAME (t))
7906 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7908 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7909 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7910 DECL_SOURCE_LOCATION (type_decl)
7911 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7913 else
7914 type_decl = TYPE_NAME (t);
7916 if (CLASS_TYPE_P (template_type))
7918 TREE_PRIVATE (type_decl)
7919 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7920 TREE_PROTECTED (type_decl)
7921 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7922 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7924 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7925 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7929 if (OVERLOAD_TYPE_P (t)
7930 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7932 if (tree attributes
7933 = lookup_attribute ("abi_tag", TYPE_ATTRIBUTES (template_type)))
7935 if (!TREE_CHAIN (attributes))
7936 TYPE_ATTRIBUTES (t) = attributes;
7937 else
7938 TYPE_ATTRIBUTES (t)
7939 = build_tree_list (TREE_PURPOSE (attributes),
7940 TREE_VALUE (attributes));
7944 /* Let's consider the explicit specialization of a member
7945 of a class template specialization that is implicitly instantiated,
7946 e.g.:
7947 template<class T>
7948 struct S
7950 template<class U> struct M {}; //#0
7953 template<>
7954 template<>
7955 struct S<int>::M<char> //#1
7957 int i;
7959 [temp.expl.spec]/4 says this is valid.
7961 In this case, when we write:
7962 S<int>::M<char> m;
7964 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7965 the one of #0.
7967 When we encounter #1, we want to store the partial instantiation
7968 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
7970 For all cases other than this "explicit specialization of member of a
7971 class template", we just want to store the most general template into
7972 the CLASSTYPE_TI_TEMPLATE of M.
7974 This case of "explicit specialization of member of a class template"
7975 only happens when:
7976 1/ the enclosing class is an instantiation of, and therefore not
7977 the same as, the context of the most general template, and
7978 2/ we aren't looking at the partial instantiation itself, i.e.
7979 the innermost arguments are not the same as the innermost parms of
7980 the most general template.
7982 So it's only when 1/ and 2/ happens that we want to use the partial
7983 instantiation of the member template in lieu of its most general
7984 template. */
7986 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7987 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7988 /* the enclosing class must be an instantiation... */
7989 && CLASS_TYPE_P (context)
7990 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7992 tree partial_inst_args;
7993 TREE_VEC_LENGTH (arglist)--;
7994 ++processing_template_decl;
7995 partial_inst_args =
7996 tsubst (INNERMOST_TEMPLATE_ARGS
7997 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7998 arglist, complain, NULL_TREE);
7999 --processing_template_decl;
8000 TREE_VEC_LENGTH (arglist)++;
8001 use_partial_inst_tmpl =
8002 /*...and we must not be looking at the partial instantiation
8003 itself. */
8004 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8005 partial_inst_args);
8008 if (!use_partial_inst_tmpl)
8009 /* This case is easy; there are no member templates involved. */
8010 found = gen_tmpl;
8011 else
8013 /* This is a full instantiation of a member template. Find
8014 the partial instantiation of which this is an instance. */
8016 /* Temporarily reduce by one the number of levels in the ARGLIST
8017 so as to avoid comparing the last set of arguments. */
8018 TREE_VEC_LENGTH (arglist)--;
8019 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8020 TREE_VEC_LENGTH (arglist)++;
8021 /* FOUND is either a proper class type, or an alias
8022 template specialization. In the later case, it's a
8023 TYPE_DECL, resulting from the substituting of arguments
8024 for parameters in the TYPE_DECL of the alias template
8025 done earlier. So be careful while getting the template
8026 of FOUND. */
8027 found = TREE_CODE (found) == TYPE_DECL
8028 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8029 : CLASSTYPE_TI_TEMPLATE (found);
8032 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8034 elt.spec = t;
8035 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8036 entry = ggc_alloc<spec_entry> ();
8037 *entry = elt;
8038 *slot = entry;
8040 /* Note this use of the partial instantiation so we can check it
8041 later in maybe_process_partial_specialization. */
8042 DECL_TEMPLATE_INSTANTIATIONS (found)
8043 = tree_cons (arglist, t,
8044 DECL_TEMPLATE_INSTANTIATIONS (found));
8046 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8047 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8048 /* Now that the type has been registered on the instantiations
8049 list, we set up the enumerators. Because the enumeration
8050 constants may involve the enumeration type itself, we make
8051 sure to register the type first, and then create the
8052 constants. That way, doing tsubst_expr for the enumeration
8053 constants won't result in recursive calls here; we'll find
8054 the instantiation and exit above. */
8055 tsubst_enum (template_type, t, arglist);
8057 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8058 /* If the type makes use of template parameters, the
8059 code that generates debugging information will crash. */
8060 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8062 /* Possibly limit visibility based on template args. */
8063 TREE_PUBLIC (type_decl) = 1;
8064 determine_visibility (type_decl);
8066 inherit_targ_abi_tags (t);
8068 return t;
8072 /* Wrapper for lookup_template_class_1. */
8074 tree
8075 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8076 int entering_scope, tsubst_flags_t complain)
8078 tree ret;
8079 timevar_push (TV_TEMPLATE_INST);
8080 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8081 entering_scope, complain);
8082 timevar_pop (TV_TEMPLATE_INST);
8083 return ret;
8086 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST.
8087 The type of the expression is the unknown_type_node since the
8088 template-id could refer to an explicit or partial specialization. */
8090 tree
8091 lookup_template_variable (tree templ, tree arglist)
8093 tree type = unknown_type_node;
8094 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8097 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8099 tree
8100 finish_template_variable (tree var)
8102 tree templ = TREE_OPERAND (var, 0);
8104 tree arglist = TREE_OPERAND (var, 1);
8105 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8106 arglist = add_outermost_template_args (tmpl_args, arglist);
8108 tree parms = DECL_TEMPLATE_PARMS (templ);
8109 tsubst_flags_t complain = tf_warning_or_error;
8110 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8111 /*req_all*/true,
8112 /*use_default*/true);
8114 return instantiate_template (templ, arglist, complain);
8117 struct pair_fn_data
8119 tree_fn_t fn;
8120 void *data;
8121 /* True when we should also visit template parameters that occur in
8122 non-deduced contexts. */
8123 bool include_nondeduced_p;
8124 hash_set<tree> *visited;
8127 /* Called from for_each_template_parm via walk_tree. */
8129 static tree
8130 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8132 tree t = *tp;
8133 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8134 tree_fn_t fn = pfd->fn;
8135 void *data = pfd->data;
8137 if (TYPE_P (t)
8138 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
8139 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
8140 pfd->include_nondeduced_p))
8141 return error_mark_node;
8143 switch (TREE_CODE (t))
8145 case RECORD_TYPE:
8146 if (TYPE_PTRMEMFUNC_P (t))
8147 break;
8148 /* Fall through. */
8150 case UNION_TYPE:
8151 case ENUMERAL_TYPE:
8152 if (!TYPE_TEMPLATE_INFO (t))
8153 *walk_subtrees = 0;
8154 else if (for_each_template_parm (TYPE_TI_ARGS (t),
8155 fn, data, pfd->visited,
8156 pfd->include_nondeduced_p))
8157 return error_mark_node;
8158 break;
8160 case INTEGER_TYPE:
8161 if (for_each_template_parm (TYPE_MIN_VALUE (t),
8162 fn, data, pfd->visited,
8163 pfd->include_nondeduced_p)
8164 || for_each_template_parm (TYPE_MAX_VALUE (t),
8165 fn, data, pfd->visited,
8166 pfd->include_nondeduced_p))
8167 return error_mark_node;
8168 break;
8170 case METHOD_TYPE:
8171 /* Since we're not going to walk subtrees, we have to do this
8172 explicitly here. */
8173 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
8174 pfd->visited, pfd->include_nondeduced_p))
8175 return error_mark_node;
8176 /* Fall through. */
8178 case FUNCTION_TYPE:
8179 /* Check the return type. */
8180 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8181 pfd->include_nondeduced_p))
8182 return error_mark_node;
8184 /* Check the parameter types. Since default arguments are not
8185 instantiated until they are needed, the TYPE_ARG_TYPES may
8186 contain expressions that involve template parameters. But,
8187 no-one should be looking at them yet. And, once they're
8188 instantiated, they don't contain template parameters, so
8189 there's no point in looking at them then, either. */
8191 tree parm;
8193 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8194 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
8195 pfd->visited, pfd->include_nondeduced_p))
8196 return error_mark_node;
8198 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8199 want walk_tree walking into them itself. */
8200 *walk_subtrees = 0;
8202 break;
8204 case TYPEOF_TYPE:
8205 case UNDERLYING_TYPE:
8206 if (pfd->include_nondeduced_p
8207 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
8208 pfd->visited,
8209 pfd->include_nondeduced_p))
8210 return error_mark_node;
8211 break;
8213 case FUNCTION_DECL:
8214 case VAR_DECL:
8215 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
8216 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
8217 pfd->visited, pfd->include_nondeduced_p))
8218 return error_mark_node;
8219 /* Fall through. */
8221 case PARM_DECL:
8222 case CONST_DECL:
8223 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
8224 && for_each_template_parm (DECL_INITIAL (t), fn, data,
8225 pfd->visited, pfd->include_nondeduced_p))
8226 return error_mark_node;
8227 if (DECL_CONTEXT (t)
8228 && pfd->include_nondeduced_p
8229 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
8230 pfd->visited, pfd->include_nondeduced_p))
8231 return error_mark_node;
8232 break;
8234 case BOUND_TEMPLATE_TEMPLATE_PARM:
8235 /* Record template parameters such as `T' inside `TT<T>'. */
8236 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
8237 pfd->include_nondeduced_p))
8238 return error_mark_node;
8239 /* Fall through. */
8241 case TEMPLATE_TEMPLATE_PARM:
8242 case TEMPLATE_TYPE_PARM:
8243 case TEMPLATE_PARM_INDEX:
8244 if (fn && (*fn)(t, data))
8245 return error_mark_node;
8246 else if (!fn)
8247 return error_mark_node;
8248 break;
8250 case TEMPLATE_DECL:
8251 /* A template template parameter is encountered. */
8252 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
8253 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8254 pfd->include_nondeduced_p))
8255 return error_mark_node;
8257 /* Already substituted template template parameter */
8258 *walk_subtrees = 0;
8259 break;
8261 case TYPENAME_TYPE:
8262 if (!fn
8263 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
8264 data, pfd->visited,
8265 pfd->include_nondeduced_p))
8266 return error_mark_node;
8267 break;
8269 case CONSTRUCTOR:
8270 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8271 && pfd->include_nondeduced_p
8272 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
8273 (TREE_TYPE (t)), fn, data,
8274 pfd->visited, pfd->include_nondeduced_p))
8275 return error_mark_node;
8276 break;
8278 case INDIRECT_REF:
8279 case COMPONENT_REF:
8280 /* If there's no type, then this thing must be some expression
8281 involving template parameters. */
8282 if (!fn && !TREE_TYPE (t))
8283 return error_mark_node;
8284 break;
8286 case MODOP_EXPR:
8287 case CAST_EXPR:
8288 case IMPLICIT_CONV_EXPR:
8289 case REINTERPRET_CAST_EXPR:
8290 case CONST_CAST_EXPR:
8291 case STATIC_CAST_EXPR:
8292 case DYNAMIC_CAST_EXPR:
8293 case ARROW_EXPR:
8294 case DOTSTAR_EXPR:
8295 case TYPEID_EXPR:
8296 case PSEUDO_DTOR_EXPR:
8297 if (!fn)
8298 return error_mark_node;
8299 break;
8301 default:
8302 break;
8305 /* We didn't find any template parameters we liked. */
8306 return NULL_TREE;
8309 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8310 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8311 call FN with the parameter and the DATA.
8312 If FN returns nonzero, the iteration is terminated, and
8313 for_each_template_parm returns 1. Otherwise, the iteration
8314 continues. If FN never returns a nonzero value, the value
8315 returned by for_each_template_parm is 0. If FN is NULL, it is
8316 considered to be the function which always returns 1.
8318 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8319 parameters that occur in non-deduced contexts. When false, only
8320 visits those template parameters that can be deduced. */
8322 static int
8323 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8324 hash_set<tree> *visited,
8325 bool include_nondeduced_p)
8327 struct pair_fn_data pfd;
8328 int result;
8330 /* Set up. */
8331 pfd.fn = fn;
8332 pfd.data = data;
8333 pfd.include_nondeduced_p = include_nondeduced_p;
8335 /* Walk the tree. (Conceptually, we would like to walk without
8336 duplicates, but for_each_template_parm_r recursively calls
8337 for_each_template_parm, so we would need to reorganize a fair
8338 bit to use walk_tree_without_duplicates, so we keep our own
8339 visited list.) */
8340 if (visited)
8341 pfd.visited = visited;
8342 else
8343 pfd.visited = new hash_set<tree>;
8344 result = cp_walk_tree (&t,
8345 for_each_template_parm_r,
8346 &pfd,
8347 pfd.visited) != NULL_TREE;
8349 /* Clean up. */
8350 if (!visited)
8352 delete pfd.visited;
8353 pfd.visited = 0;
8356 return result;
8359 /* Returns true if T depends on any template parameter. */
8362 uses_template_parms (tree t)
8364 if (t == NULL_TREE)
8365 return false;
8367 bool dependent_p;
8368 int saved_processing_template_decl;
8370 saved_processing_template_decl = processing_template_decl;
8371 if (!saved_processing_template_decl)
8372 processing_template_decl = 1;
8373 if (TYPE_P (t))
8374 dependent_p = dependent_type_p (t);
8375 else if (TREE_CODE (t) == TREE_VEC)
8376 dependent_p = any_dependent_template_arguments_p (t);
8377 else if (TREE_CODE (t) == TREE_LIST)
8378 dependent_p = (uses_template_parms (TREE_VALUE (t))
8379 || uses_template_parms (TREE_CHAIN (t)));
8380 else if (TREE_CODE (t) == TYPE_DECL)
8381 dependent_p = dependent_type_p (TREE_TYPE (t));
8382 else if (DECL_P (t)
8383 || EXPR_P (t)
8384 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8385 || TREE_CODE (t) == OVERLOAD
8386 || BASELINK_P (t)
8387 || identifier_p (t)
8388 || TREE_CODE (t) == TRAIT_EXPR
8389 || TREE_CODE (t) == CONSTRUCTOR
8390 || CONSTANT_CLASS_P (t))
8391 dependent_p = (type_dependent_expression_p (t)
8392 || value_dependent_expression_p (t));
8393 else
8395 gcc_assert (t == error_mark_node);
8396 dependent_p = false;
8399 processing_template_decl = saved_processing_template_decl;
8401 return dependent_p;
8404 /* Returns true iff current_function_decl is an incompletely instantiated
8405 template. Useful instead of processing_template_decl because the latter
8406 is set to 0 during instantiate_non_dependent_expr. */
8408 bool
8409 in_template_function (void)
8411 tree fn = current_function_decl;
8412 bool ret;
8413 ++processing_template_decl;
8414 ret = (fn && DECL_LANG_SPECIFIC (fn)
8415 && DECL_TEMPLATE_INFO (fn)
8416 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8417 --processing_template_decl;
8418 return ret;
8421 /* Returns true if T depends on any template parameter with level LEVEL. */
8424 uses_template_parms_level (tree t, int level)
8426 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8427 /*include_nondeduced_p=*/true);
8430 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8431 ill-formed translation unit, i.e. a variable or function that isn't
8432 usable in a constant expression. */
8434 static inline bool
8435 neglectable_inst_p (tree d)
8437 return (DECL_P (d)
8438 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8439 : decl_maybe_constant_var_p (d)));
8442 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8443 neglectable and instantiated from within an erroneous instantiation. */
8445 static bool
8446 limit_bad_template_recursion (tree decl)
8448 struct tinst_level *lev = current_tinst_level;
8449 int errs = errorcount + sorrycount;
8450 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8451 return false;
8453 for (; lev; lev = lev->next)
8454 if (neglectable_inst_p (lev->decl))
8455 break;
8457 return (lev && errs > lev->errors);
8460 static int tinst_depth;
8461 extern int max_tinst_depth;
8462 int depth_reached;
8464 static GTY(()) struct tinst_level *last_error_tinst_level;
8466 /* We're starting to instantiate D; record the template instantiation context
8467 for diagnostics and to restore it later. */
8469 bool
8470 push_tinst_level (tree d)
8472 return push_tinst_level_loc (d, input_location);
8475 /* We're starting to instantiate D; record the template instantiation context
8476 at LOC for diagnostics and to restore it later. */
8478 bool
8479 push_tinst_level_loc (tree d, location_t loc)
8481 struct tinst_level *new_level;
8483 if (tinst_depth >= max_tinst_depth)
8485 fatal_error (input_location,
8486 "template instantiation depth exceeds maximum of %d"
8487 " (use -ftemplate-depth= to increase the maximum)",
8488 max_tinst_depth);
8489 return false;
8492 /* If the current instantiation caused problems, don't let it instantiate
8493 anything else. Do allow deduction substitution and decls usable in
8494 constant expressions. */
8495 if (limit_bad_template_recursion (d))
8496 return false;
8498 new_level = ggc_alloc<tinst_level> ();
8499 new_level->decl = d;
8500 new_level->locus = loc;
8501 new_level->errors = errorcount+sorrycount;
8502 new_level->in_system_header_p = in_system_header_at (input_location);
8503 new_level->next = current_tinst_level;
8504 current_tinst_level = new_level;
8506 ++tinst_depth;
8507 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
8508 depth_reached = tinst_depth;
8510 return true;
8513 /* We're done instantiating this template; return to the instantiation
8514 context. */
8516 void
8517 pop_tinst_level (void)
8519 /* Restore the filename and line number stashed away when we started
8520 this instantiation. */
8521 input_location = current_tinst_level->locus;
8522 current_tinst_level = current_tinst_level->next;
8523 --tinst_depth;
8526 /* We're instantiating a deferred template; restore the template
8527 instantiation context in which the instantiation was requested, which
8528 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
8530 static tree
8531 reopen_tinst_level (struct tinst_level *level)
8533 struct tinst_level *t;
8535 tinst_depth = 0;
8536 for (t = level; t; t = t->next)
8537 ++tinst_depth;
8539 current_tinst_level = level;
8540 pop_tinst_level ();
8541 if (current_tinst_level)
8542 current_tinst_level->errors = errorcount+sorrycount;
8543 return level->decl;
8546 /* Returns the TINST_LEVEL which gives the original instantiation
8547 context. */
8549 struct tinst_level *
8550 outermost_tinst_level (void)
8552 struct tinst_level *level = current_tinst_level;
8553 if (level)
8554 while (level->next)
8555 level = level->next;
8556 return level;
8559 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
8560 vector of template arguments, as for tsubst.
8562 Returns an appropriate tsubst'd friend declaration. */
8564 static tree
8565 tsubst_friend_function (tree decl, tree args)
8567 tree new_friend;
8569 if (TREE_CODE (decl) == FUNCTION_DECL
8570 && DECL_TEMPLATE_INSTANTIATION (decl)
8571 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8572 /* This was a friend declared with an explicit template
8573 argument list, e.g.:
8575 friend void f<>(T);
8577 to indicate that f was a template instantiation, not a new
8578 function declaration. Now, we have to figure out what
8579 instantiation of what template. */
8581 tree template_id, arglist, fns;
8582 tree new_args;
8583 tree tmpl;
8584 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8586 /* Friend functions are looked up in the containing namespace scope.
8587 We must enter that scope, to avoid finding member functions of the
8588 current class with same name. */
8589 push_nested_namespace (ns);
8590 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8591 tf_warning_or_error, NULL_TREE,
8592 /*integral_constant_expression_p=*/false);
8593 pop_nested_namespace (ns);
8594 arglist = tsubst (DECL_TI_ARGS (decl), args,
8595 tf_warning_or_error, NULL_TREE);
8596 template_id = lookup_template_function (fns, arglist);
8598 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8599 tmpl = determine_specialization (template_id, new_friend,
8600 &new_args,
8601 /*need_member_template=*/0,
8602 TREE_VEC_LENGTH (args),
8603 tsk_none);
8604 return instantiate_template (tmpl, new_args, tf_error);
8607 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8609 /* The NEW_FRIEND will look like an instantiation, to the
8610 compiler, but is not an instantiation from the point of view of
8611 the language. For example, we might have had:
8613 template <class T> struct S {
8614 template <class U> friend void f(T, U);
8617 Then, in S<int>, template <class U> void f(int, U) is not an
8618 instantiation of anything. */
8619 if (new_friend == error_mark_node)
8620 return error_mark_node;
8622 DECL_USE_TEMPLATE (new_friend) = 0;
8623 if (TREE_CODE (decl) == TEMPLATE_DECL)
8625 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8626 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8627 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8630 /* The mangled name for the NEW_FRIEND is incorrect. The function
8631 is not a template instantiation and should not be mangled like
8632 one. Therefore, we forget the mangling here; we'll recompute it
8633 later if we need it. */
8634 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8636 SET_DECL_RTL (new_friend, NULL);
8637 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8640 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8642 tree old_decl;
8643 tree new_friend_template_info;
8644 tree new_friend_result_template_info;
8645 tree ns;
8646 int new_friend_is_defn;
8648 /* We must save some information from NEW_FRIEND before calling
8649 duplicate decls since that function will free NEW_FRIEND if
8650 possible. */
8651 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8652 new_friend_is_defn =
8653 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8654 (template_for_substitution (new_friend)))
8655 != NULL_TREE);
8656 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8658 /* This declaration is a `primary' template. */
8659 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8661 new_friend_result_template_info
8662 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8664 else
8665 new_friend_result_template_info = NULL_TREE;
8667 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8668 if (new_friend_is_defn)
8669 DECL_INITIAL (new_friend) = error_mark_node;
8671 /* Inside pushdecl_namespace_level, we will push into the
8672 current namespace. However, the friend function should go
8673 into the namespace of the template. */
8674 ns = decl_namespace_context (new_friend);
8675 push_nested_namespace (ns);
8676 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8677 pop_nested_namespace (ns);
8679 if (old_decl == error_mark_node)
8680 return error_mark_node;
8682 if (old_decl != new_friend)
8684 /* This new friend declaration matched an existing
8685 declaration. For example, given:
8687 template <class T> void f(T);
8688 template <class U> class C {
8689 template <class T> friend void f(T) {}
8692 the friend declaration actually provides the definition
8693 of `f', once C has been instantiated for some type. So,
8694 old_decl will be the out-of-class template declaration,
8695 while new_friend is the in-class definition.
8697 But, if `f' was called before this point, the
8698 instantiation of `f' will have DECL_TI_ARGS corresponding
8699 to `T' but not to `U', references to which might appear
8700 in the definition of `f'. Previously, the most general
8701 template for an instantiation of `f' was the out-of-class
8702 version; now it is the in-class version. Therefore, we
8703 run through all specialization of `f', adding to their
8704 DECL_TI_ARGS appropriately. In particular, they need a
8705 new set of outer arguments, corresponding to the
8706 arguments for this class instantiation.
8708 The same situation can arise with something like this:
8710 friend void f(int);
8711 template <class T> class C {
8712 friend void f(T) {}
8715 when `C<int>' is instantiated. Now, `f(int)' is defined
8716 in the class. */
8718 if (!new_friend_is_defn)
8719 /* On the other hand, if the in-class declaration does
8720 *not* provide a definition, then we don't want to alter
8721 existing definitions. We can just leave everything
8722 alone. */
8724 else
8726 tree new_template = TI_TEMPLATE (new_friend_template_info);
8727 tree new_args = TI_ARGS (new_friend_template_info);
8729 /* Overwrite whatever template info was there before, if
8730 any, with the new template information pertaining to
8731 the declaration. */
8732 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8734 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8736 /* We should have called reregister_specialization in
8737 duplicate_decls. */
8738 gcc_assert (retrieve_specialization (new_template,
8739 new_args, 0)
8740 == old_decl);
8742 /* Instantiate it if the global has already been used. */
8743 if (DECL_ODR_USED (old_decl))
8744 instantiate_decl (old_decl, /*defer_ok=*/true,
8745 /*expl_inst_class_mem_p=*/false);
8747 else
8749 tree t;
8751 /* Indicate that the old function template is a partial
8752 instantiation. */
8753 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8754 = new_friend_result_template_info;
8756 gcc_assert (new_template
8757 == most_general_template (new_template));
8758 gcc_assert (new_template != old_decl);
8760 /* Reassign any specializations already in the hash table
8761 to the new more general template, and add the
8762 additional template args. */
8763 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8764 t != NULL_TREE;
8765 t = TREE_CHAIN (t))
8767 tree spec = TREE_VALUE (t);
8768 spec_entry elt;
8770 elt.tmpl = old_decl;
8771 elt.args = DECL_TI_ARGS (spec);
8772 elt.spec = NULL_TREE;
8774 decl_specializations->remove_elt (&elt);
8776 DECL_TI_ARGS (spec)
8777 = add_outermost_template_args (new_args,
8778 DECL_TI_ARGS (spec));
8780 register_specialization
8781 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8784 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8788 /* The information from NEW_FRIEND has been merged into OLD_DECL
8789 by duplicate_decls. */
8790 new_friend = old_decl;
8793 else
8795 tree context = DECL_CONTEXT (new_friend);
8796 bool dependent_p;
8798 /* In the code
8799 template <class T> class C {
8800 template <class U> friend void C1<U>::f (); // case 1
8801 friend void C2<T>::f (); // case 2
8803 we only need to make sure CONTEXT is a complete type for
8804 case 2. To distinguish between the two cases, we note that
8805 CONTEXT of case 1 remains dependent type after tsubst while
8806 this isn't true for case 2. */
8807 ++processing_template_decl;
8808 dependent_p = dependent_type_p (context);
8809 --processing_template_decl;
8811 if (!dependent_p
8812 && !complete_type_or_else (context, NULL_TREE))
8813 return error_mark_node;
8815 if (COMPLETE_TYPE_P (context))
8817 tree fn = new_friend;
8818 /* do_friend adds the TEMPLATE_DECL for any member friend
8819 template even if it isn't a member template, i.e.
8820 template <class T> friend A<T>::f();
8821 Look through it in that case. */
8822 if (TREE_CODE (fn) == TEMPLATE_DECL
8823 && !PRIMARY_TEMPLATE_P (fn))
8824 fn = DECL_TEMPLATE_RESULT (fn);
8825 /* Check to see that the declaration is really present, and,
8826 possibly obtain an improved declaration. */
8827 fn = check_classfn (context, fn, NULL_TREE);
8829 if (fn)
8830 new_friend = fn;
8834 return new_friend;
8837 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8838 template arguments, as for tsubst.
8840 Returns an appropriate tsubst'd friend type or error_mark_node on
8841 failure. */
8843 static tree
8844 tsubst_friend_class (tree friend_tmpl, tree args)
8846 tree friend_type;
8847 tree tmpl;
8848 tree context;
8850 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8852 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8853 return TREE_TYPE (t);
8856 context = CP_DECL_CONTEXT (friend_tmpl);
8858 if (context != global_namespace)
8860 if (TREE_CODE (context) == NAMESPACE_DECL)
8861 push_nested_namespace (context);
8862 else
8863 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8866 /* Look for a class template declaration. We look for hidden names
8867 because two friend declarations of the same template are the
8868 same. For example, in:
8870 struct A {
8871 template <typename> friend class F;
8873 template <typename> struct B {
8874 template <typename> friend class F;
8877 both F templates are the same. */
8878 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8879 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8881 /* But, if we don't find one, it might be because we're in a
8882 situation like this:
8884 template <class T>
8885 struct S {
8886 template <class U>
8887 friend struct S;
8890 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8891 for `S<int>', not the TEMPLATE_DECL. */
8892 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8894 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8895 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8898 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8900 /* The friend template has already been declared. Just
8901 check to see that the declarations match, and install any new
8902 default parameters. We must tsubst the default parameters,
8903 of course. We only need the innermost template parameters
8904 because that is all that redeclare_class_template will look
8905 at. */
8906 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8907 > TMPL_ARGS_DEPTH (args))
8909 tree parms;
8910 location_t saved_input_location;
8911 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8912 args, tf_warning_or_error);
8914 saved_input_location = input_location;
8915 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8916 redeclare_class_template (TREE_TYPE (tmpl), parms);
8917 input_location = saved_input_location;
8921 friend_type = TREE_TYPE (tmpl);
8923 else
8925 /* The friend template has not already been declared. In this
8926 case, the instantiation of the template class will cause the
8927 injection of this template into the global scope. */
8928 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8929 if (tmpl == error_mark_node)
8930 return error_mark_node;
8932 /* The new TMPL is not an instantiation of anything, so we
8933 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8934 the new type because that is supposed to be the corresponding
8935 template decl, i.e., TMPL. */
8936 DECL_USE_TEMPLATE (tmpl) = 0;
8937 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8938 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8939 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8940 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8942 /* Inject this template into the global scope. */
8943 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8946 if (context != global_namespace)
8948 if (TREE_CODE (context) == NAMESPACE_DECL)
8949 pop_nested_namespace (context);
8950 else
8951 pop_nested_class ();
8954 return friend_type;
8957 /* Returns zero if TYPE cannot be completed later due to circularity.
8958 Otherwise returns one. */
8960 static int
8961 can_complete_type_without_circularity (tree type)
8963 if (type == NULL_TREE || type == error_mark_node)
8964 return 0;
8965 else if (COMPLETE_TYPE_P (type))
8966 return 1;
8967 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8968 return can_complete_type_without_circularity (TREE_TYPE (type));
8969 else if (CLASS_TYPE_P (type)
8970 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8971 return 0;
8972 else
8973 return 1;
8976 static tree tsubst_omp_clauses (tree, bool, tree, tsubst_flags_t, tree);
8978 /* Apply any attributes which had to be deferred until instantiation
8979 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8980 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8982 static void
8983 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8984 tree args, tsubst_flags_t complain, tree in_decl)
8986 tree last_dep = NULL_TREE;
8987 tree t;
8988 tree *p;
8990 for (t = attributes; t; t = TREE_CHAIN (t))
8991 if (ATTR_IS_DEPENDENT (t))
8993 last_dep = t;
8994 attributes = copy_list (attributes);
8995 break;
8998 if (DECL_P (*decl_p))
9000 if (TREE_TYPE (*decl_p) == error_mark_node)
9001 return;
9002 p = &DECL_ATTRIBUTES (*decl_p);
9004 else
9005 p = &TYPE_ATTRIBUTES (*decl_p);
9007 if (last_dep)
9009 tree late_attrs = NULL_TREE;
9010 tree *q = &late_attrs;
9012 for (*p = attributes; *p; )
9014 t = *p;
9015 if (ATTR_IS_DEPENDENT (t))
9017 *p = TREE_CHAIN (t);
9018 TREE_CHAIN (t) = NULL_TREE;
9019 if ((flag_openmp || flag_cilkplus)
9020 && is_attribute_p ("omp declare simd",
9021 get_attribute_name (t))
9022 && TREE_VALUE (t))
9024 tree clauses = TREE_VALUE (TREE_VALUE (t));
9025 clauses = tsubst_omp_clauses (clauses, true, args,
9026 complain, in_decl);
9027 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9028 clauses = finish_omp_clauses (clauses);
9029 tree parms = DECL_ARGUMENTS (*decl_p);
9030 clauses
9031 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9032 if (clauses)
9033 TREE_VALUE (TREE_VALUE (t)) = clauses;
9034 else
9035 TREE_VALUE (t) = NULL_TREE;
9037 /* If the first attribute argument is an identifier, don't
9038 pass it through tsubst. Attributes like mode, format,
9039 cleanup and several target specific attributes expect it
9040 unmodified. */
9041 else if (attribute_takes_identifier_p (get_attribute_name (t))
9042 && TREE_VALUE (t))
9044 tree chain
9045 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
9046 in_decl,
9047 /*integral_constant_expression_p=*/false);
9048 if (chain != TREE_CHAIN (TREE_VALUE (t)))
9049 TREE_VALUE (t)
9050 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
9051 chain);
9053 else
9054 TREE_VALUE (t)
9055 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
9056 /*integral_constant_expression_p=*/false);
9057 *q = t;
9058 q = &TREE_CHAIN (t);
9060 else
9061 p = &TREE_CHAIN (t);
9064 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9068 /* Perform (or defer) access check for typedefs that were referenced
9069 from within the template TMPL code.
9070 This is a subroutine of instantiate_decl and instantiate_class_template.
9071 TMPL is the template to consider and TARGS is the list of arguments of
9072 that template. */
9074 static void
9075 perform_typedefs_access_check (tree tmpl, tree targs)
9077 location_t saved_location;
9078 unsigned i;
9079 qualified_typedef_usage_t *iter;
9081 if (!tmpl
9082 || (!CLASS_TYPE_P (tmpl)
9083 && TREE_CODE (tmpl) != FUNCTION_DECL))
9084 return;
9086 saved_location = input_location;
9087 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9089 tree type_decl = iter->typedef_decl;
9090 tree type_scope = iter->context;
9092 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9093 continue;
9095 if (uses_template_parms (type_decl))
9096 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9097 if (uses_template_parms (type_scope))
9098 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9100 /* Make access check error messages point to the location
9101 of the use of the typedef. */
9102 input_location = iter->locus;
9103 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9104 type_decl, type_decl,
9105 tf_warning_or_error);
9107 input_location = saved_location;
9110 static tree
9111 instantiate_class_template_1 (tree type)
9113 tree templ, args, pattern, t, member;
9114 tree typedecl;
9115 tree pbinfo;
9116 tree base_list;
9117 unsigned int saved_maximum_field_alignment;
9118 tree fn_context;
9120 if (type == error_mark_node)
9121 return error_mark_node;
9123 if (COMPLETE_OR_OPEN_TYPE_P (type)
9124 || uses_template_parms (type))
9125 return type;
9127 /* Figure out which template is being instantiated. */
9128 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9129 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9131 /* Determine what specialization of the original template to
9132 instantiate. */
9133 t = most_specialized_partial_spec (type, tf_warning_or_error);
9134 if (t == error_mark_node)
9136 TYPE_BEING_DEFINED (type) = 1;
9137 return error_mark_node;
9139 else if (t)
9141 /* This TYPE is actually an instantiation of a partial
9142 specialization. We replace the innermost set of ARGS with
9143 the arguments appropriate for substitution. For example,
9144 given:
9146 template <class T> struct S {};
9147 template <class T> struct S<T*> {};
9149 and supposing that we are instantiating S<int*>, ARGS will
9150 presently be {int*} -- but we need {int}. */
9151 pattern = TREE_TYPE (t);
9152 args = TREE_PURPOSE (t);
9154 else
9156 pattern = TREE_TYPE (templ);
9157 args = CLASSTYPE_TI_ARGS (type);
9160 /* If the template we're instantiating is incomplete, then clearly
9161 there's nothing we can do. */
9162 if (!COMPLETE_TYPE_P (pattern))
9163 return type;
9165 /* If we've recursively instantiated too many templates, stop. */
9166 if (! push_tinst_level (type))
9167 return type;
9169 /* Now we're really doing the instantiation. Mark the type as in
9170 the process of being defined. */
9171 TYPE_BEING_DEFINED (type) = 1;
9173 /* We may be in the middle of deferred access check. Disable
9174 it now. */
9175 push_deferring_access_checks (dk_no_deferred);
9177 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9178 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9179 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9180 fn_context = error_mark_node;
9181 if (!fn_context)
9182 push_to_top_level ();
9183 /* Use #pragma pack from the template context. */
9184 saved_maximum_field_alignment = maximum_field_alignment;
9185 maximum_field_alignment = TYPE_PRECISION (pattern);
9187 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9189 /* Set the input location to the most specialized template definition.
9190 This is needed if tsubsting causes an error. */
9191 typedecl = TYPE_MAIN_DECL (pattern);
9192 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9193 DECL_SOURCE_LOCATION (typedecl);
9195 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9196 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9197 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9198 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9199 if (ANON_AGGR_TYPE_P (pattern))
9200 SET_ANON_AGGR_TYPE_P (type);
9201 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9203 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9204 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9205 /* Adjust visibility for template arguments. */
9206 determine_visibility (TYPE_MAIN_DECL (type));
9208 if (CLASS_TYPE_P (type))
9209 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9211 pbinfo = TYPE_BINFO (pattern);
9213 /* We should never instantiate a nested class before its enclosing
9214 class; we need to look up the nested class by name before we can
9215 instantiate it, and that lookup should instantiate the enclosing
9216 class. */
9217 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9218 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9220 base_list = NULL_TREE;
9221 if (BINFO_N_BASE_BINFOS (pbinfo))
9223 tree pbase_binfo;
9224 tree pushed_scope;
9225 int i;
9227 /* We must enter the scope containing the type, as that is where
9228 the accessibility of types named in dependent bases are
9229 looked up from. */
9230 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9232 /* Substitute into each of the bases to determine the actual
9233 basetypes. */
9234 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9236 tree base;
9237 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9238 tree expanded_bases = NULL_TREE;
9239 int idx, len = 1;
9241 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9243 expanded_bases =
9244 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9245 args, tf_error, NULL_TREE);
9246 if (expanded_bases == error_mark_node)
9247 continue;
9249 len = TREE_VEC_LENGTH (expanded_bases);
9252 for (idx = 0; idx < len; idx++)
9254 if (expanded_bases)
9255 /* Extract the already-expanded base class. */
9256 base = TREE_VEC_ELT (expanded_bases, idx);
9257 else
9258 /* Substitute to figure out the base class. */
9259 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9260 NULL_TREE);
9262 if (base == error_mark_node)
9263 continue;
9265 base_list = tree_cons (access, base, base_list);
9266 if (BINFO_VIRTUAL_P (pbase_binfo))
9267 TREE_TYPE (base_list) = integer_type_node;
9271 /* The list is now in reverse order; correct that. */
9272 base_list = nreverse (base_list);
9274 if (pushed_scope)
9275 pop_scope (pushed_scope);
9277 /* Now call xref_basetypes to set up all the base-class
9278 information. */
9279 xref_basetypes (type, base_list);
9281 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9282 (int) ATTR_FLAG_TYPE_IN_PLACE,
9283 args, tf_error, NULL_TREE);
9284 fixup_attribute_variants (type);
9286 /* Now that our base classes are set up, enter the scope of the
9287 class, so that name lookups into base classes, etc. will work
9288 correctly. This is precisely analogous to what we do in
9289 begin_class_definition when defining an ordinary non-template
9290 class, except we also need to push the enclosing classes. */
9291 push_nested_class (type);
9293 /* Now members are processed in the order of declaration. */
9294 for (member = CLASSTYPE_DECL_LIST (pattern);
9295 member; member = TREE_CHAIN (member))
9297 tree t = TREE_VALUE (member);
9299 if (TREE_PURPOSE (member))
9301 if (TYPE_P (t))
9303 /* Build new CLASSTYPE_NESTED_UTDS. */
9305 tree newtag;
9306 bool class_template_p;
9308 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9309 && TYPE_LANG_SPECIFIC (t)
9310 && CLASSTYPE_IS_TEMPLATE (t));
9311 /* If the member is a class template, then -- even after
9312 substitution -- there may be dependent types in the
9313 template argument list for the class. We increment
9314 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9315 that function will assume that no types are dependent
9316 when outside of a template. */
9317 if (class_template_p)
9318 ++processing_template_decl;
9319 newtag = tsubst (t, args, tf_error, NULL_TREE);
9320 if (class_template_p)
9321 --processing_template_decl;
9322 if (newtag == error_mark_node)
9323 continue;
9325 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9327 tree name = TYPE_IDENTIFIER (t);
9329 if (class_template_p)
9330 /* Unfortunately, lookup_template_class sets
9331 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9332 instantiation (i.e., for the type of a member
9333 template class nested within a template class.)
9334 This behavior is required for
9335 maybe_process_partial_specialization to work
9336 correctly, but is not accurate in this case;
9337 the TAG is not an instantiation of anything.
9338 (The corresponding TEMPLATE_DECL is an
9339 instantiation, but the TYPE is not.) */
9340 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9342 /* Now, we call pushtag to put this NEWTAG into the scope of
9343 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9344 pushtag calling push_template_decl. We don't have to do
9345 this for enums because it will already have been done in
9346 tsubst_enum. */
9347 if (name)
9348 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9349 pushtag (name, newtag, /*tag_scope=*/ts_current);
9352 else if (DECL_DECLARES_FUNCTION_P (t))
9354 /* Build new TYPE_METHODS. */
9355 tree r;
9357 if (TREE_CODE (t) == TEMPLATE_DECL)
9358 ++processing_template_decl;
9359 r = tsubst (t, args, tf_error, NULL_TREE);
9360 if (TREE_CODE (t) == TEMPLATE_DECL)
9361 --processing_template_decl;
9362 set_current_access_from_decl (r);
9363 finish_member_declaration (r);
9364 /* Instantiate members marked with attribute used. */
9365 if (r != error_mark_node && DECL_PRESERVE_P (r))
9366 mark_used (r);
9367 if (TREE_CODE (r) == FUNCTION_DECL
9368 && DECL_OMP_DECLARE_REDUCTION_P (r))
9369 cp_check_omp_declare_reduction (r);
9371 else if (DECL_CLASS_TEMPLATE_P (t)
9372 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9373 /* A closure type for a lambda in a default argument for a
9374 member template. Ignore it; it will be instantiated with
9375 the default argument. */;
9376 else
9378 /* Build new TYPE_FIELDS. */
9379 if (TREE_CODE (t) == STATIC_ASSERT)
9381 tree condition;
9383 ++c_inhibit_evaluation_warnings;
9384 condition =
9385 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9386 tf_warning_or_error, NULL_TREE,
9387 /*integral_constant_expression_p=*/true);
9388 --c_inhibit_evaluation_warnings;
9390 finish_static_assert (condition,
9391 STATIC_ASSERT_MESSAGE (t),
9392 STATIC_ASSERT_SOURCE_LOCATION (t),
9393 /*member_p=*/true);
9395 else if (TREE_CODE (t) != CONST_DECL)
9397 tree r;
9398 tree vec = NULL_TREE;
9399 int len = 1;
9401 /* The file and line for this declaration, to
9402 assist in error message reporting. Since we
9403 called push_tinst_level above, we don't need to
9404 restore these. */
9405 input_location = DECL_SOURCE_LOCATION (t);
9407 if (TREE_CODE (t) == TEMPLATE_DECL)
9408 ++processing_template_decl;
9409 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9410 if (TREE_CODE (t) == TEMPLATE_DECL)
9411 --processing_template_decl;
9413 if (TREE_CODE (r) == TREE_VEC)
9415 /* A capture pack became multiple fields. */
9416 vec = r;
9417 len = TREE_VEC_LENGTH (vec);
9420 for (int i = 0; i < len; ++i)
9422 if (vec)
9423 r = TREE_VEC_ELT (vec, i);
9424 if (VAR_P (r))
9426 /* In [temp.inst]:
9428 [t]he initialization (and any associated
9429 side-effects) of a static data member does
9430 not occur unless the static data member is
9431 itself used in a way that requires the
9432 definition of the static data member to
9433 exist.
9435 Therefore, we do not substitute into the
9436 initialized for the static data member here. */
9437 finish_static_data_member_decl
9439 /*init=*/NULL_TREE,
9440 /*init_const_expr_p=*/false,
9441 /*asmspec_tree=*/NULL_TREE,
9442 /*flags=*/0);
9443 /* Instantiate members marked with attribute used. */
9444 if (r != error_mark_node && DECL_PRESERVE_P (r))
9445 mark_used (r);
9447 else if (TREE_CODE (r) == FIELD_DECL)
9449 /* Determine whether R has a valid type and can be
9450 completed later. If R is invalid, then its type
9451 is replaced by error_mark_node. */
9452 tree rtype = TREE_TYPE (r);
9453 if (can_complete_type_without_circularity (rtype))
9454 complete_type (rtype);
9456 if (!COMPLETE_TYPE_P (rtype))
9458 cxx_incomplete_type_error (r, rtype);
9459 TREE_TYPE (r) = error_mark_node;
9463 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
9464 such a thing will already have been added to the field
9465 list by tsubst_enum in finish_member_declaration in the
9466 CLASSTYPE_NESTED_UTDS case above. */
9467 if (!(TREE_CODE (r) == TYPE_DECL
9468 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
9469 && DECL_ARTIFICIAL (r)))
9471 set_current_access_from_decl (r);
9472 finish_member_declaration (r);
9478 else
9480 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
9481 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9483 /* Build new CLASSTYPE_FRIEND_CLASSES. */
9485 tree friend_type = t;
9486 bool adjust_processing_template_decl = false;
9488 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9490 /* template <class T> friend class C; */
9491 friend_type = tsubst_friend_class (friend_type, args);
9492 adjust_processing_template_decl = true;
9494 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
9496 /* template <class T> friend class C::D; */
9497 friend_type = tsubst (friend_type, args,
9498 tf_warning_or_error, NULL_TREE);
9499 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9500 friend_type = TREE_TYPE (friend_type);
9501 adjust_processing_template_decl = true;
9503 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
9504 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
9506 /* This could be either
9508 friend class T::C;
9510 when dependent_type_p is false or
9512 template <class U> friend class T::C;
9514 otherwise. */
9515 friend_type = tsubst (friend_type, args,
9516 tf_warning_or_error, NULL_TREE);
9517 /* Bump processing_template_decl for correct
9518 dependent_type_p calculation. */
9519 ++processing_template_decl;
9520 if (dependent_type_p (friend_type))
9521 adjust_processing_template_decl = true;
9522 --processing_template_decl;
9524 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
9525 && hidden_name_p (TYPE_NAME (friend_type)))
9527 /* friend class C;
9529 where C hasn't been declared yet. Let's lookup name
9530 from namespace scope directly, bypassing any name that
9531 come from dependent base class. */
9532 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
9534 /* The call to xref_tag_from_type does injection for friend
9535 classes. */
9536 push_nested_namespace (ns);
9537 friend_type =
9538 xref_tag_from_type (friend_type, NULL_TREE,
9539 /*tag_scope=*/ts_current);
9540 pop_nested_namespace (ns);
9542 else if (uses_template_parms (friend_type))
9543 /* friend class C<T>; */
9544 friend_type = tsubst (friend_type, args,
9545 tf_warning_or_error, NULL_TREE);
9546 /* Otherwise it's
9548 friend class C;
9550 where C is already declared or
9552 friend class C<int>;
9554 We don't have to do anything in these cases. */
9556 if (adjust_processing_template_decl)
9557 /* Trick make_friend_class into realizing that the friend
9558 we're adding is a template, not an ordinary class. It's
9559 important that we use make_friend_class since it will
9560 perform some error-checking and output cross-reference
9561 information. */
9562 ++processing_template_decl;
9564 if (friend_type != error_mark_node)
9565 make_friend_class (type, friend_type, /*complain=*/false);
9567 if (adjust_processing_template_decl)
9568 --processing_template_decl;
9570 else
9572 /* Build new DECL_FRIENDLIST. */
9573 tree r;
9575 /* The file and line for this declaration, to
9576 assist in error message reporting. Since we
9577 called push_tinst_level above, we don't need to
9578 restore these. */
9579 input_location = DECL_SOURCE_LOCATION (t);
9581 if (TREE_CODE (t) == TEMPLATE_DECL)
9583 ++processing_template_decl;
9584 push_deferring_access_checks (dk_no_check);
9587 r = tsubst_friend_function (t, args);
9588 add_friend (type, r, /*complain=*/false);
9589 if (TREE_CODE (t) == TEMPLATE_DECL)
9591 pop_deferring_access_checks ();
9592 --processing_template_decl;
9598 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
9600 tree decl = lambda_function (type);
9601 if (decl)
9603 if (!DECL_TEMPLATE_INFO (decl)
9604 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
9605 instantiate_decl (decl, false, false);
9607 /* We need to instantiate the capture list from the template
9608 after we've instantiated the closure members, but before we
9609 consider adding the conversion op. Also keep any captures
9610 that may have been added during instantiation of the op(). */
9611 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
9612 tree tmpl_cap
9613 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
9614 args, tf_warning_or_error, NULL_TREE,
9615 false, false);
9617 LAMBDA_EXPR_CAPTURE_LIST (expr)
9618 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
9620 maybe_add_lambda_conv_op (type);
9622 else
9623 gcc_assert (errorcount);
9626 /* Set the file and line number information to whatever is given for
9627 the class itself. This puts error messages involving generated
9628 implicit functions at a predictable point, and the same point
9629 that would be used for non-template classes. */
9630 input_location = DECL_SOURCE_LOCATION (typedecl);
9632 unreverse_member_declarations (type);
9633 finish_struct_1 (type);
9634 TYPE_BEING_DEFINED (type) = 0;
9636 /* We don't instantiate default arguments for member functions. 14.7.1:
9638 The implicit instantiation of a class template specialization causes
9639 the implicit instantiation of the declarations, but not of the
9640 definitions or default arguments, of the class member functions,
9641 member classes, static data members and member templates.... */
9643 /* Some typedefs referenced from within the template code need to be access
9644 checked at template instantiation time, i.e now. These types were
9645 added to the template at parsing time. Let's get those and perform
9646 the access checks then. */
9647 perform_typedefs_access_check (pattern, args);
9648 perform_deferred_access_checks (tf_warning_or_error);
9649 pop_nested_class ();
9650 maximum_field_alignment = saved_maximum_field_alignment;
9651 if (!fn_context)
9652 pop_from_top_level ();
9653 pop_deferring_access_checks ();
9654 pop_tinst_level ();
9656 /* The vtable for a template class can be emitted in any translation
9657 unit in which the class is instantiated. When there is no key
9658 method, however, finish_struct_1 will already have added TYPE to
9659 the keyed_classes list. */
9660 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9661 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9663 return type;
9666 /* Wrapper for instantiate_class_template_1. */
9668 tree
9669 instantiate_class_template (tree type)
9671 tree ret;
9672 timevar_push (TV_TEMPLATE_INST);
9673 ret = instantiate_class_template_1 (type);
9674 timevar_pop (TV_TEMPLATE_INST);
9675 return ret;
9678 static tree
9679 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9681 tree r;
9683 if (!t)
9684 r = t;
9685 else if (TYPE_P (t))
9686 r = tsubst (t, args, complain, in_decl);
9687 else
9689 if (!(complain & tf_warning))
9690 ++c_inhibit_evaluation_warnings;
9691 r = tsubst_expr (t, args, complain, in_decl,
9692 /*integral_constant_expression_p=*/true);
9693 if (!(complain & tf_warning))
9694 --c_inhibit_evaluation_warnings;
9696 return r;
9699 /* Given a function parameter pack TMPL_PARM and some function parameters
9700 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9701 and set *SPEC_P to point at the next point in the list. */
9703 static tree
9704 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9706 /* Collect all of the extra "packed" parameters into an
9707 argument pack. */
9708 tree parmvec;
9709 tree parmtypevec;
9710 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9711 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9712 tree spec_parm = *spec_p;
9713 int i, len;
9715 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9716 if (tmpl_parm
9717 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9718 break;
9720 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9721 parmvec = make_tree_vec (len);
9722 parmtypevec = make_tree_vec (len);
9723 spec_parm = *spec_p;
9724 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9726 TREE_VEC_ELT (parmvec, i) = spec_parm;
9727 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9730 /* Build the argument packs. */
9731 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9732 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9733 TREE_TYPE (argpack) = argtypepack;
9734 *spec_p = spec_parm;
9736 return argpack;
9739 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9740 NONTYPE_ARGUMENT_PACK. */
9742 static tree
9743 make_fnparm_pack (tree spec_parm)
9745 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9748 /* Return true iff the Ith element of the argument pack ARG_PACK is a
9749 pack expansion. */
9751 static bool
9752 argument_pack_element_is_expansion_p (tree arg_pack, int i)
9754 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
9755 if (i >= TREE_VEC_LENGTH (vec))
9756 return false;
9757 return PACK_EXPANSION_P (TREE_VEC_ELT (vec, i));
9761 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
9763 static tree
9764 make_argument_pack_select (tree arg_pack, unsigned index)
9766 tree aps = make_node (ARGUMENT_PACK_SELECT);
9768 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
9769 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9771 return aps;
9774 /* This is a subroutine of tsubst_pack_expansion.
9776 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
9777 mechanism to store the (non complete list of) arguments of the
9778 substitution and return a non substituted pack expansion, in order
9779 to wait for when we have enough arguments to really perform the
9780 substitution. */
9782 static bool
9783 use_pack_expansion_extra_args_p (tree parm_packs,
9784 int arg_pack_len,
9785 bool has_empty_arg)
9787 /* If one pack has an expansion and another pack has a normal
9788 argument or if one pack has an empty argument and an another
9789 one hasn't then tsubst_pack_expansion cannot perform the
9790 substitution and need to fall back on the
9791 PACK_EXPANSION_EXTRA mechanism. */
9792 if (parm_packs == NULL_TREE)
9793 return false;
9794 else if (has_empty_arg)
9795 return true;
9797 bool has_expansion_arg = false;
9798 for (int i = 0 ; i < arg_pack_len; ++i)
9800 bool has_non_expansion_arg = false;
9801 for (tree parm_pack = parm_packs;
9802 parm_pack;
9803 parm_pack = TREE_CHAIN (parm_pack))
9805 tree arg = TREE_VALUE (parm_pack);
9807 if (argument_pack_element_is_expansion_p (arg, i))
9808 has_expansion_arg = true;
9809 else
9810 has_non_expansion_arg = true;
9813 if (has_expansion_arg && has_non_expansion_arg)
9814 return true;
9816 return false;
9819 /* [temp.variadic]/6 says that:
9821 The instantiation of a pack expansion [...]
9822 produces a list E1,E2, ..., En, where N is the number of elements
9823 in the pack expansion parameters.
9825 This subroutine of tsubst_pack_expansion produces one of these Ei.
9827 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
9828 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
9829 PATTERN, and each TREE_VALUE is its corresponding argument pack.
9830 INDEX is the index 'i' of the element Ei to produce. ARGS,
9831 COMPLAIN, and IN_DECL are the same parameters as for the
9832 tsubst_pack_expansion function.
9834 The function returns the resulting Ei upon successful completion,
9835 or error_mark_node.
9837 Note that this function possibly modifies the ARGS parameter, so
9838 it's the responsibility of the caller to restore it. */
9840 static tree
9841 gen_elem_of_pack_expansion_instantiation (tree pattern,
9842 tree parm_packs,
9843 unsigned index,
9844 tree args /* This parm gets
9845 modified. */,
9846 tsubst_flags_t complain,
9847 tree in_decl)
9849 tree t;
9850 bool ith_elem_is_expansion = false;
9852 /* For each parameter pack, change the substitution of the parameter
9853 pack to the ith argument in its argument pack, then expand the
9854 pattern. */
9855 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
9857 tree parm = TREE_PURPOSE (pack);
9858 tree arg_pack = TREE_VALUE (pack);
9859 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
9861 ith_elem_is_expansion |=
9862 argument_pack_element_is_expansion_p (arg_pack, index);
9864 /* Select the Ith argument from the pack. */
9865 if (TREE_CODE (parm) == PARM_DECL
9866 || TREE_CODE (parm) == FIELD_DECL)
9868 if (index == 0)
9870 aps = make_argument_pack_select (arg_pack, index);
9871 mark_used (parm);
9872 register_local_specialization (aps, parm);
9874 else
9875 aps = retrieve_local_specialization (parm);
9877 else
9879 int idx, level;
9880 template_parm_level_and_index (parm, &level, &idx);
9882 if (index == 0)
9884 aps = make_argument_pack_select (arg_pack, index);
9885 /* Update the corresponding argument. */
9886 TMPL_ARG (args, level, idx) = aps;
9888 else
9889 /* Re-use the ARGUMENT_PACK_SELECT. */
9890 aps = TMPL_ARG (args, level, idx);
9892 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9895 /* Substitute into the PATTERN with the (possibly altered)
9896 arguments. */
9897 if (pattern == in_decl)
9898 /* Expanding a fixed parameter pack from
9899 coerce_template_parameter_pack. */
9900 t = tsubst_decl (pattern, args, complain);
9901 else if (!TYPE_P (pattern))
9902 t = tsubst_expr (pattern, args, complain, in_decl,
9903 /*integral_constant_expression_p=*/false);
9904 else
9905 t = tsubst (pattern, args, complain, in_decl);
9907 /* If the Ith argument pack element is a pack expansion, then
9908 the Ith element resulting from the substituting is going to
9909 be a pack expansion as well. */
9910 if (ith_elem_is_expansion)
9911 t = make_pack_expansion (t);
9913 return t;
9916 /* Substitute ARGS into T, which is an pack expansion
9917 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9918 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9919 (if only a partial substitution could be performed) or
9920 ERROR_MARK_NODE if there was an error. */
9921 tree
9922 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9923 tree in_decl)
9925 tree pattern;
9926 tree pack, packs = NULL_TREE;
9927 bool unsubstituted_packs = false;
9928 int i, len = -1;
9929 tree result;
9930 hash_map<tree, tree> *saved_local_specializations = NULL;
9931 bool need_local_specializations = false;
9932 int levels;
9934 gcc_assert (PACK_EXPANSION_P (t));
9935 pattern = PACK_EXPANSION_PATTERN (t);
9937 /* Add in any args remembered from an earlier partial instantiation. */
9938 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9940 levels = TMPL_ARGS_DEPTH (args);
9942 /* Determine the argument packs that will instantiate the parameter
9943 packs used in the expansion expression. While we're at it,
9944 compute the number of arguments to be expanded and make sure it
9945 is consistent. */
9946 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9947 pack = TREE_CHAIN (pack))
9949 tree parm_pack = TREE_VALUE (pack);
9950 tree arg_pack = NULL_TREE;
9951 tree orig_arg = NULL_TREE;
9952 int level = 0;
9954 if (TREE_CODE (parm_pack) == BASES)
9956 if (BASES_DIRECT (parm_pack))
9957 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9958 args, complain, in_decl, false));
9959 else
9960 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9961 args, complain, in_decl, false));
9963 if (TREE_CODE (parm_pack) == PARM_DECL)
9965 if (PACK_EXPANSION_LOCAL_P (t))
9966 arg_pack = retrieve_local_specialization (parm_pack);
9967 else
9969 /* We can't rely on local_specializations for a parameter
9970 name used later in a function declaration (such as in a
9971 late-specified return type). Even if it exists, it might
9972 have the wrong value for a recursive call. Just make a
9973 dummy decl, since it's only used for its type. */
9974 arg_pack = tsubst_decl (parm_pack, args, complain);
9975 if (arg_pack && DECL_PACK_P (arg_pack))
9976 /* Partial instantiation of the parm_pack, we can't build
9977 up an argument pack yet. */
9978 arg_pack = NULL_TREE;
9979 else
9980 arg_pack = make_fnparm_pack (arg_pack);
9981 need_local_specializations = true;
9984 else if (TREE_CODE (parm_pack) == FIELD_DECL)
9985 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
9986 else
9988 int idx;
9989 template_parm_level_and_index (parm_pack, &level, &idx);
9991 if (level <= levels)
9992 arg_pack = TMPL_ARG (args, level, idx);
9995 orig_arg = arg_pack;
9996 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9997 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9999 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10000 /* This can only happen if we forget to expand an argument
10001 pack somewhere else. Just return an error, silently. */
10003 result = make_tree_vec (1);
10004 TREE_VEC_ELT (result, 0) = error_mark_node;
10005 return result;
10008 if (arg_pack)
10010 int my_len =
10011 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10013 /* Don't bother trying to do a partial substitution with
10014 incomplete packs; we'll try again after deduction. */
10015 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10016 return t;
10018 if (len < 0)
10019 len = my_len;
10020 else if (len != my_len)
10022 if (!(complain & tf_error))
10023 /* Fail quietly. */;
10024 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10025 error ("mismatched argument pack lengths while expanding "
10026 "%<%T%>",
10027 pattern);
10028 else
10029 error ("mismatched argument pack lengths while expanding "
10030 "%<%E%>",
10031 pattern);
10032 return error_mark_node;
10035 /* Keep track of the parameter packs and their corresponding
10036 argument packs. */
10037 packs = tree_cons (parm_pack, arg_pack, packs);
10038 TREE_TYPE (packs) = orig_arg;
10040 else
10042 /* We can't substitute for this parameter pack. We use a flag as
10043 well as the missing_level counter because function parameter
10044 packs don't have a level. */
10045 unsubstituted_packs = true;
10049 /* If the expansion is just T..., return the matching argument pack. */
10050 if (!unsubstituted_packs
10051 && TREE_PURPOSE (packs) == pattern)
10053 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10054 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10055 || pack_expansion_args_count (args))
10056 return args;
10057 /* Otherwise use the normal path so we get convert_from_reference. */
10060 /* We cannot expand this expansion expression, because we don't have
10061 all of the argument packs we need. */
10062 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10064 /* We got some full packs, but we can't substitute them in until we
10065 have values for all the packs. So remember these until then. */
10067 t = make_pack_expansion (pattern);
10068 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10069 return t;
10071 else if (unsubstituted_packs)
10073 /* There were no real arguments, we're just replacing a parameter
10074 pack with another version of itself. Substitute into the
10075 pattern and return a PACK_EXPANSION_*. The caller will need to
10076 deal with that. */
10077 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10078 t = tsubst_expr (pattern, args, complain, in_decl,
10079 /*integral_constant_expression_p=*/false);
10080 else
10081 t = tsubst (pattern, args, complain, in_decl);
10082 t = make_pack_expansion (t);
10083 return t;
10086 gcc_assert (len >= 0);
10088 if (need_local_specializations)
10090 /* We're in a late-specified return type, so create our own local
10091 specializations map; the current map is either NULL or (in the
10092 case of recursive unification) might have bindings that we don't
10093 want to use or alter. */
10094 saved_local_specializations = local_specializations;
10095 local_specializations = new hash_map<tree, tree>;
10098 /* For each argument in each argument pack, substitute into the
10099 pattern. */
10100 result = make_tree_vec (len);
10101 for (i = 0; i < len; ++i)
10103 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10105 args, complain,
10106 in_decl);
10107 TREE_VEC_ELT (result, i) = t;
10108 if (t == error_mark_node)
10110 result = error_mark_node;
10111 break;
10115 /* Update ARGS to restore the substitution from parameter packs to
10116 their argument packs. */
10117 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10119 tree parm = TREE_PURPOSE (pack);
10121 if (TREE_CODE (parm) == PARM_DECL
10122 || TREE_CODE (parm) == FIELD_DECL)
10123 register_local_specialization (TREE_TYPE (pack), parm);
10124 else
10126 int idx, level;
10128 if (TREE_VALUE (pack) == NULL_TREE)
10129 continue;
10131 template_parm_level_and_index (parm, &level, &idx);
10133 /* Update the corresponding argument. */
10134 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10135 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10136 TREE_TYPE (pack);
10137 else
10138 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10142 if (need_local_specializations)
10144 delete local_specializations;
10145 local_specializations = saved_local_specializations;
10148 return result;
10151 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10152 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10153 parameter packs; all parms generated from a function parameter pack will
10154 have the same DECL_PARM_INDEX. */
10156 tree
10157 get_pattern_parm (tree parm, tree tmpl)
10159 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10160 tree patparm;
10162 if (DECL_ARTIFICIAL (parm))
10164 for (patparm = DECL_ARGUMENTS (pattern);
10165 patparm; patparm = DECL_CHAIN (patparm))
10166 if (DECL_ARTIFICIAL (patparm)
10167 && DECL_NAME (parm) == DECL_NAME (patparm))
10168 break;
10170 else
10172 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
10173 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
10174 gcc_assert (DECL_PARM_INDEX (patparm)
10175 == DECL_PARM_INDEX (parm));
10178 return patparm;
10181 /* Substitute ARGS into the vector or list of template arguments T. */
10183 static tree
10184 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10186 tree orig_t = t;
10187 int len, need_new = 0, i, expanded_len_adjust = 0, out;
10188 tree *elts;
10190 if (t == error_mark_node)
10191 return error_mark_node;
10193 len = TREE_VEC_LENGTH (t);
10194 elts = XALLOCAVEC (tree, len);
10196 for (i = 0; i < len; i++)
10198 tree orig_arg = TREE_VEC_ELT (t, i);
10199 tree new_arg;
10201 if (TREE_CODE (orig_arg) == TREE_VEC)
10202 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
10203 else if (PACK_EXPANSION_P (orig_arg))
10205 /* Substitute into an expansion expression. */
10206 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
10208 if (TREE_CODE (new_arg) == TREE_VEC)
10209 /* Add to the expanded length adjustment the number of
10210 expanded arguments. We subtract one from this
10211 measurement, because the argument pack expression
10212 itself is already counted as 1 in
10213 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
10214 the argument pack is empty. */
10215 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
10217 else if (ARGUMENT_PACK_P (orig_arg))
10219 /* Substitute into each of the arguments. */
10220 new_arg = TYPE_P (orig_arg)
10221 ? cxx_make_type (TREE_CODE (orig_arg))
10222 : make_node (TREE_CODE (orig_arg));
10224 SET_ARGUMENT_PACK_ARGS (
10225 new_arg,
10226 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
10227 args, complain, in_decl));
10229 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
10230 new_arg = error_mark_node;
10232 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
10233 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
10234 complain, in_decl);
10235 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
10237 if (TREE_TYPE (new_arg) == error_mark_node)
10238 new_arg = error_mark_node;
10241 else
10242 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
10244 if (new_arg == error_mark_node)
10245 return error_mark_node;
10247 elts[i] = new_arg;
10248 if (new_arg != orig_arg)
10249 need_new = 1;
10252 if (!need_new)
10253 return t;
10255 /* Make space for the expanded arguments coming from template
10256 argument packs. */
10257 t = make_tree_vec (len + expanded_len_adjust);
10258 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
10259 arguments for a member template.
10260 In that case each TREE_VEC in ORIG_T represents a level of template
10261 arguments, and ORIG_T won't carry any non defaulted argument count.
10262 It will rather be the nested TREE_VECs that will carry one.
10263 In other words, ORIG_T carries a non defaulted argument count only
10264 if it doesn't contain any nested TREE_VEC. */
10265 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
10267 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
10268 count += expanded_len_adjust;
10269 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
10271 for (i = 0, out = 0; i < len; i++)
10273 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
10274 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
10275 && TREE_CODE (elts[i]) == TREE_VEC)
10277 int idx;
10279 /* Now expand the template argument pack "in place". */
10280 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
10281 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
10283 else
10285 TREE_VEC_ELT (t, out) = elts[i];
10286 out++;
10290 return t;
10293 /* Return the result of substituting ARGS into the template parameters
10294 given by PARMS. If there are m levels of ARGS and m + n levels of
10295 PARMS, then the result will contain n levels of PARMS. For
10296 example, if PARMS is `template <class T> template <class U>
10297 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
10298 result will be `template <int*, double, class V>'. */
10300 static tree
10301 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
10303 tree r = NULL_TREE;
10304 tree* new_parms;
10306 /* When substituting into a template, we must set
10307 PROCESSING_TEMPLATE_DECL as the template parameters may be
10308 dependent if they are based on one-another, and the dependency
10309 predicates are short-circuit outside of templates. */
10310 ++processing_template_decl;
10312 for (new_parms = &r;
10313 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
10314 new_parms = &(TREE_CHAIN (*new_parms)),
10315 parms = TREE_CHAIN (parms))
10317 tree new_vec =
10318 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
10319 int i;
10321 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
10323 tree tuple;
10325 if (parms == error_mark_node)
10326 continue;
10328 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
10330 if (tuple == error_mark_node)
10331 continue;
10333 TREE_VEC_ELT (new_vec, i) =
10334 tsubst_template_parm (tuple, args, complain);
10337 *new_parms =
10338 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
10339 - TMPL_ARGS_DEPTH (args)),
10340 new_vec, NULL_TREE);
10343 --processing_template_decl;
10345 return r;
10348 /* Return the result of substituting ARGS into one template parameter
10349 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
10350 parameter and which TREE_PURPOSE is the default argument of the
10351 template parameter. */
10353 static tree
10354 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
10356 tree default_value, parm_decl;
10358 if (args == NULL_TREE
10359 || t == NULL_TREE
10360 || t == error_mark_node)
10361 return t;
10363 gcc_assert (TREE_CODE (t) == TREE_LIST);
10365 default_value = TREE_PURPOSE (t);
10366 parm_decl = TREE_VALUE (t);
10368 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
10369 if (TREE_CODE (parm_decl) == PARM_DECL
10370 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
10371 parm_decl = error_mark_node;
10372 default_value = tsubst_template_arg (default_value, args,
10373 complain, NULL_TREE);
10375 return build_tree_list (default_value, parm_decl);
10378 /* Substitute the ARGS into the indicated aggregate (or enumeration)
10379 type T. If T is not an aggregate or enumeration type, it is
10380 handled as if by tsubst. IN_DECL is as for tsubst. If
10381 ENTERING_SCOPE is nonzero, T is the context for a template which
10382 we are presently tsubst'ing. Return the substituted value. */
10384 static tree
10385 tsubst_aggr_type (tree t,
10386 tree args,
10387 tsubst_flags_t complain,
10388 tree in_decl,
10389 int entering_scope)
10391 if (t == NULL_TREE)
10392 return NULL_TREE;
10394 switch (TREE_CODE (t))
10396 case RECORD_TYPE:
10397 if (TYPE_PTRMEMFUNC_P (t))
10398 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
10400 /* Else fall through. */
10401 case ENUMERAL_TYPE:
10402 case UNION_TYPE:
10403 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
10405 tree argvec;
10406 tree context;
10407 tree r;
10408 int saved_unevaluated_operand;
10409 int saved_inhibit_evaluation_warnings;
10411 /* In "sizeof(X<I>)" we need to evaluate "I". */
10412 saved_unevaluated_operand = cp_unevaluated_operand;
10413 cp_unevaluated_operand = 0;
10414 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
10415 c_inhibit_evaluation_warnings = 0;
10417 /* First, determine the context for the type we are looking
10418 up. */
10419 context = TYPE_CONTEXT (t);
10420 if (context && TYPE_P (context))
10422 context = tsubst_aggr_type (context, args, complain,
10423 in_decl, /*entering_scope=*/1);
10424 /* If context is a nested class inside a class template,
10425 it may still need to be instantiated (c++/33959). */
10426 context = complete_type (context);
10429 /* Then, figure out what arguments are appropriate for the
10430 type we are trying to find. For example, given:
10432 template <class T> struct S;
10433 template <class T, class U> void f(T, U) { S<U> su; }
10435 and supposing that we are instantiating f<int, double>,
10436 then our ARGS will be {int, double}, but, when looking up
10437 S we only want {double}. */
10438 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
10439 complain, in_decl);
10440 if (argvec == error_mark_node)
10441 r = error_mark_node;
10442 else
10444 r = lookup_template_class (t, argvec, in_decl, context,
10445 entering_scope, complain);
10446 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
10449 cp_unevaluated_operand = saved_unevaluated_operand;
10450 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10452 return r;
10454 else
10455 /* This is not a template type, so there's nothing to do. */
10456 return t;
10458 default:
10459 return tsubst (t, args, complain, in_decl);
10463 /* Substitute into the default argument ARG (a default argument for
10464 FN), which has the indicated TYPE. */
10466 tree
10467 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
10469 tree saved_class_ptr = NULL_TREE;
10470 tree saved_class_ref = NULL_TREE;
10471 int errs = errorcount + sorrycount;
10473 /* This can happen in invalid code. */
10474 if (TREE_CODE (arg) == DEFAULT_ARG)
10475 return arg;
10477 /* This default argument came from a template. Instantiate the
10478 default argument here, not in tsubst. In the case of
10479 something like:
10481 template <class T>
10482 struct S {
10483 static T t();
10484 void f(T = t());
10487 we must be careful to do name lookup in the scope of S<T>,
10488 rather than in the current class. */
10489 push_access_scope (fn);
10490 /* The "this" pointer is not valid in a default argument. */
10491 if (cfun)
10493 saved_class_ptr = current_class_ptr;
10494 cp_function_chain->x_current_class_ptr = NULL_TREE;
10495 saved_class_ref = current_class_ref;
10496 cp_function_chain->x_current_class_ref = NULL_TREE;
10499 push_deferring_access_checks(dk_no_deferred);
10500 /* The default argument expression may cause implicitly defined
10501 member functions to be synthesized, which will result in garbage
10502 collection. We must treat this situation as if we were within
10503 the body of function so as to avoid collecting live data on the
10504 stack. */
10505 ++function_depth;
10506 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
10507 complain, NULL_TREE,
10508 /*integral_constant_expression_p=*/false);
10509 --function_depth;
10510 pop_deferring_access_checks();
10512 /* Restore the "this" pointer. */
10513 if (cfun)
10515 cp_function_chain->x_current_class_ptr = saved_class_ptr;
10516 cp_function_chain->x_current_class_ref = saved_class_ref;
10519 if (errorcount+sorrycount > errs
10520 && (complain & tf_warning_or_error))
10521 inform (input_location,
10522 " when instantiating default argument for call to %D", fn);
10524 /* Make sure the default argument is reasonable. */
10525 arg = check_default_argument (type, arg, complain);
10527 pop_access_scope (fn);
10529 return arg;
10532 /* Substitute into all the default arguments for FN. */
10534 static void
10535 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
10537 tree arg;
10538 tree tmpl_args;
10540 tmpl_args = DECL_TI_ARGS (fn);
10542 /* If this function is not yet instantiated, we certainly don't need
10543 its default arguments. */
10544 if (uses_template_parms (tmpl_args))
10545 return;
10546 /* Don't do this again for clones. */
10547 if (DECL_CLONED_FUNCTION_P (fn))
10548 return;
10550 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
10551 arg;
10552 arg = TREE_CHAIN (arg))
10553 if (TREE_PURPOSE (arg))
10554 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
10555 TREE_VALUE (arg),
10556 TREE_PURPOSE (arg),
10557 complain);
10560 /* Substitute the ARGS into the T, which is a _DECL. Return the
10561 result of the substitution. Issue error and warning messages under
10562 control of COMPLAIN. */
10564 static tree
10565 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
10567 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
10568 location_t saved_loc;
10569 tree r = NULL_TREE;
10570 tree in_decl = t;
10571 hashval_t hash = 0;
10573 /* Set the filename and linenumber to improve error-reporting. */
10574 saved_loc = input_location;
10575 input_location = DECL_SOURCE_LOCATION (t);
10577 switch (TREE_CODE (t))
10579 case TEMPLATE_DECL:
10581 /* We can get here when processing a member function template,
10582 member class template, or template template parameter. */
10583 tree decl = DECL_TEMPLATE_RESULT (t);
10584 tree spec;
10585 tree tmpl_args;
10586 tree full_args;
10588 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10590 /* Template template parameter is treated here. */
10591 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10592 if (new_type == error_mark_node)
10593 RETURN (error_mark_node);
10594 /* If we get a real template back, return it. This can happen in
10595 the context of most_specialized_partial_spec. */
10596 if (TREE_CODE (new_type) == TEMPLATE_DECL)
10597 return new_type;
10599 r = copy_decl (t);
10600 DECL_CHAIN (r) = NULL_TREE;
10601 TREE_TYPE (r) = new_type;
10602 DECL_TEMPLATE_RESULT (r)
10603 = build_decl (DECL_SOURCE_LOCATION (decl),
10604 TYPE_DECL, DECL_NAME (decl), new_type);
10605 DECL_TEMPLATE_PARMS (r)
10606 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10607 complain);
10608 TYPE_NAME (new_type) = r;
10609 break;
10612 /* We might already have an instance of this template.
10613 The ARGS are for the surrounding class type, so the
10614 full args contain the tsubst'd args for the context,
10615 plus the innermost args from the template decl. */
10616 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
10617 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
10618 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
10619 /* Because this is a template, the arguments will still be
10620 dependent, even after substitution. If
10621 PROCESSING_TEMPLATE_DECL is not set, the dependency
10622 predicates will short-circuit. */
10623 ++processing_template_decl;
10624 full_args = tsubst_template_args (tmpl_args, args,
10625 complain, in_decl);
10626 --processing_template_decl;
10627 if (full_args == error_mark_node)
10628 RETURN (error_mark_node);
10630 /* If this is a default template template argument,
10631 tsubst might not have changed anything. */
10632 if (full_args == tmpl_args)
10633 RETURN (t);
10635 hash = hash_tmpl_and_args (t, full_args);
10636 spec = retrieve_specialization (t, full_args, hash);
10637 if (spec != NULL_TREE)
10639 r = spec;
10640 break;
10643 /* Make a new template decl. It will be similar to the
10644 original, but will record the current template arguments.
10645 We also create a new function declaration, which is just
10646 like the old one, but points to this new template, rather
10647 than the old one. */
10648 r = copy_decl (t);
10649 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
10650 DECL_CHAIN (r) = NULL_TREE;
10652 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10654 if (TREE_CODE (decl) == TYPE_DECL
10655 && !TYPE_DECL_ALIAS_P (decl))
10657 tree new_type;
10658 ++processing_template_decl;
10659 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10660 --processing_template_decl;
10661 if (new_type == error_mark_node)
10662 RETURN (error_mark_node);
10664 TREE_TYPE (r) = new_type;
10665 /* For a partial specialization, we need to keep pointing to
10666 the primary template. */
10667 if (!DECL_TEMPLATE_SPECIALIZATION (t))
10668 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10669 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10670 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10671 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10673 else
10675 tree new_decl;
10676 ++processing_template_decl;
10677 new_decl = tsubst (decl, args, complain, in_decl);
10678 --processing_template_decl;
10679 if (new_decl == error_mark_node)
10680 RETURN (error_mark_node);
10682 DECL_TEMPLATE_RESULT (r) = new_decl;
10683 DECL_TI_TEMPLATE (new_decl) = r;
10684 TREE_TYPE (r) = TREE_TYPE (new_decl);
10685 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10686 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10689 SET_DECL_IMPLICIT_INSTANTIATION (r);
10690 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10691 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10693 /* The template parameters for this new template are all the
10694 template parameters for the old template, except the
10695 outermost level of parameters. */
10696 DECL_TEMPLATE_PARMS (r)
10697 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10698 complain);
10700 if (PRIMARY_TEMPLATE_P (t))
10701 DECL_PRIMARY_TEMPLATE (r) = r;
10703 if (TREE_CODE (decl) != TYPE_DECL && TREE_CODE (decl) != VAR_DECL)
10704 /* Record this non-type partial instantiation. */
10705 register_specialization (r, t,
10706 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10707 false, hash);
10709 break;
10711 case FUNCTION_DECL:
10713 tree ctx;
10714 tree argvec = NULL_TREE;
10715 tree *friends;
10716 tree gen_tmpl;
10717 tree type;
10718 int member;
10719 int args_depth;
10720 int parms_depth;
10722 /* Nobody should be tsubst'ing into non-template functions. */
10723 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10725 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10727 tree spec;
10728 bool dependent_p;
10730 /* If T is not dependent, just return it. We have to
10731 increment PROCESSING_TEMPLATE_DECL because
10732 value_dependent_expression_p assumes that nothing is
10733 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10734 ++processing_template_decl;
10735 dependent_p = value_dependent_expression_p (t);
10736 --processing_template_decl;
10737 if (!dependent_p)
10738 RETURN (t);
10740 /* Calculate the most general template of which R is a
10741 specialization, and the complete set of arguments used to
10742 specialize R. */
10743 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10744 argvec = tsubst_template_args (DECL_TI_ARGS
10745 (DECL_TEMPLATE_RESULT
10746 (DECL_TI_TEMPLATE (t))),
10747 args, complain, in_decl);
10748 if (argvec == error_mark_node)
10749 RETURN (error_mark_node);
10751 /* Check to see if we already have this specialization. */
10752 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10753 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10755 if (spec)
10757 r = spec;
10758 break;
10761 /* We can see more levels of arguments than parameters if
10762 there was a specialization of a member template, like
10763 this:
10765 template <class T> struct S { template <class U> void f(); }
10766 template <> template <class U> void S<int>::f(U);
10768 Here, we'll be substituting into the specialization,
10769 because that's where we can find the code we actually
10770 want to generate, but we'll have enough arguments for
10771 the most general template.
10773 We also deal with the peculiar case:
10775 template <class T> struct S {
10776 template <class U> friend void f();
10778 template <class U> void f() {}
10779 template S<int>;
10780 template void f<double>();
10782 Here, the ARGS for the instantiation of will be {int,
10783 double}. But, we only need as many ARGS as there are
10784 levels of template parameters in CODE_PATTERN. We are
10785 careful not to get fooled into reducing the ARGS in
10786 situations like:
10788 template <class T> struct S { template <class U> void f(U); }
10789 template <class T> template <> void S<T>::f(int) {}
10791 which we can spot because the pattern will be a
10792 specialization in this case. */
10793 args_depth = TMPL_ARGS_DEPTH (args);
10794 parms_depth =
10795 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10796 if (args_depth > parms_depth
10797 && !DECL_TEMPLATE_SPECIALIZATION (t))
10798 args = get_innermost_template_args (args, parms_depth);
10800 else
10802 /* This special case arises when we have something like this:
10804 template <class T> struct S {
10805 friend void f<int>(int, double);
10808 Here, the DECL_TI_TEMPLATE for the friend declaration
10809 will be an IDENTIFIER_NODE. We are being called from
10810 tsubst_friend_function, and we want only to create a
10811 new decl (R) with appropriate types so that we can call
10812 determine_specialization. */
10813 gen_tmpl = NULL_TREE;
10816 if (DECL_CLASS_SCOPE_P (t))
10818 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10819 member = 2;
10820 else
10821 member = 1;
10822 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10823 complain, t, /*entering_scope=*/1);
10825 else
10827 member = 0;
10828 ctx = DECL_CONTEXT (t);
10830 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10831 if (type == error_mark_node)
10832 RETURN (error_mark_node);
10834 /* If we hit excessive deduction depth, the type is bogus even if
10835 it isn't error_mark_node, so don't build a decl. */
10836 if (excessive_deduction_depth)
10837 RETURN (error_mark_node);
10839 /* We do NOT check for matching decls pushed separately at this
10840 point, as they may not represent instantiations of this
10841 template, and in any case are considered separate under the
10842 discrete model. */
10843 r = copy_decl (t);
10844 DECL_USE_TEMPLATE (r) = 0;
10845 TREE_TYPE (r) = type;
10846 /* Clear out the mangled name and RTL for the instantiation. */
10847 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10848 SET_DECL_RTL (r, NULL);
10849 /* Leave DECL_INITIAL set on deleted instantiations. */
10850 if (!DECL_DELETED_FN (r))
10851 DECL_INITIAL (r) = NULL_TREE;
10852 DECL_CONTEXT (r) = ctx;
10854 /* OpenMP UDRs have the only argument a reference to the declared
10855 type. We want to diagnose if the declared type is a reference,
10856 which is invalid, but as references to references are usually
10857 quietly merged, diagnose it here. */
10858 if (DECL_OMP_DECLARE_REDUCTION_P (t))
10860 tree argtype
10861 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
10862 argtype = tsubst (argtype, args, complain, in_decl);
10863 if (TREE_CODE (argtype) == REFERENCE_TYPE)
10864 error_at (DECL_SOURCE_LOCATION (t),
10865 "reference type %qT in "
10866 "%<#pragma omp declare reduction%>", argtype);
10867 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
10868 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
10869 argtype);
10872 if (member && DECL_CONV_FN_P (r))
10873 /* Type-conversion operator. Reconstruct the name, in
10874 case it's the name of one of the template's parameters. */
10875 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10877 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10878 complain, t);
10879 DECL_RESULT (r) = NULL_TREE;
10881 TREE_STATIC (r) = 0;
10882 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10883 DECL_EXTERNAL (r) = 1;
10884 /* If this is an instantiation of a function with internal
10885 linkage, we already know what object file linkage will be
10886 assigned to the instantiation. */
10887 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10888 DECL_DEFER_OUTPUT (r) = 0;
10889 DECL_CHAIN (r) = NULL_TREE;
10890 DECL_PENDING_INLINE_INFO (r) = 0;
10891 DECL_PENDING_INLINE_P (r) = 0;
10892 DECL_SAVED_TREE (r) = NULL_TREE;
10893 DECL_STRUCT_FUNCTION (r) = NULL;
10894 TREE_USED (r) = 0;
10895 /* We'll re-clone as appropriate in instantiate_template. */
10896 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10898 /* If we aren't complaining now, return on error before we register
10899 the specialization so that we'll complain eventually. */
10900 if ((complain & tf_error) == 0
10901 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10902 && !grok_op_properties (r, /*complain=*/false))
10903 RETURN (error_mark_node);
10905 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10906 this in the special friend case mentioned above where
10907 GEN_TMPL is NULL. */
10908 if (gen_tmpl)
10910 DECL_TEMPLATE_INFO (r)
10911 = build_template_info (gen_tmpl, argvec);
10912 SET_DECL_IMPLICIT_INSTANTIATION (r);
10914 tree new_r
10915 = register_specialization (r, gen_tmpl, argvec, false, hash);
10916 if (new_r != r)
10917 /* We instantiated this while substituting into
10918 the type earlier (template/friend54.C). */
10919 RETURN (new_r);
10921 /* We're not supposed to instantiate default arguments
10922 until they are called, for a template. But, for a
10923 declaration like:
10925 template <class T> void f ()
10926 { extern void g(int i = T()); }
10928 we should do the substitution when the template is
10929 instantiated. We handle the member function case in
10930 instantiate_class_template since the default arguments
10931 might refer to other members of the class. */
10932 if (!member
10933 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10934 && !uses_template_parms (argvec))
10935 tsubst_default_arguments (r, complain);
10937 else
10938 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10940 /* Copy the list of befriending classes. */
10941 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10942 *friends;
10943 friends = &TREE_CHAIN (*friends))
10945 *friends = copy_node (*friends);
10946 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10947 args, complain,
10948 in_decl);
10951 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10953 maybe_retrofit_in_chrg (r);
10954 if (DECL_CONSTRUCTOR_P (r))
10955 grok_ctor_properties (ctx, r);
10956 if (DECL_INHERITED_CTOR_BASE (r))
10957 deduce_inheriting_ctor (r);
10958 /* If this is an instantiation of a member template, clone it.
10959 If it isn't, that'll be handled by
10960 clone_constructors_and_destructors. */
10961 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10962 clone_function_decl (r, /*update_method_vec_p=*/0);
10964 else if ((complain & tf_error) != 0
10965 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10966 && !grok_op_properties (r, /*complain=*/true))
10967 RETURN (error_mark_node);
10969 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10970 SET_DECL_FRIEND_CONTEXT (r,
10971 tsubst (DECL_FRIEND_CONTEXT (t),
10972 args, complain, in_decl));
10974 /* Possibly limit visibility based on template args. */
10975 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10976 if (DECL_VISIBILITY_SPECIFIED (t))
10978 DECL_VISIBILITY_SPECIFIED (r) = 0;
10979 DECL_ATTRIBUTES (r)
10980 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10982 determine_visibility (r);
10983 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10984 && !processing_template_decl)
10985 defaulted_late_check (r);
10987 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10988 args, complain, in_decl);
10990 break;
10992 case PARM_DECL:
10994 tree type = NULL_TREE;
10995 int i, len = 1;
10996 tree expanded_types = NULL_TREE;
10997 tree prev_r = NULL_TREE;
10998 tree first_r = NULL_TREE;
11000 if (DECL_PACK_P (t))
11002 /* If there is a local specialization that isn't a
11003 parameter pack, it means that we're doing a "simple"
11004 substitution from inside tsubst_pack_expansion. Just
11005 return the local specialization (which will be a single
11006 parm). */
11007 tree spec = retrieve_local_specialization (t);
11008 if (spec
11009 && TREE_CODE (spec) == PARM_DECL
11010 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11011 RETURN (spec);
11013 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11014 the parameters in this function parameter pack. */
11015 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11016 complain, in_decl);
11017 if (TREE_CODE (expanded_types) == TREE_VEC)
11019 len = TREE_VEC_LENGTH (expanded_types);
11021 /* Zero-length parameter packs are boring. Just substitute
11022 into the chain. */
11023 if (len == 0)
11024 RETURN (tsubst (TREE_CHAIN (t), args, complain,
11025 TREE_CHAIN (t)));
11027 else
11029 /* All we did was update the type. Make a note of that. */
11030 type = expanded_types;
11031 expanded_types = NULL_TREE;
11035 /* Loop through all of the parameters we'll build. When T is
11036 a function parameter pack, LEN is the number of expanded
11037 types in EXPANDED_TYPES; otherwise, LEN is 1. */
11038 r = NULL_TREE;
11039 for (i = 0; i < len; ++i)
11041 prev_r = r;
11042 r = copy_node (t);
11043 if (DECL_TEMPLATE_PARM_P (t))
11044 SET_DECL_TEMPLATE_PARM_P (r);
11046 if (expanded_types)
11047 /* We're on the Ith parameter of the function parameter
11048 pack. */
11050 /* Get the Ith type. */
11051 type = TREE_VEC_ELT (expanded_types, i);
11053 /* Rename the parameter to include the index. */
11054 DECL_NAME (r)
11055 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11057 else if (!type)
11058 /* We're dealing with a normal parameter. */
11059 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11061 type = type_decays_to (type);
11062 TREE_TYPE (r) = type;
11063 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11065 if (DECL_INITIAL (r))
11067 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11068 DECL_INITIAL (r) = TREE_TYPE (r);
11069 else
11070 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11071 complain, in_decl);
11074 DECL_CONTEXT (r) = NULL_TREE;
11076 if (!DECL_TEMPLATE_PARM_P (r))
11077 DECL_ARG_TYPE (r) = type_passed_as (type);
11079 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11080 args, complain, in_decl);
11082 /* Keep track of the first new parameter we
11083 generate. That's what will be returned to the
11084 caller. */
11085 if (!first_r)
11086 first_r = r;
11088 /* Build a proper chain of parameters when substituting
11089 into a function parameter pack. */
11090 if (prev_r)
11091 DECL_CHAIN (prev_r) = r;
11094 /* If cp_unevaluated_operand is set, we're just looking for a
11095 single dummy parameter, so don't keep going. */
11096 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11097 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11098 complain, DECL_CHAIN (t));
11100 /* FIRST_R contains the start of the chain we've built. */
11101 r = first_r;
11103 break;
11105 case FIELD_DECL:
11107 tree type = NULL_TREE;
11108 tree vec = NULL_TREE;
11109 tree expanded_types = NULL_TREE;
11110 int len = 1;
11112 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11114 /* This field is a lambda capture pack. Return a TREE_VEC of
11115 the expanded fields to instantiate_class_template_1 and
11116 store them in the specializations hash table as a
11117 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11118 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11119 complain, in_decl);
11120 if (TREE_CODE (expanded_types) == TREE_VEC)
11122 len = TREE_VEC_LENGTH (expanded_types);
11123 vec = make_tree_vec (len);
11125 else
11127 /* All we did was update the type. Make a note of that. */
11128 type = expanded_types;
11129 expanded_types = NULL_TREE;
11133 for (int i = 0; i < len; ++i)
11135 r = copy_decl (t);
11136 if (expanded_types)
11138 type = TREE_VEC_ELT (expanded_types, i);
11139 DECL_NAME (r)
11140 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11142 else if (!type)
11143 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11145 if (type == error_mark_node)
11146 RETURN (error_mark_node);
11147 TREE_TYPE (r) = type;
11148 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11150 if (DECL_C_BIT_FIELD (r))
11151 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11152 non-bit-fields DECL_INITIAL is a non-static data member
11153 initializer, which gets deferred instantiation. */
11154 DECL_INITIAL (r)
11155 = tsubst_expr (DECL_INITIAL (t), args,
11156 complain, in_decl,
11157 /*integral_constant_expression_p=*/true);
11158 else if (DECL_INITIAL (t))
11160 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11161 NSDMI in perform_member_init. Still set DECL_INITIAL
11162 so that we know there is one. */
11163 DECL_INITIAL (r) = void_node;
11164 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
11165 retrofit_lang_decl (r);
11166 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11168 /* We don't have to set DECL_CONTEXT here; it is set by
11169 finish_member_declaration. */
11170 DECL_CHAIN (r) = NULL_TREE;
11172 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11173 args, complain, in_decl);
11175 if (vec)
11176 TREE_VEC_ELT (vec, i) = r;
11179 if (vec)
11181 r = vec;
11182 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
11183 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
11184 SET_ARGUMENT_PACK_ARGS (pack, vec);
11185 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
11186 TREE_TYPE (pack) = tpack;
11187 register_specialization (pack, t, args, false, 0);
11190 break;
11192 case USING_DECL:
11193 /* We reach here only for member using decls. We also need to check
11194 uses_template_parms because DECL_DEPENDENT_P is not set for a
11195 using-declaration that designates a member of the current
11196 instantiation (c++/53549). */
11197 if (DECL_DEPENDENT_P (t)
11198 || uses_template_parms (USING_DECL_SCOPE (t)))
11200 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
11201 complain, in_decl);
11202 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
11203 r = do_class_using_decl (inst_scope, name);
11204 if (!r)
11205 r = error_mark_node;
11206 else
11208 TREE_PROTECTED (r) = TREE_PROTECTED (t);
11209 TREE_PRIVATE (r) = TREE_PRIVATE (t);
11212 else
11214 r = copy_node (t);
11215 DECL_CHAIN (r) = NULL_TREE;
11217 break;
11219 case TYPE_DECL:
11220 case VAR_DECL:
11222 tree argvec = NULL_TREE;
11223 tree gen_tmpl = NULL_TREE;
11224 tree spec;
11225 tree tmpl = NULL_TREE;
11226 tree ctx;
11227 tree type = NULL_TREE;
11228 bool local_p;
11230 if (TREE_TYPE (t) == error_mark_node)
11231 RETURN (error_mark_node);
11233 if (TREE_CODE (t) == TYPE_DECL
11234 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
11236 /* If this is the canonical decl, we don't have to
11237 mess with instantiations, and often we can't (for
11238 typename, template type parms and such). Note that
11239 TYPE_NAME is not correct for the above test if
11240 we've copied the type for a typedef. */
11241 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11242 if (type == error_mark_node)
11243 RETURN (error_mark_node);
11244 r = TYPE_NAME (type);
11245 break;
11248 /* Check to see if we already have the specialization we
11249 need. */
11250 spec = NULL_TREE;
11251 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
11253 /* T is a static data member or namespace-scope entity.
11254 We have to substitute into namespace-scope variables
11255 (even though such entities are never templates) because
11256 of cases like:
11258 template <class T> void f() { extern T t; }
11260 where the entity referenced is not known until
11261 instantiation time. */
11262 local_p = false;
11263 ctx = DECL_CONTEXT (t);
11264 if (DECL_CLASS_SCOPE_P (t))
11266 ctx = tsubst_aggr_type (ctx, args,
11267 complain,
11268 in_decl, /*entering_scope=*/1);
11269 /* If CTX is unchanged, then T is in fact the
11270 specialization we want. That situation occurs when
11271 referencing a static data member within in its own
11272 class. We can use pointer equality, rather than
11273 same_type_p, because DECL_CONTEXT is always
11274 canonical... */
11275 if (ctx == DECL_CONTEXT (t)
11276 /* ... unless T is a member template; in which
11277 case our caller can be willing to create a
11278 specialization of that template represented
11279 by T. */
11280 && !(DECL_TI_TEMPLATE (t)
11281 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
11282 spec = t;
11285 if (!spec)
11287 tmpl = DECL_TI_TEMPLATE (t);
11288 gen_tmpl = most_general_template (tmpl);
11289 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
11290 if (argvec == error_mark_node)
11291 RETURN (error_mark_node);
11292 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11293 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11296 else
11298 /* A local variable. */
11299 local_p = true;
11300 /* Subsequent calls to pushdecl will fill this in. */
11301 ctx = NULL_TREE;
11302 spec = retrieve_local_specialization (t);
11304 /* If we already have the specialization we need, there is
11305 nothing more to do. */
11306 if (spec)
11308 r = spec;
11309 break;
11312 /* Create a new node for the specialization we need. */
11313 r = copy_decl (t);
11314 if (type == NULL_TREE)
11316 if (is_typedef_decl (t))
11317 type = DECL_ORIGINAL_TYPE (t);
11318 else
11319 type = TREE_TYPE (t);
11320 if (VAR_P (t)
11321 && VAR_HAD_UNKNOWN_BOUND (t)
11322 && type != error_mark_node)
11323 type = strip_array_domain (type);
11324 type = tsubst (type, args, complain, in_decl);
11326 if (VAR_P (r))
11328 /* Even if the original location is out of scope, the
11329 newly substituted one is not. */
11330 DECL_DEAD_FOR_LOCAL (r) = 0;
11331 DECL_INITIALIZED_P (r) = 0;
11332 DECL_TEMPLATE_INSTANTIATED (r) = 0;
11333 if (type == error_mark_node)
11334 RETURN (error_mark_node);
11335 if (TREE_CODE (type) == FUNCTION_TYPE)
11337 /* It may seem that this case cannot occur, since:
11339 typedef void f();
11340 void g() { f x; }
11342 declares a function, not a variable. However:
11344 typedef void f();
11345 template <typename T> void g() { T t; }
11346 template void g<f>();
11348 is an attempt to declare a variable with function
11349 type. */
11350 error ("variable %qD has function type",
11351 /* R is not yet sufficiently initialized, so we
11352 just use its name. */
11353 DECL_NAME (r));
11354 RETURN (error_mark_node);
11356 type = complete_type (type);
11357 /* Wait until cp_finish_decl to set this again, to handle
11358 circular dependency (template/instantiate6.C). */
11359 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
11360 type = check_var_type (DECL_NAME (r), type);
11362 if (DECL_HAS_VALUE_EXPR_P (t))
11364 tree ve = DECL_VALUE_EXPR (t);
11365 ve = tsubst_expr (ve, args, complain, in_decl,
11366 /*constant_expression_p=*/false);
11367 if (REFERENCE_REF_P (ve))
11369 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
11370 ve = TREE_OPERAND (ve, 0);
11372 SET_DECL_VALUE_EXPR (r, ve);
11374 if (TREE_STATIC (r) || DECL_EXTERNAL (r))
11375 set_decl_tls_model (r, decl_tls_model (t));
11377 else if (DECL_SELF_REFERENCE_P (t))
11378 SET_DECL_SELF_REFERENCE_P (r);
11379 TREE_TYPE (r) = type;
11380 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11381 DECL_CONTEXT (r) = ctx;
11382 /* Clear out the mangled name and RTL for the instantiation. */
11383 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11384 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11385 SET_DECL_RTL (r, NULL);
11386 /* The initializer must not be expanded until it is required;
11387 see [temp.inst]. */
11388 DECL_INITIAL (r) = NULL_TREE;
11389 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11390 SET_DECL_RTL (r, NULL);
11391 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
11392 if (VAR_P (r))
11394 /* Possibly limit visibility based on template args. */
11395 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11396 if (DECL_VISIBILITY_SPECIFIED (t))
11398 DECL_VISIBILITY_SPECIFIED (r) = 0;
11399 DECL_ATTRIBUTES (r)
11400 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11402 determine_visibility (r);
11405 if (!local_p)
11407 /* A static data member declaration is always marked
11408 external when it is declared in-class, even if an
11409 initializer is present. We mimic the non-template
11410 processing here. */
11411 DECL_EXTERNAL (r) = 1;
11413 register_specialization (r, gen_tmpl, argvec, false, hash);
11414 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
11415 SET_DECL_IMPLICIT_INSTANTIATION (r);
11417 else if (!cp_unevaluated_operand)
11418 register_local_specialization (r, t);
11420 DECL_CHAIN (r) = NULL_TREE;
11422 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
11423 /*flags=*/0,
11424 args, complain, in_decl);
11426 /* Preserve a typedef that names a type. */
11427 if (is_typedef_decl (r))
11429 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
11430 set_underlying_type (r);
11433 layout_decl (r, 0);
11435 break;
11437 default:
11438 gcc_unreachable ();
11440 #undef RETURN
11442 out:
11443 /* Restore the file and line information. */
11444 input_location = saved_loc;
11446 return r;
11449 /* Substitute into the ARG_TYPES of a function type.
11450 If END is a TREE_CHAIN, leave it and any following types
11451 un-substituted. */
11453 static tree
11454 tsubst_arg_types (tree arg_types,
11455 tree args,
11456 tree end,
11457 tsubst_flags_t complain,
11458 tree in_decl)
11460 tree remaining_arg_types;
11461 tree type = NULL_TREE;
11462 int i = 1;
11463 tree expanded_args = NULL_TREE;
11464 tree default_arg;
11466 if (!arg_types || arg_types == void_list_node || arg_types == end)
11467 return arg_types;
11469 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
11470 args, end, complain, in_decl);
11471 if (remaining_arg_types == error_mark_node)
11472 return error_mark_node;
11474 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
11476 /* For a pack expansion, perform substitution on the
11477 entire expression. Later on, we'll handle the arguments
11478 one-by-one. */
11479 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
11480 args, complain, in_decl);
11482 if (TREE_CODE (expanded_args) == TREE_VEC)
11483 /* So that we'll spin through the parameters, one by one. */
11484 i = TREE_VEC_LENGTH (expanded_args);
11485 else
11487 /* We only partially substituted into the parameter
11488 pack. Our type is TYPE_PACK_EXPANSION. */
11489 type = expanded_args;
11490 expanded_args = NULL_TREE;
11494 while (i > 0) {
11495 --i;
11497 if (expanded_args)
11498 type = TREE_VEC_ELT (expanded_args, i);
11499 else if (!type)
11500 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
11502 if (type == error_mark_node)
11503 return error_mark_node;
11504 if (VOID_TYPE_P (type))
11506 if (complain & tf_error)
11508 error ("invalid parameter type %qT", type);
11509 if (in_decl)
11510 error ("in declaration %q+D", in_decl);
11512 return error_mark_node;
11514 /* DR 657. */
11515 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
11516 return error_mark_node;
11518 /* Do array-to-pointer, function-to-pointer conversion, and ignore
11519 top-level qualifiers as required. */
11520 type = cv_unqualified (type_decays_to (type));
11522 /* We do not substitute into default arguments here. The standard
11523 mandates that they be instantiated only when needed, which is
11524 done in build_over_call. */
11525 default_arg = TREE_PURPOSE (arg_types);
11527 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
11529 /* We've instantiated a template before its default arguments
11530 have been parsed. This can happen for a nested template
11531 class, and is not an error unless we require the default
11532 argument in a call of this function. */
11533 remaining_arg_types =
11534 tree_cons (default_arg, type, remaining_arg_types);
11535 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
11537 else
11538 remaining_arg_types =
11539 hash_tree_cons (default_arg, type, remaining_arg_types);
11542 return remaining_arg_types;
11545 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
11546 *not* handle the exception-specification for FNTYPE, because the
11547 initial substitution of explicitly provided template parameters
11548 during argument deduction forbids substitution into the
11549 exception-specification:
11551 [temp.deduct]
11553 All references in the function type of the function template to the
11554 corresponding template parameters are replaced by the specified tem-
11555 plate argument values. If a substitution in a template parameter or
11556 in the function type of the function template results in an invalid
11557 type, type deduction fails. [Note: The equivalent substitution in
11558 exception specifications is done only when the function is instanti-
11559 ated, at which point a program is ill-formed if the substitution
11560 results in an invalid type.] */
11562 static tree
11563 tsubst_function_type (tree t,
11564 tree args,
11565 tsubst_flags_t complain,
11566 tree in_decl)
11568 tree return_type;
11569 tree arg_types = NULL_TREE;
11570 tree fntype;
11572 /* The TYPE_CONTEXT is not used for function/method types. */
11573 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
11575 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
11576 failure. */
11577 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
11579 if (late_return_type_p)
11581 /* Substitute the argument types. */
11582 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11583 complain, in_decl);
11584 if (arg_types == error_mark_node)
11585 return error_mark_node;
11587 tree save_ccp = current_class_ptr;
11588 tree save_ccr = current_class_ref;
11589 tree this_type = (TREE_CODE (t) == METHOD_TYPE
11590 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
11591 bool do_inject = this_type && CLASS_TYPE_P (this_type);
11592 if (do_inject)
11594 /* DR 1207: 'this' is in scope in the trailing return type. */
11595 inject_this_parameter (this_type, cp_type_quals (this_type));
11598 /* Substitute the return type. */
11599 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11601 if (do_inject)
11603 current_class_ptr = save_ccp;
11604 current_class_ref = save_ccr;
11607 else
11608 /* Substitute the return type. */
11609 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11611 if (return_type == error_mark_node)
11612 return error_mark_node;
11613 /* DR 486 clarifies that creation of a function type with an
11614 invalid return type is a deduction failure. */
11615 if (TREE_CODE (return_type) == ARRAY_TYPE
11616 || TREE_CODE (return_type) == FUNCTION_TYPE)
11618 if (complain & tf_error)
11620 if (TREE_CODE (return_type) == ARRAY_TYPE)
11621 error ("function returning an array");
11622 else
11623 error ("function returning a function");
11625 return error_mark_node;
11627 /* And DR 657. */
11628 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
11629 return error_mark_node;
11631 if (!late_return_type_p)
11633 /* Substitute the argument types. */
11634 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11635 complain, in_decl);
11636 if (arg_types == error_mark_node)
11637 return error_mark_node;
11640 /* Construct a new type node and return it. */
11641 if (TREE_CODE (t) == FUNCTION_TYPE)
11643 fntype = build_function_type (return_type, arg_types);
11644 fntype = apply_memfn_quals (fntype,
11645 type_memfn_quals (t),
11646 type_memfn_rqual (t));
11648 else
11650 tree r = TREE_TYPE (TREE_VALUE (arg_types));
11651 /* Don't pick up extra function qualifiers from the basetype. */
11652 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
11653 if (! MAYBE_CLASS_TYPE_P (r))
11655 /* [temp.deduct]
11657 Type deduction may fail for any of the following
11658 reasons:
11660 -- Attempting to create "pointer to member of T" when T
11661 is not a class type. */
11662 if (complain & tf_error)
11663 error ("creating pointer to member function of non-class type %qT",
11665 return error_mark_node;
11668 fntype = build_method_type_directly (r, return_type,
11669 TREE_CHAIN (arg_types));
11670 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
11672 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
11674 if (late_return_type_p)
11675 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
11677 return fntype;
11680 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
11681 ARGS into that specification, and return the substituted
11682 specification. If there is no specification, return NULL_TREE. */
11684 static tree
11685 tsubst_exception_specification (tree fntype,
11686 tree args,
11687 tsubst_flags_t complain,
11688 tree in_decl,
11689 bool defer_ok)
11691 tree specs;
11692 tree new_specs;
11694 specs = TYPE_RAISES_EXCEPTIONS (fntype);
11695 new_specs = NULL_TREE;
11696 if (specs && TREE_PURPOSE (specs))
11698 /* A noexcept-specifier. */
11699 tree expr = TREE_PURPOSE (specs);
11700 if (TREE_CODE (expr) == INTEGER_CST)
11701 new_specs = expr;
11702 else if (defer_ok)
11704 /* Defer instantiation of noexcept-specifiers to avoid
11705 excessive instantiations (c++/49107). */
11706 new_specs = make_node (DEFERRED_NOEXCEPT);
11707 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
11709 /* We already partially instantiated this member template,
11710 so combine the new args with the old. */
11711 DEFERRED_NOEXCEPT_PATTERN (new_specs)
11712 = DEFERRED_NOEXCEPT_PATTERN (expr);
11713 DEFERRED_NOEXCEPT_ARGS (new_specs)
11714 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
11716 else
11718 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
11719 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
11722 else
11723 new_specs = tsubst_copy_and_build
11724 (expr, args, complain, in_decl, /*function_p=*/false,
11725 /*integral_constant_expression_p=*/true);
11726 new_specs = build_noexcept_spec (new_specs, complain);
11728 else if (specs)
11730 if (! TREE_VALUE (specs))
11731 new_specs = specs;
11732 else
11733 while (specs)
11735 tree spec;
11736 int i, len = 1;
11737 tree expanded_specs = NULL_TREE;
11739 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
11741 /* Expand the pack expansion type. */
11742 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
11743 args, complain,
11744 in_decl);
11746 if (expanded_specs == error_mark_node)
11747 return error_mark_node;
11748 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11749 len = TREE_VEC_LENGTH (expanded_specs);
11750 else
11752 /* We're substituting into a member template, so
11753 we got a TYPE_PACK_EXPANSION back. Add that
11754 expansion and move on. */
11755 gcc_assert (TREE_CODE (expanded_specs)
11756 == TYPE_PACK_EXPANSION);
11757 new_specs = add_exception_specifier (new_specs,
11758 expanded_specs,
11759 complain);
11760 specs = TREE_CHAIN (specs);
11761 continue;
11765 for (i = 0; i < len; ++i)
11767 if (expanded_specs)
11768 spec = TREE_VEC_ELT (expanded_specs, i);
11769 else
11770 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11771 if (spec == error_mark_node)
11772 return spec;
11773 new_specs = add_exception_specifier (new_specs, spec,
11774 complain);
11777 specs = TREE_CHAIN (specs);
11780 return new_specs;
11783 /* Take the tree structure T and replace template parameters used
11784 therein with the argument vector ARGS. IN_DECL is an associated
11785 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11786 Issue error and warning messages under control of COMPLAIN. Note
11787 that we must be relatively non-tolerant of extensions here, in
11788 order to preserve conformance; if we allow substitutions that
11789 should not be allowed, we may allow argument deductions that should
11790 not succeed, and therefore report ambiguous overload situations
11791 where there are none. In theory, we could allow the substitution,
11792 but indicate that it should have failed, and allow our caller to
11793 make sure that the right thing happens, but we don't try to do this
11794 yet.
11796 This function is used for dealing with types, decls and the like;
11797 for expressions, use tsubst_expr or tsubst_copy. */
11799 tree
11800 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11802 enum tree_code code;
11803 tree type, r = NULL_TREE;
11805 if (t == NULL_TREE || t == error_mark_node
11806 || t == integer_type_node
11807 || t == void_type_node
11808 || t == char_type_node
11809 || t == unknown_type_node
11810 || TREE_CODE (t) == NAMESPACE_DECL
11811 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11812 return t;
11814 if (DECL_P (t))
11815 return tsubst_decl (t, args, complain);
11817 if (args == NULL_TREE)
11818 return t;
11820 code = TREE_CODE (t);
11822 if (code == IDENTIFIER_NODE)
11823 type = IDENTIFIER_TYPE_VALUE (t);
11824 else
11825 type = TREE_TYPE (t);
11827 gcc_assert (type != unknown_type_node);
11829 /* Reuse typedefs. We need to do this to handle dependent attributes,
11830 such as attribute aligned. */
11831 if (TYPE_P (t)
11832 && typedef_variant_p (t))
11834 tree decl = TYPE_NAME (t);
11836 if (alias_template_specialization_p (t))
11838 /* DECL represents an alias template and we want to
11839 instantiate it. */
11840 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11841 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11842 r = instantiate_alias_template (tmpl, gen_args, complain);
11844 else if (DECL_CLASS_SCOPE_P (decl)
11845 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11846 && uses_template_parms (DECL_CONTEXT (decl)))
11848 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11849 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11850 r = retrieve_specialization (tmpl, gen_args, 0);
11852 else if (DECL_FUNCTION_SCOPE_P (decl)
11853 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11854 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11855 r = retrieve_local_specialization (decl);
11856 else
11857 /* The typedef is from a non-template context. */
11858 return t;
11860 if (r)
11862 r = TREE_TYPE (r);
11863 r = cp_build_qualified_type_real
11864 (r, cp_type_quals (t) | cp_type_quals (r),
11865 complain | tf_ignore_bad_quals);
11866 return r;
11868 else
11870 /* We don't have an instantiation yet, so drop the typedef. */
11871 int quals = cp_type_quals (t);
11872 t = DECL_ORIGINAL_TYPE (decl);
11873 t = cp_build_qualified_type_real (t, quals,
11874 complain | tf_ignore_bad_quals);
11878 if (type
11879 && code != TYPENAME_TYPE
11880 && code != TEMPLATE_TYPE_PARM
11881 && code != IDENTIFIER_NODE
11882 && code != FUNCTION_TYPE
11883 && code != METHOD_TYPE)
11884 type = tsubst (type, args, complain, in_decl);
11885 if (type == error_mark_node)
11886 return error_mark_node;
11888 switch (code)
11890 case RECORD_TYPE:
11891 case UNION_TYPE:
11892 case ENUMERAL_TYPE:
11893 return tsubst_aggr_type (t, args, complain, in_decl,
11894 /*entering_scope=*/0);
11896 case ERROR_MARK:
11897 case IDENTIFIER_NODE:
11898 case VOID_TYPE:
11899 case REAL_TYPE:
11900 case COMPLEX_TYPE:
11901 case VECTOR_TYPE:
11902 case BOOLEAN_TYPE:
11903 case NULLPTR_TYPE:
11904 case LANG_TYPE:
11905 return t;
11907 case INTEGER_TYPE:
11908 if (t == integer_type_node)
11909 return t;
11911 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11912 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11913 return t;
11916 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11918 max = tsubst_expr (omax, args, complain, in_decl,
11919 /*integral_constant_expression_p=*/false);
11921 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11922 needed. */
11923 if (TREE_CODE (max) == NOP_EXPR
11924 && TREE_SIDE_EFFECTS (omax)
11925 && !TREE_TYPE (max))
11926 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11928 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11929 with TREE_SIDE_EFFECTS that indicates this is not an integral
11930 constant expression. */
11931 if (processing_template_decl
11932 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11934 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11935 TREE_SIDE_EFFECTS (max) = 1;
11938 return compute_array_index_type (NULL_TREE, max, complain);
11941 case TEMPLATE_TYPE_PARM:
11942 case TEMPLATE_TEMPLATE_PARM:
11943 case BOUND_TEMPLATE_TEMPLATE_PARM:
11944 case TEMPLATE_PARM_INDEX:
11946 int idx;
11947 int level;
11948 int levels;
11949 tree arg = NULL_TREE;
11951 r = NULL_TREE;
11953 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11954 template_parm_level_and_index (t, &level, &idx);
11956 levels = TMPL_ARGS_DEPTH (args);
11957 if (level <= levels)
11959 arg = TMPL_ARG (args, level, idx);
11961 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11963 /* See through ARGUMENT_PACK_SELECT arguments. */
11964 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11965 /* If the selected argument is an expansion E, that most
11966 likely means we were called from
11967 gen_elem_of_pack_expansion_instantiation during the
11968 substituting of pack an argument pack (which Ith
11969 element is a pack expansion, where I is
11970 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
11971 In this case, the Ith element resulting from this
11972 substituting is going to be a pack expansion, which
11973 pattern is the pattern of E. Let's return the
11974 pattern of E, and
11975 gen_elem_of_pack_expansion_instantiation will
11976 build the resulting pack expansion from it. */
11977 if (PACK_EXPANSION_P (arg))
11979 /* Make sure we aren't throwing away arg info. */
11980 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
11981 arg = PACK_EXPANSION_PATTERN (arg);
11986 if (arg == error_mark_node)
11987 return error_mark_node;
11988 else if (arg != NULL_TREE)
11990 if (ARGUMENT_PACK_P (arg))
11991 /* If ARG is an argument pack, we don't actually want to
11992 perform a substitution here, because substitutions
11993 for argument packs are only done
11994 element-by-element. We can get to this point when
11995 substituting the type of a non-type template
11996 parameter pack, when that type actually contains
11997 template parameter packs from an outer template, e.g.,
11999 template<typename... Types> struct A {
12000 template<Types... Values> struct B { };
12001 }; */
12002 return t;
12004 if (code == TEMPLATE_TYPE_PARM)
12006 int quals;
12007 gcc_assert (TYPE_P (arg));
12009 quals = cp_type_quals (arg) | cp_type_quals (t);
12011 return cp_build_qualified_type_real
12012 (arg, quals, complain | tf_ignore_bad_quals);
12014 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12016 /* We are processing a type constructed from a
12017 template template parameter. */
12018 tree argvec = tsubst (TYPE_TI_ARGS (t),
12019 args, complain, in_decl);
12020 if (argvec == error_mark_node)
12021 return error_mark_node;
12023 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
12024 || TREE_CODE (arg) == TEMPLATE_DECL
12025 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
12027 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
12028 /* Consider this code:
12030 template <template <class> class Template>
12031 struct Internal {
12032 template <class Arg> using Bind = Template<Arg>;
12035 template <template <class> class Template, class Arg>
12036 using Instantiate = Template<Arg>; //#0
12038 template <template <class> class Template,
12039 class Argument>
12040 using Bind =
12041 Instantiate<Internal<Template>::template Bind,
12042 Argument>; //#1
12044 When #1 is parsed, the
12045 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12046 parameter `Template' in #0 matches the
12047 UNBOUND_CLASS_TEMPLATE representing the argument
12048 `Internal<Template>::template Bind'; We then want
12049 to assemble the type `Bind<Argument>' that can't
12050 be fully created right now, because
12051 `Internal<Template>' not being complete, the Bind
12052 template cannot be looked up in that context. So
12053 we need to "store" `Bind<Argument>' for later
12054 when the context of Bind becomes complete. Let's
12055 store that in a TYPENAME_TYPE. */
12056 return make_typename_type (TYPE_CONTEXT (arg),
12057 build_nt (TEMPLATE_ID_EXPR,
12058 TYPE_IDENTIFIER (arg),
12059 argvec),
12060 typename_type,
12061 complain);
12063 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
12064 are resolving nested-types in the signature of a
12065 member function templates. Otherwise ARG is a
12066 TEMPLATE_DECL and is the real template to be
12067 instantiated. */
12068 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12069 arg = TYPE_NAME (arg);
12071 r = lookup_template_class (arg,
12072 argvec, in_decl,
12073 DECL_CONTEXT (arg),
12074 /*entering_scope=*/0,
12075 complain);
12076 return cp_build_qualified_type_real
12077 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12079 else
12080 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12081 return convert_from_reference (unshare_expr (arg));
12084 if (level == 1)
12085 /* This can happen during the attempted tsubst'ing in
12086 unify. This means that we don't yet have any information
12087 about the template parameter in question. */
12088 return t;
12090 /* Early in template argument deduction substitution, we don't
12091 want to reduce the level of 'auto', or it will be confused
12092 with a normal template parm in subsequent deduction. */
12093 if (is_auto (t) && (complain & tf_partial))
12094 return t;
12096 /* If we get here, we must have been looking at a parm for a
12097 more deeply nested template. Make a new version of this
12098 template parameter, but with a lower level. */
12099 switch (code)
12101 case TEMPLATE_TYPE_PARM:
12102 case TEMPLATE_TEMPLATE_PARM:
12103 case BOUND_TEMPLATE_TEMPLATE_PARM:
12104 if (cp_type_quals (t))
12106 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12107 r = cp_build_qualified_type_real
12108 (r, cp_type_quals (t),
12109 complain | (code == TEMPLATE_TYPE_PARM
12110 ? tf_ignore_bad_quals : 0));
12112 else
12114 r = copy_type (t);
12115 TEMPLATE_TYPE_PARM_INDEX (r)
12116 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12117 r, levels, args, complain);
12118 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12119 TYPE_MAIN_VARIANT (r) = r;
12120 TYPE_POINTER_TO (r) = NULL_TREE;
12121 TYPE_REFERENCE_TO (r) = NULL_TREE;
12123 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12124 /* We have reduced the level of the template
12125 template parameter, but not the levels of its
12126 template parameters, so canonical_type_parameter
12127 will not be able to find the canonical template
12128 template parameter for this level. Thus, we
12129 require structural equality checking to compare
12130 TEMPLATE_TEMPLATE_PARMs. */
12131 SET_TYPE_STRUCTURAL_EQUALITY (r);
12132 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12133 SET_TYPE_STRUCTURAL_EQUALITY (r);
12134 else
12135 TYPE_CANONICAL (r) = canonical_type_parameter (r);
12137 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12139 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
12140 complain, in_decl);
12141 if (argvec == error_mark_node)
12142 return error_mark_node;
12144 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
12145 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
12148 break;
12150 case TEMPLATE_PARM_INDEX:
12151 r = reduce_template_parm_level (t, type, levels, args, complain);
12152 break;
12154 default:
12155 gcc_unreachable ();
12158 return r;
12161 case TREE_LIST:
12163 tree purpose, value, chain;
12165 if (t == void_list_node)
12166 return t;
12168 purpose = TREE_PURPOSE (t);
12169 if (purpose)
12171 purpose = tsubst (purpose, args, complain, in_decl);
12172 if (purpose == error_mark_node)
12173 return error_mark_node;
12175 value = TREE_VALUE (t);
12176 if (value)
12178 value = tsubst (value, args, complain, in_decl);
12179 if (value == error_mark_node)
12180 return error_mark_node;
12182 chain = TREE_CHAIN (t);
12183 if (chain && chain != void_type_node)
12185 chain = tsubst (chain, args, complain, in_decl);
12186 if (chain == error_mark_node)
12187 return error_mark_node;
12189 if (purpose == TREE_PURPOSE (t)
12190 && value == TREE_VALUE (t)
12191 && chain == TREE_CHAIN (t))
12192 return t;
12193 return hash_tree_cons (purpose, value, chain);
12196 case TREE_BINFO:
12197 /* We should never be tsubsting a binfo. */
12198 gcc_unreachable ();
12200 case TREE_VEC:
12201 /* A vector of template arguments. */
12202 gcc_assert (!type);
12203 return tsubst_template_args (t, args, complain, in_decl);
12205 case POINTER_TYPE:
12206 case REFERENCE_TYPE:
12208 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
12209 return t;
12211 /* [temp.deduct]
12213 Type deduction may fail for any of the following
12214 reasons:
12216 -- Attempting to create a pointer to reference type.
12217 -- Attempting to create a reference to a reference type or
12218 a reference to void.
12220 Core issue 106 says that creating a reference to a reference
12221 during instantiation is no longer a cause for failure. We
12222 only enforce this check in strict C++98 mode. */
12223 if ((TREE_CODE (type) == REFERENCE_TYPE
12224 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
12225 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
12227 static location_t last_loc;
12229 /* We keep track of the last time we issued this error
12230 message to avoid spewing a ton of messages during a
12231 single bad template instantiation. */
12232 if (complain & tf_error
12233 && last_loc != input_location)
12235 if (VOID_TYPE_P (type))
12236 error ("forming reference to void");
12237 else if (code == POINTER_TYPE)
12238 error ("forming pointer to reference type %qT", type);
12239 else
12240 error ("forming reference to reference type %qT", type);
12241 last_loc = input_location;
12244 return error_mark_node;
12246 else if (TREE_CODE (type) == FUNCTION_TYPE
12247 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
12248 || type_memfn_rqual (type) != REF_QUAL_NONE))
12250 if (complain & tf_error)
12252 if (code == POINTER_TYPE)
12253 error ("forming pointer to qualified function type %qT",
12254 type);
12255 else
12256 error ("forming reference to qualified function type %qT",
12257 type);
12259 return error_mark_node;
12261 else if (code == POINTER_TYPE)
12263 r = build_pointer_type (type);
12264 if (TREE_CODE (type) == METHOD_TYPE)
12265 r = build_ptrmemfunc_type (r);
12267 else if (TREE_CODE (type) == REFERENCE_TYPE)
12268 /* In C++0x, during template argument substitution, when there is an
12269 attempt to create a reference to a reference type, reference
12270 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
12272 "If a template-argument for a template-parameter T names a type
12273 that is a reference to a type A, an attempt to create the type
12274 'lvalue reference to cv T' creates the type 'lvalue reference to
12275 A,' while an attempt to create the type type rvalue reference to
12276 cv T' creates the type T"
12278 r = cp_build_reference_type
12279 (TREE_TYPE (type),
12280 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
12281 else
12282 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
12283 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
12285 if (r != error_mark_node)
12286 /* Will this ever be needed for TYPE_..._TO values? */
12287 layout_type (r);
12289 return r;
12291 case OFFSET_TYPE:
12293 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
12294 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
12296 /* [temp.deduct]
12298 Type deduction may fail for any of the following
12299 reasons:
12301 -- Attempting to create "pointer to member of T" when T
12302 is not a class type. */
12303 if (complain & tf_error)
12304 error ("creating pointer to member of non-class type %qT", r);
12305 return error_mark_node;
12307 if (TREE_CODE (type) == REFERENCE_TYPE)
12309 if (complain & tf_error)
12310 error ("creating pointer to member reference type %qT", type);
12311 return error_mark_node;
12313 if (VOID_TYPE_P (type))
12315 if (complain & tf_error)
12316 error ("creating pointer to member of type void");
12317 return error_mark_node;
12319 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
12320 if (TREE_CODE (type) == FUNCTION_TYPE)
12322 /* The type of the implicit object parameter gets its
12323 cv-qualifiers from the FUNCTION_TYPE. */
12324 tree memptr;
12325 tree method_type
12326 = build_memfn_type (type, r, type_memfn_quals (type),
12327 type_memfn_rqual (type));
12328 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
12329 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
12330 complain);
12332 else
12333 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
12334 cp_type_quals (t),
12335 complain);
12337 case FUNCTION_TYPE:
12338 case METHOD_TYPE:
12340 tree fntype;
12341 tree specs;
12342 fntype = tsubst_function_type (t, args, complain, in_decl);
12343 if (fntype == error_mark_node)
12344 return error_mark_node;
12346 /* Substitute the exception specification. */
12347 specs = tsubst_exception_specification (t, args, complain,
12348 in_decl, /*defer_ok*/true);
12349 if (specs == error_mark_node)
12350 return error_mark_node;
12351 if (specs)
12352 fntype = build_exception_variant (fntype, specs);
12353 return fntype;
12355 case ARRAY_TYPE:
12357 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
12358 if (domain == error_mark_node)
12359 return error_mark_node;
12361 /* As an optimization, we avoid regenerating the array type if
12362 it will obviously be the same as T. */
12363 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
12364 return t;
12366 /* These checks should match the ones in create_array_type_for_decl.
12368 [temp.deduct]
12370 The deduction may fail for any of the following reasons:
12372 -- Attempting to create an array with an element type that
12373 is void, a function type, or a reference type, or [DR337]
12374 an abstract class type. */
12375 if (VOID_TYPE_P (type)
12376 || TREE_CODE (type) == FUNCTION_TYPE
12377 || (TREE_CODE (type) == ARRAY_TYPE
12378 && TYPE_DOMAIN (type) == NULL_TREE)
12379 || TREE_CODE (type) == REFERENCE_TYPE)
12381 if (complain & tf_error)
12382 error ("creating array of %qT", type);
12383 return error_mark_node;
12386 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
12387 return error_mark_node;
12389 r = build_cplus_array_type (type, domain);
12391 if (TYPE_USER_ALIGN (t))
12393 TYPE_ALIGN (r) = TYPE_ALIGN (t);
12394 TYPE_USER_ALIGN (r) = 1;
12397 return r;
12400 case TYPENAME_TYPE:
12402 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12403 in_decl, /*entering_scope=*/1);
12404 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
12405 complain, in_decl);
12407 if (ctx == error_mark_node || f == error_mark_node)
12408 return error_mark_node;
12410 if (!MAYBE_CLASS_TYPE_P (ctx))
12412 if (complain & tf_error)
12413 error ("%qT is not a class, struct, or union type", ctx);
12414 return error_mark_node;
12416 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
12418 /* Normally, make_typename_type does not require that the CTX
12419 have complete type in order to allow things like:
12421 template <class T> struct S { typename S<T>::X Y; };
12423 But, such constructs have already been resolved by this
12424 point, so here CTX really should have complete type, unless
12425 it's a partial instantiation. */
12426 ctx = complete_type (ctx);
12427 if (!COMPLETE_TYPE_P (ctx))
12429 if (complain & tf_error)
12430 cxx_incomplete_type_error (NULL_TREE, ctx);
12431 return error_mark_node;
12435 f = make_typename_type (ctx, f, typename_type,
12436 complain | tf_keep_type_decl);
12437 if (f == error_mark_node)
12438 return f;
12439 if (TREE_CODE (f) == TYPE_DECL)
12441 complain |= tf_ignore_bad_quals;
12442 f = TREE_TYPE (f);
12445 if (TREE_CODE (f) != TYPENAME_TYPE)
12447 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
12449 if (complain & tf_error)
12450 error ("%qT resolves to %qT, which is not an enumeration type",
12451 t, f);
12452 else
12453 return error_mark_node;
12455 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
12457 if (complain & tf_error)
12458 error ("%qT resolves to %qT, which is is not a class type",
12459 t, f);
12460 else
12461 return error_mark_node;
12465 return cp_build_qualified_type_real
12466 (f, cp_type_quals (f) | cp_type_quals (t), complain);
12469 case UNBOUND_CLASS_TEMPLATE:
12471 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12472 in_decl, /*entering_scope=*/1);
12473 tree name = TYPE_IDENTIFIER (t);
12474 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
12476 if (ctx == error_mark_node || name == error_mark_node)
12477 return error_mark_node;
12479 if (parm_list)
12480 parm_list = tsubst_template_parms (parm_list, args, complain);
12481 return make_unbound_class_template (ctx, name, parm_list, complain);
12484 case TYPEOF_TYPE:
12486 tree type;
12488 ++cp_unevaluated_operand;
12489 ++c_inhibit_evaluation_warnings;
12491 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
12492 complain, in_decl,
12493 /*integral_constant_expression_p=*/false);
12495 --cp_unevaluated_operand;
12496 --c_inhibit_evaluation_warnings;
12498 type = finish_typeof (type);
12499 return cp_build_qualified_type_real (type,
12500 cp_type_quals (t)
12501 | cp_type_quals (type),
12502 complain);
12505 case DECLTYPE_TYPE:
12507 tree type;
12509 ++cp_unevaluated_operand;
12510 ++c_inhibit_evaluation_warnings;
12512 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
12513 complain|tf_decltype, in_decl,
12514 /*function_p*/false,
12515 /*integral_constant_expression*/false);
12517 --cp_unevaluated_operand;
12518 --c_inhibit_evaluation_warnings;
12520 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
12521 type = lambda_capture_field_type (type,
12522 DECLTYPE_FOR_INIT_CAPTURE (t));
12523 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
12524 type = lambda_proxy_type (type);
12525 else
12527 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
12528 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
12529 && EXPR_P (type))
12530 /* In a template ~id could be either a complement expression
12531 or an unqualified-id naming a destructor; if instantiating
12532 it produces an expression, it's not an id-expression or
12533 member access. */
12534 id = false;
12535 type = finish_decltype_type (type, id, complain);
12537 return cp_build_qualified_type_real (type,
12538 cp_type_quals (t)
12539 | cp_type_quals (type),
12540 complain | tf_ignore_bad_quals);
12543 case UNDERLYING_TYPE:
12545 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
12546 complain, in_decl);
12547 return finish_underlying_type (type);
12550 case TYPE_ARGUMENT_PACK:
12551 case NONTYPE_ARGUMENT_PACK:
12553 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
12554 tree packed_out =
12555 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
12556 args,
12557 complain,
12558 in_decl);
12559 SET_ARGUMENT_PACK_ARGS (r, packed_out);
12561 /* For template nontype argument packs, also substitute into
12562 the type. */
12563 if (code == NONTYPE_ARGUMENT_PACK)
12564 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
12566 return r;
12568 break;
12570 case VOID_CST:
12571 case INTEGER_CST:
12572 case REAL_CST:
12573 case STRING_CST:
12574 case PLUS_EXPR:
12575 case MINUS_EXPR:
12576 case NEGATE_EXPR:
12577 case NOP_EXPR:
12578 case INDIRECT_REF:
12579 case ADDR_EXPR:
12580 case CALL_EXPR:
12581 case ARRAY_REF:
12582 case SCOPE_REF:
12583 /* We should use one of the expression tsubsts for these codes. */
12584 gcc_unreachable ();
12586 default:
12587 sorry ("use of %qs in template", get_tree_code_name (code));
12588 return error_mark_node;
12592 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
12593 type of the expression on the left-hand side of the "." or "->"
12594 operator. */
12596 static tree
12597 tsubst_baselink (tree baselink, tree object_type,
12598 tree args, tsubst_flags_t complain, tree in_decl)
12600 tree name;
12601 tree qualifying_scope;
12602 tree fns;
12603 tree optype;
12604 tree template_args = 0;
12605 bool template_id_p = false;
12606 bool qualified = BASELINK_QUALIFIED_P (baselink);
12608 /* A baselink indicates a function from a base class. Both the
12609 BASELINK_ACCESS_BINFO and the base class referenced may
12610 indicate bases of the template class, rather than the
12611 instantiated class. In addition, lookups that were not
12612 ambiguous before may be ambiguous now. Therefore, we perform
12613 the lookup again. */
12614 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
12615 qualifying_scope = tsubst (qualifying_scope, args,
12616 complain, in_decl);
12617 fns = BASELINK_FUNCTIONS (baselink);
12618 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
12619 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
12621 template_id_p = true;
12622 template_args = TREE_OPERAND (fns, 1);
12623 fns = TREE_OPERAND (fns, 0);
12624 if (template_args)
12625 template_args = tsubst_template_args (template_args, args,
12626 complain, in_decl);
12628 name = DECL_NAME (get_first_fn (fns));
12629 if (IDENTIFIER_TYPENAME_P (name))
12630 name = mangle_conv_op_name_for_type (optype);
12631 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
12632 if (!baselink)
12633 return error_mark_node;
12635 /* If lookup found a single function, mark it as used at this
12636 point. (If it lookup found multiple functions the one selected
12637 later by overload resolution will be marked as used at that
12638 point.) */
12639 if (BASELINK_P (baselink))
12640 fns = BASELINK_FUNCTIONS (baselink);
12641 if (!template_id_p && !really_overloaded_fn (fns))
12642 mark_used (OVL_CURRENT (fns));
12644 /* Add back the template arguments, if present. */
12645 if (BASELINK_P (baselink) && template_id_p)
12646 BASELINK_FUNCTIONS (baselink)
12647 = build_nt (TEMPLATE_ID_EXPR,
12648 BASELINK_FUNCTIONS (baselink),
12649 template_args);
12650 /* Update the conversion operator type. */
12651 BASELINK_OPTYPE (baselink) = optype;
12653 if (!object_type)
12654 object_type = current_class_type;
12656 if (qualified)
12657 baselink = adjust_result_of_qualified_name_lookup (baselink,
12658 qualifying_scope,
12659 object_type);
12660 return baselink;
12663 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
12664 true if the qualified-id will be a postfix-expression in-and-of
12665 itself; false if more of the postfix-expression follows the
12666 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
12667 of "&". */
12669 static tree
12670 tsubst_qualified_id (tree qualified_id, tree args,
12671 tsubst_flags_t complain, tree in_decl,
12672 bool done, bool address_p)
12674 tree expr;
12675 tree scope;
12676 tree name;
12677 bool is_template;
12678 tree template_args;
12679 location_t loc = UNKNOWN_LOCATION;
12681 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
12683 /* Figure out what name to look up. */
12684 name = TREE_OPERAND (qualified_id, 1);
12685 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
12687 is_template = true;
12688 loc = EXPR_LOCATION (name);
12689 template_args = TREE_OPERAND (name, 1);
12690 if (template_args)
12691 template_args = tsubst_template_args (template_args, args,
12692 complain, in_decl);
12693 name = TREE_OPERAND (name, 0);
12695 else
12697 is_template = false;
12698 template_args = NULL_TREE;
12701 /* Substitute into the qualifying scope. When there are no ARGS, we
12702 are just trying to simplify a non-dependent expression. In that
12703 case the qualifying scope may be dependent, and, in any case,
12704 substituting will not help. */
12705 scope = TREE_OPERAND (qualified_id, 0);
12706 if (args)
12708 scope = tsubst (scope, args, complain, in_decl);
12709 expr = tsubst_copy (name, args, complain, in_decl);
12711 else
12712 expr = name;
12714 if (dependent_scope_p (scope))
12716 if (is_template)
12717 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
12718 return build_qualified_name (NULL_TREE, scope, expr,
12719 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
12722 if (!BASELINK_P (name) && !DECL_P (expr))
12724 if (TREE_CODE (expr) == BIT_NOT_EXPR)
12726 /* A BIT_NOT_EXPR is used to represent a destructor. */
12727 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
12729 error ("qualifying type %qT does not match destructor name ~%qT",
12730 scope, TREE_OPERAND (expr, 0));
12731 expr = error_mark_node;
12733 else
12734 expr = lookup_qualified_name (scope, complete_dtor_identifier,
12735 /*is_type_p=*/0, false);
12737 else
12738 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12739 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
12740 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
12742 if (complain & tf_error)
12744 error ("dependent-name %qE is parsed as a non-type, but "
12745 "instantiation yields a type", qualified_id);
12746 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
12748 return error_mark_node;
12752 if (DECL_P (expr))
12754 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
12755 scope);
12756 /* Remember that there was a reference to this entity. */
12757 mark_used (expr);
12760 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
12762 if (complain & tf_error)
12763 qualified_name_lookup_error (scope,
12764 TREE_OPERAND (qualified_id, 1),
12765 expr, input_location);
12766 return error_mark_node;
12769 if (is_template)
12770 expr = lookup_template_function (expr, template_args);
12772 if (expr == error_mark_node && complain & tf_error)
12773 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
12774 expr, input_location);
12775 else if (TYPE_P (scope))
12777 expr = (adjust_result_of_qualified_name_lookup
12778 (expr, scope, current_nonlambda_class_type ()));
12779 expr = (finish_qualified_id_expr
12780 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12781 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12782 /*template_arg_p=*/false, complain));
12785 /* Expressions do not generally have reference type. */
12786 if (TREE_CODE (expr) != SCOPE_REF
12787 /* However, if we're about to form a pointer-to-member, we just
12788 want the referenced member referenced. */
12789 && TREE_CODE (expr) != OFFSET_REF)
12790 expr = convert_from_reference (expr);
12792 return expr;
12795 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
12796 initializer, DECL is the substituted VAR_DECL. Other arguments are as
12797 for tsubst. */
12799 static tree
12800 tsubst_init (tree init, tree decl, tree args,
12801 tsubst_flags_t complain, tree in_decl)
12803 if (!init)
12804 return NULL_TREE;
12806 init = tsubst_expr (init, args, complain, in_decl, false);
12808 if (!init)
12810 /* If we had an initializer but it
12811 instantiated to nothing,
12812 value-initialize the object. This will
12813 only occur when the initializer was a
12814 pack expansion where the parameter packs
12815 used in that expansion were of length
12816 zero. */
12817 init = build_value_init (TREE_TYPE (decl),
12818 complain);
12819 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12820 init = get_target_expr_sfinae (init, complain);
12823 return init;
12826 /* Like tsubst, but deals with expressions. This function just replaces
12827 template parms; to finish processing the resultant expression, use
12828 tsubst_copy_and_build or tsubst_expr. */
12830 static tree
12831 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12833 enum tree_code code;
12834 tree r;
12836 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12837 return t;
12839 code = TREE_CODE (t);
12841 switch (code)
12843 case PARM_DECL:
12844 r = retrieve_local_specialization (t);
12846 if (r == NULL_TREE)
12848 /* We get here for a use of 'this' in an NSDMI. */
12849 if (DECL_NAME (t) == this_identifier
12850 && current_function_decl
12851 && DECL_CONSTRUCTOR_P (current_function_decl))
12852 return current_class_ptr;
12854 /* This can happen for a parameter name used later in a function
12855 declaration (such as in a late-specified return type). Just
12856 make a dummy decl, since it's only used for its type. */
12857 gcc_assert (cp_unevaluated_operand != 0);
12858 r = tsubst_decl (t, args, complain);
12859 /* Give it the template pattern as its context; its true context
12860 hasn't been instantiated yet and this is good enough for
12861 mangling. */
12862 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12865 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12866 r = ARGUMENT_PACK_SELECT_ARG (r);
12867 mark_used (r);
12868 return r;
12870 case CONST_DECL:
12872 tree enum_type;
12873 tree v;
12875 if (DECL_TEMPLATE_PARM_P (t))
12876 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12877 /* There is no need to substitute into namespace-scope
12878 enumerators. */
12879 if (DECL_NAMESPACE_SCOPE_P (t))
12880 return t;
12881 /* If ARGS is NULL, then T is known to be non-dependent. */
12882 if (args == NULL_TREE)
12883 return scalar_constant_value (t);
12885 /* Unfortunately, we cannot just call lookup_name here.
12886 Consider:
12888 template <int I> int f() {
12889 enum E { a = I };
12890 struct S { void g() { E e = a; } };
12893 When we instantiate f<7>::S::g(), say, lookup_name is not
12894 clever enough to find f<7>::a. */
12895 enum_type
12896 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12897 /*entering_scope=*/0);
12899 for (v = TYPE_VALUES (enum_type);
12900 v != NULL_TREE;
12901 v = TREE_CHAIN (v))
12902 if (TREE_PURPOSE (v) == DECL_NAME (t))
12903 return TREE_VALUE (v);
12905 /* We didn't find the name. That should never happen; if
12906 name-lookup found it during preliminary parsing, we
12907 should find it again here during instantiation. */
12908 gcc_unreachable ();
12910 return t;
12912 case FIELD_DECL:
12913 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12915 /* Check for a local specialization set up by
12916 tsubst_pack_expansion. */
12917 if (tree r = retrieve_local_specialization (t))
12919 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12920 r = ARGUMENT_PACK_SELECT_ARG (r);
12921 return r;
12924 /* When retrieving a capture pack from a generic lambda, remove the
12925 lambda call op's own template argument list from ARGS. Only the
12926 template arguments active for the closure type should be used to
12927 retrieve the pack specialization. */
12928 if (LAMBDA_FUNCTION_P (current_function_decl)
12929 && (template_class_depth (DECL_CONTEXT (t))
12930 != TMPL_ARGS_DEPTH (args)))
12931 args = strip_innermost_template_args (args, 1);
12933 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
12934 tsubst_decl put in the hash table. */
12935 return retrieve_specialization (t, args, 0);
12938 if (DECL_CONTEXT (t))
12940 tree ctx;
12942 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12943 /*entering_scope=*/1);
12944 if (ctx != DECL_CONTEXT (t))
12946 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12947 if (!r)
12949 if (complain & tf_error)
12950 error ("using invalid field %qD", t);
12951 return error_mark_node;
12953 return r;
12957 return t;
12959 case VAR_DECL:
12960 case FUNCTION_DECL:
12961 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12962 r = tsubst (t, args, complain, in_decl);
12963 else if (local_variable_p (t))
12965 r = retrieve_local_specialization (t);
12966 if (r == NULL_TREE)
12968 /* First try name lookup to find the instantiation. */
12969 r = lookup_name (DECL_NAME (t));
12970 if (r)
12972 /* Make sure that the one we found is the one we want. */
12973 tree ctx = tsubst (DECL_CONTEXT (t), args,
12974 complain, in_decl);
12975 if (ctx != DECL_CONTEXT (r))
12976 r = NULL_TREE;
12979 if (r)
12980 /* OK */;
12981 else
12983 /* This can happen for a variable used in a
12984 late-specified return type of a local lambda, or for a
12985 local static or constant. Building a new VAR_DECL
12986 should be OK in all those cases. */
12987 r = tsubst_decl (t, args, complain);
12988 if (decl_maybe_constant_var_p (r))
12990 /* We can't call cp_finish_decl, so handle the
12991 initializer by hand. */
12992 tree init = tsubst_init (DECL_INITIAL (t), r, args,
12993 complain, in_decl);
12994 if (!processing_template_decl)
12995 init = maybe_constant_init (init);
12996 if (processing_template_decl
12997 ? potential_constant_expression (init)
12998 : reduced_constant_expression_p (init))
12999 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
13000 = TREE_CONSTANT (r) = true;
13001 DECL_INITIAL (r) = init;
13003 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
13004 || decl_constant_var_p (r)
13005 || errorcount || sorrycount);
13006 if (!processing_template_decl)
13008 if (TREE_STATIC (r))
13009 rest_of_decl_compilation (r, toplevel_bindings_p (),
13010 at_eof);
13011 else if (decl_constant_var_p (r))
13012 /* A use of a local constant decays to its value.
13013 FIXME update for core DR 696. */
13014 r = scalar_constant_value (r);
13017 /* Remember this for subsequent uses. */
13018 if (local_specializations)
13019 register_local_specialization (r, t);
13022 else
13023 r = t;
13024 mark_used (r);
13025 return r;
13027 case NAMESPACE_DECL:
13028 return t;
13030 case OVERLOAD:
13031 /* An OVERLOAD will always be a non-dependent overload set; an
13032 overload set from function scope will just be represented with an
13033 IDENTIFIER_NODE, and from class scope with a BASELINK. */
13034 gcc_assert (!uses_template_parms (t));
13035 return t;
13037 case BASELINK:
13038 return tsubst_baselink (t, current_nonlambda_class_type (),
13039 args, complain, in_decl);
13041 case TEMPLATE_DECL:
13042 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13043 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13044 args, complain, in_decl);
13045 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13046 return tsubst (t, args, complain, in_decl);
13047 else if (DECL_CLASS_SCOPE_P (t)
13048 && uses_template_parms (DECL_CONTEXT (t)))
13050 /* Template template argument like the following example need
13051 special treatment:
13053 template <template <class> class TT> struct C {};
13054 template <class T> struct D {
13055 template <class U> struct E {};
13056 C<E> c; // #1
13058 D<int> d; // #2
13060 We are processing the template argument `E' in #1 for
13061 the template instantiation #2. Originally, `E' is a
13062 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13063 have to substitute this with one having context `D<int>'. */
13065 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13066 return lookup_field (context, DECL_NAME(t), 0, false);
13068 else
13069 /* Ordinary template template argument. */
13070 return t;
13072 case CAST_EXPR:
13073 case REINTERPRET_CAST_EXPR:
13074 case CONST_CAST_EXPR:
13075 case STATIC_CAST_EXPR:
13076 case DYNAMIC_CAST_EXPR:
13077 case IMPLICIT_CONV_EXPR:
13078 case CONVERT_EXPR:
13079 case NOP_EXPR:
13081 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13082 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13083 return build1 (code, type, op0);
13086 case SIZEOF_EXPR:
13087 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13090 tree expanded, op = TREE_OPERAND (t, 0);
13091 int len = 0;
13093 if (SIZEOF_EXPR_TYPE_P (t))
13094 op = TREE_TYPE (op);
13096 ++cp_unevaluated_operand;
13097 ++c_inhibit_evaluation_warnings;
13098 /* We only want to compute the number of arguments. */
13099 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13100 --cp_unevaluated_operand;
13101 --c_inhibit_evaluation_warnings;
13103 if (TREE_CODE (expanded) == TREE_VEC)
13104 len = TREE_VEC_LENGTH (expanded);
13106 if (expanded == error_mark_node)
13107 return error_mark_node;
13108 else if (PACK_EXPANSION_P (expanded)
13109 || (TREE_CODE (expanded) == TREE_VEC
13110 && len > 0
13111 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13113 if (TREE_CODE (expanded) == TREE_VEC)
13114 expanded = TREE_VEC_ELT (expanded, len - 1);
13116 if (TYPE_P (expanded))
13117 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13118 complain & tf_error);
13119 else
13120 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13121 complain & tf_error);
13123 else
13124 return build_int_cst (size_type_node, len);
13126 if (SIZEOF_EXPR_TYPE_P (t))
13128 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13129 args, complain, in_decl);
13130 r = build1 (NOP_EXPR, r, error_mark_node);
13131 r = build1 (SIZEOF_EXPR,
13132 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13133 SIZEOF_EXPR_TYPE_P (r) = 1;
13134 return r;
13136 /* Fall through */
13138 case INDIRECT_REF:
13139 case NEGATE_EXPR:
13140 case TRUTH_NOT_EXPR:
13141 case BIT_NOT_EXPR:
13142 case ADDR_EXPR:
13143 case UNARY_PLUS_EXPR: /* Unary + */
13144 case ALIGNOF_EXPR:
13145 case AT_ENCODE_EXPR:
13146 case ARROW_EXPR:
13147 case THROW_EXPR:
13148 case TYPEID_EXPR:
13149 case REALPART_EXPR:
13150 case IMAGPART_EXPR:
13151 case PAREN_EXPR:
13153 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13154 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13155 return build1 (code, type, op0);
13158 case COMPONENT_REF:
13160 tree object;
13161 tree name;
13163 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13164 name = TREE_OPERAND (t, 1);
13165 if (TREE_CODE (name) == BIT_NOT_EXPR)
13167 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13168 complain, in_decl);
13169 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13171 else if (TREE_CODE (name) == SCOPE_REF
13172 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
13174 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
13175 complain, in_decl);
13176 name = TREE_OPERAND (name, 1);
13177 name = tsubst_copy (TREE_OPERAND (name, 0), args,
13178 complain, in_decl);
13179 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
13180 name = build_qualified_name (/*type=*/NULL_TREE,
13181 base, name,
13182 /*template_p=*/false);
13184 else if (BASELINK_P (name))
13185 name = tsubst_baselink (name,
13186 non_reference (TREE_TYPE (object)),
13187 args, complain,
13188 in_decl);
13189 else
13190 name = tsubst_copy (name, args, complain, in_decl);
13191 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
13194 case PLUS_EXPR:
13195 case MINUS_EXPR:
13196 case MULT_EXPR:
13197 case TRUNC_DIV_EXPR:
13198 case CEIL_DIV_EXPR:
13199 case FLOOR_DIV_EXPR:
13200 case ROUND_DIV_EXPR:
13201 case EXACT_DIV_EXPR:
13202 case BIT_AND_EXPR:
13203 case BIT_IOR_EXPR:
13204 case BIT_XOR_EXPR:
13205 case TRUNC_MOD_EXPR:
13206 case FLOOR_MOD_EXPR:
13207 case TRUTH_ANDIF_EXPR:
13208 case TRUTH_ORIF_EXPR:
13209 case TRUTH_AND_EXPR:
13210 case TRUTH_OR_EXPR:
13211 case RSHIFT_EXPR:
13212 case LSHIFT_EXPR:
13213 case RROTATE_EXPR:
13214 case LROTATE_EXPR:
13215 case EQ_EXPR:
13216 case NE_EXPR:
13217 case MAX_EXPR:
13218 case MIN_EXPR:
13219 case LE_EXPR:
13220 case GE_EXPR:
13221 case LT_EXPR:
13222 case GT_EXPR:
13223 case COMPOUND_EXPR:
13224 case DOTSTAR_EXPR:
13225 case MEMBER_REF:
13226 case PREDECREMENT_EXPR:
13227 case PREINCREMENT_EXPR:
13228 case POSTDECREMENT_EXPR:
13229 case POSTINCREMENT_EXPR:
13231 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13232 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13233 return build_nt (code, op0, op1);
13236 case SCOPE_REF:
13238 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13239 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13240 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
13241 QUALIFIED_NAME_IS_TEMPLATE (t));
13244 case ARRAY_REF:
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 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
13251 case CALL_EXPR:
13253 int n = VL_EXP_OPERAND_LENGTH (t);
13254 tree result = build_vl_exp (CALL_EXPR, n);
13255 int i;
13256 for (i = 0; i < n; i++)
13257 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
13258 complain, in_decl);
13259 return result;
13262 case COND_EXPR:
13263 case MODOP_EXPR:
13264 case PSEUDO_DTOR_EXPR:
13265 case VEC_PERM_EXPR:
13267 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13268 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13269 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13270 r = build_nt (code, op0, op1, op2);
13271 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13272 return r;
13275 case NEW_EXPR:
13277 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13278 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13279 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
13280 r = build_nt (code, op0, op1, op2);
13281 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
13282 return r;
13285 case DELETE_EXPR:
13287 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13288 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13289 r = build_nt (code, op0, op1);
13290 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
13291 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
13292 return r;
13295 case TEMPLATE_ID_EXPR:
13297 /* Substituted template arguments */
13298 tree fn = TREE_OPERAND (t, 0);
13299 tree targs = TREE_OPERAND (t, 1);
13301 fn = tsubst_copy (fn, args, complain, in_decl);
13302 if (targs)
13303 targs = tsubst_template_args (targs, args, complain, in_decl);
13305 return lookup_template_function (fn, targs);
13308 case TREE_LIST:
13310 tree purpose, value, chain;
13312 if (t == void_list_node)
13313 return t;
13315 purpose = TREE_PURPOSE (t);
13316 if (purpose)
13317 purpose = tsubst_copy (purpose, args, complain, in_decl);
13318 value = TREE_VALUE (t);
13319 if (value)
13320 value = tsubst_copy (value, args, complain, in_decl);
13321 chain = TREE_CHAIN (t);
13322 if (chain && chain != void_type_node)
13323 chain = tsubst_copy (chain, args, complain, in_decl);
13324 if (purpose == TREE_PURPOSE (t)
13325 && value == TREE_VALUE (t)
13326 && chain == TREE_CHAIN (t))
13327 return t;
13328 return tree_cons (purpose, value, chain);
13331 case RECORD_TYPE:
13332 case UNION_TYPE:
13333 case ENUMERAL_TYPE:
13334 case INTEGER_TYPE:
13335 case TEMPLATE_TYPE_PARM:
13336 case TEMPLATE_TEMPLATE_PARM:
13337 case BOUND_TEMPLATE_TEMPLATE_PARM:
13338 case TEMPLATE_PARM_INDEX:
13339 case POINTER_TYPE:
13340 case REFERENCE_TYPE:
13341 case OFFSET_TYPE:
13342 case FUNCTION_TYPE:
13343 case METHOD_TYPE:
13344 case ARRAY_TYPE:
13345 case TYPENAME_TYPE:
13346 case UNBOUND_CLASS_TEMPLATE:
13347 case TYPEOF_TYPE:
13348 case DECLTYPE_TYPE:
13349 case TYPE_DECL:
13350 return tsubst (t, args, complain, in_decl);
13352 case USING_DECL:
13353 t = DECL_NAME (t);
13354 /* Fall through. */
13355 case IDENTIFIER_NODE:
13356 if (IDENTIFIER_TYPENAME_P (t))
13358 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13359 return mangle_conv_op_name_for_type (new_type);
13361 else
13362 return t;
13364 case CONSTRUCTOR:
13365 /* This is handled by tsubst_copy_and_build. */
13366 gcc_unreachable ();
13368 case VA_ARG_EXPR:
13370 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13371 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13372 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
13375 case CLEANUP_POINT_EXPR:
13376 /* We shouldn't have built any of these during initial template
13377 generation. Instead, they should be built during instantiation
13378 in response to the saved STMT_IS_FULL_EXPR_P setting. */
13379 gcc_unreachable ();
13381 case OFFSET_REF:
13383 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13384 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13385 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
13386 r = build2 (code, type, op0, op1);
13387 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
13388 mark_used (TREE_OPERAND (r, 1));
13389 return r;
13392 case EXPR_PACK_EXPANSION:
13393 error ("invalid use of pack expansion expression");
13394 return error_mark_node;
13396 case NONTYPE_ARGUMENT_PACK:
13397 error ("use %<...%> to expand argument pack");
13398 return error_mark_node;
13400 case VOID_CST:
13401 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
13402 return t;
13404 case INTEGER_CST:
13405 case REAL_CST:
13406 case STRING_CST:
13407 case COMPLEX_CST:
13409 /* Instantiate any typedefs in the type. */
13410 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13411 r = fold_convert (type, t);
13412 gcc_assert (TREE_CODE (r) == code);
13413 return r;
13416 case PTRMEM_CST:
13417 /* These can sometimes show up in a partial instantiation, but never
13418 involve template parms. */
13419 gcc_assert (!uses_template_parms (t));
13420 return t;
13422 default:
13423 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
13424 gcc_checking_assert (false);
13425 return t;
13429 /* Like tsubst_copy, but specifically for OpenMP clauses. */
13431 static tree
13432 tsubst_omp_clauses (tree clauses, bool declare_simd,
13433 tree args, tsubst_flags_t complain, tree in_decl)
13435 tree new_clauses = NULL, nc, oc;
13437 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
13439 nc = copy_node (oc);
13440 OMP_CLAUSE_CHAIN (nc) = new_clauses;
13441 new_clauses = nc;
13443 switch (OMP_CLAUSE_CODE (nc))
13445 case OMP_CLAUSE_LASTPRIVATE:
13446 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
13448 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
13449 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
13450 in_decl, /*integral_constant_expression_p=*/false);
13451 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
13452 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
13454 /* FALLTHRU */
13455 case OMP_CLAUSE_PRIVATE:
13456 case OMP_CLAUSE_SHARED:
13457 case OMP_CLAUSE_FIRSTPRIVATE:
13458 case OMP_CLAUSE_COPYIN:
13459 case OMP_CLAUSE_COPYPRIVATE:
13460 case OMP_CLAUSE_IF:
13461 case OMP_CLAUSE_NUM_THREADS:
13462 case OMP_CLAUSE_SCHEDULE:
13463 case OMP_CLAUSE_COLLAPSE:
13464 case OMP_CLAUSE_FINAL:
13465 case OMP_CLAUSE_DEPEND:
13466 case OMP_CLAUSE_FROM:
13467 case OMP_CLAUSE_TO:
13468 case OMP_CLAUSE_UNIFORM:
13469 case OMP_CLAUSE_MAP:
13470 case OMP_CLAUSE_DEVICE:
13471 case OMP_CLAUSE_DIST_SCHEDULE:
13472 case OMP_CLAUSE_NUM_TEAMS:
13473 case OMP_CLAUSE_THREAD_LIMIT:
13474 case OMP_CLAUSE_SAFELEN:
13475 case OMP_CLAUSE_SIMDLEN:
13476 OMP_CLAUSE_OPERAND (nc, 0)
13477 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13478 in_decl, /*integral_constant_expression_p=*/false);
13479 break;
13480 case OMP_CLAUSE_REDUCTION:
13481 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
13483 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
13484 if (TREE_CODE (placeholder) == SCOPE_REF)
13486 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
13487 complain, in_decl);
13488 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
13489 = build_qualified_name (NULL_TREE, scope,
13490 TREE_OPERAND (placeholder, 1),
13491 false);
13493 else
13494 gcc_assert (identifier_p (placeholder));
13496 OMP_CLAUSE_OPERAND (nc, 0)
13497 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13498 in_decl, /*integral_constant_expression_p=*/false);
13499 break;
13500 case OMP_CLAUSE_LINEAR:
13501 case OMP_CLAUSE_ALIGNED:
13502 OMP_CLAUSE_OPERAND (nc, 0)
13503 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13504 in_decl, /*integral_constant_expression_p=*/false);
13505 OMP_CLAUSE_OPERAND (nc, 1)
13506 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
13507 in_decl, /*integral_constant_expression_p=*/false);
13508 break;
13510 case OMP_CLAUSE_NOWAIT:
13511 case OMP_CLAUSE_ORDERED:
13512 case OMP_CLAUSE_DEFAULT:
13513 case OMP_CLAUSE_UNTIED:
13514 case OMP_CLAUSE_MERGEABLE:
13515 case OMP_CLAUSE_INBRANCH:
13516 case OMP_CLAUSE_NOTINBRANCH:
13517 case OMP_CLAUSE_PROC_BIND:
13518 case OMP_CLAUSE_FOR:
13519 case OMP_CLAUSE_PARALLEL:
13520 case OMP_CLAUSE_SECTIONS:
13521 case OMP_CLAUSE_TASKGROUP:
13522 break;
13523 default:
13524 gcc_unreachable ();
13528 new_clauses = nreverse (new_clauses);
13529 if (!declare_simd)
13530 new_clauses = finish_omp_clauses (new_clauses);
13531 return new_clauses;
13534 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
13536 static tree
13537 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
13538 tree in_decl)
13540 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
13542 tree purpose, value, chain;
13544 if (t == NULL)
13545 return t;
13547 if (TREE_CODE (t) != TREE_LIST)
13548 return tsubst_copy_and_build (t, args, complain, in_decl,
13549 /*function_p=*/false,
13550 /*integral_constant_expression_p=*/false);
13552 if (t == void_list_node)
13553 return t;
13555 purpose = TREE_PURPOSE (t);
13556 if (purpose)
13557 purpose = RECUR (purpose);
13558 value = TREE_VALUE (t);
13559 if (value)
13561 if (TREE_CODE (value) != LABEL_DECL)
13562 value = RECUR (value);
13563 else
13565 value = lookup_label (DECL_NAME (value));
13566 gcc_assert (TREE_CODE (value) == LABEL_DECL);
13567 TREE_USED (value) = 1;
13570 chain = TREE_CHAIN (t);
13571 if (chain && chain != void_type_node)
13572 chain = RECUR (chain);
13573 return tree_cons (purpose, value, chain);
13574 #undef RECUR
13577 /* Substitute one OMP_FOR iterator. */
13579 static void
13580 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
13581 tree condv, tree incrv, tree *clauses,
13582 tree args, tsubst_flags_t complain, tree in_decl,
13583 bool integral_constant_expression_p)
13585 #define RECUR(NODE) \
13586 tsubst_expr ((NODE), args, complain, in_decl, \
13587 integral_constant_expression_p)
13588 tree decl, init, cond, incr;
13590 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
13591 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
13592 decl = TREE_OPERAND (init, 0);
13593 init = TREE_OPERAND (init, 1);
13594 tree decl_expr = NULL_TREE;
13595 if (init && TREE_CODE (init) == DECL_EXPR)
13597 /* We need to jump through some hoops to handle declarations in the
13598 for-init-statement, since we might need to handle auto deduction,
13599 but we need to keep control of initialization. */
13600 decl_expr = init;
13601 init = DECL_INITIAL (DECL_EXPR_DECL (init));
13602 decl = tsubst_decl (decl, args, complain);
13604 else
13605 decl = RECUR (decl);
13606 init = RECUR (init);
13608 tree auto_node = type_uses_auto (TREE_TYPE (decl));
13609 if (auto_node && init)
13610 TREE_TYPE (decl)
13611 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
13613 gcc_assert (!type_dependent_expression_p (decl));
13615 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
13617 if (decl_expr)
13619 /* Declare the variable, but don't let that initialize it. */
13620 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
13621 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
13622 RECUR (decl_expr);
13623 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
13626 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
13627 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13628 if (TREE_CODE (incr) == MODIFY_EXPR)
13630 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13631 tree rhs = RECUR (TREE_OPERAND (incr, 1));
13632 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
13633 NOP_EXPR, rhs, complain);
13635 else
13636 incr = RECUR (incr);
13637 TREE_VEC_ELT (declv, i) = decl;
13638 TREE_VEC_ELT (initv, i) = init;
13639 TREE_VEC_ELT (condv, i) = cond;
13640 TREE_VEC_ELT (incrv, i) = incr;
13641 return;
13644 if (decl_expr)
13646 /* Declare and initialize the variable. */
13647 RECUR (decl_expr);
13648 init = NULL_TREE;
13650 else if (init)
13652 tree c;
13653 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
13655 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
13656 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
13657 && OMP_CLAUSE_DECL (c) == decl)
13658 break;
13659 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
13660 && OMP_CLAUSE_DECL (c) == decl)
13661 error ("iteration variable %qD should not be firstprivate", decl);
13662 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
13663 && OMP_CLAUSE_DECL (c) == decl)
13664 error ("iteration variable %qD should not be reduction", decl);
13666 if (c == NULL)
13668 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
13669 OMP_CLAUSE_DECL (c) = decl;
13670 c = finish_omp_clauses (c);
13671 if (c)
13673 OMP_CLAUSE_CHAIN (c) = *clauses;
13674 *clauses = c;
13678 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
13679 if (COMPARISON_CLASS_P (cond))
13681 tree op0 = RECUR (TREE_OPERAND (cond, 0));
13682 tree op1 = RECUR (TREE_OPERAND (cond, 1));
13683 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
13685 else
13686 cond = RECUR (cond);
13687 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13688 switch (TREE_CODE (incr))
13690 case PREINCREMENT_EXPR:
13691 case PREDECREMENT_EXPR:
13692 case POSTINCREMENT_EXPR:
13693 case POSTDECREMENT_EXPR:
13694 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
13695 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
13696 break;
13697 case MODIFY_EXPR:
13698 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13699 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13701 tree rhs = TREE_OPERAND (incr, 1);
13702 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13703 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13704 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13705 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13706 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13707 rhs0, rhs1));
13709 else
13710 incr = RECUR (incr);
13711 break;
13712 case MODOP_EXPR:
13713 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13714 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13716 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13717 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13718 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
13719 TREE_TYPE (decl), lhs,
13720 RECUR (TREE_OPERAND (incr, 2))));
13722 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
13723 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
13724 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
13726 tree rhs = TREE_OPERAND (incr, 2);
13727 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13728 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
13729 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
13730 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13731 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13732 rhs0, rhs1));
13734 else
13735 incr = RECUR (incr);
13736 break;
13737 default:
13738 incr = RECUR (incr);
13739 break;
13742 TREE_VEC_ELT (declv, i) = decl;
13743 TREE_VEC_ELT (initv, i) = init;
13744 TREE_VEC_ELT (condv, i) = cond;
13745 TREE_VEC_ELT (incrv, i) = incr;
13746 #undef RECUR
13749 /* Like tsubst_copy for expressions, etc. but also does semantic
13750 processing. */
13752 static tree
13753 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
13754 bool integral_constant_expression_p)
13756 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
13757 #define RECUR(NODE) \
13758 tsubst_expr ((NODE), args, complain, in_decl, \
13759 integral_constant_expression_p)
13761 tree stmt, tmp;
13762 tree r;
13763 location_t loc;
13765 if (t == NULL_TREE || t == error_mark_node)
13766 return t;
13768 loc = input_location;
13769 if (EXPR_HAS_LOCATION (t))
13770 input_location = EXPR_LOCATION (t);
13771 if (STATEMENT_CODE_P (TREE_CODE (t)))
13772 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
13774 switch (TREE_CODE (t))
13776 case STATEMENT_LIST:
13778 tree_stmt_iterator i;
13779 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
13780 RECUR (tsi_stmt (i));
13781 break;
13784 case CTOR_INITIALIZER:
13785 finish_mem_initializers (tsubst_initializer_list
13786 (TREE_OPERAND (t, 0), args));
13787 break;
13789 case RETURN_EXPR:
13790 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
13791 break;
13793 case EXPR_STMT:
13794 tmp = RECUR (EXPR_STMT_EXPR (t));
13795 if (EXPR_STMT_STMT_EXPR_RESULT (t))
13796 finish_stmt_expr_expr (tmp, cur_stmt_expr);
13797 else
13798 finish_expr_stmt (tmp);
13799 break;
13801 case USING_STMT:
13802 do_using_directive (USING_STMT_NAMESPACE (t));
13803 break;
13805 case DECL_EXPR:
13807 tree decl, pattern_decl;
13808 tree init;
13810 pattern_decl = decl = DECL_EXPR_DECL (t);
13811 if (TREE_CODE (decl) == LABEL_DECL)
13812 finish_label_decl (DECL_NAME (decl));
13813 else if (TREE_CODE (decl) == USING_DECL)
13815 tree scope = USING_DECL_SCOPE (decl);
13816 tree name = DECL_NAME (decl);
13817 tree decl;
13819 scope = tsubst (scope, args, complain, in_decl);
13820 decl = lookup_qualified_name (scope, name,
13821 /*is_type_p=*/false,
13822 /*complain=*/false);
13823 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
13824 qualified_name_lookup_error (scope, name, decl, input_location);
13825 else
13826 do_local_using_decl (decl, scope, name);
13828 else if (DECL_PACK_P (decl))
13830 /* Don't build up decls for a variadic capture proxy, we'll
13831 instantiate the elements directly as needed. */
13832 break;
13834 else
13836 init = DECL_INITIAL (decl);
13837 decl = tsubst (decl, args, complain, in_decl);
13838 if (decl != error_mark_node)
13840 /* By marking the declaration as instantiated, we avoid
13841 trying to instantiate it. Since instantiate_decl can't
13842 handle local variables, and since we've already done
13843 all that needs to be done, that's the right thing to
13844 do. */
13845 if (VAR_P (decl))
13846 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13847 if (VAR_P (decl)
13848 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
13849 /* Anonymous aggregates are a special case. */
13850 finish_anon_union (decl);
13851 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
13853 DECL_CONTEXT (decl) = current_function_decl;
13854 if (DECL_NAME (decl) == this_identifier)
13856 tree lam = DECL_CONTEXT (current_function_decl);
13857 lam = CLASSTYPE_LAMBDA_EXPR (lam);
13858 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
13860 insert_capture_proxy (decl);
13862 else if (DECL_IMPLICIT_TYPEDEF_P (t))
13863 /* We already did a pushtag. */;
13864 else if (TREE_CODE (decl) == FUNCTION_DECL
13865 && DECL_OMP_DECLARE_REDUCTION_P (decl)
13866 && DECL_FUNCTION_SCOPE_P (pattern_decl))
13868 DECL_CONTEXT (decl) = NULL_TREE;
13869 pushdecl (decl);
13870 DECL_CONTEXT (decl) = current_function_decl;
13871 cp_check_omp_declare_reduction (decl);
13873 else
13875 int const_init = false;
13876 maybe_push_decl (decl);
13877 if (VAR_P (decl)
13878 && DECL_PRETTY_FUNCTION_P (decl))
13880 /* For __PRETTY_FUNCTION__ we have to adjust the
13881 initializer. */
13882 const char *const name
13883 = cxx_printable_name (current_function_decl, 2);
13884 init = cp_fname_init (name, &TREE_TYPE (decl));
13886 else
13887 init = tsubst_init (init, decl, args, complain, in_decl);
13889 if (VAR_P (decl))
13890 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
13891 (pattern_decl));
13892 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
13897 break;
13900 case FOR_STMT:
13901 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13902 RECUR (FOR_INIT_STMT (t));
13903 finish_for_init_stmt (stmt);
13904 tmp = RECUR (FOR_COND (t));
13905 finish_for_cond (tmp, stmt, false);
13906 tmp = RECUR (FOR_EXPR (t));
13907 finish_for_expr (tmp, stmt);
13908 RECUR (FOR_BODY (t));
13909 finish_for_stmt (stmt);
13910 break;
13912 case RANGE_FOR_STMT:
13914 tree decl, expr;
13915 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13916 decl = RANGE_FOR_DECL (t);
13917 decl = tsubst (decl, args, complain, in_decl);
13918 maybe_push_decl (decl);
13919 expr = RECUR (RANGE_FOR_EXPR (t));
13920 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
13921 RECUR (RANGE_FOR_BODY (t));
13922 finish_for_stmt (stmt);
13924 break;
13926 case WHILE_STMT:
13927 stmt = begin_while_stmt ();
13928 tmp = RECUR (WHILE_COND (t));
13929 finish_while_stmt_cond (tmp, stmt, false);
13930 RECUR (WHILE_BODY (t));
13931 finish_while_stmt (stmt);
13932 break;
13934 case DO_STMT:
13935 stmt = begin_do_stmt ();
13936 RECUR (DO_BODY (t));
13937 finish_do_body (stmt);
13938 tmp = RECUR (DO_COND (t));
13939 finish_do_stmt (tmp, stmt, false);
13940 break;
13942 case IF_STMT:
13943 stmt = begin_if_stmt ();
13944 tmp = RECUR (IF_COND (t));
13945 finish_if_stmt_cond (tmp, stmt);
13946 RECUR (THEN_CLAUSE (t));
13947 finish_then_clause (stmt);
13949 if (ELSE_CLAUSE (t))
13951 begin_else_clause (stmt);
13952 RECUR (ELSE_CLAUSE (t));
13953 finish_else_clause (stmt);
13956 finish_if_stmt (stmt);
13957 break;
13959 case BIND_EXPR:
13960 if (BIND_EXPR_BODY_BLOCK (t))
13961 stmt = begin_function_body ();
13962 else
13963 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
13964 ? BCS_TRY_BLOCK : 0);
13966 RECUR (BIND_EXPR_BODY (t));
13968 if (BIND_EXPR_BODY_BLOCK (t))
13969 finish_function_body (stmt);
13970 else
13971 finish_compound_stmt (stmt);
13972 break;
13974 case BREAK_STMT:
13975 finish_break_stmt ();
13976 break;
13978 case CONTINUE_STMT:
13979 finish_continue_stmt ();
13980 break;
13982 case SWITCH_STMT:
13983 stmt = begin_switch_stmt ();
13984 tmp = RECUR (SWITCH_STMT_COND (t));
13985 finish_switch_cond (tmp, stmt);
13986 RECUR (SWITCH_STMT_BODY (t));
13987 finish_switch_stmt (stmt);
13988 break;
13990 case CASE_LABEL_EXPR:
13992 tree low = RECUR (CASE_LOW (t));
13993 tree high = RECUR (CASE_HIGH (t));
13994 finish_case_label (EXPR_LOCATION (t), low, high);
13996 break;
13998 case LABEL_EXPR:
14000 tree decl = LABEL_EXPR_LABEL (t);
14001 tree label;
14003 label = finish_label_stmt (DECL_NAME (decl));
14004 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
14005 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
14007 break;
14009 case GOTO_EXPR:
14010 tmp = GOTO_DESTINATION (t);
14011 if (TREE_CODE (tmp) != LABEL_DECL)
14012 /* Computed goto's must be tsubst'd into. On the other hand,
14013 non-computed gotos must not be; the identifier in question
14014 will have no binding. */
14015 tmp = RECUR (tmp);
14016 else
14017 tmp = DECL_NAME (tmp);
14018 finish_goto_stmt (tmp);
14019 break;
14021 case ASM_EXPR:
14023 tree string = RECUR (ASM_STRING (t));
14024 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
14025 complain, in_decl);
14026 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
14027 complain, in_decl);
14028 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
14029 complain, in_decl);
14030 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
14031 complain, in_decl);
14032 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
14033 clobbers, labels);
14034 tree asm_expr = tmp;
14035 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
14036 asm_expr = TREE_OPERAND (asm_expr, 0);
14037 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
14039 break;
14041 case TRY_BLOCK:
14042 if (CLEANUP_P (t))
14044 stmt = begin_try_block ();
14045 RECUR (TRY_STMTS (t));
14046 finish_cleanup_try_block (stmt);
14047 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
14049 else
14051 tree compound_stmt = NULL_TREE;
14053 if (FN_TRY_BLOCK_P (t))
14054 stmt = begin_function_try_block (&compound_stmt);
14055 else
14056 stmt = begin_try_block ();
14058 RECUR (TRY_STMTS (t));
14060 if (FN_TRY_BLOCK_P (t))
14061 finish_function_try_block (stmt);
14062 else
14063 finish_try_block (stmt);
14065 RECUR (TRY_HANDLERS (t));
14066 if (FN_TRY_BLOCK_P (t))
14067 finish_function_handler_sequence (stmt, compound_stmt);
14068 else
14069 finish_handler_sequence (stmt);
14071 break;
14073 case HANDLER:
14075 tree decl = HANDLER_PARMS (t);
14077 if (decl)
14079 decl = tsubst (decl, args, complain, in_decl);
14080 /* Prevent instantiate_decl from trying to instantiate
14081 this variable. We've already done all that needs to be
14082 done. */
14083 if (decl != error_mark_node)
14084 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14086 stmt = begin_handler ();
14087 finish_handler_parms (decl, stmt);
14088 RECUR (HANDLER_BODY (t));
14089 finish_handler (stmt);
14091 break;
14093 case TAG_DEFN:
14094 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
14095 if (CLASS_TYPE_P (tmp))
14097 /* Local classes are not independent templates; they are
14098 instantiated along with their containing function. And this
14099 way we don't have to deal with pushing out of one local class
14100 to instantiate a member of another local class. */
14101 tree fn;
14102 /* Closures are handled by the LAMBDA_EXPR. */
14103 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
14104 complete_type (tmp);
14105 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
14106 if (!DECL_ARTIFICIAL (fn))
14107 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
14109 break;
14111 case STATIC_ASSERT:
14113 tree condition;
14115 ++c_inhibit_evaluation_warnings;
14116 condition =
14117 tsubst_expr (STATIC_ASSERT_CONDITION (t),
14118 args,
14119 complain, in_decl,
14120 /*integral_constant_expression_p=*/true);
14121 --c_inhibit_evaluation_warnings;
14123 finish_static_assert (condition,
14124 STATIC_ASSERT_MESSAGE (t),
14125 STATIC_ASSERT_SOURCE_LOCATION (t),
14126 /*member_p=*/false);
14128 break;
14130 case OMP_PARALLEL:
14131 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false,
14132 args, complain, in_decl);
14133 stmt = begin_omp_parallel ();
14134 RECUR (OMP_PARALLEL_BODY (t));
14135 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
14136 = OMP_PARALLEL_COMBINED (t);
14137 break;
14139 case OMP_TASK:
14140 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false,
14141 args, complain, in_decl);
14142 stmt = begin_omp_task ();
14143 RECUR (OMP_TASK_BODY (t));
14144 finish_omp_task (tmp, stmt);
14145 break;
14147 case OMP_FOR:
14148 case OMP_SIMD:
14149 case CILK_SIMD:
14150 case CILK_FOR:
14151 case OMP_DISTRIBUTE:
14153 tree clauses, body, pre_body;
14154 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
14155 tree incrv = NULL_TREE;
14156 int i;
14158 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
14159 args, complain, in_decl);
14160 if (OMP_FOR_INIT (t) != NULL_TREE)
14162 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14163 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14164 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14165 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
14168 stmt = begin_omp_structured_block ();
14170 pre_body = push_stmt_list ();
14171 RECUR (OMP_FOR_PRE_BODY (t));
14172 pre_body = pop_stmt_list (pre_body);
14174 if (OMP_FOR_INIT (t) != NULL_TREE)
14175 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
14176 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
14177 &clauses, args, complain, in_decl,
14178 integral_constant_expression_p);
14180 body = push_stmt_list ();
14181 RECUR (OMP_FOR_BODY (t));
14182 body = pop_stmt_list (body);
14184 if (OMP_FOR_INIT (t) != NULL_TREE)
14185 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, initv,
14186 condv, incrv, body, pre_body, clauses);
14187 else
14189 t = make_node (TREE_CODE (t));
14190 TREE_TYPE (t) = void_type_node;
14191 OMP_FOR_BODY (t) = body;
14192 OMP_FOR_PRE_BODY (t) = pre_body;
14193 OMP_FOR_CLAUSES (t) = clauses;
14194 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
14195 add_stmt (t);
14198 add_stmt (finish_omp_structured_block (stmt));
14200 break;
14202 case OMP_SECTIONS:
14203 case OMP_SINGLE:
14204 case OMP_TEAMS:
14205 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14206 args, complain, in_decl);
14207 stmt = push_stmt_list ();
14208 RECUR (OMP_BODY (t));
14209 stmt = pop_stmt_list (stmt);
14211 t = copy_node (t);
14212 OMP_BODY (t) = stmt;
14213 OMP_CLAUSES (t) = tmp;
14214 add_stmt (t);
14215 break;
14217 case OMP_TARGET_DATA:
14218 case OMP_TARGET:
14219 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
14220 args, complain, in_decl);
14221 keep_next_level (true);
14222 stmt = begin_omp_structured_block ();
14224 RECUR (OMP_BODY (t));
14225 stmt = finish_omp_structured_block (stmt);
14227 t = copy_node (t);
14228 OMP_BODY (t) = stmt;
14229 OMP_CLAUSES (t) = tmp;
14230 add_stmt (t);
14231 break;
14233 case OMP_TARGET_UPDATE:
14234 tmp = tsubst_omp_clauses (OMP_TARGET_UPDATE_CLAUSES (t), false,
14235 args, complain, in_decl);
14236 t = copy_node (t);
14237 OMP_CLAUSES (t) = tmp;
14238 add_stmt (t);
14239 break;
14241 case OMP_SECTION:
14242 case OMP_CRITICAL:
14243 case OMP_MASTER:
14244 case OMP_TASKGROUP:
14245 case OMP_ORDERED:
14246 stmt = push_stmt_list ();
14247 RECUR (OMP_BODY (t));
14248 stmt = pop_stmt_list (stmt);
14250 t = copy_node (t);
14251 OMP_BODY (t) = stmt;
14252 add_stmt (t);
14253 break;
14255 case OMP_ATOMIC:
14256 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
14257 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
14259 tree op1 = TREE_OPERAND (t, 1);
14260 tree rhs1 = NULL_TREE;
14261 tree lhs, rhs;
14262 if (TREE_CODE (op1) == COMPOUND_EXPR)
14264 rhs1 = RECUR (TREE_OPERAND (op1, 0));
14265 op1 = TREE_OPERAND (op1, 1);
14267 lhs = RECUR (TREE_OPERAND (op1, 0));
14268 rhs = RECUR (TREE_OPERAND (op1, 1));
14269 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
14270 NULL_TREE, NULL_TREE, rhs1,
14271 OMP_ATOMIC_SEQ_CST (t));
14273 else
14275 tree op1 = TREE_OPERAND (t, 1);
14276 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
14277 tree rhs1 = NULL_TREE;
14278 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
14279 enum tree_code opcode = NOP_EXPR;
14280 if (code == OMP_ATOMIC_READ)
14282 v = RECUR (TREE_OPERAND (op1, 0));
14283 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14285 else if (code == OMP_ATOMIC_CAPTURE_OLD
14286 || code == OMP_ATOMIC_CAPTURE_NEW)
14288 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
14289 v = RECUR (TREE_OPERAND (op1, 0));
14290 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
14291 if (TREE_CODE (op11) == COMPOUND_EXPR)
14293 rhs1 = RECUR (TREE_OPERAND (op11, 0));
14294 op11 = TREE_OPERAND (op11, 1);
14296 lhs = RECUR (TREE_OPERAND (op11, 0));
14297 rhs = RECUR (TREE_OPERAND (op11, 1));
14298 opcode = TREE_CODE (op11);
14299 if (opcode == MODIFY_EXPR)
14300 opcode = NOP_EXPR;
14302 else
14304 code = OMP_ATOMIC;
14305 lhs = RECUR (TREE_OPERAND (op1, 0));
14306 rhs = RECUR (TREE_OPERAND (op1, 1));
14308 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
14309 OMP_ATOMIC_SEQ_CST (t));
14311 break;
14313 case TRANSACTION_EXPR:
14315 int flags = 0;
14316 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
14317 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
14319 if (TRANSACTION_EXPR_IS_STMT (t))
14321 tree body = TRANSACTION_EXPR_BODY (t);
14322 tree noex = NULL_TREE;
14323 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
14325 noex = MUST_NOT_THROW_COND (body);
14326 if (noex == NULL_TREE)
14327 noex = boolean_true_node;
14328 body = TREE_OPERAND (body, 0);
14330 stmt = begin_transaction_stmt (input_location, NULL, flags);
14331 RECUR (body);
14332 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
14334 else
14336 stmt = build_transaction_expr (EXPR_LOCATION (t),
14337 RECUR (TRANSACTION_EXPR_BODY (t)),
14338 flags, NULL_TREE);
14339 RETURN (stmt);
14342 break;
14344 case MUST_NOT_THROW_EXPR:
14346 tree op0 = RECUR (TREE_OPERAND (t, 0));
14347 tree cond = RECUR (MUST_NOT_THROW_COND (t));
14348 RETURN (build_must_not_throw_expr (op0, cond));
14351 case EXPR_PACK_EXPANSION:
14352 error ("invalid use of pack expansion expression");
14353 RETURN (error_mark_node);
14355 case NONTYPE_ARGUMENT_PACK:
14356 error ("use %<...%> to expand argument pack");
14357 RETURN (error_mark_node);
14359 case CILK_SPAWN_STMT:
14360 cfun->calls_cilk_spawn = 1;
14361 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
14363 case CILK_SYNC_STMT:
14364 RETURN (build_cilk_sync ());
14366 case COMPOUND_EXPR:
14367 tmp = RECUR (TREE_OPERAND (t, 0));
14368 if (tmp == NULL_TREE)
14369 /* If the first operand was a statement, we're done with it. */
14370 RETURN (RECUR (TREE_OPERAND (t, 1)));
14371 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
14372 RECUR (TREE_OPERAND (t, 1)),
14373 complain));
14375 case ANNOTATE_EXPR:
14376 tmp = RECUR (TREE_OPERAND (t, 0));
14377 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
14378 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
14380 default:
14381 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
14383 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
14384 /*function_p=*/false,
14385 integral_constant_expression_p));
14388 RETURN (NULL_TREE);
14389 out:
14390 input_location = loc;
14391 return r;
14392 #undef RECUR
14393 #undef RETURN
14396 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
14397 function. For description of the body see comment above
14398 cp_parser_omp_declare_reduction_exprs. */
14400 static void
14401 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14403 if (t == NULL_TREE || t == error_mark_node)
14404 return;
14406 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
14408 tree_stmt_iterator tsi;
14409 int i;
14410 tree stmts[7];
14411 memset (stmts, 0, sizeof stmts);
14412 for (i = 0, tsi = tsi_start (t);
14413 i < 7 && !tsi_end_p (tsi);
14414 i++, tsi_next (&tsi))
14415 stmts[i] = tsi_stmt (tsi);
14416 gcc_assert (tsi_end_p (tsi));
14418 if (i >= 3)
14420 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
14421 && TREE_CODE (stmts[1]) == DECL_EXPR);
14422 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
14423 args, complain, in_decl);
14424 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
14425 args, complain, in_decl);
14426 DECL_CONTEXT (omp_out) = current_function_decl;
14427 DECL_CONTEXT (omp_in) = current_function_decl;
14428 keep_next_level (true);
14429 tree block = begin_omp_structured_block ();
14430 tsubst_expr (stmts[2], args, complain, in_decl, false);
14431 block = finish_omp_structured_block (block);
14432 block = maybe_cleanup_point_expr_void (block);
14433 add_decl_expr (omp_out);
14434 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
14435 TREE_NO_WARNING (omp_out) = 1;
14436 add_decl_expr (omp_in);
14437 finish_expr_stmt (block);
14439 if (i >= 6)
14441 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
14442 && TREE_CODE (stmts[4]) == DECL_EXPR);
14443 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
14444 args, complain, in_decl);
14445 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
14446 args, complain, in_decl);
14447 DECL_CONTEXT (omp_priv) = current_function_decl;
14448 DECL_CONTEXT (omp_orig) = current_function_decl;
14449 keep_next_level (true);
14450 tree block = begin_omp_structured_block ();
14451 tsubst_expr (stmts[5], args, complain, in_decl, false);
14452 block = finish_omp_structured_block (block);
14453 block = maybe_cleanup_point_expr_void (block);
14454 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
14455 add_decl_expr (omp_priv);
14456 add_decl_expr (omp_orig);
14457 finish_expr_stmt (block);
14458 if (i == 7)
14459 add_decl_expr (omp_orig);
14463 /* T is a postfix-expression that is not being used in a function
14464 call. Return the substituted version of T. */
14466 static tree
14467 tsubst_non_call_postfix_expression (tree t, tree args,
14468 tsubst_flags_t complain,
14469 tree in_decl)
14471 if (TREE_CODE (t) == SCOPE_REF)
14472 t = tsubst_qualified_id (t, args, complain, in_decl,
14473 /*done=*/false, /*address_p=*/false);
14474 else
14475 t = tsubst_copy_and_build (t, args, complain, in_decl,
14476 /*function_p=*/false,
14477 /*integral_constant_expression_p=*/false);
14479 return t;
14482 /* Like tsubst but deals with expressions and performs semantic
14483 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
14485 tree
14486 tsubst_copy_and_build (tree t,
14487 tree args,
14488 tsubst_flags_t complain,
14489 tree in_decl,
14490 bool function_p,
14491 bool integral_constant_expression_p)
14493 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
14494 #define RECUR(NODE) \
14495 tsubst_copy_and_build (NODE, args, complain, in_decl, \
14496 /*function_p=*/false, \
14497 integral_constant_expression_p)
14499 tree retval, op1;
14500 location_t loc;
14502 if (t == NULL_TREE || t == error_mark_node)
14503 return t;
14505 loc = input_location;
14506 if (EXPR_HAS_LOCATION (t))
14507 input_location = EXPR_LOCATION (t);
14509 /* N3276 decltype magic only applies to calls at the top level or on the
14510 right side of a comma. */
14511 tsubst_flags_t decltype_flag = (complain & tf_decltype);
14512 complain &= ~tf_decltype;
14514 switch (TREE_CODE (t))
14516 case USING_DECL:
14517 t = DECL_NAME (t);
14518 /* Fall through. */
14519 case IDENTIFIER_NODE:
14521 tree decl;
14522 cp_id_kind idk;
14523 bool non_integral_constant_expression_p;
14524 const char *error_msg;
14526 if (IDENTIFIER_TYPENAME_P (t))
14528 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14529 t = mangle_conv_op_name_for_type (new_type);
14532 /* Look up the name. */
14533 decl = lookup_name (t);
14535 /* By convention, expressions use ERROR_MARK_NODE to indicate
14536 failure, not NULL_TREE. */
14537 if (decl == NULL_TREE)
14538 decl = error_mark_node;
14540 decl = finish_id_expression (t, decl, NULL_TREE,
14541 &idk,
14542 integral_constant_expression_p,
14543 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
14544 &non_integral_constant_expression_p,
14545 /*template_p=*/false,
14546 /*done=*/true,
14547 /*address_p=*/false,
14548 /*template_arg_p=*/false,
14549 &error_msg,
14550 input_location);
14551 if (error_msg)
14552 error (error_msg);
14553 if (!function_p && identifier_p (decl))
14555 if (complain & tf_error)
14556 unqualified_name_lookup_error (decl);
14557 decl = error_mark_node;
14559 RETURN (decl);
14562 case TEMPLATE_ID_EXPR:
14564 tree object;
14565 tree templ = RECUR (TREE_OPERAND (t, 0));
14566 tree targs = TREE_OPERAND (t, 1);
14568 if (targs)
14569 targs = tsubst_template_args (targs, args, complain, in_decl);
14571 if (TREE_CODE (templ) == COMPONENT_REF)
14573 object = TREE_OPERAND (templ, 0);
14574 templ = TREE_OPERAND (templ, 1);
14576 else
14577 object = NULL_TREE;
14578 templ = lookup_template_function (templ, targs);
14580 if (object)
14581 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
14582 object, templ, NULL_TREE));
14583 else
14584 RETURN (baselink_for_fns (templ));
14587 case INDIRECT_REF:
14589 tree r = RECUR (TREE_OPERAND (t, 0));
14591 if (REFERENCE_REF_P (t))
14593 /* A type conversion to reference type will be enclosed in
14594 such an indirect ref, but the substitution of the cast
14595 will have also added such an indirect ref. */
14596 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
14597 r = convert_from_reference (r);
14599 else
14600 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
14601 complain|decltype_flag);
14602 RETURN (r);
14605 case NOP_EXPR:
14607 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14608 tree op0 = RECUR (TREE_OPERAND (t, 0));
14609 RETURN (build_nop (type, op0));
14612 case IMPLICIT_CONV_EXPR:
14614 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14615 tree expr = RECUR (TREE_OPERAND (t, 0));
14616 int flags = LOOKUP_IMPLICIT;
14617 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
14618 flags = LOOKUP_NORMAL;
14619 RETURN (perform_implicit_conversion_flags (type, expr, complain,
14620 flags));
14623 case CONVERT_EXPR:
14625 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14626 tree op0 = RECUR (TREE_OPERAND (t, 0));
14627 RETURN (build1 (CONVERT_EXPR, type, op0));
14630 case CAST_EXPR:
14631 case REINTERPRET_CAST_EXPR:
14632 case CONST_CAST_EXPR:
14633 case DYNAMIC_CAST_EXPR:
14634 case STATIC_CAST_EXPR:
14636 tree type;
14637 tree op, r = NULL_TREE;
14639 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14640 if (integral_constant_expression_p
14641 && !cast_valid_in_integral_constant_expression_p (type))
14643 if (complain & tf_error)
14644 error ("a cast to a type other than an integral or "
14645 "enumeration type cannot appear in a constant-expression");
14646 RETURN (error_mark_node);
14649 op = RECUR (TREE_OPERAND (t, 0));
14651 warning_sentinel s(warn_useless_cast);
14652 switch (TREE_CODE (t))
14654 case CAST_EXPR:
14655 r = build_functional_cast (type, op, complain);
14656 break;
14657 case REINTERPRET_CAST_EXPR:
14658 r = build_reinterpret_cast (type, op, complain);
14659 break;
14660 case CONST_CAST_EXPR:
14661 r = build_const_cast (type, op, complain);
14662 break;
14663 case DYNAMIC_CAST_EXPR:
14664 r = build_dynamic_cast (type, op, complain);
14665 break;
14666 case STATIC_CAST_EXPR:
14667 r = build_static_cast (type, op, complain);
14668 break;
14669 default:
14670 gcc_unreachable ();
14673 RETURN (r);
14676 case POSTDECREMENT_EXPR:
14677 case POSTINCREMENT_EXPR:
14678 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14679 args, complain, in_decl);
14680 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
14681 complain|decltype_flag));
14683 case PREDECREMENT_EXPR:
14684 case PREINCREMENT_EXPR:
14685 case NEGATE_EXPR:
14686 case BIT_NOT_EXPR:
14687 case ABS_EXPR:
14688 case TRUTH_NOT_EXPR:
14689 case UNARY_PLUS_EXPR: /* Unary + */
14690 case REALPART_EXPR:
14691 case IMAGPART_EXPR:
14692 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
14693 RECUR (TREE_OPERAND (t, 0)),
14694 complain|decltype_flag));
14696 case FIX_TRUNC_EXPR:
14697 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
14698 0, complain));
14700 case ADDR_EXPR:
14701 op1 = TREE_OPERAND (t, 0);
14702 if (TREE_CODE (op1) == LABEL_DECL)
14703 RETURN (finish_label_address_expr (DECL_NAME (op1),
14704 EXPR_LOCATION (op1)));
14705 if (TREE_CODE (op1) == SCOPE_REF)
14706 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
14707 /*done=*/true, /*address_p=*/true);
14708 else
14709 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
14710 in_decl);
14711 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
14712 complain|decltype_flag));
14714 case PLUS_EXPR:
14715 case MINUS_EXPR:
14716 case MULT_EXPR:
14717 case TRUNC_DIV_EXPR:
14718 case CEIL_DIV_EXPR:
14719 case FLOOR_DIV_EXPR:
14720 case ROUND_DIV_EXPR:
14721 case EXACT_DIV_EXPR:
14722 case BIT_AND_EXPR:
14723 case BIT_IOR_EXPR:
14724 case BIT_XOR_EXPR:
14725 case TRUNC_MOD_EXPR:
14726 case FLOOR_MOD_EXPR:
14727 case TRUTH_ANDIF_EXPR:
14728 case TRUTH_ORIF_EXPR:
14729 case TRUTH_AND_EXPR:
14730 case TRUTH_OR_EXPR:
14731 case RSHIFT_EXPR:
14732 case LSHIFT_EXPR:
14733 case RROTATE_EXPR:
14734 case LROTATE_EXPR:
14735 case EQ_EXPR:
14736 case NE_EXPR:
14737 case MAX_EXPR:
14738 case MIN_EXPR:
14739 case LE_EXPR:
14740 case GE_EXPR:
14741 case LT_EXPR:
14742 case GT_EXPR:
14743 case MEMBER_REF:
14744 case DOTSTAR_EXPR:
14746 warning_sentinel s1(warn_type_limits);
14747 warning_sentinel s2(warn_div_by_zero);
14748 tree op0 = RECUR (TREE_OPERAND (t, 0));
14749 tree op1 = RECUR (TREE_OPERAND (t, 1));
14750 tree r = build_x_binary_op
14751 (input_location, TREE_CODE (t),
14752 op0,
14753 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
14754 ? ERROR_MARK
14755 : TREE_CODE (TREE_OPERAND (t, 0))),
14756 op1,
14757 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
14758 ? ERROR_MARK
14759 : TREE_CODE (TREE_OPERAND (t, 1))),
14760 /*overload=*/NULL,
14761 complain|decltype_flag);
14762 if (EXPR_P (r) && TREE_NO_WARNING (t))
14763 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14765 RETURN (r);
14768 case POINTER_PLUS_EXPR:
14770 tree op0 = RECUR (TREE_OPERAND (t, 0));
14771 tree op1 = RECUR (TREE_OPERAND (t, 1));
14772 return fold_build_pointer_plus (op0, op1);
14775 case SCOPE_REF:
14776 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
14777 /*address_p=*/false));
14778 case ARRAY_REF:
14779 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14780 args, complain, in_decl);
14781 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
14782 RECUR (TREE_OPERAND (t, 1)),
14783 complain|decltype_flag));
14785 case ARRAY_NOTATION_REF:
14787 tree start_index, length, stride;
14788 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
14789 args, complain, in_decl);
14790 start_index = RECUR (ARRAY_NOTATION_START (t));
14791 length = RECUR (ARRAY_NOTATION_LENGTH (t));
14792 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
14793 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
14794 length, stride, TREE_TYPE (op1)));
14796 case SIZEOF_EXPR:
14797 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
14798 RETURN (tsubst_copy (t, args, complain, in_decl));
14799 /* Fall through */
14801 case ALIGNOF_EXPR:
14803 tree r;
14805 op1 = TREE_OPERAND (t, 0);
14806 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
14807 op1 = TREE_TYPE (op1);
14808 if (!args)
14810 /* When there are no ARGS, we are trying to evaluate a
14811 non-dependent expression from the parser. Trying to do
14812 the substitutions may not work. */
14813 if (!TYPE_P (op1))
14814 op1 = TREE_TYPE (op1);
14816 else
14818 ++cp_unevaluated_operand;
14819 ++c_inhibit_evaluation_warnings;
14820 if (TYPE_P (op1))
14821 op1 = tsubst (op1, args, complain, in_decl);
14822 else
14823 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14824 /*function_p=*/false,
14825 /*integral_constant_expression_p=*/
14826 false);
14827 --cp_unevaluated_operand;
14828 --c_inhibit_evaluation_warnings;
14830 if (TYPE_P (op1))
14831 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
14832 complain & tf_error);
14833 else
14834 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
14835 complain & tf_error);
14836 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
14838 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
14840 if (!processing_template_decl && TYPE_P (op1))
14842 r = build_min (SIZEOF_EXPR, size_type_node,
14843 build1 (NOP_EXPR, op1, error_mark_node));
14844 SIZEOF_EXPR_TYPE_P (r) = 1;
14846 else
14847 r = build_min (SIZEOF_EXPR, size_type_node, op1);
14848 TREE_SIDE_EFFECTS (r) = 0;
14849 TREE_READONLY (r) = 1;
14851 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
14853 RETURN (r);
14856 case AT_ENCODE_EXPR:
14858 op1 = TREE_OPERAND (t, 0);
14859 ++cp_unevaluated_operand;
14860 ++c_inhibit_evaluation_warnings;
14861 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14862 /*function_p=*/false,
14863 /*integral_constant_expression_p=*/false);
14864 --cp_unevaluated_operand;
14865 --c_inhibit_evaluation_warnings;
14866 RETURN (objc_build_encode_expr (op1));
14869 case NOEXCEPT_EXPR:
14870 op1 = TREE_OPERAND (t, 0);
14871 ++cp_unevaluated_operand;
14872 ++c_inhibit_evaluation_warnings;
14873 ++cp_noexcept_operand;
14874 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14875 /*function_p=*/false,
14876 /*integral_constant_expression_p=*/false);
14877 --cp_unevaluated_operand;
14878 --c_inhibit_evaluation_warnings;
14879 --cp_noexcept_operand;
14880 RETURN (finish_noexcept_expr (op1, complain));
14882 case MODOP_EXPR:
14884 warning_sentinel s(warn_div_by_zero);
14885 tree lhs = RECUR (TREE_OPERAND (t, 0));
14886 tree rhs = RECUR (TREE_OPERAND (t, 2));
14887 tree r = build_x_modify_expr
14888 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
14889 complain|decltype_flag);
14890 /* TREE_NO_WARNING must be set if either the expression was
14891 parenthesized or it uses an operator such as >>= rather
14892 than plain assignment. In the former case, it was already
14893 set and must be copied. In the latter case,
14894 build_x_modify_expr sets it and it must not be reset
14895 here. */
14896 if (TREE_NO_WARNING (t))
14897 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14899 RETURN (r);
14902 case ARROW_EXPR:
14903 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14904 args, complain, in_decl);
14905 /* Remember that there was a reference to this entity. */
14906 if (DECL_P (op1))
14907 mark_used (op1);
14908 RETURN (build_x_arrow (input_location, op1, complain));
14910 case NEW_EXPR:
14912 tree placement = RECUR (TREE_OPERAND (t, 0));
14913 tree init = RECUR (TREE_OPERAND (t, 3));
14914 vec<tree, va_gc> *placement_vec;
14915 vec<tree, va_gc> *init_vec;
14916 tree ret;
14918 if (placement == NULL_TREE)
14919 placement_vec = NULL;
14920 else
14922 placement_vec = make_tree_vector ();
14923 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
14924 vec_safe_push (placement_vec, TREE_VALUE (placement));
14927 /* If there was an initializer in the original tree, but it
14928 instantiated to an empty list, then we should pass a
14929 non-NULL empty vector to tell build_new that it was an
14930 empty initializer() rather than no initializer. This can
14931 only happen when the initializer is a pack expansion whose
14932 parameter packs are of length zero. */
14933 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
14934 init_vec = NULL;
14935 else
14937 init_vec = make_tree_vector ();
14938 if (init == void_node)
14939 gcc_assert (init_vec != NULL);
14940 else
14942 for (; init != NULL_TREE; init = TREE_CHAIN (init))
14943 vec_safe_push (init_vec, TREE_VALUE (init));
14947 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
14948 tree op2 = RECUR (TREE_OPERAND (t, 2));
14949 ret = build_new (&placement_vec, op1, op2, &init_vec,
14950 NEW_EXPR_USE_GLOBAL (t),
14951 complain);
14953 if (placement_vec != NULL)
14954 release_tree_vector (placement_vec);
14955 if (init_vec != NULL)
14956 release_tree_vector (init_vec);
14958 RETURN (ret);
14961 case DELETE_EXPR:
14963 tree op0 = RECUR (TREE_OPERAND (t, 0));
14964 tree op1 = RECUR (TREE_OPERAND (t, 1));
14965 RETURN (delete_sanity (op0, op1,
14966 DELETE_EXPR_USE_VEC (t),
14967 DELETE_EXPR_USE_GLOBAL (t),
14968 complain));
14971 case COMPOUND_EXPR:
14973 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
14974 complain & ~tf_decltype, in_decl,
14975 /*function_p=*/false,
14976 integral_constant_expression_p);
14977 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
14978 op0,
14979 RECUR (TREE_OPERAND (t, 1)),
14980 complain|decltype_flag));
14983 case CALL_EXPR:
14985 tree function;
14986 vec<tree, va_gc> *call_args;
14987 unsigned int nargs, i;
14988 bool qualified_p;
14989 bool koenig_p;
14990 tree ret;
14992 function = CALL_EXPR_FN (t);
14993 /* When we parsed the expression, we determined whether or
14994 not Koenig lookup should be performed. */
14995 koenig_p = KOENIG_LOOKUP_P (t);
14996 if (TREE_CODE (function) == SCOPE_REF)
14998 qualified_p = true;
14999 function = tsubst_qualified_id (function, args, complain, in_decl,
15000 /*done=*/false,
15001 /*address_p=*/false);
15003 else if (koenig_p && identifier_p (function))
15005 /* Do nothing; calling tsubst_copy_and_build on an identifier
15006 would incorrectly perform unqualified lookup again.
15008 Note that we can also have an IDENTIFIER_NODE if the earlier
15009 unqualified lookup found a member function; in that case
15010 koenig_p will be false and we do want to do the lookup
15011 again to find the instantiated member function.
15013 FIXME but doing that causes c++/15272, so we need to stop
15014 using IDENTIFIER_NODE in that situation. */
15015 qualified_p = false;
15017 else
15019 if (TREE_CODE (function) == COMPONENT_REF)
15021 tree op = TREE_OPERAND (function, 1);
15023 qualified_p = (TREE_CODE (op) == SCOPE_REF
15024 || (BASELINK_P (op)
15025 && BASELINK_QUALIFIED_P (op)));
15027 else
15028 qualified_p = false;
15030 if (TREE_CODE (function) == ADDR_EXPR
15031 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
15032 /* Avoid error about taking the address of a constructor. */
15033 function = TREE_OPERAND (function, 0);
15035 function = tsubst_copy_and_build (function, args, complain,
15036 in_decl,
15037 !qualified_p,
15038 integral_constant_expression_p);
15040 if (BASELINK_P (function))
15041 qualified_p = true;
15044 nargs = call_expr_nargs (t);
15045 call_args = make_tree_vector ();
15046 for (i = 0; i < nargs; ++i)
15048 tree arg = CALL_EXPR_ARG (t, i);
15050 if (!PACK_EXPANSION_P (arg))
15051 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
15052 else
15054 /* Expand the pack expansion and push each entry onto
15055 CALL_ARGS. */
15056 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
15057 if (TREE_CODE (arg) == TREE_VEC)
15059 unsigned int len, j;
15061 len = TREE_VEC_LENGTH (arg);
15062 for (j = 0; j < len; ++j)
15064 tree value = TREE_VEC_ELT (arg, j);
15065 if (value != NULL_TREE)
15066 value = convert_from_reference (value);
15067 vec_safe_push (call_args, value);
15070 else
15072 /* A partial substitution. Add one entry. */
15073 vec_safe_push (call_args, arg);
15078 /* We do not perform argument-dependent lookup if normal
15079 lookup finds a non-function, in accordance with the
15080 expected resolution of DR 218. */
15081 if (koenig_p
15082 && ((is_overloaded_fn (function)
15083 /* If lookup found a member function, the Koenig lookup is
15084 not appropriate, even if an unqualified-name was used
15085 to denote the function. */
15086 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
15087 || identifier_p (function))
15088 /* Only do this when substitution turns a dependent call
15089 into a non-dependent call. */
15090 && type_dependent_expression_p_push (t)
15091 && !any_type_dependent_arguments_p (call_args))
15092 function = perform_koenig_lookup (function, call_args, tf_none);
15094 if (identifier_p (function)
15095 && !any_type_dependent_arguments_p (call_args))
15097 if (koenig_p && (complain & tf_warning_or_error))
15099 /* For backwards compatibility and good diagnostics, try
15100 the unqualified lookup again if we aren't in SFINAE
15101 context. */
15102 tree unq = (tsubst_copy_and_build
15103 (function, args, complain, in_decl, true,
15104 integral_constant_expression_p));
15105 if (unq == error_mark_node)
15106 RETURN (error_mark_node);
15108 if (unq != function)
15110 tree fn = unq;
15111 if (INDIRECT_REF_P (fn))
15112 fn = TREE_OPERAND (fn, 0);
15113 if (TREE_CODE (fn) == COMPONENT_REF)
15114 fn = TREE_OPERAND (fn, 1);
15115 if (is_overloaded_fn (fn))
15116 fn = get_first_fn (fn);
15117 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
15118 "%qD was not declared in this scope, "
15119 "and no declarations were found by "
15120 "argument-dependent lookup at the point "
15121 "of instantiation", function))
15123 if (!DECL_P (fn))
15124 /* Can't say anything more. */;
15125 else if (DECL_CLASS_SCOPE_P (fn))
15127 location_t loc = EXPR_LOC_OR_LOC (t,
15128 input_location);
15129 inform (loc,
15130 "declarations in dependent base %qT are "
15131 "not found by unqualified lookup",
15132 DECL_CLASS_CONTEXT (fn));
15133 if (current_class_ptr)
15134 inform (loc,
15135 "use %<this->%D%> instead", function);
15136 else
15137 inform (loc,
15138 "use %<%T::%D%> instead",
15139 current_class_name, function);
15141 else
15142 inform (0, "%q+D declared here, later in the "
15143 "translation unit", fn);
15145 function = unq;
15148 if (identifier_p (function))
15150 if (complain & tf_error)
15151 unqualified_name_lookup_error (function);
15152 release_tree_vector (call_args);
15153 RETURN (error_mark_node);
15157 /* Remember that there was a reference to this entity. */
15158 if (DECL_P (function))
15159 mark_used (function, complain);
15161 /* Put back tf_decltype for the actual call. */
15162 complain |= decltype_flag;
15164 if (TREE_CODE (function) == OFFSET_REF)
15165 ret = build_offset_ref_call_from_tree (function, &call_args,
15166 complain);
15167 else if (TREE_CODE (function) == COMPONENT_REF)
15169 tree instance = TREE_OPERAND (function, 0);
15170 tree fn = TREE_OPERAND (function, 1);
15172 if (processing_template_decl
15173 && (type_dependent_expression_p (instance)
15174 || (!BASELINK_P (fn)
15175 && TREE_CODE (fn) != FIELD_DECL)
15176 || type_dependent_expression_p (fn)
15177 || any_type_dependent_arguments_p (call_args)))
15178 ret = build_nt_call_vec (function, call_args);
15179 else if (!BASELINK_P (fn))
15180 ret = finish_call_expr (function, &call_args,
15181 /*disallow_virtual=*/false,
15182 /*koenig_p=*/false,
15183 complain);
15184 else
15185 ret = (build_new_method_call
15186 (instance, fn,
15187 &call_args, NULL_TREE,
15188 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
15189 /*fn_p=*/NULL,
15190 complain));
15192 else
15193 ret = finish_call_expr (function, &call_args,
15194 /*disallow_virtual=*/qualified_p,
15195 koenig_p,
15196 complain);
15198 release_tree_vector (call_args);
15200 RETURN (ret);
15203 case COND_EXPR:
15205 tree cond = RECUR (TREE_OPERAND (t, 0));
15206 tree folded_cond = fold_non_dependent_expr (cond);
15207 tree exp1, exp2;
15209 if (TREE_CODE (folded_cond) == INTEGER_CST)
15211 if (integer_zerop (folded_cond))
15213 ++c_inhibit_evaluation_warnings;
15214 exp1 = RECUR (TREE_OPERAND (t, 1));
15215 --c_inhibit_evaluation_warnings;
15216 exp2 = RECUR (TREE_OPERAND (t, 2));
15218 else
15220 exp1 = RECUR (TREE_OPERAND (t, 1));
15221 ++c_inhibit_evaluation_warnings;
15222 exp2 = RECUR (TREE_OPERAND (t, 2));
15223 --c_inhibit_evaluation_warnings;
15225 cond = folded_cond;
15227 else
15229 exp1 = RECUR (TREE_OPERAND (t, 1));
15230 exp2 = RECUR (TREE_OPERAND (t, 2));
15233 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
15234 cond, exp1, exp2, complain));
15237 case PSEUDO_DTOR_EXPR:
15239 tree op0 = RECUR (TREE_OPERAND (t, 0));
15240 tree op1 = RECUR (TREE_OPERAND (t, 1));
15241 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
15242 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
15243 input_location));
15246 case TREE_LIST:
15248 tree purpose, value, chain;
15250 if (t == void_list_node)
15251 RETURN (t);
15253 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
15254 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
15256 /* We have pack expansions, so expand those and
15257 create a new list out of it. */
15258 tree purposevec = NULL_TREE;
15259 tree valuevec = NULL_TREE;
15260 tree chain;
15261 int i, len = -1;
15263 /* Expand the argument expressions. */
15264 if (TREE_PURPOSE (t))
15265 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
15266 complain, in_decl);
15267 if (TREE_VALUE (t))
15268 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
15269 complain, in_decl);
15271 /* Build the rest of the list. */
15272 chain = TREE_CHAIN (t);
15273 if (chain && chain != void_type_node)
15274 chain = RECUR (chain);
15276 /* Determine the number of arguments. */
15277 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
15279 len = TREE_VEC_LENGTH (purposevec);
15280 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
15282 else if (TREE_CODE (valuevec) == TREE_VEC)
15283 len = TREE_VEC_LENGTH (valuevec);
15284 else
15286 /* Since we only performed a partial substitution into
15287 the argument pack, we only RETURN (a single list
15288 node. */
15289 if (purposevec == TREE_PURPOSE (t)
15290 && valuevec == TREE_VALUE (t)
15291 && chain == TREE_CHAIN (t))
15292 RETURN (t);
15294 RETURN (tree_cons (purposevec, valuevec, chain));
15297 /* Convert the argument vectors into a TREE_LIST */
15298 i = len;
15299 while (i > 0)
15301 /* Grab the Ith values. */
15302 i--;
15303 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
15304 : NULL_TREE;
15305 value
15306 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
15307 : NULL_TREE;
15309 /* Build the list (backwards). */
15310 chain = tree_cons (purpose, value, chain);
15313 RETURN (chain);
15316 purpose = TREE_PURPOSE (t);
15317 if (purpose)
15318 purpose = RECUR (purpose);
15319 value = TREE_VALUE (t);
15320 if (value)
15321 value = RECUR (value);
15322 chain = TREE_CHAIN (t);
15323 if (chain && chain != void_type_node)
15324 chain = RECUR (chain);
15325 if (purpose == TREE_PURPOSE (t)
15326 && value == TREE_VALUE (t)
15327 && chain == TREE_CHAIN (t))
15328 RETURN (t);
15329 RETURN (tree_cons (purpose, value, chain));
15332 case COMPONENT_REF:
15334 tree object;
15335 tree object_type;
15336 tree member;
15337 tree r;
15339 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15340 args, complain, in_decl);
15341 /* Remember that there was a reference to this entity. */
15342 if (DECL_P (object))
15343 mark_used (object);
15344 object_type = TREE_TYPE (object);
15346 member = TREE_OPERAND (t, 1);
15347 if (BASELINK_P (member))
15348 member = tsubst_baselink (member,
15349 non_reference (TREE_TYPE (object)),
15350 args, complain, in_decl);
15351 else
15352 member = tsubst_copy (member, args, complain, in_decl);
15353 if (member == error_mark_node)
15354 RETURN (error_mark_node);
15356 if (type_dependent_expression_p (object))
15357 /* We can't do much here. */;
15358 else if (!CLASS_TYPE_P (object_type))
15360 if (scalarish_type_p (object_type))
15362 tree s = NULL_TREE;
15363 tree dtor = member;
15365 if (TREE_CODE (dtor) == SCOPE_REF)
15367 s = TREE_OPERAND (dtor, 0);
15368 dtor = TREE_OPERAND (dtor, 1);
15370 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
15372 dtor = TREE_OPERAND (dtor, 0);
15373 if (TYPE_P (dtor))
15374 RETURN (finish_pseudo_destructor_expr
15375 (object, s, dtor, input_location));
15379 else if (TREE_CODE (member) == SCOPE_REF
15380 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
15382 /* Lookup the template functions now that we know what the
15383 scope is. */
15384 tree scope = TREE_OPERAND (member, 0);
15385 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
15386 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
15387 member = lookup_qualified_name (scope, tmpl,
15388 /*is_type_p=*/false,
15389 /*complain=*/false);
15390 if (BASELINK_P (member))
15392 BASELINK_FUNCTIONS (member)
15393 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
15394 args);
15395 member = (adjust_result_of_qualified_name_lookup
15396 (member, BINFO_TYPE (BASELINK_BINFO (member)),
15397 object_type));
15399 else
15401 qualified_name_lookup_error (scope, tmpl, member,
15402 input_location);
15403 RETURN (error_mark_node);
15406 else if (TREE_CODE (member) == SCOPE_REF
15407 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
15408 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
15410 if (complain & tf_error)
15412 if (TYPE_P (TREE_OPERAND (member, 0)))
15413 error ("%qT is not a class or namespace",
15414 TREE_OPERAND (member, 0));
15415 else
15416 error ("%qD is not a class or namespace",
15417 TREE_OPERAND (member, 0));
15419 RETURN (error_mark_node);
15421 else if (TREE_CODE (member) == FIELD_DECL)
15423 r = finish_non_static_data_member (member, object, NULL_TREE);
15424 if (TREE_CODE (r) == COMPONENT_REF)
15425 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15426 RETURN (r);
15429 r = finish_class_member_access_expr (object, member,
15430 /*template_p=*/false,
15431 complain);
15432 if (TREE_CODE (r) == COMPONENT_REF)
15433 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15434 RETURN (r);
15437 case THROW_EXPR:
15438 RETURN (build_throw
15439 (RECUR (TREE_OPERAND (t, 0))));
15441 case CONSTRUCTOR:
15443 vec<constructor_elt, va_gc> *n;
15444 constructor_elt *ce;
15445 unsigned HOST_WIDE_INT idx;
15446 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15447 bool process_index_p;
15448 int newlen;
15449 bool need_copy_p = false;
15450 tree r;
15452 if (type == error_mark_node)
15453 RETURN (error_mark_node);
15455 /* digest_init will do the wrong thing if we let it. */
15456 if (type && TYPE_PTRMEMFUNC_P (type))
15457 RETURN (t);
15459 /* We do not want to process the index of aggregate
15460 initializers as they are identifier nodes which will be
15461 looked up by digest_init. */
15462 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
15464 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
15465 newlen = vec_safe_length (n);
15466 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
15468 if (ce->index && process_index_p
15469 /* An identifier index is looked up in the type
15470 being initialized, not the current scope. */
15471 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
15472 ce->index = RECUR (ce->index);
15474 if (PACK_EXPANSION_P (ce->value))
15476 /* Substitute into the pack expansion. */
15477 ce->value = tsubst_pack_expansion (ce->value, args, complain,
15478 in_decl);
15480 if (ce->value == error_mark_node
15481 || PACK_EXPANSION_P (ce->value))
15483 else if (TREE_VEC_LENGTH (ce->value) == 1)
15484 /* Just move the argument into place. */
15485 ce->value = TREE_VEC_ELT (ce->value, 0);
15486 else
15488 /* Update the length of the final CONSTRUCTOR
15489 arguments vector, and note that we will need to
15490 copy.*/
15491 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
15492 need_copy_p = true;
15495 else
15496 ce->value = RECUR (ce->value);
15499 if (need_copy_p)
15501 vec<constructor_elt, va_gc> *old_n = n;
15503 vec_alloc (n, newlen);
15504 FOR_EACH_VEC_ELT (*old_n, idx, ce)
15506 if (TREE_CODE (ce->value) == TREE_VEC)
15508 int i, len = TREE_VEC_LENGTH (ce->value);
15509 for (i = 0; i < len; ++i)
15510 CONSTRUCTOR_APPEND_ELT (n, 0,
15511 TREE_VEC_ELT (ce->value, i));
15513 else
15514 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
15518 r = build_constructor (init_list_type_node, n);
15519 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
15521 if (TREE_HAS_CONSTRUCTOR (t))
15522 RETURN (finish_compound_literal (type, r, complain));
15524 TREE_TYPE (r) = type;
15525 RETURN (r);
15528 case TYPEID_EXPR:
15530 tree operand_0 = TREE_OPERAND (t, 0);
15531 if (TYPE_P (operand_0))
15533 operand_0 = tsubst (operand_0, args, complain, in_decl);
15534 RETURN (get_typeid (operand_0, complain));
15536 else
15538 operand_0 = RECUR (operand_0);
15539 RETURN (build_typeid (operand_0, complain));
15543 case VAR_DECL:
15544 if (!args)
15545 RETURN (t);
15546 else if (DECL_PACK_P (t))
15548 /* We don't build decls for an instantiation of a
15549 variadic capture proxy, we instantiate the elements
15550 when needed. */
15551 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
15552 return RECUR (DECL_VALUE_EXPR (t));
15554 /* Fall through */
15556 case PARM_DECL:
15558 tree r = tsubst_copy (t, args, complain, in_decl);
15559 /* ??? We're doing a subset of finish_id_expression here. */
15560 if (VAR_P (r)
15561 && !processing_template_decl
15562 && !cp_unevaluated_operand
15563 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
15564 && DECL_THREAD_LOCAL_P (r))
15566 if (tree wrap = get_tls_wrapper_fn (r))
15567 /* Replace an evaluated use of the thread_local variable with
15568 a call to its wrapper. */
15569 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
15571 else if (outer_automatic_var_p (r))
15572 r = process_outer_var_ref (r, complain);
15574 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
15575 /* If the original type was a reference, we'll be wrapped in
15576 the appropriate INDIRECT_REF. */
15577 r = convert_from_reference (r);
15578 RETURN (r);
15581 case VA_ARG_EXPR:
15583 tree op0 = RECUR (TREE_OPERAND (t, 0));
15584 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15585 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
15588 case OFFSETOF_EXPR:
15589 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
15590 EXPR_LOCATION (t)));
15592 case TRAIT_EXPR:
15594 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
15595 complain, in_decl);
15597 tree type2 = TRAIT_EXPR_TYPE2 (t);
15598 if (type2 && TREE_CODE (type2) == TREE_LIST)
15599 type2 = RECUR (type2);
15600 else if (type2)
15601 type2 = tsubst (type2, args, complain, in_decl);
15603 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
15606 case STMT_EXPR:
15608 tree old_stmt_expr = cur_stmt_expr;
15609 tree stmt_expr = begin_stmt_expr ();
15611 cur_stmt_expr = stmt_expr;
15612 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
15613 integral_constant_expression_p);
15614 stmt_expr = finish_stmt_expr (stmt_expr, false);
15615 cur_stmt_expr = old_stmt_expr;
15617 /* If the resulting list of expression statement is empty,
15618 fold it further into void_node. */
15619 if (empty_expr_stmt_p (stmt_expr))
15620 stmt_expr = void_node;
15622 RETURN (stmt_expr);
15625 case LAMBDA_EXPR:
15627 tree r = build_lambda_expr ();
15629 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
15630 LAMBDA_EXPR_CLOSURE (r) = type;
15631 CLASSTYPE_LAMBDA_EXPR (type) = r;
15633 LAMBDA_EXPR_LOCATION (r)
15634 = LAMBDA_EXPR_LOCATION (t);
15635 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
15636 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
15637 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
15638 LAMBDA_EXPR_DISCRIMINATOR (r)
15639 = (LAMBDA_EXPR_DISCRIMINATOR (t));
15640 /* For a function scope, we want to use tsubst so that we don't
15641 complain about referring to an auto function before its return
15642 type has been deduced. Otherwise, we want to use tsubst_copy so
15643 that we look up the existing field/parameter/variable rather
15644 than build a new one. */
15645 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
15646 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
15647 scope = tsubst (scope, args, complain, in_decl);
15648 else if (scope && TREE_CODE (scope) == PARM_DECL)
15650 /* Look up the parameter we want directly, as tsubst_copy
15651 doesn't do what we need. */
15652 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
15653 tree parm = FUNCTION_FIRST_USER_PARM (fn);
15654 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
15655 parm = DECL_CHAIN (parm);
15656 scope = parm;
15657 /* FIXME Work around the parm not having DECL_CONTEXT set. */
15658 if (DECL_CONTEXT (scope) == NULL_TREE)
15659 DECL_CONTEXT (scope) = fn;
15661 else
15662 scope = RECUR (scope);
15663 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
15664 LAMBDA_EXPR_RETURN_TYPE (r)
15665 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
15667 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
15668 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
15670 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
15671 determine_visibility (TYPE_NAME (type));
15672 /* Now that we know visibility, instantiate the type so we have a
15673 declaration of the op() for later calls to lambda_function. */
15674 complete_type (type);
15676 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
15678 RETURN (build_lambda_object (r));
15681 case TARGET_EXPR:
15682 /* We can get here for a constant initializer of non-dependent type.
15683 FIXME stop folding in cp_parser_initializer_clause. */
15685 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
15686 complain);
15687 RETURN (r);
15690 case TRANSACTION_EXPR:
15691 RETURN (tsubst_expr(t, args, complain, in_decl,
15692 integral_constant_expression_p));
15694 case PAREN_EXPR:
15695 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
15697 case VEC_PERM_EXPR:
15699 tree op0 = RECUR (TREE_OPERAND (t, 0));
15700 tree op1 = RECUR (TREE_OPERAND (t, 1));
15701 tree op2 = RECUR (TREE_OPERAND (t, 2));
15702 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
15703 complain));
15706 default:
15707 /* Handle Objective-C++ constructs, if appropriate. */
15709 tree subst
15710 = objcp_tsubst_copy_and_build (t, args, complain,
15711 in_decl, /*function_p=*/false);
15712 if (subst)
15713 RETURN (subst);
15715 RETURN (tsubst_copy (t, args, complain, in_decl));
15718 #undef RECUR
15719 #undef RETURN
15720 out:
15721 input_location = loc;
15722 return retval;
15725 /* Verify that the instantiated ARGS are valid. For type arguments,
15726 make sure that the type's linkage is ok. For non-type arguments,
15727 make sure they are constants if they are integral or enumerations.
15728 Emit an error under control of COMPLAIN, and return TRUE on error. */
15730 static bool
15731 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
15733 if (dependent_template_arg_p (t))
15734 return false;
15735 if (ARGUMENT_PACK_P (t))
15737 tree vec = ARGUMENT_PACK_ARGS (t);
15738 int len = TREE_VEC_LENGTH (vec);
15739 bool result = false;
15740 int i;
15742 for (i = 0; i < len; ++i)
15743 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
15744 result = true;
15745 return result;
15747 else if (TYPE_P (t))
15749 /* [basic.link]: A name with no linkage (notably, the name
15750 of a class or enumeration declared in a local scope)
15751 shall not be used to declare an entity with linkage.
15752 This implies that names with no linkage cannot be used as
15753 template arguments
15755 DR 757 relaxes this restriction for C++0x. */
15756 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
15757 : no_linkage_check (t, /*relaxed_p=*/false));
15759 if (nt)
15761 /* DR 488 makes use of a type with no linkage cause
15762 type deduction to fail. */
15763 if (complain & tf_error)
15765 if (TYPE_ANONYMOUS_P (nt))
15766 error ("%qT is/uses anonymous type", t);
15767 else
15768 error ("template argument for %qD uses local type %qT",
15769 tmpl, t);
15771 return true;
15773 /* In order to avoid all sorts of complications, we do not
15774 allow variably-modified types as template arguments. */
15775 else if (variably_modified_type_p (t, NULL_TREE))
15777 if (complain & tf_error)
15778 error ("%qT is a variably modified type", t);
15779 return true;
15782 /* Class template and alias template arguments should be OK. */
15783 else if (DECL_TYPE_TEMPLATE_P (t))
15785 /* A non-type argument of integral or enumerated type must be a
15786 constant. */
15787 else if (TREE_TYPE (t)
15788 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
15789 && !REFERENCE_REF_P (t)
15790 && !TREE_CONSTANT (t))
15792 if (complain & tf_error)
15793 error ("integral expression %qE is not constant", t);
15794 return true;
15796 return false;
15799 static bool
15800 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
15802 int ix, len = DECL_NTPARMS (tmpl);
15803 bool result = false;
15805 for (ix = 0; ix != len; ix++)
15807 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
15808 result = true;
15810 if (result && (complain & tf_error))
15811 error (" trying to instantiate %qD", tmpl);
15812 return result;
15815 /* We're out of SFINAE context now, so generate diagnostics for the access
15816 errors we saw earlier when instantiating D from TMPL and ARGS. */
15818 static void
15819 recheck_decl_substitution (tree d, tree tmpl, tree args)
15821 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
15822 tree type = TREE_TYPE (pattern);
15823 location_t loc = input_location;
15825 push_access_scope (d);
15826 push_deferring_access_checks (dk_no_deferred);
15827 input_location = DECL_SOURCE_LOCATION (pattern);
15828 tsubst (type, args, tf_warning_or_error, d);
15829 input_location = loc;
15830 pop_deferring_access_checks ();
15831 pop_access_scope (d);
15834 /* Instantiate the indicated variable, function, or alias template TMPL with
15835 the template arguments in TARG_PTR. */
15837 static tree
15838 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
15840 tree targ_ptr = orig_args;
15841 tree fndecl;
15842 tree gen_tmpl;
15843 tree spec;
15844 bool access_ok = true;
15846 if (tmpl == error_mark_node)
15847 return error_mark_node;
15849 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
15851 /* If this function is a clone, handle it specially. */
15852 if (DECL_CLONED_FUNCTION_P (tmpl))
15854 tree spec;
15855 tree clone;
15857 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
15858 DECL_CLONED_FUNCTION. */
15859 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
15860 targ_ptr, complain);
15861 if (spec == error_mark_node)
15862 return error_mark_node;
15864 /* Look for the clone. */
15865 FOR_EACH_CLONE (clone, spec)
15866 if (DECL_NAME (clone) == DECL_NAME (tmpl))
15867 return clone;
15868 /* We should always have found the clone by now. */
15869 gcc_unreachable ();
15870 return NULL_TREE;
15873 if (targ_ptr == error_mark_node)
15874 return error_mark_node;
15876 /* Check to see if we already have this specialization. */
15877 gen_tmpl = most_general_template (tmpl);
15878 if (tmpl != gen_tmpl)
15879 /* The TMPL is a partial instantiation. To get a full set of
15880 arguments we must add the arguments used to perform the
15881 partial instantiation. */
15882 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
15883 targ_ptr);
15885 /* It would be nice to avoid hashing here and then again in tsubst_decl,
15886 but it doesn't seem to be on the hot path. */
15887 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
15889 gcc_assert (tmpl == gen_tmpl
15890 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
15891 == spec)
15892 || fndecl == NULL_TREE);
15894 if (spec != NULL_TREE)
15896 if (FNDECL_HAS_ACCESS_ERRORS (spec))
15898 if (complain & tf_error)
15899 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
15900 return error_mark_node;
15902 return spec;
15905 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
15906 complain))
15907 return error_mark_node;
15909 /* We are building a FUNCTION_DECL, during which the access of its
15910 parameters and return types have to be checked. However this
15911 FUNCTION_DECL which is the desired context for access checking
15912 is not built yet. We solve this chicken-and-egg problem by
15913 deferring all checks until we have the FUNCTION_DECL. */
15914 push_deferring_access_checks (dk_deferred);
15916 /* Instantiation of the function happens in the context of the function
15917 template, not the context of the overload resolution we're doing. */
15918 push_to_top_level ();
15919 /* If there are dependent arguments, e.g. because we're doing partial
15920 ordering, make sure processing_template_decl stays set. */
15921 if (uses_template_parms (targ_ptr))
15922 ++processing_template_decl;
15923 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15925 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
15926 complain, gen_tmpl, true);
15927 push_nested_class (ctx);
15930 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
15932 if (VAR_P (pattern))
15934 /* We need to determine if we're using a partial or explicit
15935 specialization now, because the type of the variable could be
15936 different. */
15937 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
15938 tree elt = most_specialized_partial_spec (tid, complain);
15939 if (elt == error_mark_node)
15940 pattern = error_mark_node;
15941 else if (elt)
15943 tmpl = TREE_VALUE (elt);
15944 pattern = DECL_TEMPLATE_RESULT (tmpl);
15945 targ_ptr = TREE_PURPOSE (elt);
15949 /* Substitute template parameters to obtain the specialization. */
15950 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
15951 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15952 pop_nested_class ();
15953 pop_from_top_level ();
15955 if (fndecl == error_mark_node)
15957 pop_deferring_access_checks ();
15958 return error_mark_node;
15961 /* The DECL_TI_TEMPLATE should always be the immediate parent
15962 template, not the most general template. */
15963 DECL_TI_TEMPLATE (fndecl) = tmpl;
15965 /* Now we know the specialization, compute access previously
15966 deferred. */
15967 push_access_scope (fndecl);
15968 if (!perform_deferred_access_checks (complain))
15969 access_ok = false;
15970 pop_access_scope (fndecl);
15971 pop_deferring_access_checks ();
15973 /* If we've just instantiated the main entry point for a function,
15974 instantiate all the alternate entry points as well. We do this
15975 by cloning the instantiation of the main entry point, not by
15976 instantiating the template clones. */
15977 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
15978 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
15980 if (!access_ok)
15982 if (!(complain & tf_error))
15984 /* Remember to reinstantiate when we're out of SFINAE so the user
15985 can see the errors. */
15986 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
15988 return error_mark_node;
15990 return fndecl;
15993 /* Wrapper for instantiate_template_1. */
15995 tree
15996 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
15998 tree ret;
15999 timevar_push (TV_TEMPLATE_INST);
16000 ret = instantiate_template_1 (tmpl, orig_args, complain);
16001 timevar_pop (TV_TEMPLATE_INST);
16002 return ret;
16005 /* Instantiate the alias template TMPL with ARGS. Also push a template
16006 instantiation level, which instantiate_template doesn't do because
16007 functions and variables have sufficient context established by the
16008 callers. */
16010 static tree
16011 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
16013 struct pending_template *old_last_pend = last_pending_template;
16014 struct tinst_level *old_error_tinst = last_error_tinst_level;
16015 if (tmpl == error_mark_node || args == error_mark_node)
16016 return error_mark_node;
16017 tree tinst = build_tree_list (tmpl, args);
16018 if (!push_tinst_level (tinst))
16020 ggc_free (tinst);
16021 return error_mark_node;
16024 args =
16025 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
16026 args, tmpl, complain,
16027 /*require_all_args=*/true,
16028 /*use_default_args=*/true);
16030 tree r = instantiate_template (tmpl, args, complain);
16031 pop_tinst_level ();
16032 /* We can't free this if a pending_template entry or last_error_tinst_level
16033 is pointing at it. */
16034 if (last_pending_template == old_last_pend
16035 && last_error_tinst_level == old_error_tinst)
16036 ggc_free (tinst);
16038 return r;
16041 /* PARM is a template parameter pack for FN. Returns true iff
16042 PARM is used in a deducible way in the argument list of FN. */
16044 static bool
16045 pack_deducible_p (tree parm, tree fn)
16047 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
16048 for (; t; t = TREE_CHAIN (t))
16050 tree type = TREE_VALUE (t);
16051 tree packs;
16052 if (!PACK_EXPANSION_P (type))
16053 continue;
16054 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
16055 packs; packs = TREE_CHAIN (packs))
16056 if (template_args_equal (TREE_VALUE (packs), parm))
16058 /* The template parameter pack is used in a function parameter
16059 pack. If this is the end of the parameter list, the
16060 template parameter pack is deducible. */
16061 if (TREE_CHAIN (t) == void_list_node)
16062 return true;
16063 else
16064 /* Otherwise, not. Well, it could be deduced from
16065 a non-pack parameter, but doing so would end up with
16066 a deduction mismatch, so don't bother. */
16067 return false;
16070 /* The template parameter pack isn't used in any function parameter
16071 packs, but it might be used deeper, e.g. tuple<Args...>. */
16072 return true;
16075 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
16076 NARGS elements of the arguments that are being used when calling
16077 it. TARGS is a vector into which the deduced template arguments
16078 are placed.
16080 Returns either a FUNCTION_DECL for the matching specialization of FN or
16081 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
16082 true, diagnostics will be printed to explain why it failed.
16084 If FN is a conversion operator, or we are trying to produce a specific
16085 specialization, RETURN_TYPE is the return type desired.
16087 The EXPLICIT_TARGS are explicit template arguments provided via a
16088 template-id.
16090 The parameter STRICT is one of:
16092 DEDUCE_CALL:
16093 We are deducing arguments for a function call, as in
16094 [temp.deduct.call].
16096 DEDUCE_CONV:
16097 We are deducing arguments for a conversion function, as in
16098 [temp.deduct.conv].
16100 DEDUCE_EXACT:
16101 We are deducing arguments when doing an explicit instantiation
16102 as in [temp.explicit], when determining an explicit specialization
16103 as in [temp.expl.spec], or when taking the address of a function
16104 template, as in [temp.deduct.funcaddr]. */
16106 tree
16107 fn_type_unification (tree fn,
16108 tree explicit_targs,
16109 tree targs,
16110 const tree *args,
16111 unsigned int nargs,
16112 tree return_type,
16113 unification_kind_t strict,
16114 int flags,
16115 bool explain_p,
16116 bool decltype_p)
16118 tree parms;
16119 tree fntype;
16120 tree decl = NULL_TREE;
16121 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
16122 bool ok;
16123 static int deduction_depth;
16124 struct pending_template *old_last_pend = last_pending_template;
16125 struct tinst_level *old_error_tinst = last_error_tinst_level;
16126 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
16127 tree tinst;
16128 tree r = error_mark_node;
16130 if (decltype_p)
16131 complain |= tf_decltype;
16133 /* In C++0x, it's possible to have a function template whose type depends
16134 on itself recursively. This is most obvious with decltype, but can also
16135 occur with enumeration scope (c++/48969). So we need to catch infinite
16136 recursion and reject the substitution at deduction time; this function
16137 will return error_mark_node for any repeated substitution.
16139 This also catches excessive recursion such as when f<N> depends on
16140 f<N-1> across all integers, and returns error_mark_node for all the
16141 substitutions back up to the initial one.
16143 This is, of course, not reentrant. */
16144 if (excessive_deduction_depth)
16145 return error_mark_node;
16146 tinst = build_tree_list (fn, NULL_TREE);
16147 ++deduction_depth;
16149 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
16151 fntype = TREE_TYPE (fn);
16152 if (explicit_targs)
16154 /* [temp.deduct]
16156 The specified template arguments must match the template
16157 parameters in kind (i.e., type, nontype, template), and there
16158 must not be more arguments than there are parameters;
16159 otherwise type deduction fails.
16161 Nontype arguments must match the types of the corresponding
16162 nontype template parameters, or must be convertible to the
16163 types of the corresponding nontype parameters as specified in
16164 _temp.arg.nontype_, otherwise type deduction fails.
16166 All references in the function type of the function template
16167 to the corresponding template parameters are replaced by the
16168 specified template argument values. If a substitution in a
16169 template parameter or in the function type of the function
16170 template results in an invalid type, type deduction fails. */
16171 int i, len = TREE_VEC_LENGTH (tparms);
16172 location_t loc = input_location;
16173 bool incomplete = false;
16175 /* Adjust any explicit template arguments before entering the
16176 substitution context. */
16177 explicit_targs
16178 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
16179 complain,
16180 /*require_all_args=*/false,
16181 /*use_default_args=*/false));
16182 if (explicit_targs == error_mark_node)
16183 goto fail;
16185 /* Substitute the explicit args into the function type. This is
16186 necessary so that, for instance, explicitly declared function
16187 arguments can match null pointed constants. If we were given
16188 an incomplete set of explicit args, we must not do semantic
16189 processing during substitution as we could create partial
16190 instantiations. */
16191 for (i = 0; i < len; i++)
16193 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16194 bool parameter_pack = false;
16195 tree targ = TREE_VEC_ELT (explicit_targs, i);
16197 /* Dig out the actual parm. */
16198 if (TREE_CODE (parm) == TYPE_DECL
16199 || TREE_CODE (parm) == TEMPLATE_DECL)
16201 parm = TREE_TYPE (parm);
16202 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
16204 else if (TREE_CODE (parm) == PARM_DECL)
16206 parm = DECL_INITIAL (parm);
16207 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
16210 if (!parameter_pack && targ == NULL_TREE)
16211 /* No explicit argument for this template parameter. */
16212 incomplete = true;
16214 if (parameter_pack && pack_deducible_p (parm, fn))
16216 /* Mark the argument pack as "incomplete". We could
16217 still deduce more arguments during unification.
16218 We remove this mark in type_unification_real. */
16219 if (targ)
16221 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
16222 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
16223 = ARGUMENT_PACK_ARGS (targ);
16226 /* We have some incomplete argument packs. */
16227 incomplete = true;
16231 TREE_VALUE (tinst) = explicit_targs;
16232 if (!push_tinst_level (tinst))
16234 excessive_deduction_depth = true;
16235 goto fail;
16237 processing_template_decl += incomplete;
16238 input_location = DECL_SOURCE_LOCATION (fn);
16239 /* Ignore any access checks; we'll see them again in
16240 instantiate_template and they might have the wrong
16241 access path at this point. */
16242 push_deferring_access_checks (dk_deferred);
16243 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
16244 complain | tf_partial, NULL_TREE);
16245 pop_deferring_access_checks ();
16246 input_location = loc;
16247 processing_template_decl -= incomplete;
16248 pop_tinst_level ();
16250 if (fntype == error_mark_node)
16251 goto fail;
16253 /* Place the explicitly specified arguments in TARGS. */
16254 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
16255 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
16258 /* Never do unification on the 'this' parameter. */
16259 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
16261 if (return_type)
16263 tree *new_args;
16265 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
16266 new_args = XALLOCAVEC (tree, nargs + 1);
16267 new_args[0] = return_type;
16268 memcpy (new_args + 1, args, nargs * sizeof (tree));
16269 args = new_args;
16270 ++nargs;
16273 /* We allow incomplete unification without an error message here
16274 because the standard doesn't seem to explicitly prohibit it. Our
16275 callers must be ready to deal with unification failures in any
16276 event. */
16278 TREE_VALUE (tinst) = targs;
16279 /* If we aren't explaining yet, push tinst context so we can see where
16280 any errors (e.g. from class instantiations triggered by instantiation
16281 of default template arguments) come from. If we are explaining, this
16282 context is redundant. */
16283 if (!explain_p && !push_tinst_level (tinst))
16285 excessive_deduction_depth = true;
16286 goto fail;
16289 /* type_unification_real will pass back any access checks from default
16290 template argument substitution. */
16291 vec<deferred_access_check, va_gc> *checks;
16292 checks = NULL;
16294 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16295 targs, parms, args, nargs, /*subr=*/0,
16296 strict, flags, &checks, explain_p);
16297 if (!explain_p)
16298 pop_tinst_level ();
16299 if (!ok)
16300 goto fail;
16302 /* Now that we have bindings for all of the template arguments,
16303 ensure that the arguments deduced for the template template
16304 parameters have compatible template parameter lists. We cannot
16305 check this property before we have deduced all template
16306 arguments, because the template parameter types of a template
16307 template parameter might depend on prior template parameters
16308 deduced after the template template parameter. The following
16309 ill-formed example illustrates this issue:
16311 template<typename T, template<T> class C> void f(C<5>, T);
16313 template<int N> struct X {};
16315 void g() {
16316 f(X<5>(), 5l); // error: template argument deduction fails
16319 The template parameter list of 'C' depends on the template type
16320 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
16321 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
16322 time that we deduce 'C'. */
16323 if (!template_template_parm_bindings_ok_p
16324 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
16326 unify_inconsistent_template_template_parameters (explain_p);
16327 goto fail;
16330 /* All is well so far. Now, check:
16332 [temp.deduct]
16334 When all template arguments have been deduced, all uses of
16335 template parameters in nondeduced contexts are replaced with
16336 the corresponding deduced argument values. If the
16337 substitution results in an invalid type, as described above,
16338 type deduction fails. */
16339 TREE_VALUE (tinst) = targs;
16340 if (!push_tinst_level (tinst))
16342 excessive_deduction_depth = true;
16343 goto fail;
16346 /* Also collect access checks from the instantiation. */
16347 reopen_deferring_access_checks (checks);
16349 decl = instantiate_template (fn, targs, complain);
16351 checks = get_deferred_access_checks ();
16352 pop_deferring_access_checks ();
16354 pop_tinst_level ();
16356 if (decl == error_mark_node)
16357 goto fail;
16359 /* Now perform any access checks encountered during substitution. */
16360 push_access_scope (decl);
16361 ok = perform_access_checks (checks, complain);
16362 pop_access_scope (decl);
16363 if (!ok)
16364 goto fail;
16366 /* If we're looking for an exact match, check that what we got
16367 is indeed an exact match. It might not be if some template
16368 parameters are used in non-deduced contexts. But don't check
16369 for an exact match if we have dependent template arguments;
16370 in that case we're doing partial ordering, and we already know
16371 that we have two candidates that will provide the actual type. */
16372 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
16374 tree substed = TREE_TYPE (decl);
16375 unsigned int i;
16377 tree sarg
16378 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
16379 if (return_type)
16380 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
16381 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
16382 if (!same_type_p (args[i], TREE_VALUE (sarg)))
16384 unify_type_mismatch (explain_p, args[i],
16385 TREE_VALUE (sarg));
16386 goto fail;
16390 r = decl;
16392 fail:
16393 --deduction_depth;
16394 if (excessive_deduction_depth)
16396 if (deduction_depth == 0)
16397 /* Reset once we're all the way out. */
16398 excessive_deduction_depth = false;
16401 /* We can't free this if a pending_template entry or last_error_tinst_level
16402 is pointing at it. */
16403 if (last_pending_template == old_last_pend
16404 && last_error_tinst_level == old_error_tinst)
16405 ggc_free (tinst);
16407 return r;
16410 /* Adjust types before performing type deduction, as described in
16411 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
16412 sections are symmetric. PARM is the type of a function parameter
16413 or the return type of the conversion function. ARG is the type of
16414 the argument passed to the call, or the type of the value
16415 initialized with the result of the conversion function.
16416 ARG_EXPR is the original argument expression, which may be null. */
16418 static int
16419 maybe_adjust_types_for_deduction (unification_kind_t strict,
16420 tree* parm,
16421 tree* arg,
16422 tree arg_expr)
16424 int result = 0;
16426 switch (strict)
16428 case DEDUCE_CALL:
16429 break;
16431 case DEDUCE_CONV:
16433 /* Swap PARM and ARG throughout the remainder of this
16434 function; the handling is precisely symmetric since PARM
16435 will initialize ARG rather than vice versa. */
16436 tree* temp = parm;
16437 parm = arg;
16438 arg = temp;
16439 break;
16442 case DEDUCE_EXACT:
16443 /* Core issue #873: Do the DR606 thing (see below) for these cases,
16444 too, but here handle it by stripping the reference from PARM
16445 rather than by adding it to ARG. */
16446 if (TREE_CODE (*parm) == REFERENCE_TYPE
16447 && TYPE_REF_IS_RVALUE (*parm)
16448 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16449 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16450 && TREE_CODE (*arg) == REFERENCE_TYPE
16451 && !TYPE_REF_IS_RVALUE (*arg))
16452 *parm = TREE_TYPE (*parm);
16453 /* Nothing else to do in this case. */
16454 return 0;
16456 default:
16457 gcc_unreachable ();
16460 if (TREE_CODE (*parm) != REFERENCE_TYPE)
16462 /* [temp.deduct.call]
16464 If P is not a reference type:
16466 --If A is an array type, the pointer type produced by the
16467 array-to-pointer standard conversion (_conv.array_) is
16468 used in place of A for type deduction; otherwise,
16470 --If A is a function type, the pointer type produced by
16471 the function-to-pointer standard conversion
16472 (_conv.func_) is used in place of A for type deduction;
16473 otherwise,
16475 --If A is a cv-qualified type, the top level
16476 cv-qualifiers of A's type are ignored for type
16477 deduction. */
16478 if (TREE_CODE (*arg) == ARRAY_TYPE)
16479 *arg = build_pointer_type (TREE_TYPE (*arg));
16480 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
16481 *arg = build_pointer_type (*arg);
16482 else
16483 *arg = TYPE_MAIN_VARIANT (*arg);
16486 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
16487 of the form T&&, where T is a template parameter, and the argument
16488 is an lvalue, T is deduced as A& */
16489 if (TREE_CODE (*parm) == REFERENCE_TYPE
16490 && TYPE_REF_IS_RVALUE (*parm)
16491 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16492 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16493 && (arg_expr ? real_lvalue_p (arg_expr)
16494 /* try_one_overload doesn't provide an arg_expr, but
16495 functions are always lvalues. */
16496 : TREE_CODE (*arg) == FUNCTION_TYPE))
16497 *arg = build_reference_type (*arg);
16499 /* [temp.deduct.call]
16501 If P is a cv-qualified type, the top level cv-qualifiers
16502 of P's type are ignored for type deduction. If P is a
16503 reference type, the type referred to by P is used for
16504 type deduction. */
16505 *parm = TYPE_MAIN_VARIANT (*parm);
16506 if (TREE_CODE (*parm) == REFERENCE_TYPE)
16508 *parm = TREE_TYPE (*parm);
16509 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16512 /* DR 322. For conversion deduction, remove a reference type on parm
16513 too (which has been swapped into ARG). */
16514 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
16515 *arg = TREE_TYPE (*arg);
16517 return result;
16520 /* Subroutine of unify_one_argument. PARM is a function parameter of a
16521 template which does contain any deducible template parameters; check if
16522 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
16523 unify_one_argument. */
16525 static int
16526 check_non_deducible_conversion (tree parm, tree arg, int strict,
16527 int flags, bool explain_p)
16529 tree type;
16531 if (!TYPE_P (arg))
16532 type = TREE_TYPE (arg);
16533 else
16534 type = arg;
16536 if (same_type_p (parm, type))
16537 return unify_success (explain_p);
16539 if (strict == DEDUCE_CONV)
16541 if (can_convert_arg (type, parm, NULL_TREE, flags,
16542 explain_p ? tf_warning_or_error : tf_none))
16543 return unify_success (explain_p);
16545 else if (strict != DEDUCE_EXACT)
16547 if (can_convert_arg (parm, type,
16548 TYPE_P (arg) ? NULL_TREE : arg,
16549 flags, explain_p ? tf_warning_or_error : tf_none))
16550 return unify_success (explain_p);
16553 if (strict == DEDUCE_EXACT)
16554 return unify_type_mismatch (explain_p, parm, arg);
16555 else
16556 return unify_arg_conversion (explain_p, parm, type, arg);
16559 static bool uses_deducible_template_parms (tree type);
16561 /* Returns true iff the expression EXPR is one from which a template
16562 argument can be deduced. In other words, if it's an undecorated
16563 use of a template non-type parameter. */
16565 static bool
16566 deducible_expression (tree expr)
16568 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
16571 /* Returns true iff the array domain DOMAIN uses a template parameter in a
16572 deducible way; that is, if it has a max value of <PARM> - 1. */
16574 static bool
16575 deducible_array_bound (tree domain)
16577 if (domain == NULL_TREE)
16578 return false;
16580 tree max = TYPE_MAX_VALUE (domain);
16581 if (TREE_CODE (max) != MINUS_EXPR)
16582 return false;
16584 return deducible_expression (TREE_OPERAND (max, 0));
16587 /* Returns true iff the template arguments ARGS use a template parameter
16588 in a deducible way. */
16590 static bool
16591 deducible_template_args (tree args)
16593 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
16595 bool deducible;
16596 tree elt = TREE_VEC_ELT (args, i);
16597 if (ARGUMENT_PACK_P (elt))
16598 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
16599 else
16601 if (PACK_EXPANSION_P (elt))
16602 elt = PACK_EXPANSION_PATTERN (elt);
16603 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
16604 deducible = true;
16605 else if (TYPE_P (elt))
16606 deducible = uses_deducible_template_parms (elt);
16607 else
16608 deducible = deducible_expression (elt);
16610 if (deducible)
16611 return true;
16613 return false;
16616 /* Returns true iff TYPE contains any deducible references to template
16617 parameters, as per 14.8.2.5. */
16619 static bool
16620 uses_deducible_template_parms (tree type)
16622 if (PACK_EXPANSION_P (type))
16623 type = PACK_EXPANSION_PATTERN (type);
16625 /* T
16626 cv-list T
16627 TT<T>
16628 TT<i>
16629 TT<> */
16630 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
16631 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
16632 return true;
16634 /* T*
16636 T&& */
16637 if (POINTER_TYPE_P (type))
16638 return uses_deducible_template_parms (TREE_TYPE (type));
16640 /* T[integer-constant ]
16641 type [i] */
16642 if (TREE_CODE (type) == ARRAY_TYPE)
16643 return (uses_deducible_template_parms (TREE_TYPE (type))
16644 || deducible_array_bound (TYPE_DOMAIN (type)));
16646 /* T type ::*
16647 type T::*
16648 T T::*
16649 T (type ::*)()
16650 type (T::*)()
16651 type (type ::*)(T)
16652 type (T::*)(T)
16653 T (type ::*)(T)
16654 T (T::*)()
16655 T (T::*)(T) */
16656 if (TYPE_PTRMEM_P (type))
16657 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
16658 || (uses_deducible_template_parms
16659 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
16661 /* template-name <T> (where template-name refers to a class template)
16662 template-name <i> (where template-name refers to a class template) */
16663 if (CLASS_TYPE_P (type)
16664 && CLASSTYPE_TEMPLATE_INFO (type)
16665 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
16666 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
16667 (CLASSTYPE_TI_ARGS (type)));
16669 /* type (T)
16671 T(T) */
16672 if (TREE_CODE (type) == FUNCTION_TYPE
16673 || TREE_CODE (type) == METHOD_TYPE)
16675 if (uses_deducible_template_parms (TREE_TYPE (type)))
16676 return true;
16677 tree parm = TYPE_ARG_TYPES (type);
16678 if (TREE_CODE (type) == METHOD_TYPE)
16679 parm = TREE_CHAIN (parm);
16680 for (; parm; parm = TREE_CHAIN (parm))
16681 if (uses_deducible_template_parms (TREE_VALUE (parm)))
16682 return true;
16685 return false;
16688 /* Subroutine of type_unification_real and unify_pack_expansion to
16689 handle unification of a single P/A pair. Parameters are as
16690 for those functions. */
16692 static int
16693 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
16694 int subr, unification_kind_t strict, int flags,
16695 bool explain_p)
16697 tree arg_expr = NULL_TREE;
16698 int arg_strict;
16700 if (arg == error_mark_node || parm == error_mark_node)
16701 return unify_invalid (explain_p);
16702 if (arg == unknown_type_node)
16703 /* We can't deduce anything from this, but we might get all the
16704 template args from other function args. */
16705 return unify_success (explain_p);
16707 /* Implicit conversions (Clause 4) will be performed on a function
16708 argument to convert it to the type of the corresponding function
16709 parameter if the parameter type contains no template-parameters that
16710 participate in template argument deduction. */
16711 if (TYPE_P (parm) && !uses_template_parms (parm))
16712 /* For function parameters that contain no template-parameters at all,
16713 we have historically checked for convertibility in order to shortcut
16714 consideration of this candidate. */
16715 return check_non_deducible_conversion (parm, arg, strict, flags,
16716 explain_p);
16717 else if (strict == DEDUCE_CALL
16718 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
16719 /* For function parameters with only non-deducible template parameters,
16720 just return. */
16721 return unify_success (explain_p);
16723 switch (strict)
16725 case DEDUCE_CALL:
16726 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
16727 | UNIFY_ALLOW_MORE_CV_QUAL
16728 | UNIFY_ALLOW_DERIVED);
16729 break;
16731 case DEDUCE_CONV:
16732 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
16733 break;
16735 case DEDUCE_EXACT:
16736 arg_strict = UNIFY_ALLOW_NONE;
16737 break;
16739 default:
16740 gcc_unreachable ();
16743 /* We only do these transformations if this is the top-level
16744 parameter_type_list in a call or declaration matching; in other
16745 situations (nested function declarators, template argument lists) we
16746 won't be comparing a type to an expression, and we don't do any type
16747 adjustments. */
16748 if (!subr)
16750 if (!TYPE_P (arg))
16752 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
16753 if (type_unknown_p (arg))
16755 /* [temp.deduct.type] A template-argument can be
16756 deduced from a pointer to function or pointer
16757 to member function argument if the set of
16758 overloaded functions does not contain function
16759 templates and at most one of a set of
16760 overloaded functions provides a unique
16761 match. */
16763 if (resolve_overloaded_unification
16764 (tparms, targs, parm, arg, strict,
16765 arg_strict, explain_p))
16766 return unify_success (explain_p);
16767 return unify_overload_resolution_failure (explain_p, arg);
16770 arg_expr = arg;
16771 arg = unlowered_expr_type (arg);
16772 if (arg == error_mark_node)
16773 return unify_invalid (explain_p);
16776 arg_strict |=
16777 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
16779 else
16780 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
16781 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
16782 return unify_template_argument_mismatch (explain_p, parm, arg);
16784 /* For deduction from an init-list we need the actual list. */
16785 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
16786 arg = arg_expr;
16787 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
16790 /* Most parms like fn_type_unification.
16792 If SUBR is 1, we're being called recursively (to unify the
16793 arguments of a function or method parameter of a function
16794 template).
16796 CHECKS is a pointer to a vector of access checks encountered while
16797 substituting default template arguments. */
16799 static int
16800 type_unification_real (tree tparms,
16801 tree targs,
16802 tree xparms,
16803 const tree *xargs,
16804 unsigned int xnargs,
16805 int subr,
16806 unification_kind_t strict,
16807 int flags,
16808 vec<deferred_access_check, va_gc> **checks,
16809 bool explain_p)
16811 tree parm, arg;
16812 int i;
16813 int ntparms = TREE_VEC_LENGTH (tparms);
16814 int saw_undeduced = 0;
16815 tree parms;
16816 const tree *args;
16817 unsigned int nargs;
16818 unsigned int ia;
16820 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
16821 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
16822 gcc_assert (ntparms > 0);
16824 /* Reset the number of non-defaulted template arguments contained
16825 in TARGS. */
16826 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
16828 again:
16829 parms = xparms;
16830 args = xargs;
16831 nargs = xnargs;
16833 ia = 0;
16834 while (parms && parms != void_list_node
16835 && ia < nargs)
16837 parm = TREE_VALUE (parms);
16839 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
16840 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
16841 /* For a function parameter pack that occurs at the end of the
16842 parameter-declaration-list, the type A of each remaining
16843 argument of the call is compared with the type P of the
16844 declarator-id of the function parameter pack. */
16845 break;
16847 parms = TREE_CHAIN (parms);
16849 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
16850 /* For a function parameter pack that does not occur at the
16851 end of the parameter-declaration-list, the type of the
16852 parameter pack is a non-deduced context. */
16853 continue;
16855 arg = args[ia];
16856 ++ia;
16858 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16859 flags, explain_p))
16860 return 1;
16863 if (parms
16864 && parms != void_list_node
16865 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
16867 /* Unify the remaining arguments with the pack expansion type. */
16868 tree argvec;
16869 tree parmvec = make_tree_vec (1);
16871 /* Allocate a TREE_VEC and copy in all of the arguments */
16872 argvec = make_tree_vec (nargs - ia);
16873 for (i = 0; ia < nargs; ++ia, ++i)
16874 TREE_VEC_ELT (argvec, i) = args[ia];
16876 /* Copy the parameter into parmvec. */
16877 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
16878 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
16879 /*subr=*/subr, explain_p))
16880 return 1;
16882 /* Advance to the end of the list of parameters. */
16883 parms = TREE_CHAIN (parms);
16886 /* Fail if we've reached the end of the parm list, and more args
16887 are present, and the parm list isn't variadic. */
16888 if (ia < nargs && parms == void_list_node)
16889 return unify_too_many_arguments (explain_p, nargs, ia);
16890 /* Fail if parms are left and they don't have default values and
16891 they aren't all deduced as empty packs (c++/57397). This is
16892 consistent with sufficient_parms_p. */
16893 if (parms && parms != void_list_node
16894 && TREE_PURPOSE (parms) == NULL_TREE)
16896 unsigned int count = nargs;
16897 tree p = parms;
16898 bool type_pack_p;
16901 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
16902 if (!type_pack_p)
16903 count++;
16904 p = TREE_CHAIN (p);
16906 while (p && p != void_list_node);
16907 if (count != nargs)
16908 return unify_too_few_arguments (explain_p, ia, count,
16909 type_pack_p);
16912 if (!subr)
16914 tsubst_flags_t complain = (explain_p
16915 ? tf_warning_or_error
16916 : tf_none);
16918 for (i = 0; i < ntparms; i++)
16920 tree targ = TREE_VEC_ELT (targs, i);
16921 tree tparm = TREE_VEC_ELT (tparms, i);
16923 /* Clear the "incomplete" flags on all argument packs now so that
16924 substituting them into later default arguments works. */
16925 if (targ && ARGUMENT_PACK_P (targ))
16927 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
16928 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
16931 if (targ || tparm == error_mark_node)
16932 continue;
16933 tparm = TREE_VALUE (tparm);
16935 /* If this is an undeduced nontype parameter that depends on
16936 a type parameter, try another pass; its type may have been
16937 deduced from a later argument than the one from which
16938 this parameter can be deduced. */
16939 if (TREE_CODE (tparm) == PARM_DECL
16940 && uses_template_parms (TREE_TYPE (tparm))
16941 && !saw_undeduced++)
16942 goto again;
16944 /* Core issue #226 (C++0x) [temp.deduct]:
16946 If a template argument has not been deduced, its
16947 default template argument, if any, is used.
16949 When we are in C++98 mode, TREE_PURPOSE will either
16950 be NULL_TREE or ERROR_MARK_NODE, so we do not need
16951 to explicitly check cxx_dialect here. */
16952 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
16954 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16955 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
16956 reopen_deferring_access_checks (*checks);
16957 location_t save_loc = input_location;
16958 if (DECL_P (parm))
16959 input_location = DECL_SOURCE_LOCATION (parm);
16960 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
16961 arg = convert_template_argument (parm, arg, targs, complain,
16962 i, NULL_TREE);
16963 input_location = save_loc;
16964 *checks = get_deferred_access_checks ();
16965 pop_deferring_access_checks ();
16966 if (arg == error_mark_node)
16967 return 1;
16968 else
16970 TREE_VEC_ELT (targs, i) = arg;
16971 /* The position of the first default template argument,
16972 is also the number of non-defaulted arguments in TARGS.
16973 Record that. */
16974 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16975 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
16976 continue;
16980 /* If the type parameter is a parameter pack, then it will
16981 be deduced to an empty parameter pack. */
16982 if (template_parameter_pack_p (tparm))
16984 tree arg;
16986 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
16988 arg = make_node (NONTYPE_ARGUMENT_PACK);
16989 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
16990 TREE_CONSTANT (arg) = 1;
16992 else
16993 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
16995 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
16997 TREE_VEC_ELT (targs, i) = arg;
16998 continue;
17001 return unify_parameter_deduction_failure (explain_p, tparm);
17004 #ifdef ENABLE_CHECKING
17005 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
17006 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
17007 #endif
17009 return unify_success (explain_p);
17012 /* Subroutine of type_unification_real. Args are like the variables
17013 at the call site. ARG is an overloaded function (or template-id);
17014 we try deducing template args from each of the overloads, and if
17015 only one succeeds, we go with that. Modifies TARGS and returns
17016 true on success. */
17018 static bool
17019 resolve_overloaded_unification (tree tparms,
17020 tree targs,
17021 tree parm,
17022 tree arg,
17023 unification_kind_t strict,
17024 int sub_strict,
17025 bool explain_p)
17027 tree tempargs = copy_node (targs);
17028 int good = 0;
17029 tree goodfn = NULL_TREE;
17030 bool addr_p;
17032 if (TREE_CODE (arg) == ADDR_EXPR)
17034 arg = TREE_OPERAND (arg, 0);
17035 addr_p = true;
17037 else
17038 addr_p = false;
17040 if (TREE_CODE (arg) == COMPONENT_REF)
17041 /* Handle `&x' where `x' is some static or non-static member
17042 function name. */
17043 arg = TREE_OPERAND (arg, 1);
17045 if (TREE_CODE (arg) == OFFSET_REF)
17046 arg = TREE_OPERAND (arg, 1);
17048 /* Strip baselink information. */
17049 if (BASELINK_P (arg))
17050 arg = BASELINK_FUNCTIONS (arg);
17052 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
17054 /* If we got some explicit template args, we need to plug them into
17055 the affected templates before we try to unify, in case the
17056 explicit args will completely resolve the templates in question. */
17058 int ok = 0;
17059 tree expl_subargs = TREE_OPERAND (arg, 1);
17060 arg = TREE_OPERAND (arg, 0);
17062 for (; arg; arg = OVL_NEXT (arg))
17064 tree fn = OVL_CURRENT (arg);
17065 tree subargs, elem;
17067 if (TREE_CODE (fn) != TEMPLATE_DECL)
17068 continue;
17070 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17071 expl_subargs, NULL_TREE, tf_none,
17072 /*require_all_args=*/true,
17073 /*use_default_args=*/true);
17074 if (subargs != error_mark_node
17075 && !any_dependent_template_arguments_p (subargs))
17077 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
17078 if (try_one_overload (tparms, targs, tempargs, parm,
17079 elem, strict, sub_strict, addr_p, explain_p)
17080 && (!goodfn || !same_type_p (goodfn, elem)))
17082 goodfn = elem;
17083 ++good;
17086 else if (subargs)
17087 ++ok;
17089 /* If no templates (or more than one) are fully resolved by the
17090 explicit arguments, this template-id is a non-deduced context; it
17091 could still be OK if we deduce all template arguments for the
17092 enclosing call through other arguments. */
17093 if (good != 1)
17094 good = ok;
17096 else if (TREE_CODE (arg) != OVERLOAD
17097 && TREE_CODE (arg) != FUNCTION_DECL)
17098 /* If ARG is, for example, "(0, &f)" then its type will be unknown
17099 -- but the deduction does not succeed because the expression is
17100 not just the function on its own. */
17101 return false;
17102 else
17103 for (; arg; arg = OVL_NEXT (arg))
17104 if (try_one_overload (tparms, targs, tempargs, parm,
17105 TREE_TYPE (OVL_CURRENT (arg)),
17106 strict, sub_strict, addr_p, explain_p)
17107 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
17109 goodfn = OVL_CURRENT (arg);
17110 ++good;
17113 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17114 to function or pointer to member function argument if the set of
17115 overloaded functions does not contain function templates and at most
17116 one of a set of overloaded functions provides a unique match.
17118 So if we found multiple possibilities, we return success but don't
17119 deduce anything. */
17121 if (good == 1)
17123 int i = TREE_VEC_LENGTH (targs);
17124 for (; i--; )
17125 if (TREE_VEC_ELT (tempargs, i))
17127 tree old = TREE_VEC_ELT (targs, i);
17128 tree new_ = TREE_VEC_ELT (tempargs, i);
17129 if (new_ && old && ARGUMENT_PACK_P (old)
17130 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
17131 /* Don't forget explicit template arguments in a pack. */
17132 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
17133 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
17134 TREE_VEC_ELT (targs, i) = new_;
17137 if (good)
17138 return true;
17140 return false;
17143 /* Core DR 115: In contexts where deduction is done and fails, or in
17144 contexts where deduction is not done, if a template argument list is
17145 specified and it, along with any default template arguments, identifies
17146 a single function template specialization, then the template-id is an
17147 lvalue for the function template specialization. */
17149 tree
17150 resolve_nondeduced_context (tree orig_expr)
17152 tree expr, offset, baselink;
17153 bool addr;
17155 if (!type_unknown_p (orig_expr))
17156 return orig_expr;
17158 expr = orig_expr;
17159 addr = false;
17160 offset = NULL_TREE;
17161 baselink = NULL_TREE;
17163 if (TREE_CODE (expr) == ADDR_EXPR)
17165 expr = TREE_OPERAND (expr, 0);
17166 addr = true;
17168 if (TREE_CODE (expr) == OFFSET_REF)
17170 offset = expr;
17171 expr = TREE_OPERAND (expr, 1);
17173 if (BASELINK_P (expr))
17175 baselink = expr;
17176 expr = BASELINK_FUNCTIONS (expr);
17179 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
17181 int good = 0;
17182 tree goodfn = NULL_TREE;
17184 /* If we got some explicit template args, we need to plug them into
17185 the affected templates before we try to unify, in case the
17186 explicit args will completely resolve the templates in question. */
17188 tree expl_subargs = TREE_OPERAND (expr, 1);
17189 tree arg = TREE_OPERAND (expr, 0);
17190 tree badfn = NULL_TREE;
17191 tree badargs = NULL_TREE;
17193 for (; arg; arg = OVL_NEXT (arg))
17195 tree fn = OVL_CURRENT (arg);
17196 tree subargs, elem;
17198 if (TREE_CODE (fn) != TEMPLATE_DECL)
17199 continue;
17201 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17202 expl_subargs, NULL_TREE, tf_none,
17203 /*require_all_args=*/true,
17204 /*use_default_args=*/true);
17205 if (subargs != error_mark_node
17206 && !any_dependent_template_arguments_p (subargs))
17208 elem = instantiate_template (fn, subargs, tf_none);
17209 if (elem == error_mark_node)
17211 badfn = fn;
17212 badargs = subargs;
17214 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
17216 goodfn = elem;
17217 ++good;
17221 if (good == 1)
17223 mark_used (goodfn);
17224 expr = goodfn;
17225 if (baselink)
17226 expr = build_baselink (BASELINK_BINFO (baselink),
17227 BASELINK_ACCESS_BINFO (baselink),
17228 expr, BASELINK_OPTYPE (baselink));
17229 if (offset)
17231 tree base
17232 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
17233 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
17235 if (addr)
17236 expr = cp_build_addr_expr (expr, tf_warning_or_error);
17237 return expr;
17239 else if (good == 0 && badargs)
17240 /* There were no good options and at least one bad one, so let the
17241 user know what the problem is. */
17242 instantiate_template (badfn, badargs, tf_warning_or_error);
17244 return orig_expr;
17247 /* Subroutine of resolve_overloaded_unification; does deduction for a single
17248 overload. Fills TARGS with any deduced arguments, or error_mark_node if
17249 different overloads deduce different arguments for a given parm.
17250 ADDR_P is true if the expression for which deduction is being
17251 performed was of the form "& fn" rather than simply "fn".
17253 Returns 1 on success. */
17255 static int
17256 try_one_overload (tree tparms,
17257 tree orig_targs,
17258 tree targs,
17259 tree parm,
17260 tree arg,
17261 unification_kind_t strict,
17262 int sub_strict,
17263 bool addr_p,
17264 bool explain_p)
17266 int nargs;
17267 tree tempargs;
17268 int i;
17270 if (arg == error_mark_node)
17271 return 0;
17273 /* [temp.deduct.type] A template-argument can be deduced from a pointer
17274 to function or pointer to member function argument if the set of
17275 overloaded functions does not contain function templates and at most
17276 one of a set of overloaded functions provides a unique match.
17278 So if this is a template, just return success. */
17280 if (uses_template_parms (arg))
17281 return 1;
17283 if (TREE_CODE (arg) == METHOD_TYPE)
17284 arg = build_ptrmemfunc_type (build_pointer_type (arg));
17285 else if (addr_p)
17286 arg = build_pointer_type (arg);
17288 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
17290 /* We don't copy orig_targs for this because if we have already deduced
17291 some template args from previous args, unify would complain when we
17292 try to deduce a template parameter for the same argument, even though
17293 there isn't really a conflict. */
17294 nargs = TREE_VEC_LENGTH (targs);
17295 tempargs = make_tree_vec (nargs);
17297 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
17298 return 0;
17300 /* First make sure we didn't deduce anything that conflicts with
17301 explicitly specified args. */
17302 for (i = nargs; i--; )
17304 tree elt = TREE_VEC_ELT (tempargs, i);
17305 tree oldelt = TREE_VEC_ELT (orig_targs, i);
17307 if (!elt)
17308 /*NOP*/;
17309 else if (uses_template_parms (elt))
17310 /* Since we're unifying against ourselves, we will fill in
17311 template args used in the function parm list with our own
17312 template parms. Discard them. */
17313 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
17314 else if (oldelt && !template_args_equal (oldelt, elt))
17315 return 0;
17318 for (i = nargs; i--; )
17320 tree elt = TREE_VEC_ELT (tempargs, i);
17322 if (elt)
17323 TREE_VEC_ELT (targs, i) = elt;
17326 return 1;
17329 /* PARM is a template class (perhaps with unbound template
17330 parameters). ARG is a fully instantiated type. If ARG can be
17331 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
17332 TARGS are as for unify. */
17334 static tree
17335 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
17336 bool explain_p)
17338 tree copy_of_targs;
17340 if (!CLASSTYPE_TEMPLATE_INFO (arg)
17341 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
17342 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
17343 return NULL_TREE;
17345 /* We need to make a new template argument vector for the call to
17346 unify. If we used TARGS, we'd clutter it up with the result of
17347 the attempted unification, even if this class didn't work out.
17348 We also don't want to commit ourselves to all the unifications
17349 we've already done, since unification is supposed to be done on
17350 an argument-by-argument basis. In other words, consider the
17351 following pathological case:
17353 template <int I, int J, int K>
17354 struct S {};
17356 template <int I, int J>
17357 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
17359 template <int I, int J, int K>
17360 void f(S<I, J, K>, S<I, I, I>);
17362 void g() {
17363 S<0, 0, 0> s0;
17364 S<0, 1, 2> s2;
17366 f(s0, s2);
17369 Now, by the time we consider the unification involving `s2', we
17370 already know that we must have `f<0, 0, 0>'. But, even though
17371 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
17372 because there are two ways to unify base classes of S<0, 1, 2>
17373 with S<I, I, I>. If we kept the already deduced knowledge, we
17374 would reject the possibility I=1. */
17375 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
17377 /* If unification failed, we're done. */
17378 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
17379 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
17380 return NULL_TREE;
17382 return arg;
17385 /* Given a template type PARM and a class type ARG, find the unique
17386 base type in ARG that is an instance of PARM. We do not examine
17387 ARG itself; only its base-classes. If there is not exactly one
17388 appropriate base class, return NULL_TREE. PARM may be the type of
17389 a partial specialization, as well as a plain template type. Used
17390 by unify. */
17392 static enum template_base_result
17393 get_template_base (tree tparms, tree targs, tree parm, tree arg,
17394 bool explain_p, tree *result)
17396 tree rval = NULL_TREE;
17397 tree binfo;
17399 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
17401 binfo = TYPE_BINFO (complete_type (arg));
17402 if (!binfo)
17404 /* The type could not be completed. */
17405 *result = NULL_TREE;
17406 return tbr_incomplete_type;
17409 /* Walk in inheritance graph order. The search order is not
17410 important, and this avoids multiple walks of virtual bases. */
17411 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
17413 tree r = try_class_unification (tparms, targs, parm,
17414 BINFO_TYPE (binfo), explain_p);
17416 if (r)
17418 /* If there is more than one satisfactory baseclass, then:
17420 [temp.deduct.call]
17422 If they yield more than one possible deduced A, the type
17423 deduction fails.
17425 applies. */
17426 if (rval && !same_type_p (r, rval))
17428 *result = NULL_TREE;
17429 return tbr_ambiguous_baseclass;
17432 rval = r;
17436 *result = rval;
17437 return tbr_success;
17440 /* Returns the level of DECL, which declares a template parameter. */
17442 static int
17443 template_decl_level (tree decl)
17445 switch (TREE_CODE (decl))
17447 case TYPE_DECL:
17448 case TEMPLATE_DECL:
17449 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
17451 case PARM_DECL:
17452 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
17454 default:
17455 gcc_unreachable ();
17457 return 0;
17460 /* Decide whether ARG can be unified with PARM, considering only the
17461 cv-qualifiers of each type, given STRICT as documented for unify.
17462 Returns nonzero iff the unification is OK on that basis. */
17464 static int
17465 check_cv_quals_for_unify (int strict, tree arg, tree parm)
17467 int arg_quals = cp_type_quals (arg);
17468 int parm_quals = cp_type_quals (parm);
17470 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17471 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17473 /* Although a CVR qualifier is ignored when being applied to a
17474 substituted template parameter ([8.3.2]/1 for example), that
17475 does not allow us to unify "const T" with "int&" because both
17476 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
17477 It is ok when we're allowing additional CV qualifiers
17478 at the outer level [14.8.2.1]/3,1st bullet. */
17479 if ((TREE_CODE (arg) == REFERENCE_TYPE
17480 || TREE_CODE (arg) == FUNCTION_TYPE
17481 || TREE_CODE (arg) == METHOD_TYPE)
17482 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
17483 return 0;
17485 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
17486 && (parm_quals & TYPE_QUAL_RESTRICT))
17487 return 0;
17490 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17491 && (arg_quals & parm_quals) != parm_quals)
17492 return 0;
17494 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
17495 && (parm_quals & arg_quals) != arg_quals)
17496 return 0;
17498 return 1;
17501 /* Determines the LEVEL and INDEX for the template parameter PARM. */
17502 void
17503 template_parm_level_and_index (tree parm, int* level, int* index)
17505 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17506 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17507 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17509 *index = TEMPLATE_TYPE_IDX (parm);
17510 *level = TEMPLATE_TYPE_LEVEL (parm);
17512 else
17514 *index = TEMPLATE_PARM_IDX (parm);
17515 *level = TEMPLATE_PARM_LEVEL (parm);
17519 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
17520 do { \
17521 if (unify (TP, TA, P, A, S, EP)) \
17522 return 1; \
17523 } while (0);
17525 /* Unifies the remaining arguments in PACKED_ARGS with the pack
17526 expansion at the end of PACKED_PARMS. Returns 0 if the type
17527 deduction succeeds, 1 otherwise. STRICT is the same as in
17528 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
17529 call argument list. We'll need to adjust the arguments to make them
17530 types. SUBR tells us if this is from a recursive call to
17531 type_unification_real, or for comparing two template argument
17532 lists. */
17534 static int
17535 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
17536 tree packed_args, unification_kind_t strict,
17537 bool subr, bool explain_p)
17539 tree parm
17540 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
17541 tree pattern = PACK_EXPANSION_PATTERN (parm);
17542 tree pack, packs = NULL_TREE;
17543 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
17545 packed_args = expand_template_argument_pack (packed_args);
17547 int len = TREE_VEC_LENGTH (packed_args);
17549 /* Determine the parameter packs we will be deducing from the
17550 pattern, and record their current deductions. */
17551 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
17552 pack; pack = TREE_CHAIN (pack))
17554 tree parm_pack = TREE_VALUE (pack);
17555 int idx, level;
17557 /* Determine the index and level of this parameter pack. */
17558 template_parm_level_and_index (parm_pack, &level, &idx);
17560 /* Keep track of the parameter packs and their corresponding
17561 argument packs. */
17562 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
17563 TREE_TYPE (packs) = make_tree_vec (len - start);
17566 /* Loop through all of the arguments that have not yet been
17567 unified and unify each with the pattern. */
17568 for (i = start; i < len; i++)
17570 tree parm;
17571 bool any_explicit = false;
17572 tree arg = TREE_VEC_ELT (packed_args, i);
17574 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
17575 or the element of its argument pack at the current index if
17576 this argument was explicitly specified. */
17577 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17579 int idx, level;
17580 tree arg, pargs;
17581 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17583 arg = NULL_TREE;
17584 if (TREE_VALUE (pack)
17585 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
17586 && (i - start < TREE_VEC_LENGTH (pargs)))
17588 any_explicit = true;
17589 arg = TREE_VEC_ELT (pargs, i - start);
17591 TMPL_ARG (targs, level, idx) = arg;
17594 /* If we had explicit template arguments, substitute them into the
17595 pattern before deduction. */
17596 if (any_explicit)
17598 /* Some arguments might still be unspecified or dependent. */
17599 bool dependent;
17600 ++processing_template_decl;
17601 dependent = any_dependent_template_arguments_p (targs);
17602 if (!dependent)
17603 --processing_template_decl;
17604 parm = tsubst (pattern, targs,
17605 explain_p ? tf_warning_or_error : tf_none,
17606 NULL_TREE);
17607 if (dependent)
17608 --processing_template_decl;
17609 if (parm == error_mark_node)
17610 return 1;
17612 else
17613 parm = pattern;
17615 /* Unify the pattern with the current argument. */
17616 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17617 LOOKUP_IMPLICIT, explain_p))
17618 return 1;
17620 /* For each parameter pack, collect the deduced value. */
17621 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17623 int idx, level;
17624 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17626 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
17627 TMPL_ARG (targs, level, idx);
17631 /* Verify that the results of unification with the parameter packs
17632 produce results consistent with what we've seen before, and make
17633 the deduced argument packs available. */
17634 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17636 tree old_pack = TREE_VALUE (pack);
17637 tree new_args = TREE_TYPE (pack);
17638 int i, len = TREE_VEC_LENGTH (new_args);
17639 int idx, level;
17640 bool nondeduced_p = false;
17642 /* By default keep the original deduced argument pack.
17643 If necessary, more specific code is going to update the
17644 resulting deduced argument later down in this function. */
17645 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17646 TMPL_ARG (targs, level, idx) = old_pack;
17648 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
17649 actually deduce anything. */
17650 for (i = 0; i < len && !nondeduced_p; ++i)
17651 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
17652 nondeduced_p = true;
17653 if (nondeduced_p)
17654 continue;
17656 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
17658 /* If we had fewer function args than explicit template args,
17659 just use the explicits. */
17660 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17661 int explicit_len = TREE_VEC_LENGTH (explicit_args);
17662 if (len < explicit_len)
17663 new_args = explicit_args;
17666 if (!old_pack)
17668 tree result;
17669 /* Build the deduced *_ARGUMENT_PACK. */
17670 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
17672 result = make_node (NONTYPE_ARGUMENT_PACK);
17673 TREE_TYPE (result) =
17674 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
17675 TREE_CONSTANT (result) = 1;
17677 else
17678 result = cxx_make_type (TYPE_ARGUMENT_PACK);
17680 SET_ARGUMENT_PACK_ARGS (result, new_args);
17682 /* Note the deduced argument packs for this parameter
17683 pack. */
17684 TMPL_ARG (targs, level, idx) = result;
17686 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
17687 && (ARGUMENT_PACK_ARGS (old_pack)
17688 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
17690 /* We only had the explicitly-provided arguments before, but
17691 now we have a complete set of arguments. */
17692 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17694 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
17695 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
17696 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
17698 else
17700 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
17701 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
17703 if (!comp_template_args_with_info (old_args, new_args,
17704 &bad_old_arg, &bad_new_arg))
17705 /* Inconsistent unification of this parameter pack. */
17706 return unify_parameter_pack_inconsistent (explain_p,
17707 bad_old_arg,
17708 bad_new_arg);
17712 return unify_success (explain_p);
17715 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
17716 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
17717 parameters and return value are as for unify. */
17719 static int
17720 unify_array_domain (tree tparms, tree targs,
17721 tree parm_dom, tree arg_dom,
17722 bool explain_p)
17724 tree parm_max;
17725 tree arg_max;
17726 bool parm_cst;
17727 bool arg_cst;
17729 /* Our representation of array types uses "N - 1" as the
17730 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
17731 not an integer constant. We cannot unify arbitrarily
17732 complex expressions, so we eliminate the MINUS_EXPRs
17733 here. */
17734 parm_max = TYPE_MAX_VALUE (parm_dom);
17735 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
17736 if (!parm_cst)
17738 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
17739 parm_max = TREE_OPERAND (parm_max, 0);
17741 arg_max = TYPE_MAX_VALUE (arg_dom);
17742 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
17743 if (!arg_cst)
17745 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
17746 trying to unify the type of a variable with the type
17747 of a template parameter. For example:
17749 template <unsigned int N>
17750 void f (char (&) [N]);
17751 int g();
17752 void h(int i) {
17753 char a[g(i)];
17754 f(a);
17757 Here, the type of the ARG will be "int [g(i)]", and
17758 may be a SAVE_EXPR, etc. */
17759 if (TREE_CODE (arg_max) != MINUS_EXPR)
17760 return unify_vla_arg (explain_p, arg_dom);
17761 arg_max = TREE_OPERAND (arg_max, 0);
17764 /* If only one of the bounds used a MINUS_EXPR, compensate
17765 by adding one to the other bound. */
17766 if (parm_cst && !arg_cst)
17767 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
17768 integer_type_node,
17769 parm_max,
17770 integer_one_node);
17771 else if (arg_cst && !parm_cst)
17772 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
17773 integer_type_node,
17774 arg_max,
17775 integer_one_node);
17777 return unify (tparms, targs, parm_max, arg_max,
17778 UNIFY_ALLOW_INTEGER, explain_p);
17781 /* Deduce the value of template parameters. TPARMS is the (innermost)
17782 set of template parameters to a template. TARGS is the bindings
17783 for those template parameters, as determined thus far; TARGS may
17784 include template arguments for outer levels of template parameters
17785 as well. PARM is a parameter to a template function, or a
17786 subcomponent of that parameter; ARG is the corresponding argument.
17787 This function attempts to match PARM with ARG in a manner
17788 consistent with the existing assignments in TARGS. If more values
17789 are deduced, then TARGS is updated.
17791 Returns 0 if the type deduction succeeds, 1 otherwise. The
17792 parameter STRICT is a bitwise or of the following flags:
17794 UNIFY_ALLOW_NONE:
17795 Require an exact match between PARM and ARG.
17796 UNIFY_ALLOW_MORE_CV_QUAL:
17797 Allow the deduced ARG to be more cv-qualified (by qualification
17798 conversion) than ARG.
17799 UNIFY_ALLOW_LESS_CV_QUAL:
17800 Allow the deduced ARG to be less cv-qualified than ARG.
17801 UNIFY_ALLOW_DERIVED:
17802 Allow the deduced ARG to be a template base class of ARG,
17803 or a pointer to a template base class of the type pointed to by
17804 ARG.
17805 UNIFY_ALLOW_INTEGER:
17806 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
17807 case for more information.
17808 UNIFY_ALLOW_OUTER_LEVEL:
17809 This is the outermost level of a deduction. Used to determine validity
17810 of qualification conversions. A valid qualification conversion must
17811 have const qualified pointers leading up to the inner type which
17812 requires additional CV quals, except at the outer level, where const
17813 is not required [conv.qual]. It would be normal to set this flag in
17814 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
17815 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
17816 This is the outermost level of a deduction, and PARM can be more CV
17817 qualified at this point.
17818 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
17819 This is the outermost level of a deduction, and PARM can be less CV
17820 qualified at this point. */
17822 static int
17823 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
17824 bool explain_p)
17826 int idx;
17827 tree targ;
17828 tree tparm;
17829 int strict_in = strict;
17831 /* I don't think this will do the right thing with respect to types.
17832 But the only case I've seen it in so far has been array bounds, where
17833 signedness is the only information lost, and I think that will be
17834 okay. */
17835 while (TREE_CODE (parm) == NOP_EXPR)
17836 parm = TREE_OPERAND (parm, 0);
17838 if (arg == error_mark_node)
17839 return unify_invalid (explain_p);
17840 if (arg == unknown_type_node
17841 || arg == init_list_type_node)
17842 /* We can't deduce anything from this, but we might get all the
17843 template args from other function args. */
17844 return unify_success (explain_p);
17846 /* If PARM uses template parameters, then we can't bail out here,
17847 even if ARG == PARM, since we won't record unifications for the
17848 template parameters. We might need them if we're trying to
17849 figure out which of two things is more specialized. */
17850 if (arg == parm && !uses_template_parms (parm))
17851 return unify_success (explain_p);
17853 /* Handle init lists early, so the rest of the function can assume
17854 we're dealing with a type. */
17855 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
17857 tree elt, elttype;
17858 unsigned i;
17859 tree orig_parm = parm;
17861 /* Replace T with std::initializer_list<T> for deduction. */
17862 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17863 && flag_deduce_init_list)
17864 parm = listify (parm);
17866 if (!is_std_init_list (parm)
17867 && TREE_CODE (parm) != ARRAY_TYPE)
17868 /* We can only deduce from an initializer list argument if the
17869 parameter is std::initializer_list or an array; otherwise this
17870 is a non-deduced context. */
17871 return unify_success (explain_p);
17873 if (TREE_CODE (parm) == ARRAY_TYPE)
17874 elttype = TREE_TYPE (parm);
17875 else
17877 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
17878 /* Deduction is defined in terms of a single type, so just punt
17879 on the (bizarre) std::initializer_list<T...>. */
17880 if (PACK_EXPANSION_P (elttype))
17881 return unify_success (explain_p);
17884 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
17886 int elt_strict = strict;
17888 if (elt == error_mark_node)
17889 return unify_invalid (explain_p);
17891 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
17893 tree type = TREE_TYPE (elt);
17894 if (type == error_mark_node)
17895 return unify_invalid (explain_p);
17896 /* It should only be possible to get here for a call. */
17897 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
17898 elt_strict |= maybe_adjust_types_for_deduction
17899 (DEDUCE_CALL, &elttype, &type, elt);
17900 elt = type;
17903 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
17904 explain_p);
17907 if (TREE_CODE (parm) == ARRAY_TYPE
17908 && deducible_array_bound (TYPE_DOMAIN (parm)))
17910 /* Also deduce from the length of the initializer list. */
17911 tree max = size_int (CONSTRUCTOR_NELTS (arg));
17912 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
17913 if (idx == error_mark_node)
17914 return unify_invalid (explain_p);
17915 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
17916 idx, explain_p);
17919 /* If the std::initializer_list<T> deduction worked, replace the
17920 deduced A with std::initializer_list<A>. */
17921 if (orig_parm != parm)
17923 idx = TEMPLATE_TYPE_IDX (orig_parm);
17924 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17925 targ = listify (targ);
17926 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
17928 return unify_success (explain_p);
17931 /* Immediately reject some pairs that won't unify because of
17932 cv-qualification mismatches. */
17933 if (TREE_CODE (arg) == TREE_CODE (parm)
17934 && TYPE_P (arg)
17935 /* It is the elements of the array which hold the cv quals of an array
17936 type, and the elements might be template type parms. We'll check
17937 when we recurse. */
17938 && TREE_CODE (arg) != ARRAY_TYPE
17939 /* We check the cv-qualifiers when unifying with template type
17940 parameters below. We want to allow ARG `const T' to unify with
17941 PARM `T' for example, when computing which of two templates
17942 is more specialized, for example. */
17943 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
17944 && !check_cv_quals_for_unify (strict_in, arg, parm))
17945 return unify_cv_qual_mismatch (explain_p, parm, arg);
17947 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
17948 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
17949 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
17950 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
17951 strict &= ~UNIFY_ALLOW_DERIVED;
17952 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17953 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
17955 switch (TREE_CODE (parm))
17957 case TYPENAME_TYPE:
17958 case SCOPE_REF:
17959 case UNBOUND_CLASS_TEMPLATE:
17960 /* In a type which contains a nested-name-specifier, template
17961 argument values cannot be deduced for template parameters used
17962 within the nested-name-specifier. */
17963 return unify_success (explain_p);
17965 case TEMPLATE_TYPE_PARM:
17966 case TEMPLATE_TEMPLATE_PARM:
17967 case BOUND_TEMPLATE_TEMPLATE_PARM:
17968 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
17969 if (error_operand_p (tparm))
17970 return unify_invalid (explain_p);
17972 if (TEMPLATE_TYPE_LEVEL (parm)
17973 != template_decl_level (tparm))
17974 /* The PARM is not one we're trying to unify. Just check
17975 to see if it matches ARG. */
17977 if (TREE_CODE (arg) == TREE_CODE (parm)
17978 && (is_auto (parm) ? is_auto (arg)
17979 : same_type_p (parm, arg)))
17980 return unify_success (explain_p);
17981 else
17982 return unify_type_mismatch (explain_p, parm, arg);
17984 idx = TEMPLATE_TYPE_IDX (parm);
17985 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17986 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
17987 if (error_operand_p (tparm))
17988 return unify_invalid (explain_p);
17990 /* Check for mixed types and values. */
17991 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17992 && TREE_CODE (tparm) != TYPE_DECL)
17993 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17994 && TREE_CODE (tparm) != TEMPLATE_DECL))
17995 gcc_unreachable ();
17997 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17999 /* ARG must be constructed from a template class or a template
18000 template parameter. */
18001 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
18002 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
18003 return unify_template_deduction_failure (explain_p, parm, arg);
18005 tree parmvec = TYPE_TI_ARGS (parm);
18006 /* An alias template name is never deduced. */
18007 if (TYPE_ALIAS_P (arg))
18008 arg = strip_typedefs (arg);
18009 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
18010 tree full_argvec = add_to_template_args (targs, argvec);
18011 tree parm_parms
18012 = DECL_INNERMOST_TEMPLATE_PARMS
18013 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
18014 int i, len;
18015 int parm_variadic_p = 0;
18017 /* The resolution to DR150 makes clear that default
18018 arguments for an N-argument may not be used to bind T
18019 to a template template parameter with fewer than N
18020 parameters. It is not safe to permit the binding of
18021 default arguments as an extension, as that may change
18022 the meaning of a conforming program. Consider:
18024 struct Dense { static const unsigned int dim = 1; };
18026 template <template <typename> class View,
18027 typename Block>
18028 void operator+(float, View<Block> const&);
18030 template <typename Block,
18031 unsigned int Dim = Block::dim>
18032 struct Lvalue_proxy { operator float() const; };
18034 void
18035 test_1d (void) {
18036 Lvalue_proxy<Dense> p;
18037 float b;
18038 b + p;
18041 Here, if Lvalue_proxy is permitted to bind to View, then
18042 the global operator+ will be used; if they are not, the
18043 Lvalue_proxy will be converted to float. */
18044 if (coerce_template_parms (parm_parms,
18045 full_argvec,
18046 TYPE_TI_TEMPLATE (parm),
18047 (explain_p
18048 ? tf_warning_or_error
18049 : tf_none),
18050 /*require_all_args=*/true,
18051 /*use_default_args=*/false)
18052 == error_mark_node)
18053 return 1;
18055 /* Deduce arguments T, i from TT<T> or TT<i>.
18056 We check each element of PARMVEC and ARGVEC individually
18057 rather than the whole TREE_VEC since they can have
18058 different number of elements. */
18060 parmvec = expand_template_argument_pack (parmvec);
18061 argvec = expand_template_argument_pack (argvec);
18063 len = TREE_VEC_LENGTH (parmvec);
18065 /* Check if the parameters end in a pack, making them
18066 variadic. */
18067 if (len > 0
18068 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
18069 parm_variadic_p = 1;
18071 for (i = 0; i < len - parm_variadic_p; ++i)
18072 /* If the template argument list of P contains a pack
18073 expansion that is not the last template argument, the
18074 entire template argument list is a non-deduced
18075 context. */
18076 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
18077 return unify_success (explain_p);
18079 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
18080 return unify_too_few_arguments (explain_p,
18081 TREE_VEC_LENGTH (argvec), len);
18083 for (i = 0; i < len - parm_variadic_p; ++i)
18085 RECUR_AND_CHECK_FAILURE (tparms, targs,
18086 TREE_VEC_ELT (parmvec, i),
18087 TREE_VEC_ELT (argvec, i),
18088 UNIFY_ALLOW_NONE, explain_p);
18091 if (parm_variadic_p
18092 && unify_pack_expansion (tparms, targs,
18093 parmvec, argvec,
18094 DEDUCE_EXACT,
18095 /*subr=*/true, explain_p))
18096 return 1;
18098 arg = TYPE_TI_TEMPLATE (arg);
18100 /* Fall through to deduce template name. */
18103 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18104 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18106 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
18108 /* Simple cases: Value already set, does match or doesn't. */
18109 if (targ != NULL_TREE && template_args_equal (targ, arg))
18110 return unify_success (explain_p);
18111 else if (targ)
18112 return unify_inconsistency (explain_p, parm, targ, arg);
18114 else
18116 /* If PARM is `const T' and ARG is only `int', we don't have
18117 a match unless we are allowing additional qualification.
18118 If ARG is `const int' and PARM is just `T' that's OK;
18119 that binds `const int' to `T'. */
18120 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
18121 arg, parm))
18122 return unify_cv_qual_mismatch (explain_p, parm, arg);
18124 /* Consider the case where ARG is `const volatile int' and
18125 PARM is `const T'. Then, T should be `volatile int'. */
18126 arg = cp_build_qualified_type_real
18127 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
18128 if (arg == error_mark_node)
18129 return unify_invalid (explain_p);
18131 /* Simple cases: Value already set, does match or doesn't. */
18132 if (targ != NULL_TREE && same_type_p (targ, arg))
18133 return unify_success (explain_p);
18134 else if (targ)
18135 return unify_inconsistency (explain_p, parm, targ, arg);
18137 /* Make sure that ARG is not a variable-sized array. (Note
18138 that were talking about variable-sized arrays (like
18139 `int[n]'), rather than arrays of unknown size (like
18140 `int[]').) We'll get very confused by such a type since
18141 the bound of the array is not constant, and therefore
18142 not mangleable. Besides, such types are not allowed in
18143 ISO C++, so we can do as we please here. We do allow
18144 them for 'auto' deduction, since that isn't ABI-exposed. */
18145 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
18146 return unify_vla_arg (explain_p, arg);
18148 /* Strip typedefs as in convert_template_argument. */
18149 arg = canonicalize_type_argument (arg, tf_none);
18152 /* If ARG is a parameter pack or an expansion, we cannot unify
18153 against it unless PARM is also a parameter pack. */
18154 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18155 && !template_parameter_pack_p (parm))
18156 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18158 /* If the argument deduction results is a METHOD_TYPE,
18159 then there is a problem.
18160 METHOD_TYPE doesn't map to any real C++ type the result of
18161 the deduction can not be of that type. */
18162 if (TREE_CODE (arg) == METHOD_TYPE)
18163 return unify_method_type_error (explain_p, arg);
18165 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18166 return unify_success (explain_p);
18168 case TEMPLATE_PARM_INDEX:
18169 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18170 if (error_operand_p (tparm))
18171 return unify_invalid (explain_p);
18173 if (TEMPLATE_PARM_LEVEL (parm)
18174 != template_decl_level (tparm))
18176 /* The PARM is not one we're trying to unify. Just check
18177 to see if it matches ARG. */
18178 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
18179 && cp_tree_equal (parm, arg));
18180 if (result)
18181 unify_expression_unequal (explain_p, parm, arg);
18182 return result;
18185 idx = TEMPLATE_PARM_IDX (parm);
18186 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18188 if (targ)
18190 int x = !cp_tree_equal (targ, arg);
18191 if (x)
18192 unify_inconsistency (explain_p, parm, targ, arg);
18193 return x;
18196 /* [temp.deduct.type] If, in the declaration of a function template
18197 with a non-type template-parameter, the non-type
18198 template-parameter is used in an expression in the function
18199 parameter-list and, if the corresponding template-argument is
18200 deduced, the template-argument type shall match the type of the
18201 template-parameter exactly, except that a template-argument
18202 deduced from an array bound may be of any integral type.
18203 The non-type parameter might use already deduced type parameters. */
18204 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
18205 if (!TREE_TYPE (arg))
18206 /* Template-parameter dependent expression. Just accept it for now.
18207 It will later be processed in convert_template_argument. */
18209 else if (same_type_p (TREE_TYPE (arg), tparm))
18210 /* OK */;
18211 else if ((strict & UNIFY_ALLOW_INTEGER)
18212 && CP_INTEGRAL_TYPE_P (tparm))
18213 /* Convert the ARG to the type of PARM; the deduced non-type
18214 template argument must exactly match the types of the
18215 corresponding parameter. */
18216 arg = fold (build_nop (tparm, arg));
18217 else if (uses_template_parms (tparm))
18218 /* We haven't deduced the type of this parameter yet. Try again
18219 later. */
18220 return unify_success (explain_p);
18221 else
18222 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
18224 /* If ARG is a parameter pack or an expansion, we cannot unify
18225 against it unless PARM is also a parameter pack. */
18226 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
18227 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
18228 return unify_parameter_pack_mismatch (explain_p, parm, arg);
18230 arg = strip_typedefs_expr (arg);
18231 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
18232 return unify_success (explain_p);
18234 case PTRMEM_CST:
18236 /* A pointer-to-member constant can be unified only with
18237 another constant. */
18238 if (TREE_CODE (arg) != PTRMEM_CST)
18239 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
18241 /* Just unify the class member. It would be useless (and possibly
18242 wrong, depending on the strict flags) to unify also
18243 PTRMEM_CST_CLASS, because we want to be sure that both parm and
18244 arg refer to the same variable, even if through different
18245 classes. For instance:
18247 struct A { int x; };
18248 struct B : A { };
18250 Unification of &A::x and &B::x must succeed. */
18251 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
18252 PTRMEM_CST_MEMBER (arg), strict, explain_p);
18255 case POINTER_TYPE:
18257 if (!TYPE_PTR_P (arg))
18258 return unify_type_mismatch (explain_p, parm, arg);
18260 /* [temp.deduct.call]
18262 A can be another pointer or pointer to member type that can
18263 be converted to the deduced A via a qualification
18264 conversion (_conv.qual_).
18266 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
18267 This will allow for additional cv-qualification of the
18268 pointed-to types if appropriate. */
18270 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
18271 /* The derived-to-base conversion only persists through one
18272 level of pointers. */
18273 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
18275 return unify (tparms, targs, TREE_TYPE (parm),
18276 TREE_TYPE (arg), strict, explain_p);
18279 case REFERENCE_TYPE:
18280 if (TREE_CODE (arg) != REFERENCE_TYPE)
18281 return unify_type_mismatch (explain_p, parm, arg);
18282 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18283 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18285 case ARRAY_TYPE:
18286 if (TREE_CODE (arg) != ARRAY_TYPE)
18287 return unify_type_mismatch (explain_p, parm, arg);
18288 if ((TYPE_DOMAIN (parm) == NULL_TREE)
18289 != (TYPE_DOMAIN (arg) == NULL_TREE))
18290 return unify_type_mismatch (explain_p, parm, arg);
18291 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18292 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
18293 if (TYPE_DOMAIN (parm) != NULL_TREE)
18294 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
18295 TYPE_DOMAIN (arg), explain_p);
18296 return unify_success (explain_p);
18298 case REAL_TYPE:
18299 case COMPLEX_TYPE:
18300 case VECTOR_TYPE:
18301 case INTEGER_TYPE:
18302 case BOOLEAN_TYPE:
18303 case ENUMERAL_TYPE:
18304 case VOID_TYPE:
18305 case NULLPTR_TYPE:
18306 if (TREE_CODE (arg) != TREE_CODE (parm))
18307 return unify_type_mismatch (explain_p, parm, arg);
18309 /* We have already checked cv-qualification at the top of the
18310 function. */
18311 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
18312 return unify_type_mismatch (explain_p, parm, arg);
18314 /* As far as unification is concerned, this wins. Later checks
18315 will invalidate it if necessary. */
18316 return unify_success (explain_p);
18318 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
18319 /* Type INTEGER_CST can come from ordinary constant template args. */
18320 case INTEGER_CST:
18321 while (TREE_CODE (arg) == NOP_EXPR)
18322 arg = TREE_OPERAND (arg, 0);
18324 if (TREE_CODE (arg) != INTEGER_CST)
18325 return unify_template_argument_mismatch (explain_p, parm, arg);
18326 return (tree_int_cst_equal (parm, arg)
18327 ? unify_success (explain_p)
18328 : unify_template_argument_mismatch (explain_p, parm, arg));
18330 case TREE_VEC:
18332 int i, len, argslen;
18333 int parm_variadic_p = 0;
18335 if (TREE_CODE (arg) != TREE_VEC)
18336 return unify_template_argument_mismatch (explain_p, parm, arg);
18338 len = TREE_VEC_LENGTH (parm);
18339 argslen = TREE_VEC_LENGTH (arg);
18341 /* Check for pack expansions in the parameters. */
18342 for (i = 0; i < len; ++i)
18344 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
18346 if (i == len - 1)
18347 /* We can unify against something with a trailing
18348 parameter pack. */
18349 parm_variadic_p = 1;
18350 else
18351 /* [temp.deduct.type]/9: If the template argument list of
18352 P contains a pack expansion that is not the last
18353 template argument, the entire template argument list
18354 is a non-deduced context. */
18355 return unify_success (explain_p);
18359 /* If we don't have enough arguments to satisfy the parameters
18360 (not counting the pack expression at the end), or we have
18361 too many arguments for a parameter list that doesn't end in
18362 a pack expression, we can't unify. */
18363 if (parm_variadic_p
18364 ? argslen < len - parm_variadic_p
18365 : argslen != len)
18366 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
18368 /* Unify all of the parameters that precede the (optional)
18369 pack expression. */
18370 for (i = 0; i < len - parm_variadic_p; ++i)
18372 RECUR_AND_CHECK_FAILURE (tparms, targs,
18373 TREE_VEC_ELT (parm, i),
18374 TREE_VEC_ELT (arg, i),
18375 UNIFY_ALLOW_NONE, explain_p);
18377 if (parm_variadic_p)
18378 return unify_pack_expansion (tparms, targs, parm, arg,
18379 DEDUCE_EXACT,
18380 /*subr=*/true, explain_p);
18381 return unify_success (explain_p);
18384 case RECORD_TYPE:
18385 case UNION_TYPE:
18386 if (TREE_CODE (arg) != TREE_CODE (parm))
18387 return unify_type_mismatch (explain_p, parm, arg);
18389 if (TYPE_PTRMEMFUNC_P (parm))
18391 if (!TYPE_PTRMEMFUNC_P (arg))
18392 return unify_type_mismatch (explain_p, parm, arg);
18394 return unify (tparms, targs,
18395 TYPE_PTRMEMFUNC_FN_TYPE (parm),
18396 TYPE_PTRMEMFUNC_FN_TYPE (arg),
18397 strict, explain_p);
18399 else if (TYPE_PTRMEMFUNC_P (arg))
18400 return unify_type_mismatch (explain_p, parm, arg);
18402 if (CLASSTYPE_TEMPLATE_INFO (parm))
18404 tree t = NULL_TREE;
18406 if (strict_in & UNIFY_ALLOW_DERIVED)
18408 /* First, we try to unify the PARM and ARG directly. */
18409 t = try_class_unification (tparms, targs,
18410 parm, arg, explain_p);
18412 if (!t)
18414 /* Fallback to the special case allowed in
18415 [temp.deduct.call]:
18417 If P is a class, and P has the form
18418 template-id, then A can be a derived class of
18419 the deduced A. Likewise, if P is a pointer to
18420 a class of the form template-id, A can be a
18421 pointer to a derived class pointed to by the
18422 deduced A. */
18423 enum template_base_result r;
18424 r = get_template_base (tparms, targs, parm, arg,
18425 explain_p, &t);
18427 if (!t)
18428 return unify_no_common_base (explain_p, r, parm, arg);
18431 else if (CLASSTYPE_TEMPLATE_INFO (arg)
18432 && (CLASSTYPE_TI_TEMPLATE (parm)
18433 == CLASSTYPE_TI_TEMPLATE (arg)))
18434 /* Perhaps PARM is something like S<U> and ARG is S<int>.
18435 Then, we should unify `int' and `U'. */
18436 t = arg;
18437 else
18438 /* There's no chance of unification succeeding. */
18439 return unify_type_mismatch (explain_p, parm, arg);
18441 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
18442 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
18444 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
18445 return unify_type_mismatch (explain_p, parm, arg);
18446 return unify_success (explain_p);
18448 case METHOD_TYPE:
18449 case FUNCTION_TYPE:
18451 unsigned int nargs;
18452 tree *args;
18453 tree a;
18454 unsigned int i;
18456 if (TREE_CODE (arg) != TREE_CODE (parm))
18457 return unify_type_mismatch (explain_p, parm, arg);
18459 /* CV qualifications for methods can never be deduced, they must
18460 match exactly. We need to check them explicitly here,
18461 because type_unification_real treats them as any other
18462 cv-qualified parameter. */
18463 if (TREE_CODE (parm) == METHOD_TYPE
18464 && (!check_cv_quals_for_unify
18465 (UNIFY_ALLOW_NONE,
18466 class_of_this_parm (arg),
18467 class_of_this_parm (parm))))
18468 return unify_cv_qual_mismatch (explain_p, parm, arg);
18470 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
18471 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
18473 nargs = list_length (TYPE_ARG_TYPES (arg));
18474 args = XALLOCAVEC (tree, nargs);
18475 for (a = TYPE_ARG_TYPES (arg), i = 0;
18476 a != NULL_TREE && a != void_list_node;
18477 a = TREE_CHAIN (a), ++i)
18478 args[i] = TREE_VALUE (a);
18479 nargs = i;
18481 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
18482 args, nargs, 1, DEDUCE_EXACT,
18483 LOOKUP_NORMAL, NULL, explain_p);
18486 case OFFSET_TYPE:
18487 /* Unify a pointer to member with a pointer to member function, which
18488 deduces the type of the member as a function type. */
18489 if (TYPE_PTRMEMFUNC_P (arg))
18491 /* Check top-level cv qualifiers */
18492 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
18493 return unify_cv_qual_mismatch (explain_p, parm, arg);
18495 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18496 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
18497 UNIFY_ALLOW_NONE, explain_p);
18499 /* Determine the type of the function we are unifying against. */
18500 tree fntype = static_fn_type (arg);
18502 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
18505 if (TREE_CODE (arg) != OFFSET_TYPE)
18506 return unify_type_mismatch (explain_p, parm, arg);
18507 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18508 TYPE_OFFSET_BASETYPE (arg),
18509 UNIFY_ALLOW_NONE, explain_p);
18510 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18511 strict, explain_p);
18513 case CONST_DECL:
18514 if (DECL_TEMPLATE_PARM_P (parm))
18515 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
18516 if (arg != scalar_constant_value (parm))
18517 return unify_template_argument_mismatch (explain_p, parm, arg);
18518 return unify_success (explain_p);
18520 case FIELD_DECL:
18521 case TEMPLATE_DECL:
18522 /* Matched cases are handled by the ARG == PARM test above. */
18523 return unify_template_argument_mismatch (explain_p, parm, arg);
18525 case VAR_DECL:
18526 /* A non-type template parameter that is a variable should be a
18527 an integral constant, in which case, it whould have been
18528 folded into its (constant) value. So we should not be getting
18529 a variable here. */
18530 gcc_unreachable ();
18532 case TYPE_ARGUMENT_PACK:
18533 case NONTYPE_ARGUMENT_PACK:
18534 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
18535 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
18537 case TYPEOF_TYPE:
18538 case DECLTYPE_TYPE:
18539 case UNDERLYING_TYPE:
18540 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
18541 or UNDERLYING_TYPE nodes. */
18542 return unify_success (explain_p);
18544 case ERROR_MARK:
18545 /* Unification fails if we hit an error node. */
18546 return unify_invalid (explain_p);
18548 case INDIRECT_REF:
18549 if (REFERENCE_REF_P (parm))
18551 if (REFERENCE_REF_P (arg))
18552 arg = TREE_OPERAND (arg, 0);
18553 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
18554 strict, explain_p);
18556 /* FALLTHRU */
18558 default:
18559 /* An unresolved overload is a nondeduced context. */
18560 if (is_overloaded_fn (parm) || type_unknown_p (parm))
18561 return unify_success (explain_p);
18562 gcc_assert (EXPR_P (parm));
18564 /* We must be looking at an expression. This can happen with
18565 something like:
18567 template <int I>
18568 void foo(S<I>, S<I + 2>);
18570 This is a "nondeduced context":
18572 [deduct.type]
18574 The nondeduced contexts are:
18576 --A type that is a template-id in which one or more of
18577 the template-arguments is an expression that references
18578 a template-parameter.
18580 In these cases, we assume deduction succeeded, but don't
18581 actually infer any unifications. */
18583 if (!uses_template_parms (parm)
18584 && !template_args_equal (parm, arg))
18585 return unify_expression_unequal (explain_p, parm, arg);
18586 else
18587 return unify_success (explain_p);
18590 #undef RECUR_AND_CHECK_FAILURE
18592 /* Note that DECL can be defined in this translation unit, if
18593 required. */
18595 static void
18596 mark_definable (tree decl)
18598 tree clone;
18599 DECL_NOT_REALLY_EXTERN (decl) = 1;
18600 FOR_EACH_CLONE (clone, decl)
18601 DECL_NOT_REALLY_EXTERN (clone) = 1;
18604 /* Called if RESULT is explicitly instantiated, or is a member of an
18605 explicitly instantiated class. */
18607 void
18608 mark_decl_instantiated (tree result, int extern_p)
18610 SET_DECL_EXPLICIT_INSTANTIATION (result);
18612 /* If this entity has already been written out, it's too late to
18613 make any modifications. */
18614 if (TREE_ASM_WRITTEN (result))
18615 return;
18617 /* For anonymous namespace we don't need to do anything. */
18618 if (decl_anon_ns_mem_p (result))
18620 gcc_assert (!TREE_PUBLIC (result));
18621 return;
18624 if (TREE_CODE (result) != FUNCTION_DECL)
18625 /* The TREE_PUBLIC flag for function declarations will have been
18626 set correctly by tsubst. */
18627 TREE_PUBLIC (result) = 1;
18629 /* This might have been set by an earlier implicit instantiation. */
18630 DECL_COMDAT (result) = 0;
18632 if (extern_p)
18633 DECL_NOT_REALLY_EXTERN (result) = 0;
18634 else
18636 mark_definable (result);
18637 mark_needed (result);
18638 /* Always make artificials weak. */
18639 if (DECL_ARTIFICIAL (result) && flag_weak)
18640 comdat_linkage (result);
18641 /* For WIN32 we also want to put explicit instantiations in
18642 linkonce sections. */
18643 else if (TREE_PUBLIC (result))
18644 maybe_make_one_only (result);
18647 /* If EXTERN_P, then this function will not be emitted -- unless
18648 followed by an explicit instantiation, at which point its linkage
18649 will be adjusted. If !EXTERN_P, then this function will be
18650 emitted here. In neither circumstance do we want
18651 import_export_decl to adjust the linkage. */
18652 DECL_INTERFACE_KNOWN (result) = 1;
18655 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
18656 important template arguments. If any are missing, we check whether
18657 they're important by using error_mark_node for substituting into any
18658 args that were used for partial ordering (the ones between ARGS and END)
18659 and seeing if it bubbles up. */
18661 static bool
18662 check_undeduced_parms (tree targs, tree args, tree end)
18664 bool found = false;
18665 int i;
18666 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
18667 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
18669 found = true;
18670 TREE_VEC_ELT (targs, i) = error_mark_node;
18672 if (found)
18674 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
18675 if (substed == error_mark_node)
18676 return true;
18678 return false;
18681 /* Given two function templates PAT1 and PAT2, return:
18683 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
18684 -1 if PAT2 is more specialized than PAT1.
18685 0 if neither is more specialized.
18687 LEN indicates the number of parameters we should consider
18688 (defaulted parameters should not be considered).
18690 The 1998 std underspecified function template partial ordering, and
18691 DR214 addresses the issue. We take pairs of arguments, one from
18692 each of the templates, and deduce them against each other. One of
18693 the templates will be more specialized if all the *other*
18694 template's arguments deduce against its arguments and at least one
18695 of its arguments *does* *not* deduce against the other template's
18696 corresponding argument. Deduction is done as for class templates.
18697 The arguments used in deduction have reference and top level cv
18698 qualifiers removed. Iff both arguments were originally reference
18699 types *and* deduction succeeds in both directions, an lvalue reference
18700 wins against an rvalue reference and otherwise the template
18701 with the more cv-qualified argument wins for that pairing (if
18702 neither is more cv-qualified, they both are equal). Unlike regular
18703 deduction, after all the arguments have been deduced in this way,
18704 we do *not* verify the deduced template argument values can be
18705 substituted into non-deduced contexts.
18707 The logic can be a bit confusing here, because we look at deduce1 and
18708 targs1 to see if pat2 is at least as specialized, and vice versa; if we
18709 can find template arguments for pat1 to make arg1 look like arg2, that
18710 means that arg2 is at least as specialized as arg1. */
18713 more_specialized_fn (tree pat1, tree pat2, int len)
18715 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
18716 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
18717 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
18718 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
18719 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
18720 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
18721 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
18722 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
18723 tree origs1, origs2;
18724 bool lose1 = false;
18725 bool lose2 = false;
18727 /* Remove the this parameter from non-static member functions. If
18728 one is a non-static member function and the other is not a static
18729 member function, remove the first parameter from that function
18730 also. This situation occurs for operator functions where we
18731 locate both a member function (with this pointer) and non-member
18732 operator (with explicit first operand). */
18733 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
18735 len--; /* LEN is the number of significant arguments for DECL1 */
18736 args1 = TREE_CHAIN (args1);
18737 if (!DECL_STATIC_FUNCTION_P (decl2))
18738 args2 = TREE_CHAIN (args2);
18740 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
18742 args2 = TREE_CHAIN (args2);
18743 if (!DECL_STATIC_FUNCTION_P (decl1))
18745 len--;
18746 args1 = TREE_CHAIN (args1);
18750 /* If only one is a conversion operator, they are unordered. */
18751 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
18752 return 0;
18754 /* Consider the return type for a conversion function */
18755 if (DECL_CONV_FN_P (decl1))
18757 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
18758 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
18759 len++;
18762 processing_template_decl++;
18764 origs1 = args1;
18765 origs2 = args2;
18767 while (len--
18768 /* Stop when an ellipsis is seen. */
18769 && args1 != NULL_TREE && args2 != NULL_TREE)
18771 tree arg1 = TREE_VALUE (args1);
18772 tree arg2 = TREE_VALUE (args2);
18773 int deduce1, deduce2;
18774 int quals1 = -1;
18775 int quals2 = -1;
18776 int ref1 = 0;
18777 int ref2 = 0;
18779 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18780 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18782 /* When both arguments are pack expansions, we need only
18783 unify the patterns themselves. */
18784 arg1 = PACK_EXPANSION_PATTERN (arg1);
18785 arg2 = PACK_EXPANSION_PATTERN (arg2);
18787 /* This is the last comparison we need to do. */
18788 len = 0;
18791 if (TREE_CODE (arg1) == REFERENCE_TYPE)
18793 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
18794 arg1 = TREE_TYPE (arg1);
18795 quals1 = cp_type_quals (arg1);
18798 if (TREE_CODE (arg2) == REFERENCE_TYPE)
18800 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
18801 arg2 = TREE_TYPE (arg2);
18802 quals2 = cp_type_quals (arg2);
18805 arg1 = TYPE_MAIN_VARIANT (arg1);
18806 arg2 = TYPE_MAIN_VARIANT (arg2);
18808 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
18810 int i, len2 = list_length (args2);
18811 tree parmvec = make_tree_vec (1);
18812 tree argvec = make_tree_vec (len2);
18813 tree ta = args2;
18815 /* Setup the parameter vector, which contains only ARG1. */
18816 TREE_VEC_ELT (parmvec, 0) = arg1;
18818 /* Setup the argument vector, which contains the remaining
18819 arguments. */
18820 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
18821 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18823 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
18824 argvec, DEDUCE_EXACT,
18825 /*subr=*/true, /*explain_p=*/false)
18826 == 0);
18828 /* We cannot deduce in the other direction, because ARG1 is
18829 a pack expansion but ARG2 is not. */
18830 deduce2 = 0;
18832 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18834 int i, len1 = list_length (args1);
18835 tree parmvec = make_tree_vec (1);
18836 tree argvec = make_tree_vec (len1);
18837 tree ta = args1;
18839 /* Setup the parameter vector, which contains only ARG1. */
18840 TREE_VEC_ELT (parmvec, 0) = arg2;
18842 /* Setup the argument vector, which contains the remaining
18843 arguments. */
18844 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
18845 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18847 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
18848 argvec, DEDUCE_EXACT,
18849 /*subr=*/true, /*explain_p=*/false)
18850 == 0);
18852 /* We cannot deduce in the other direction, because ARG2 is
18853 a pack expansion but ARG1 is not.*/
18854 deduce1 = 0;
18857 else
18859 /* The normal case, where neither argument is a pack
18860 expansion. */
18861 deduce1 = (unify (tparms1, targs1, arg1, arg2,
18862 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18863 == 0);
18864 deduce2 = (unify (tparms2, targs2, arg2, arg1,
18865 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18866 == 0);
18869 /* If we couldn't deduce arguments for tparms1 to make arg1 match
18870 arg2, then arg2 is not as specialized as arg1. */
18871 if (!deduce1)
18872 lose2 = true;
18873 if (!deduce2)
18874 lose1 = true;
18876 /* "If, for a given type, deduction succeeds in both directions
18877 (i.e., the types are identical after the transformations above)
18878 and both P and A were reference types (before being replaced with
18879 the type referred to above):
18880 - if the type from the argument template was an lvalue reference and
18881 the type from the parameter template was not, the argument type is
18882 considered to be more specialized than the other; otherwise,
18883 - if the type from the argument template is more cv-qualified
18884 than the type from the parameter template (as described above),
18885 the argument type is considered to be more specialized than the other;
18886 otherwise,
18887 - neither type is more specialized than the other." */
18889 if (deduce1 && deduce2)
18891 if (ref1 && ref2 && ref1 != ref2)
18893 if (ref1 > ref2)
18894 lose1 = true;
18895 else
18896 lose2 = true;
18898 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
18900 if ((quals1 & quals2) == quals2)
18901 lose2 = true;
18902 if ((quals1 & quals2) == quals1)
18903 lose1 = true;
18907 if (lose1 && lose2)
18908 /* We've failed to deduce something in either direction.
18909 These must be unordered. */
18910 break;
18912 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18913 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18914 /* We have already processed all of the arguments in our
18915 handing of the pack expansion type. */
18916 len = 0;
18918 args1 = TREE_CHAIN (args1);
18919 args2 = TREE_CHAIN (args2);
18922 /* "In most cases, all template parameters must have values in order for
18923 deduction to succeed, but for partial ordering purposes a template
18924 parameter may remain without a value provided it is not used in the
18925 types being used for partial ordering."
18927 Thus, if we are missing any of the targs1 we need to substitute into
18928 origs1, then pat2 is not as specialized as pat1. This can happen when
18929 there is a nondeduced context. */
18930 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
18931 lose2 = true;
18932 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
18933 lose1 = true;
18935 processing_template_decl--;
18937 /* All things being equal, if the next argument is a pack expansion
18938 for one function but not for the other, prefer the
18939 non-variadic function. FIXME this is bogus; see c++/41958. */
18940 if (lose1 == lose2
18941 && args1 && TREE_VALUE (args1)
18942 && args2 && TREE_VALUE (args2))
18944 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
18945 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
18948 if (lose1 == lose2)
18949 return 0;
18950 else if (!lose1)
18951 return 1;
18952 else
18953 return -1;
18956 /* Determine which of two partial specializations of TMPL is more
18957 specialized.
18959 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
18960 to the first partial specialization. The TREE_PURPOSE is the
18961 innermost set of template parameters for the partial
18962 specialization. PAT2 is similar, but for the second template.
18964 Return 1 if the first partial specialization is more specialized;
18965 -1 if the second is more specialized; 0 if neither is more
18966 specialized.
18968 See [temp.class.order] for information about determining which of
18969 two templates is more specialized. */
18971 static int
18972 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
18974 tree targs;
18975 int winner = 0;
18976 bool any_deductions = false;
18978 tree tmpl1 = TREE_VALUE (pat1);
18979 tree tmpl2 = TREE_VALUE (pat2);
18980 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
18981 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
18982 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
18983 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
18985 /* Just like what happens for functions, if we are ordering between
18986 different template specializations, we may encounter dependent
18987 types in the arguments, and we need our dependency check functions
18988 to behave correctly. */
18989 ++processing_template_decl;
18990 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
18991 if (targs)
18993 --winner;
18994 any_deductions = true;
18997 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
18998 if (targs)
19000 ++winner;
19001 any_deductions = true;
19003 --processing_template_decl;
19005 /* In the case of a tie where at least one of the templates
19006 has a parameter pack at the end, the template with the most
19007 non-packed parameters wins. */
19008 if (winner == 0
19009 && any_deductions
19010 && (template_args_variadic_p (TREE_PURPOSE (pat1))
19011 || template_args_variadic_p (TREE_PURPOSE (pat2))))
19013 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
19014 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
19015 int len1 = TREE_VEC_LENGTH (args1);
19016 int len2 = TREE_VEC_LENGTH (args2);
19018 /* We don't count the pack expansion at the end. */
19019 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
19020 --len1;
19021 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
19022 --len2;
19024 if (len1 > len2)
19025 return 1;
19026 else if (len1 < len2)
19027 return -1;
19030 return winner;
19033 /* Return the template arguments that will produce the function signature
19034 DECL from the function template FN, with the explicit template
19035 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
19036 also match. Return NULL_TREE if no satisfactory arguments could be
19037 found. */
19039 static tree
19040 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
19042 int ntparms = DECL_NTPARMS (fn);
19043 tree targs = make_tree_vec (ntparms);
19044 tree decl_type = TREE_TYPE (decl);
19045 tree decl_arg_types;
19046 tree *args;
19047 unsigned int nargs, ix;
19048 tree arg;
19050 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
19052 /* Never do unification on the 'this' parameter. */
19053 decl_arg_types = skip_artificial_parms_for (decl,
19054 TYPE_ARG_TYPES (decl_type));
19056 nargs = list_length (decl_arg_types);
19057 args = XALLOCAVEC (tree, nargs);
19058 for (arg = decl_arg_types, ix = 0;
19059 arg != NULL_TREE && arg != void_list_node;
19060 arg = TREE_CHAIN (arg), ++ix)
19061 args[ix] = TREE_VALUE (arg);
19063 if (fn_type_unification (fn, explicit_args, targs,
19064 args, ix,
19065 (check_rettype || DECL_CONV_FN_P (fn)
19066 ? TREE_TYPE (decl_type) : NULL_TREE),
19067 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
19068 /*decltype*/false)
19069 == error_mark_node)
19070 return NULL_TREE;
19072 return targs;
19075 /* Return the innermost template arguments that, when applied to a partial
19076 specialization of TMPL whose innermost template parameters are
19077 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
19078 ARGS.
19080 For example, suppose we have:
19082 template <class T, class U> struct S {};
19083 template <class T> struct S<T*, int> {};
19085 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
19086 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
19087 int}. The resulting vector will be {double}, indicating that `T'
19088 is bound to `double'. */
19090 static tree
19091 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
19093 int i, ntparms = TREE_VEC_LENGTH (tparms);
19094 tree deduced_args;
19095 tree innermost_deduced_args;
19097 innermost_deduced_args = make_tree_vec (ntparms);
19098 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19100 deduced_args = copy_node (args);
19101 SET_TMPL_ARGS_LEVEL (deduced_args,
19102 TMPL_ARGS_DEPTH (deduced_args),
19103 innermost_deduced_args);
19105 else
19106 deduced_args = innermost_deduced_args;
19108 if (unify (tparms, deduced_args,
19109 INNERMOST_TEMPLATE_ARGS (spec_args),
19110 INNERMOST_TEMPLATE_ARGS (args),
19111 UNIFY_ALLOW_NONE, /*explain_p=*/false))
19112 return NULL_TREE;
19114 for (i = 0; i < ntparms; ++i)
19115 if (! TREE_VEC_ELT (innermost_deduced_args, i))
19116 return NULL_TREE;
19118 /* Verify that nondeduced template arguments agree with the type
19119 obtained from argument deduction.
19121 For example:
19123 struct A { typedef int X; };
19124 template <class T, class U> struct C {};
19125 template <class T> struct C<T, typename T::X> {};
19127 Then with the instantiation `C<A, int>', we can deduce that
19128 `T' is `A' but unify () does not check whether `typename T::X'
19129 is `int'. */
19130 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
19131 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19132 spec_args, tmpl,
19133 tf_none, false, false);
19134 if (spec_args == error_mark_node
19135 /* We only need to check the innermost arguments; the other
19136 arguments will always agree. */
19137 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
19138 INNERMOST_TEMPLATE_ARGS (args)))
19139 return NULL_TREE;
19141 /* Now that we have bindings for all of the template arguments,
19142 ensure that the arguments deduced for the template template
19143 parameters have compatible template parameter lists. See the use
19144 of template_template_parm_bindings_ok_p in fn_type_unification
19145 for more information. */
19146 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
19147 return NULL_TREE;
19149 return deduced_args;
19152 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
19153 Return the TREE_LIST node with the most specialized template, if
19154 any. If there is no most specialized template, the error_mark_node
19155 is returned.
19157 Note that this function does not look at, or modify, the
19158 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
19159 returned is one of the elements of INSTANTIATIONS, callers may
19160 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
19161 and retrieve it from the value returned. */
19163 tree
19164 most_specialized_instantiation (tree templates)
19166 tree fn, champ;
19168 ++processing_template_decl;
19170 champ = templates;
19171 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
19173 int fate = 0;
19175 if (get_bindings (TREE_VALUE (champ),
19176 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19177 NULL_TREE, /*check_ret=*/true))
19178 fate--;
19180 if (get_bindings (TREE_VALUE (fn),
19181 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19182 NULL_TREE, /*check_ret=*/true))
19183 fate++;
19185 if (fate == -1)
19186 champ = fn;
19187 else if (!fate)
19189 /* Equally specialized, move to next function. If there
19190 is no next function, nothing's most specialized. */
19191 fn = TREE_CHAIN (fn);
19192 champ = fn;
19193 if (!fn)
19194 break;
19198 if (champ)
19199 /* Now verify that champ is better than everything earlier in the
19200 instantiation list. */
19201 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
19202 if (get_bindings (TREE_VALUE (champ),
19203 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
19204 NULL_TREE, /*check_ret=*/true)
19205 || !get_bindings (TREE_VALUE (fn),
19206 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
19207 NULL_TREE, /*check_ret=*/true))
19209 champ = NULL_TREE;
19210 break;
19213 processing_template_decl--;
19215 if (!champ)
19216 return error_mark_node;
19218 return champ;
19221 /* If DECL is a specialization of some template, return the most
19222 general such template. Otherwise, returns NULL_TREE.
19224 For example, given:
19226 template <class T> struct S { template <class U> void f(U); };
19228 if TMPL is `template <class U> void S<int>::f(U)' this will return
19229 the full template. This function will not trace past partial
19230 specializations, however. For example, given in addition:
19232 template <class T> struct S<T*> { template <class U> void f(U); };
19234 if TMPL is `template <class U> void S<int*>::f(U)' this will return
19235 `template <class T> template <class U> S<T*>::f(U)'. */
19237 tree
19238 most_general_template (tree decl)
19240 if (TREE_CODE (decl) != TEMPLATE_DECL)
19242 if (tree tinfo = get_template_info (decl))
19243 decl = TI_TEMPLATE (tinfo);
19244 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
19245 template friend, or a FIELD_DECL for a capture pack. */
19246 if (TREE_CODE (decl) != TEMPLATE_DECL)
19247 return NULL_TREE;
19250 /* Look for more and more general templates. */
19251 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
19253 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
19254 (See cp-tree.h for details.) */
19255 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
19256 break;
19258 if (CLASS_TYPE_P (TREE_TYPE (decl))
19259 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
19260 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
19261 break;
19263 /* Stop if we run into an explicitly specialized class template. */
19264 if (!DECL_NAMESPACE_SCOPE_P (decl)
19265 && DECL_CONTEXT (decl)
19266 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
19267 break;
19269 decl = DECL_TI_TEMPLATE (decl);
19272 return decl;
19275 /* Return the most specialized of the template partial specializations
19276 which can produce TARGET, a specialization of some class or variable
19277 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
19278 a TEMPLATE_DECL node corresponding to the partial specialization, while
19279 the TREE_PURPOSE is the set of template arguments that must be
19280 substituted into the template pattern in order to generate TARGET.
19282 If the choice of partial specialization is ambiguous, a diagnostic
19283 is issued, and the error_mark_node is returned. If there are no
19284 partial specializations matching TARGET, then NULL_TREE is
19285 returned, indicating that the primary template should be used. */
19287 static tree
19288 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
19290 tree list = NULL_TREE;
19291 tree t;
19292 tree champ;
19293 int fate;
19294 bool ambiguous_p;
19295 tree outer_args = NULL_TREE;
19296 tree tmpl, args;
19298 if (TYPE_P (target))
19300 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
19301 tmpl = TI_TEMPLATE (tinfo);
19302 args = TI_ARGS (tinfo);
19304 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
19306 tmpl = TREE_OPERAND (target, 0);
19307 args = TREE_OPERAND (target, 1);
19309 else if (VAR_P (target))
19311 tree tinfo = DECL_TEMPLATE_INFO (target);
19312 tmpl = TI_TEMPLATE (tinfo);
19313 args = TI_ARGS (tinfo);
19315 else
19316 gcc_unreachable ();
19318 tree main_tmpl = most_general_template (tmpl);
19320 /* For determining which partial specialization to use, only the
19321 innermost args are interesting. */
19322 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
19324 outer_args = strip_innermost_template_args (args, 1);
19325 args = INNERMOST_TEMPLATE_ARGS (args);
19328 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
19330 tree partial_spec_args;
19331 tree spec_args;
19332 tree spec_tmpl = TREE_VALUE (t);
19334 partial_spec_args = TREE_PURPOSE (t);
19336 ++processing_template_decl;
19338 if (outer_args)
19340 /* Discard the outer levels of args, and then substitute in the
19341 template args from the enclosing class. */
19342 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
19343 partial_spec_args = tsubst_template_args
19344 (partial_spec_args, outer_args, tf_none, NULL_TREE);
19346 /* And the same for the partial specialization TEMPLATE_DECL. */
19347 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
19350 partial_spec_args =
19351 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
19352 partial_spec_args,
19353 tmpl, tf_none,
19354 /*require_all_args=*/true,
19355 /*use_default_args=*/true);
19357 --processing_template_decl;
19359 if (partial_spec_args == error_mark_node)
19360 return error_mark_node;
19361 if (spec_tmpl == error_mark_node)
19362 return error_mark_node;
19364 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
19365 spec_args = get_partial_spec_bindings (tmpl, parms,
19366 partial_spec_args,
19367 args);
19368 if (spec_args)
19370 if (outer_args)
19371 spec_args = add_to_template_args (outer_args, spec_args);
19372 list = tree_cons (spec_args, TREE_VALUE (t), list);
19373 TREE_TYPE (list) = TREE_TYPE (t);
19377 if (! list)
19378 return NULL_TREE;
19380 ambiguous_p = false;
19381 t = list;
19382 champ = t;
19383 t = TREE_CHAIN (t);
19384 for (; t; t = TREE_CHAIN (t))
19386 fate = more_specialized_partial_spec (tmpl, champ, t);
19387 if (fate == 1)
19389 else
19391 if (fate == 0)
19393 t = TREE_CHAIN (t);
19394 if (! t)
19396 ambiguous_p = true;
19397 break;
19400 champ = t;
19404 if (!ambiguous_p)
19405 for (t = list; t && t != champ; t = TREE_CHAIN (t))
19407 fate = more_specialized_partial_spec (tmpl, champ, t);
19408 if (fate != 1)
19410 ambiguous_p = true;
19411 break;
19415 if (ambiguous_p)
19417 const char *str;
19418 char *spaces = NULL;
19419 if (!(complain & tf_error))
19420 return error_mark_node;
19421 if (TYPE_P (target))
19422 error ("ambiguous template instantiation for %q#T", target);
19423 else
19424 error ("ambiguous template instantiation for %q#D", target);
19425 str = ngettext ("candidate is:", "candidates are:", list_length (list));
19426 for (t = list; t; t = TREE_CHAIN (t))
19428 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
19429 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
19430 "%s %#S", spaces ? spaces : str, subst);
19431 spaces = spaces ? spaces : get_spaces (str);
19433 free (spaces);
19434 return error_mark_node;
19437 return champ;
19440 /* Explicitly instantiate DECL. */
19442 void
19443 do_decl_instantiation (tree decl, tree storage)
19445 tree result = NULL_TREE;
19446 int extern_p = 0;
19448 if (!decl || decl == error_mark_node)
19449 /* An error occurred, for which grokdeclarator has already issued
19450 an appropriate message. */
19451 return;
19452 else if (! DECL_LANG_SPECIFIC (decl))
19454 error ("explicit instantiation of non-template %q#D", decl);
19455 return;
19458 bool var_templ = (DECL_TEMPLATE_INFO (decl)
19459 && variable_template_p (DECL_TI_TEMPLATE (decl)));
19461 if (VAR_P (decl) && !var_templ)
19463 /* There is an asymmetry here in the way VAR_DECLs and
19464 FUNCTION_DECLs are handled by grokdeclarator. In the case of
19465 the latter, the DECL we get back will be marked as a
19466 template instantiation, and the appropriate
19467 DECL_TEMPLATE_INFO will be set up. This does not happen for
19468 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
19469 should handle VAR_DECLs as it currently handles
19470 FUNCTION_DECLs. */
19471 if (!DECL_CLASS_SCOPE_P (decl))
19473 error ("%qD is not a static data member of a class template", decl);
19474 return;
19476 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
19477 if (!result || !VAR_P (result))
19479 error ("no matching template for %qD found", decl);
19480 return;
19482 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
19484 error ("type %qT for explicit instantiation %qD does not match "
19485 "declared type %qT", TREE_TYPE (result), decl,
19486 TREE_TYPE (decl));
19487 return;
19490 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
19492 error ("explicit instantiation of %q#D", decl);
19493 return;
19495 else
19496 result = decl;
19498 /* Check for various error cases. Note that if the explicit
19499 instantiation is valid the RESULT will currently be marked as an
19500 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
19501 until we get here. */
19503 if (DECL_TEMPLATE_SPECIALIZATION (result))
19505 /* DR 259 [temp.spec].
19507 Both an explicit instantiation and a declaration of an explicit
19508 specialization shall not appear in a program unless the explicit
19509 instantiation follows a declaration of the explicit specialization.
19511 For a given set of template parameters, if an explicit
19512 instantiation of a template appears after a declaration of an
19513 explicit specialization for that template, the explicit
19514 instantiation has no effect. */
19515 return;
19517 else if (DECL_EXPLICIT_INSTANTIATION (result))
19519 /* [temp.spec]
19521 No program shall explicitly instantiate any template more
19522 than once.
19524 We check DECL_NOT_REALLY_EXTERN so as not to complain when
19525 the first instantiation was `extern' and the second is not,
19526 and EXTERN_P for the opposite case. */
19527 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
19528 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
19529 /* If an "extern" explicit instantiation follows an ordinary
19530 explicit instantiation, the template is instantiated. */
19531 if (extern_p)
19532 return;
19534 else if (!DECL_IMPLICIT_INSTANTIATION (result))
19536 error ("no matching template for %qD found", result);
19537 return;
19539 else if (!DECL_TEMPLATE_INFO (result))
19541 permerror (input_location, "explicit instantiation of non-template %q#D", result);
19542 return;
19545 if (storage == NULL_TREE)
19547 else if (storage == ridpointers[(int) RID_EXTERN])
19549 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
19550 pedwarn (input_location, OPT_Wpedantic,
19551 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
19552 "instantiations");
19553 extern_p = 1;
19555 else
19556 error ("storage class %qD applied to template instantiation", storage);
19558 check_explicit_instantiation_namespace (result);
19559 mark_decl_instantiated (result, extern_p);
19560 if (! extern_p)
19561 instantiate_decl (result, /*defer_ok=*/1,
19562 /*expl_inst_class_mem_p=*/false);
19565 static void
19566 mark_class_instantiated (tree t, int extern_p)
19568 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
19569 SET_CLASSTYPE_INTERFACE_KNOWN (t);
19570 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
19571 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
19572 if (! extern_p)
19574 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
19575 rest_of_type_compilation (t, 1);
19579 /* Called from do_type_instantiation through binding_table_foreach to
19580 do recursive instantiation for the type bound in ENTRY. */
19581 static void
19582 bt_instantiate_type_proc (binding_entry entry, void *data)
19584 tree storage = *(tree *) data;
19586 if (MAYBE_CLASS_TYPE_P (entry->type)
19587 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
19588 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
19591 /* Called from do_type_instantiation to instantiate a member
19592 (a member function or a static member variable) of an
19593 explicitly instantiated class template. */
19594 static void
19595 instantiate_class_member (tree decl, int extern_p)
19597 mark_decl_instantiated (decl, extern_p);
19598 if (! extern_p)
19599 instantiate_decl (decl, /*defer_ok=*/1,
19600 /*expl_inst_class_mem_p=*/true);
19603 /* Perform an explicit instantiation of template class T. STORAGE, if
19604 non-null, is the RID for extern, inline or static. COMPLAIN is
19605 nonzero if this is called from the parser, zero if called recursively,
19606 since the standard is unclear (as detailed below). */
19608 void
19609 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
19611 int extern_p = 0;
19612 int nomem_p = 0;
19613 int static_p = 0;
19614 int previous_instantiation_extern_p = 0;
19616 if (TREE_CODE (t) == TYPE_DECL)
19617 t = TREE_TYPE (t);
19619 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
19621 tree tmpl =
19622 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
19623 if (tmpl)
19624 error ("explicit instantiation of non-class template %qD", tmpl);
19625 else
19626 error ("explicit instantiation of non-template type %qT", t);
19627 return;
19630 complete_type (t);
19632 if (!COMPLETE_TYPE_P (t))
19634 if (complain & tf_error)
19635 error ("explicit instantiation of %q#T before definition of template",
19637 return;
19640 if (storage != NULL_TREE)
19642 if (!in_system_header_at (input_location))
19644 if (storage == ridpointers[(int) RID_EXTERN])
19646 if (cxx_dialect == cxx98)
19647 pedwarn (input_location, OPT_Wpedantic,
19648 "ISO C++ 1998 forbids the use of %<extern%> on "
19649 "explicit instantiations");
19651 else
19652 pedwarn (input_location, OPT_Wpedantic,
19653 "ISO C++ forbids the use of %qE"
19654 " on explicit instantiations", storage);
19657 if (storage == ridpointers[(int) RID_INLINE])
19658 nomem_p = 1;
19659 else if (storage == ridpointers[(int) RID_EXTERN])
19660 extern_p = 1;
19661 else if (storage == ridpointers[(int) RID_STATIC])
19662 static_p = 1;
19663 else
19665 error ("storage class %qD applied to template instantiation",
19666 storage);
19667 extern_p = 0;
19671 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
19673 /* DR 259 [temp.spec].
19675 Both an explicit instantiation and a declaration of an explicit
19676 specialization shall not appear in a program unless the explicit
19677 instantiation follows a declaration of the explicit specialization.
19679 For a given set of template parameters, if an explicit
19680 instantiation of a template appears after a declaration of an
19681 explicit specialization for that template, the explicit
19682 instantiation has no effect. */
19683 return;
19685 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
19687 /* [temp.spec]
19689 No program shall explicitly instantiate any template more
19690 than once.
19692 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
19693 instantiation was `extern'. If EXTERN_P then the second is.
19694 These cases are OK. */
19695 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
19697 if (!previous_instantiation_extern_p && !extern_p
19698 && (complain & tf_error))
19699 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
19701 /* If we've already instantiated the template, just return now. */
19702 if (!CLASSTYPE_INTERFACE_ONLY (t))
19703 return;
19706 check_explicit_instantiation_namespace (TYPE_NAME (t));
19707 mark_class_instantiated (t, extern_p);
19709 if (nomem_p)
19710 return;
19713 tree tmp;
19715 /* In contrast to implicit instantiation, where only the
19716 declarations, and not the definitions, of members are
19717 instantiated, we have here:
19719 [temp.explicit]
19721 The explicit instantiation of a class template specialization
19722 implies the instantiation of all of its members not
19723 previously explicitly specialized in the translation unit
19724 containing the explicit instantiation.
19726 Of course, we can't instantiate member template classes, since
19727 we don't have any arguments for them. Note that the standard
19728 is unclear on whether the instantiation of the members are
19729 *explicit* instantiations or not. However, the most natural
19730 interpretation is that it should be an explicit instantiation. */
19732 if (! static_p)
19733 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
19734 if (TREE_CODE (tmp) == FUNCTION_DECL
19735 && DECL_TEMPLATE_INSTANTIATION (tmp))
19736 instantiate_class_member (tmp, extern_p);
19738 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
19739 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
19740 instantiate_class_member (tmp, extern_p);
19742 if (CLASSTYPE_NESTED_UTDS (t))
19743 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
19744 bt_instantiate_type_proc, &storage);
19748 /* Given a function DECL, which is a specialization of TMPL, modify
19749 DECL to be a re-instantiation of TMPL with the same template
19750 arguments. TMPL should be the template into which tsubst'ing
19751 should occur for DECL, not the most general template.
19753 One reason for doing this is a scenario like this:
19755 template <class T>
19756 void f(const T&, int i);
19758 void g() { f(3, 7); }
19760 template <class T>
19761 void f(const T& t, const int i) { }
19763 Note that when the template is first instantiated, with
19764 instantiate_template, the resulting DECL will have no name for the
19765 first parameter, and the wrong type for the second. So, when we go
19766 to instantiate the DECL, we regenerate it. */
19768 static void
19769 regenerate_decl_from_template (tree decl, tree tmpl)
19771 /* The arguments used to instantiate DECL, from the most general
19772 template. */
19773 tree args;
19774 tree code_pattern;
19776 args = DECL_TI_ARGS (decl);
19777 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
19779 /* Make sure that we can see identifiers, and compute access
19780 correctly. */
19781 push_access_scope (decl);
19783 if (TREE_CODE (decl) == FUNCTION_DECL)
19785 tree decl_parm;
19786 tree pattern_parm;
19787 tree specs;
19788 int args_depth;
19789 int parms_depth;
19791 args_depth = TMPL_ARGS_DEPTH (args);
19792 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
19793 if (args_depth > parms_depth)
19794 args = get_innermost_template_args (args, parms_depth);
19796 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
19797 args, tf_error, NULL_TREE,
19798 /*defer_ok*/false);
19799 if (specs && specs != error_mark_node)
19800 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
19801 specs);
19803 /* Merge parameter declarations. */
19804 decl_parm = skip_artificial_parms_for (decl,
19805 DECL_ARGUMENTS (decl));
19806 pattern_parm
19807 = skip_artificial_parms_for (code_pattern,
19808 DECL_ARGUMENTS (code_pattern));
19809 while (decl_parm && !DECL_PACK_P (pattern_parm))
19811 tree parm_type;
19812 tree attributes;
19814 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19815 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
19816 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
19817 NULL_TREE);
19818 parm_type = type_decays_to (parm_type);
19819 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19820 TREE_TYPE (decl_parm) = parm_type;
19821 attributes = DECL_ATTRIBUTES (pattern_parm);
19822 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19824 DECL_ATTRIBUTES (decl_parm) = attributes;
19825 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19827 decl_parm = DECL_CHAIN (decl_parm);
19828 pattern_parm = DECL_CHAIN (pattern_parm);
19830 /* Merge any parameters that match with the function parameter
19831 pack. */
19832 if (pattern_parm && DECL_PACK_P (pattern_parm))
19834 int i, len;
19835 tree expanded_types;
19836 /* Expand the TYPE_PACK_EXPANSION that provides the types for
19837 the parameters in this function parameter pack. */
19838 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
19839 args, tf_error, NULL_TREE);
19840 len = TREE_VEC_LENGTH (expanded_types);
19841 for (i = 0; i < len; i++)
19843 tree parm_type;
19844 tree attributes;
19846 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19847 /* Rename the parameter to include the index. */
19848 DECL_NAME (decl_parm) =
19849 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
19850 parm_type = TREE_VEC_ELT (expanded_types, i);
19851 parm_type = type_decays_to (parm_type);
19852 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19853 TREE_TYPE (decl_parm) = parm_type;
19854 attributes = DECL_ATTRIBUTES (pattern_parm);
19855 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19857 DECL_ATTRIBUTES (decl_parm) = attributes;
19858 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19860 decl_parm = DECL_CHAIN (decl_parm);
19863 /* Merge additional specifiers from the CODE_PATTERN. */
19864 if (DECL_DECLARED_INLINE_P (code_pattern)
19865 && !DECL_DECLARED_INLINE_P (decl))
19866 DECL_DECLARED_INLINE_P (decl) = 1;
19868 else if (VAR_P (decl))
19870 DECL_INITIAL (decl) =
19871 tsubst_expr (DECL_INITIAL (code_pattern), args,
19872 tf_error, DECL_TI_TEMPLATE (decl),
19873 /*integral_constant_expression_p=*/false);
19874 if (VAR_HAD_UNKNOWN_BOUND (decl))
19875 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
19876 tf_error, DECL_TI_TEMPLATE (decl));
19878 else
19879 gcc_unreachable ();
19881 pop_access_scope (decl);
19884 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
19885 substituted to get DECL. */
19887 tree
19888 template_for_substitution (tree decl)
19890 tree tmpl = DECL_TI_TEMPLATE (decl);
19892 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
19893 for the instantiation. This is not always the most general
19894 template. Consider, for example:
19896 template <class T>
19897 struct S { template <class U> void f();
19898 template <> void f<int>(); };
19900 and an instantiation of S<double>::f<int>. We want TD to be the
19901 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
19902 while (/* An instantiation cannot have a definition, so we need a
19903 more general template. */
19904 DECL_TEMPLATE_INSTANTIATION (tmpl)
19905 /* We must also deal with friend templates. Given:
19907 template <class T> struct S {
19908 template <class U> friend void f() {};
19911 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
19912 so far as the language is concerned, but that's still
19913 where we get the pattern for the instantiation from. On
19914 other hand, if the definition comes outside the class, say:
19916 template <class T> struct S {
19917 template <class U> friend void f();
19919 template <class U> friend void f() {}
19921 we don't need to look any further. That's what the check for
19922 DECL_INITIAL is for. */
19923 || (TREE_CODE (decl) == FUNCTION_DECL
19924 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
19925 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
19927 /* The present template, TD, should not be a definition. If it
19928 were a definition, we should be using it! Note that we
19929 cannot restructure the loop to just keep going until we find
19930 a template with a definition, since that might go too far if
19931 a specialization was declared, but not defined. */
19933 /* Fetch the more general template. */
19934 tmpl = DECL_TI_TEMPLATE (tmpl);
19937 return tmpl;
19940 /* Returns true if we need to instantiate this template instance even if we
19941 know we aren't going to emit it.. */
19943 bool
19944 always_instantiate_p (tree decl)
19946 /* We always instantiate inline functions so that we can inline them. An
19947 explicit instantiation declaration prohibits implicit instantiation of
19948 non-inline functions. With high levels of optimization, we would
19949 normally inline non-inline functions -- but we're not allowed to do
19950 that for "extern template" functions. Therefore, we check
19951 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
19952 return ((TREE_CODE (decl) == FUNCTION_DECL
19953 && (DECL_DECLARED_INLINE_P (decl)
19954 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
19955 /* And we need to instantiate static data members so that
19956 their initializers are available in integral constant
19957 expressions. */
19958 || (VAR_P (decl)
19959 && decl_maybe_constant_var_p (decl)));
19962 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
19963 instantiate it now, modifying TREE_TYPE (fn). */
19965 void
19966 maybe_instantiate_noexcept (tree fn)
19968 tree fntype, spec, noex, clone;
19970 /* Don't instantiate a noexcept-specification from template context. */
19971 if (processing_template_decl)
19972 return;
19974 if (DECL_CLONED_FUNCTION_P (fn))
19975 fn = DECL_CLONED_FUNCTION (fn);
19976 fntype = TREE_TYPE (fn);
19977 spec = TYPE_RAISES_EXCEPTIONS (fntype);
19979 if (!spec || !TREE_PURPOSE (spec))
19980 return;
19982 noex = TREE_PURPOSE (spec);
19984 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
19986 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
19987 spec = get_defaulted_eh_spec (fn);
19988 else if (push_tinst_level (fn))
19990 push_access_scope (fn);
19991 push_deferring_access_checks (dk_no_deferred);
19992 input_location = DECL_SOURCE_LOCATION (fn);
19993 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
19994 DEFERRED_NOEXCEPT_ARGS (noex),
19995 tf_warning_or_error, fn,
19996 /*function_p=*/false,
19997 /*integral_constant_expression_p=*/true);
19998 pop_deferring_access_checks ();
19999 pop_access_scope (fn);
20000 pop_tinst_level ();
20001 spec = build_noexcept_spec (noex, tf_warning_or_error);
20002 if (spec == error_mark_node)
20003 spec = noexcept_false_spec;
20005 else
20006 spec = noexcept_false_spec;
20008 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
20011 FOR_EACH_CLONE (clone, fn)
20013 if (TREE_TYPE (clone) == fntype)
20014 TREE_TYPE (clone) = TREE_TYPE (fn);
20015 else
20016 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
20020 /* Produce the definition of D, a _DECL generated from a template. If
20021 DEFER_OK is nonzero, then we don't have to actually do the
20022 instantiation now; we just have to do it sometime. Normally it is
20023 an error if this is an explicit instantiation but D is undefined.
20024 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
20025 explicitly instantiated class template. */
20027 tree
20028 instantiate_decl (tree d, int defer_ok,
20029 bool expl_inst_class_mem_p)
20031 tree tmpl = DECL_TI_TEMPLATE (d);
20032 tree gen_args;
20033 tree args;
20034 tree td;
20035 tree code_pattern;
20036 tree spec;
20037 tree gen_tmpl;
20038 bool pattern_defined;
20039 location_t saved_loc = input_location;
20040 int saved_unevaluated_operand = cp_unevaluated_operand;
20041 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
20042 bool external_p;
20043 bool deleted_p;
20044 tree fn_context;
20045 bool nested;
20047 /* This function should only be used to instantiate templates for
20048 functions and static member variables. */
20049 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
20051 /* Variables are never deferred; if instantiation is required, they
20052 are instantiated right away. That allows for better code in the
20053 case that an expression refers to the value of the variable --
20054 if the variable has a constant value the referring expression can
20055 take advantage of that fact. */
20056 if (VAR_P (d)
20057 || DECL_DECLARED_CONSTEXPR_P (d))
20058 defer_ok = 0;
20060 /* Don't instantiate cloned functions. Instead, instantiate the
20061 functions they cloned. */
20062 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
20063 d = DECL_CLONED_FUNCTION (d);
20065 if (DECL_TEMPLATE_INSTANTIATED (d)
20066 || (TREE_CODE (d) == FUNCTION_DECL
20067 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
20068 || DECL_TEMPLATE_SPECIALIZATION (d))
20069 /* D has already been instantiated or explicitly specialized, so
20070 there's nothing for us to do here.
20072 It might seem reasonable to check whether or not D is an explicit
20073 instantiation, and, if so, stop here. But when an explicit
20074 instantiation is deferred until the end of the compilation,
20075 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
20076 the instantiation. */
20077 return d;
20079 /* Check to see whether we know that this template will be
20080 instantiated in some other file, as with "extern template"
20081 extension. */
20082 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
20084 /* In general, we do not instantiate such templates. */
20085 if (external_p && !always_instantiate_p (d))
20086 return d;
20088 gen_tmpl = most_general_template (tmpl);
20089 gen_args = DECL_TI_ARGS (d);
20091 if (tmpl != gen_tmpl)
20092 /* We should already have the extra args. */
20093 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
20094 == TMPL_ARGS_DEPTH (gen_args));
20095 /* And what's in the hash table should match D. */
20096 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
20097 || spec == NULL_TREE);
20099 /* This needs to happen before any tsubsting. */
20100 if (! push_tinst_level (d))
20101 return d;
20103 timevar_push (TV_TEMPLATE_INST);
20105 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
20106 for the instantiation. */
20107 td = template_for_substitution (d);
20108 code_pattern = DECL_TEMPLATE_RESULT (td);
20110 /* We should never be trying to instantiate a member of a class
20111 template or partial specialization. */
20112 gcc_assert (d != code_pattern);
20114 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
20115 || DECL_TEMPLATE_SPECIALIZATION (td))
20116 /* In the case of a friend template whose definition is provided
20117 outside the class, we may have too many arguments. Drop the
20118 ones we don't need. The same is true for specializations. */
20119 args = get_innermost_template_args
20120 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
20121 else
20122 args = gen_args;
20124 if (TREE_CODE (d) == FUNCTION_DECL)
20126 deleted_p = DECL_DELETED_FN (code_pattern);
20127 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
20128 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
20129 || deleted_p);
20131 else
20133 deleted_p = false;
20134 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
20137 /* We may be in the middle of deferred access check. Disable it now. */
20138 push_deferring_access_checks (dk_no_deferred);
20140 /* Unless an explicit instantiation directive has already determined
20141 the linkage of D, remember that a definition is available for
20142 this entity. */
20143 if (pattern_defined
20144 && !DECL_INTERFACE_KNOWN (d)
20145 && !DECL_NOT_REALLY_EXTERN (d))
20146 mark_definable (d);
20148 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
20149 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
20150 input_location = DECL_SOURCE_LOCATION (d);
20152 /* If D is a member of an explicitly instantiated class template,
20153 and no definition is available, treat it like an implicit
20154 instantiation. */
20155 if (!pattern_defined && expl_inst_class_mem_p
20156 && DECL_EXPLICIT_INSTANTIATION (d))
20158 /* Leave linkage flags alone on instantiations with anonymous
20159 visibility. */
20160 if (TREE_PUBLIC (d))
20162 DECL_NOT_REALLY_EXTERN (d) = 0;
20163 DECL_INTERFACE_KNOWN (d) = 0;
20165 SET_DECL_IMPLICIT_INSTANTIATION (d);
20168 /* Defer all other templates, unless we have been explicitly
20169 forbidden from doing so. */
20170 if (/* If there is no definition, we cannot instantiate the
20171 template. */
20172 ! pattern_defined
20173 /* If it's OK to postpone instantiation, do so. */
20174 || defer_ok
20175 /* If this is a static data member that will be defined
20176 elsewhere, we don't want to instantiate the entire data
20177 member, but we do want to instantiate the initializer so that
20178 we can substitute that elsewhere. */
20179 || (external_p && VAR_P (d))
20180 /* Handle here a deleted function too, avoid generating
20181 its body (c++/61080). */
20182 || deleted_p)
20184 /* The definition of the static data member is now required so
20185 we must substitute the initializer. */
20186 if (VAR_P (d)
20187 && !DECL_INITIAL (d)
20188 && DECL_INITIAL (code_pattern))
20190 tree ns;
20191 tree init;
20192 bool const_init = false;
20193 bool enter_context = DECL_CLASS_SCOPE_P (d);
20195 ns = decl_namespace_context (d);
20196 push_nested_namespace (ns);
20197 if (enter_context)
20198 push_nested_class (DECL_CONTEXT (d));
20199 init = tsubst_expr (DECL_INITIAL (code_pattern),
20200 args,
20201 tf_warning_or_error, NULL_TREE,
20202 /*integral_constant_expression_p=*/false);
20203 /* If instantiating the initializer involved instantiating this
20204 again, don't call cp_finish_decl twice. */
20205 if (!DECL_INITIAL (d))
20207 /* Make sure the initializer is still constant, in case of
20208 circular dependency (template/instantiate6.C). */
20209 const_init
20210 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20211 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
20212 /*asmspec_tree=*/NULL_TREE,
20213 LOOKUP_ONLYCONVERTING);
20215 if (enter_context)
20216 pop_nested_class ();
20217 pop_nested_namespace (ns);
20220 /* We restore the source position here because it's used by
20221 add_pending_template. */
20222 input_location = saved_loc;
20224 if (at_eof && !pattern_defined
20225 && DECL_EXPLICIT_INSTANTIATION (d)
20226 && DECL_NOT_REALLY_EXTERN (d))
20227 /* [temp.explicit]
20229 The definition of a non-exported function template, a
20230 non-exported member function template, or a non-exported
20231 member function or static data member of a class template
20232 shall be present in every translation unit in which it is
20233 explicitly instantiated. */
20234 permerror (input_location, "explicit instantiation of %qD "
20235 "but no definition available", d);
20237 /* If we're in unevaluated context, we just wanted to get the
20238 constant value; this isn't an odr use, so don't queue
20239 a full instantiation. */
20240 if (cp_unevaluated_operand != 0)
20241 goto out;
20242 /* ??? Historically, we have instantiated inline functions, even
20243 when marked as "extern template". */
20244 if (!(external_p && VAR_P (d)))
20245 add_pending_template (d);
20246 goto out;
20248 /* Tell the repository that D is available in this translation unit
20249 -- and see if it is supposed to be instantiated here. */
20250 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
20252 /* In a PCH file, despite the fact that the repository hasn't
20253 requested instantiation in the PCH it is still possible that
20254 an instantiation will be required in a file that includes the
20255 PCH. */
20256 if (pch_file)
20257 add_pending_template (d);
20258 /* Instantiate inline functions so that the inliner can do its
20259 job, even though we'll not be emitting a copy of this
20260 function. */
20261 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
20262 goto out;
20265 fn_context = decl_function_context (d);
20266 nested = (current_function_decl != NULL_TREE);
20267 if (!fn_context)
20268 push_to_top_level ();
20269 else
20271 if (nested)
20272 push_function_context ();
20273 cp_unevaluated_operand = 0;
20274 c_inhibit_evaluation_warnings = 0;
20277 /* Mark D as instantiated so that recursive calls to
20278 instantiate_decl do not try to instantiate it again. */
20279 DECL_TEMPLATE_INSTANTIATED (d) = 1;
20281 /* Regenerate the declaration in case the template has been modified
20282 by a subsequent redeclaration. */
20283 regenerate_decl_from_template (d, td);
20285 /* We already set the file and line above. Reset them now in case
20286 they changed as a result of calling regenerate_decl_from_template. */
20287 input_location = DECL_SOURCE_LOCATION (d);
20289 if (VAR_P (d))
20291 tree init;
20292 bool const_init = false;
20294 /* Clear out DECL_RTL; whatever was there before may not be right
20295 since we've reset the type of the declaration. */
20296 SET_DECL_RTL (d, NULL);
20297 DECL_IN_AGGR_P (d) = 0;
20299 /* The initializer is placed in DECL_INITIAL by
20300 regenerate_decl_from_template so we don't need to
20301 push/pop_access_scope again here. Pull it out so that
20302 cp_finish_decl can process it. */
20303 init = DECL_INITIAL (d);
20304 DECL_INITIAL (d) = NULL_TREE;
20305 DECL_INITIALIZED_P (d) = 0;
20307 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
20308 initializer. That function will defer actual emission until
20309 we have a chance to determine linkage. */
20310 DECL_EXTERNAL (d) = 0;
20312 /* Enter the scope of D so that access-checking works correctly. */
20313 bool enter_context = DECL_CLASS_SCOPE_P (d);
20314 if (enter_context)
20315 push_nested_class (DECL_CONTEXT (d));
20317 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
20318 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
20320 if (enter_context)
20321 pop_nested_class ();
20323 if (variable_template_p (td))
20324 note_variable_template_instantiation (d);
20326 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
20327 synthesize_method (d);
20328 else if (TREE_CODE (d) == FUNCTION_DECL)
20330 hash_map<tree, tree> *saved_local_specializations;
20331 tree subst_decl;
20332 tree tmpl_parm;
20333 tree spec_parm;
20334 tree block = NULL_TREE;
20336 /* Save away the current list, in case we are instantiating one
20337 template from within the body of another. */
20338 saved_local_specializations = local_specializations;
20340 /* Set up the list of local specializations. */
20341 local_specializations = new hash_map<tree, tree>;
20343 /* Set up context. */
20344 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20345 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20346 block = push_stmt_list ();
20347 else
20348 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
20350 /* Some typedefs referenced from within the template code need to be
20351 access checked at template instantiation time, i.e now. These
20352 types were added to the template at parsing time. Let's get those
20353 and perform the access checks then. */
20354 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
20355 gen_args);
20357 /* Create substitution entries for the parameters. */
20358 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
20359 tmpl_parm = DECL_ARGUMENTS (subst_decl);
20360 spec_parm = DECL_ARGUMENTS (d);
20361 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
20363 register_local_specialization (spec_parm, tmpl_parm);
20364 spec_parm = skip_artificial_parms_for (d, spec_parm);
20365 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
20367 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
20369 if (!DECL_PACK_P (tmpl_parm))
20371 register_local_specialization (spec_parm, tmpl_parm);
20372 spec_parm = DECL_CHAIN (spec_parm);
20374 else
20376 /* Register the (value) argument pack as a specialization of
20377 TMPL_PARM, then move on. */
20378 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
20379 register_local_specialization (argpack, tmpl_parm);
20382 gcc_assert (!spec_parm);
20384 /* Substitute into the body of the function. */
20385 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20386 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
20387 tf_warning_or_error, tmpl);
20388 else
20390 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
20391 tf_warning_or_error, tmpl,
20392 /*integral_constant_expression_p=*/false);
20394 /* Set the current input_location to the end of the function
20395 so that finish_function knows where we are. */
20396 input_location
20397 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
20399 /* Remember if we saw an infinite loop in the template. */
20400 current_function_infinite_loop
20401 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
20404 /* We don't need the local specializations any more. */
20405 delete local_specializations;
20406 local_specializations = saved_local_specializations;
20408 /* Finish the function. */
20409 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
20410 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
20411 DECL_SAVED_TREE (d) = pop_stmt_list (block);
20412 else
20414 d = finish_function (0);
20415 expand_or_defer_fn (d);
20418 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
20419 cp_check_omp_declare_reduction (d);
20422 /* We're not deferring instantiation any more. */
20423 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
20425 if (!fn_context)
20426 pop_from_top_level ();
20427 else if (nested)
20428 pop_function_context ();
20430 out:
20431 input_location = saved_loc;
20432 cp_unevaluated_operand = saved_unevaluated_operand;
20433 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
20434 pop_deferring_access_checks ();
20435 pop_tinst_level ();
20437 timevar_pop (TV_TEMPLATE_INST);
20439 return d;
20442 /* Run through the list of templates that we wish we could
20443 instantiate, and instantiate any we can. RETRIES is the
20444 number of times we retry pending template instantiation. */
20446 void
20447 instantiate_pending_templates (int retries)
20449 int reconsider;
20450 location_t saved_loc = input_location;
20452 /* Instantiating templates may trigger vtable generation. This in turn
20453 may require further template instantiations. We place a limit here
20454 to avoid infinite loop. */
20455 if (pending_templates && retries >= max_tinst_depth)
20457 tree decl = pending_templates->tinst->decl;
20459 fatal_error (input_location,
20460 "template instantiation depth exceeds maximum of %d"
20461 " instantiating %q+D, possibly from virtual table generation"
20462 " (use -ftemplate-depth= to increase the maximum)",
20463 max_tinst_depth, decl);
20464 if (TREE_CODE (decl) == FUNCTION_DECL)
20465 /* Pretend that we defined it. */
20466 DECL_INITIAL (decl) = error_mark_node;
20467 return;
20472 struct pending_template **t = &pending_templates;
20473 struct pending_template *last = NULL;
20474 reconsider = 0;
20475 while (*t)
20477 tree instantiation = reopen_tinst_level ((*t)->tinst);
20478 bool complete = false;
20480 if (TYPE_P (instantiation))
20482 tree fn;
20484 if (!COMPLETE_TYPE_P (instantiation))
20486 instantiate_class_template (instantiation);
20487 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
20488 for (fn = TYPE_METHODS (instantiation);
20490 fn = TREE_CHAIN (fn))
20491 if (! DECL_ARTIFICIAL (fn))
20492 instantiate_decl (fn,
20493 /*defer_ok=*/0,
20494 /*expl_inst_class_mem_p=*/false);
20495 if (COMPLETE_TYPE_P (instantiation))
20496 reconsider = 1;
20499 complete = COMPLETE_TYPE_P (instantiation);
20501 else
20503 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
20504 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
20506 instantiation
20507 = instantiate_decl (instantiation,
20508 /*defer_ok=*/0,
20509 /*expl_inst_class_mem_p=*/false);
20510 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
20511 reconsider = 1;
20514 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
20515 || DECL_TEMPLATE_INSTANTIATED (instantiation));
20518 if (complete)
20519 /* If INSTANTIATION has been instantiated, then we don't
20520 need to consider it again in the future. */
20521 *t = (*t)->next;
20522 else
20524 last = *t;
20525 t = &(*t)->next;
20527 tinst_depth = 0;
20528 current_tinst_level = NULL;
20530 last_pending_template = last;
20532 while (reconsider);
20534 input_location = saved_loc;
20537 /* Substitute ARGVEC into T, which is a list of initializers for
20538 either base class or a non-static data member. The TREE_PURPOSEs
20539 are DECLs, and the TREE_VALUEs are the initializer values. Used by
20540 instantiate_decl. */
20542 static tree
20543 tsubst_initializer_list (tree t, tree argvec)
20545 tree inits = NULL_TREE;
20547 for (; t; t = TREE_CHAIN (t))
20549 tree decl;
20550 tree init;
20551 tree expanded_bases = NULL_TREE;
20552 tree expanded_arguments = NULL_TREE;
20553 int i, len = 1;
20555 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
20557 tree expr;
20558 tree arg;
20560 /* Expand the base class expansion type into separate base
20561 classes. */
20562 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
20563 tf_warning_or_error,
20564 NULL_TREE);
20565 if (expanded_bases == error_mark_node)
20566 continue;
20568 /* We'll be building separate TREE_LISTs of arguments for
20569 each base. */
20570 len = TREE_VEC_LENGTH (expanded_bases);
20571 expanded_arguments = make_tree_vec (len);
20572 for (i = 0; i < len; i++)
20573 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
20575 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
20576 expand each argument in the TREE_VALUE of t. */
20577 expr = make_node (EXPR_PACK_EXPANSION);
20578 PACK_EXPANSION_LOCAL_P (expr) = true;
20579 PACK_EXPANSION_PARAMETER_PACKS (expr) =
20580 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
20582 if (TREE_VALUE (t) == void_type_node)
20583 /* VOID_TYPE_NODE is used to indicate
20584 value-initialization. */
20586 for (i = 0; i < len; i++)
20587 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
20589 else
20591 /* Substitute parameter packs into each argument in the
20592 TREE_LIST. */
20593 in_base_initializer = 1;
20594 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
20596 tree expanded_exprs;
20598 /* Expand the argument. */
20599 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
20600 expanded_exprs
20601 = tsubst_pack_expansion (expr, argvec,
20602 tf_warning_or_error,
20603 NULL_TREE);
20604 if (expanded_exprs == error_mark_node)
20605 continue;
20607 /* Prepend each of the expanded expressions to the
20608 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
20609 for (i = 0; i < len; i++)
20611 TREE_VEC_ELT (expanded_arguments, i) =
20612 tree_cons (NULL_TREE,
20613 TREE_VEC_ELT (expanded_exprs, i),
20614 TREE_VEC_ELT (expanded_arguments, i));
20617 in_base_initializer = 0;
20619 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
20620 since we built them backwards. */
20621 for (i = 0; i < len; i++)
20623 TREE_VEC_ELT (expanded_arguments, i) =
20624 nreverse (TREE_VEC_ELT (expanded_arguments, i));
20629 for (i = 0; i < len; ++i)
20631 if (expanded_bases)
20633 decl = TREE_VEC_ELT (expanded_bases, i);
20634 decl = expand_member_init (decl);
20635 init = TREE_VEC_ELT (expanded_arguments, i);
20637 else
20639 tree tmp;
20640 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
20641 tf_warning_or_error, NULL_TREE);
20643 decl = expand_member_init (decl);
20644 if (decl && !DECL_P (decl))
20645 in_base_initializer = 1;
20647 init = TREE_VALUE (t);
20648 tmp = init;
20649 if (init != void_type_node)
20650 init = tsubst_expr (init, argvec,
20651 tf_warning_or_error, NULL_TREE,
20652 /*integral_constant_expression_p=*/false);
20653 if (init == NULL_TREE && tmp != NULL_TREE)
20654 /* If we had an initializer but it instantiated to nothing,
20655 value-initialize the object. This will only occur when
20656 the initializer was a pack expansion where the parameter
20657 packs used in that expansion were of length zero. */
20658 init = void_type_node;
20659 in_base_initializer = 0;
20662 if (decl)
20664 init = build_tree_list (decl, init);
20665 TREE_CHAIN (init) = inits;
20666 inits = init;
20670 return inits;
20673 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
20675 static void
20676 set_current_access_from_decl (tree decl)
20678 if (TREE_PRIVATE (decl))
20679 current_access_specifier = access_private_node;
20680 else if (TREE_PROTECTED (decl))
20681 current_access_specifier = access_protected_node;
20682 else
20683 current_access_specifier = access_public_node;
20686 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
20687 is the instantiation (which should have been created with
20688 start_enum) and ARGS are the template arguments to use. */
20690 static void
20691 tsubst_enum (tree tag, tree newtag, tree args)
20693 tree e;
20695 if (SCOPED_ENUM_P (newtag))
20696 begin_scope (sk_scoped_enum, newtag);
20698 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
20700 tree value;
20701 tree decl;
20703 decl = TREE_VALUE (e);
20704 /* Note that in a template enum, the TREE_VALUE is the
20705 CONST_DECL, not the corresponding INTEGER_CST. */
20706 value = tsubst_expr (DECL_INITIAL (decl),
20707 args, tf_warning_or_error, NULL_TREE,
20708 /*integral_constant_expression_p=*/true);
20710 /* Give this enumeration constant the correct access. */
20711 set_current_access_from_decl (decl);
20713 /* Actually build the enumerator itself. */
20714 build_enumerator
20715 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
20718 if (SCOPED_ENUM_P (newtag))
20719 finish_scope ();
20721 finish_enum_value_list (newtag);
20722 finish_enum (newtag);
20724 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
20725 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
20728 /* DECL is a FUNCTION_DECL that is a template specialization. Return
20729 its type -- but without substituting the innermost set of template
20730 arguments. So, innermost set of template parameters will appear in
20731 the type. */
20733 tree
20734 get_mostly_instantiated_function_type (tree decl)
20736 tree fn_type;
20737 tree tmpl;
20738 tree targs;
20739 tree tparms;
20740 int parm_depth;
20742 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
20743 targs = DECL_TI_ARGS (decl);
20744 tparms = DECL_TEMPLATE_PARMS (tmpl);
20745 parm_depth = TMPL_PARMS_DEPTH (tparms);
20747 /* There should be as many levels of arguments as there are levels
20748 of parameters. */
20749 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
20751 fn_type = TREE_TYPE (tmpl);
20753 if (parm_depth == 1)
20754 /* No substitution is necessary. */
20756 else
20758 int i;
20759 tree partial_args;
20761 /* Replace the innermost level of the TARGS with NULL_TREEs to
20762 let tsubst know not to substitute for those parameters. */
20763 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
20764 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
20765 SET_TMPL_ARGS_LEVEL (partial_args, i,
20766 TMPL_ARGS_LEVEL (targs, i));
20767 SET_TMPL_ARGS_LEVEL (partial_args,
20768 TMPL_ARGS_DEPTH (targs),
20769 make_tree_vec (DECL_NTPARMS (tmpl)));
20771 /* Make sure that we can see identifiers, and compute access
20772 correctly. */
20773 push_access_scope (decl);
20775 ++processing_template_decl;
20776 /* Now, do the (partial) substitution to figure out the
20777 appropriate function type. */
20778 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
20779 --processing_template_decl;
20781 /* Substitute into the template parameters to obtain the real
20782 innermost set of parameters. This step is important if the
20783 innermost set of template parameters contains value
20784 parameters whose types depend on outer template parameters. */
20785 TREE_VEC_LENGTH (partial_args)--;
20786 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
20788 pop_access_scope (decl);
20791 return fn_type;
20794 /* Return truthvalue if we're processing a template different from
20795 the last one involved in diagnostics. */
20796 bool
20797 problematic_instantiation_changed (void)
20799 return current_tinst_level != last_error_tinst_level;
20802 /* Remember current template involved in diagnostics. */
20803 void
20804 record_last_problematic_instantiation (void)
20806 last_error_tinst_level = current_tinst_level;
20809 struct tinst_level *
20810 current_instantiation (void)
20812 return current_tinst_level;
20815 /* [temp.param] Check that template non-type parm TYPE is of an allowable
20816 type. Return zero for ok, nonzero for disallowed. Issue error and
20817 warning messages under control of COMPLAIN. */
20819 static int
20820 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
20822 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
20823 return 0;
20824 else if (POINTER_TYPE_P (type))
20825 return 0;
20826 else if (TYPE_PTRMEM_P (type))
20827 return 0;
20828 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
20829 return 0;
20830 else if (TREE_CODE (type) == TYPENAME_TYPE)
20831 return 0;
20832 else if (TREE_CODE (type) == DECLTYPE_TYPE)
20833 return 0;
20834 else if (TREE_CODE (type) == NULLPTR_TYPE)
20835 return 0;
20837 if (complain & tf_error)
20839 if (type == error_mark_node)
20840 inform (input_location, "invalid template non-type parameter");
20841 else
20842 error ("%q#T is not a valid type for a template non-type parameter",
20843 type);
20845 return 1;
20848 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
20849 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
20851 static bool
20852 dependent_type_p_r (tree type)
20854 tree scope;
20856 /* [temp.dep.type]
20858 A type is dependent if it is:
20860 -- a template parameter. Template template parameters are types
20861 for us (since TYPE_P holds true for them) so we handle
20862 them here. */
20863 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20864 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
20865 return true;
20866 /* -- a qualified-id with a nested-name-specifier which contains a
20867 class-name that names a dependent type or whose unqualified-id
20868 names a dependent type. */
20869 if (TREE_CODE (type) == TYPENAME_TYPE)
20870 return true;
20871 /* -- a cv-qualified type where the cv-unqualified type is
20872 dependent.
20873 No code is necessary for this bullet; the code below handles
20874 cv-qualified types, and we don't want to strip aliases with
20875 TYPE_MAIN_VARIANT because of DR 1558. */
20876 /* -- a compound type constructed from any dependent type. */
20877 if (TYPE_PTRMEM_P (type))
20878 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
20879 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
20880 (type)));
20881 else if (TYPE_PTR_P (type)
20882 || TREE_CODE (type) == REFERENCE_TYPE)
20883 return dependent_type_p (TREE_TYPE (type));
20884 else if (TREE_CODE (type) == FUNCTION_TYPE
20885 || TREE_CODE (type) == METHOD_TYPE)
20887 tree arg_type;
20889 if (dependent_type_p (TREE_TYPE (type)))
20890 return true;
20891 for (arg_type = TYPE_ARG_TYPES (type);
20892 arg_type;
20893 arg_type = TREE_CHAIN (arg_type))
20894 if (dependent_type_p (TREE_VALUE (arg_type)))
20895 return true;
20896 return false;
20898 /* -- an array type constructed from any dependent type or whose
20899 size is specified by a constant expression that is
20900 value-dependent.
20902 We checked for type- and value-dependence of the bounds in
20903 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
20904 if (TREE_CODE (type) == ARRAY_TYPE)
20906 if (TYPE_DOMAIN (type)
20907 && dependent_type_p (TYPE_DOMAIN (type)))
20908 return true;
20909 return dependent_type_p (TREE_TYPE (type));
20912 /* -- a template-id in which either the template name is a template
20913 parameter ... */
20914 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
20915 return true;
20916 /* ... or any of the template arguments is a dependent type or
20917 an expression that is type-dependent or value-dependent. */
20918 else if (TYPE_TEMPLATE_INFO (type)
20919 && (any_dependent_template_arguments_p
20920 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (type)))))
20921 return true;
20923 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
20924 dependent; if the argument of the `typeof' expression is not
20925 type-dependent, then it should already been have resolved. */
20926 if (TREE_CODE (type) == TYPEOF_TYPE
20927 || TREE_CODE (type) == DECLTYPE_TYPE
20928 || TREE_CODE (type) == UNDERLYING_TYPE)
20929 return true;
20931 /* A template argument pack is dependent if any of its packed
20932 arguments are. */
20933 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
20935 tree args = ARGUMENT_PACK_ARGS (type);
20936 int i, len = TREE_VEC_LENGTH (args);
20937 for (i = 0; i < len; ++i)
20938 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
20939 return true;
20942 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
20943 be template parameters. */
20944 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
20945 return true;
20947 /* The standard does not specifically mention types that are local
20948 to template functions or local classes, but they should be
20949 considered dependent too. For example:
20951 template <int I> void f() {
20952 enum E { a = I };
20953 S<sizeof (E)> s;
20956 The size of `E' cannot be known until the value of `I' has been
20957 determined. Therefore, `E' must be considered dependent. */
20958 scope = TYPE_CONTEXT (type);
20959 if (scope && TYPE_P (scope))
20960 return dependent_type_p (scope);
20961 /* Don't use type_dependent_expression_p here, as it can lead
20962 to infinite recursion trying to determine whether a lambda
20963 nested in a lambda is dependent (c++/47687). */
20964 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
20965 && DECL_LANG_SPECIFIC (scope)
20966 && DECL_TEMPLATE_INFO (scope)
20967 && (any_dependent_template_arguments_p
20968 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
20969 return true;
20971 /* Other types are non-dependent. */
20972 return false;
20975 /* Returns TRUE if TYPE is dependent, in the sense of
20976 [temp.dep.type]. Note that a NULL type is considered dependent. */
20978 bool
20979 dependent_type_p (tree type)
20981 /* If there are no template parameters in scope, then there can't be
20982 any dependent types. */
20983 if (!processing_template_decl)
20985 /* If we are not processing a template, then nobody should be
20986 providing us with a dependent type. */
20987 gcc_assert (type);
20988 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
20989 return false;
20992 /* If the type is NULL, we have not computed a type for the entity
20993 in question; in that case, the type is dependent. */
20994 if (!type)
20995 return true;
20997 /* Erroneous types can be considered non-dependent. */
20998 if (type == error_mark_node)
20999 return false;
21001 /* If we have not already computed the appropriate value for TYPE,
21002 do so now. */
21003 if (!TYPE_DEPENDENT_P_VALID (type))
21005 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
21006 TYPE_DEPENDENT_P_VALID (type) = 1;
21009 return TYPE_DEPENDENT_P (type);
21012 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
21013 lookup. In other words, a dependent type that is not the current
21014 instantiation. */
21016 bool
21017 dependent_scope_p (tree scope)
21019 return (scope && TYPE_P (scope) && dependent_type_p (scope)
21020 && !currently_open_class (scope));
21023 /* T is a SCOPE_REF; return whether we need to consider it
21024 instantiation-dependent so that we can check access at instantiation
21025 time even though we know which member it resolves to. */
21027 static bool
21028 instantiation_dependent_scope_ref_p (tree t)
21030 if (DECL_P (TREE_OPERAND (t, 1))
21031 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
21032 && accessible_in_template_p (TREE_OPERAND (t, 0),
21033 TREE_OPERAND (t, 1)))
21034 return false;
21035 else
21036 return true;
21039 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
21040 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
21041 expression. */
21043 /* Note that this predicate is not appropriate for general expressions;
21044 only constant expressions (that satisfy potential_constant_expression)
21045 can be tested for value dependence. */
21047 bool
21048 value_dependent_expression_p (tree expression)
21050 if (!processing_template_decl)
21051 return false;
21053 /* A name declared with a dependent type. */
21054 if (DECL_P (expression) && type_dependent_expression_p (expression))
21055 return true;
21057 switch (TREE_CODE (expression))
21059 case IDENTIFIER_NODE:
21060 /* A name that has not been looked up -- must be dependent. */
21061 return true;
21063 case TEMPLATE_PARM_INDEX:
21064 /* A non-type template parm. */
21065 return true;
21067 case CONST_DECL:
21068 /* A non-type template parm. */
21069 if (DECL_TEMPLATE_PARM_P (expression))
21070 return true;
21071 return value_dependent_expression_p (DECL_INITIAL (expression));
21073 case VAR_DECL:
21074 /* A constant with literal type and is initialized
21075 with an expression that is value-dependent.
21077 Note that a non-dependent parenthesized initializer will have
21078 already been replaced with its constant value, so if we see
21079 a TREE_LIST it must be dependent. */
21080 if (DECL_INITIAL (expression)
21081 && decl_constant_var_p (expression)
21082 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
21083 /* cp_finish_decl doesn't fold reference initializers. */
21084 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
21085 || value_dependent_expression_p (DECL_INITIAL (expression))))
21086 return true;
21087 return false;
21089 case DYNAMIC_CAST_EXPR:
21090 case STATIC_CAST_EXPR:
21091 case CONST_CAST_EXPR:
21092 case REINTERPRET_CAST_EXPR:
21093 case CAST_EXPR:
21094 /* These expressions are value-dependent if the type to which
21095 the cast occurs is dependent or the expression being casted
21096 is value-dependent. */
21098 tree type = TREE_TYPE (expression);
21100 if (dependent_type_p (type))
21101 return true;
21103 /* A functional cast has a list of operands. */
21104 expression = TREE_OPERAND (expression, 0);
21105 if (!expression)
21107 /* If there are no operands, it must be an expression such
21108 as "int()". This should not happen for aggregate types
21109 because it would form non-constant expressions. */
21110 gcc_assert (cxx_dialect >= cxx11
21111 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
21113 return false;
21116 if (TREE_CODE (expression) == TREE_LIST)
21117 return any_value_dependent_elements_p (expression);
21119 return value_dependent_expression_p (expression);
21122 case SIZEOF_EXPR:
21123 if (SIZEOF_EXPR_TYPE_P (expression))
21124 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
21125 /* FALLTHRU */
21126 case ALIGNOF_EXPR:
21127 case TYPEID_EXPR:
21128 /* A `sizeof' expression is value-dependent if the operand is
21129 type-dependent or is a pack expansion. */
21130 expression = TREE_OPERAND (expression, 0);
21131 if (PACK_EXPANSION_P (expression))
21132 return true;
21133 else if (TYPE_P (expression))
21134 return dependent_type_p (expression);
21135 return instantiation_dependent_expression_p (expression);
21137 case AT_ENCODE_EXPR:
21138 /* An 'encode' expression is value-dependent if the operand is
21139 type-dependent. */
21140 expression = TREE_OPERAND (expression, 0);
21141 return dependent_type_p (expression);
21143 case NOEXCEPT_EXPR:
21144 expression = TREE_OPERAND (expression, 0);
21145 return instantiation_dependent_expression_p (expression);
21147 case SCOPE_REF:
21148 /* All instantiation-dependent expressions should also be considered
21149 value-dependent. */
21150 return instantiation_dependent_scope_ref_p (expression);
21152 case COMPONENT_REF:
21153 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
21154 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
21156 case NONTYPE_ARGUMENT_PACK:
21157 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
21158 is value-dependent. */
21160 tree values = ARGUMENT_PACK_ARGS (expression);
21161 int i, len = TREE_VEC_LENGTH (values);
21163 for (i = 0; i < len; ++i)
21164 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
21165 return true;
21167 return false;
21170 case TRAIT_EXPR:
21172 tree type2 = TRAIT_EXPR_TYPE2 (expression);
21173 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
21174 || (type2 ? dependent_type_p (type2) : false));
21177 case MODOP_EXPR:
21178 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21179 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
21181 case ARRAY_REF:
21182 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
21183 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
21185 case ADDR_EXPR:
21187 tree op = TREE_OPERAND (expression, 0);
21188 return (value_dependent_expression_p (op)
21189 || has_value_dependent_address (op));
21192 case CALL_EXPR:
21194 tree fn = get_callee_fndecl (expression);
21195 int i, nargs;
21196 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
21197 return true;
21198 nargs = call_expr_nargs (expression);
21199 for (i = 0; i < nargs; ++i)
21201 tree op = CALL_EXPR_ARG (expression, i);
21202 /* In a call to a constexpr member function, look through the
21203 implicit ADDR_EXPR on the object argument so that it doesn't
21204 cause the call to be considered value-dependent. We also
21205 look through it in potential_constant_expression. */
21206 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
21207 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
21208 && TREE_CODE (op) == ADDR_EXPR)
21209 op = TREE_OPERAND (op, 0);
21210 if (value_dependent_expression_p (op))
21211 return true;
21213 return false;
21216 case TEMPLATE_ID_EXPR:
21217 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
21218 type-dependent. */
21219 return type_dependent_expression_p (expression);
21221 case CONSTRUCTOR:
21223 unsigned ix;
21224 tree val;
21225 if (dependent_type_p (TREE_TYPE (expression)))
21226 return true;
21227 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
21228 if (value_dependent_expression_p (val))
21229 return true;
21230 return false;
21233 case STMT_EXPR:
21234 /* Treat a GNU statement expression as dependent to avoid crashing
21235 under instantiate_non_dependent_expr; it can't be constant. */
21236 return true;
21238 default:
21239 /* A constant expression is value-dependent if any subexpression is
21240 value-dependent. */
21241 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
21243 case tcc_reference:
21244 case tcc_unary:
21245 case tcc_comparison:
21246 case tcc_binary:
21247 case tcc_expression:
21248 case tcc_vl_exp:
21250 int i, len = cp_tree_operand_length (expression);
21252 for (i = 0; i < len; i++)
21254 tree t = TREE_OPERAND (expression, i);
21256 /* In some cases, some of the operands may be missing.l
21257 (For example, in the case of PREDECREMENT_EXPR, the
21258 amount to increment by may be missing.) That doesn't
21259 make the expression dependent. */
21260 if (t && value_dependent_expression_p (t))
21261 return true;
21264 break;
21265 default:
21266 break;
21268 break;
21271 /* The expression is not value-dependent. */
21272 return false;
21275 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
21276 [temp.dep.expr]. Note that an expression with no type is
21277 considered dependent. Other parts of the compiler arrange for an
21278 expression with type-dependent subexpressions to have no type, so
21279 this function doesn't have to be fully recursive. */
21281 bool
21282 type_dependent_expression_p (tree expression)
21284 if (!processing_template_decl)
21285 return false;
21287 if (expression == NULL_TREE || expression == error_mark_node)
21288 return false;
21290 /* An unresolved name is always dependent. */
21291 if (identifier_p (expression) || TREE_CODE (expression) == USING_DECL)
21292 return true;
21294 /* Some expression forms are never type-dependent. */
21295 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
21296 || TREE_CODE (expression) == SIZEOF_EXPR
21297 || TREE_CODE (expression) == ALIGNOF_EXPR
21298 || TREE_CODE (expression) == AT_ENCODE_EXPR
21299 || TREE_CODE (expression) == NOEXCEPT_EXPR
21300 || TREE_CODE (expression) == TRAIT_EXPR
21301 || TREE_CODE (expression) == TYPEID_EXPR
21302 || TREE_CODE (expression) == DELETE_EXPR
21303 || TREE_CODE (expression) == VEC_DELETE_EXPR
21304 || TREE_CODE (expression) == THROW_EXPR)
21305 return false;
21307 /* The types of these expressions depends only on the type to which
21308 the cast occurs. */
21309 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
21310 || TREE_CODE (expression) == STATIC_CAST_EXPR
21311 || TREE_CODE (expression) == CONST_CAST_EXPR
21312 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
21313 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
21314 || TREE_CODE (expression) == CAST_EXPR)
21315 return dependent_type_p (TREE_TYPE (expression));
21317 /* The types of these expressions depends only on the type created
21318 by the expression. */
21319 if (TREE_CODE (expression) == NEW_EXPR
21320 || TREE_CODE (expression) == VEC_NEW_EXPR)
21322 /* For NEW_EXPR tree nodes created inside a template, either
21323 the object type itself or a TREE_LIST may appear as the
21324 operand 1. */
21325 tree type = TREE_OPERAND (expression, 1);
21326 if (TREE_CODE (type) == TREE_LIST)
21327 /* This is an array type. We need to check array dimensions
21328 as well. */
21329 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
21330 || value_dependent_expression_p
21331 (TREE_OPERAND (TREE_VALUE (type), 1));
21332 else
21333 return dependent_type_p (type);
21336 if (TREE_CODE (expression) == SCOPE_REF)
21338 tree scope = TREE_OPERAND (expression, 0);
21339 tree name = TREE_OPERAND (expression, 1);
21341 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
21342 contains an identifier associated by name lookup with one or more
21343 declarations declared with a dependent type, or...a
21344 nested-name-specifier or qualified-id that names a member of an
21345 unknown specialization. */
21346 return (type_dependent_expression_p (name)
21347 || dependent_scope_p (scope));
21350 if (TREE_CODE (expression) == FUNCTION_DECL
21351 && DECL_LANG_SPECIFIC (expression)
21352 && DECL_TEMPLATE_INFO (expression)
21353 && (any_dependent_template_arguments_p
21354 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
21355 return true;
21357 if (TREE_CODE (expression) == TEMPLATE_DECL
21358 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
21359 return false;
21361 if (TREE_CODE (expression) == STMT_EXPR)
21362 expression = stmt_expr_value_expr (expression);
21364 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
21366 tree elt;
21367 unsigned i;
21369 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
21371 if (type_dependent_expression_p (elt))
21372 return true;
21374 return false;
21377 /* A static data member of the current instantiation with incomplete
21378 array type is type-dependent, as the definition and specializations
21379 can have different bounds. */
21380 if (VAR_P (expression)
21381 && DECL_CLASS_SCOPE_P (expression)
21382 && dependent_type_p (DECL_CONTEXT (expression))
21383 && VAR_HAD_UNKNOWN_BOUND (expression))
21384 return true;
21386 /* An array of unknown bound depending on a variadic parameter, eg:
21388 template<typename... Args>
21389 void foo (Args... args)
21391 int arr[] = { args... };
21394 template<int... vals>
21395 void bar ()
21397 int arr[] = { vals... };
21400 If the array has no length and has an initializer, it must be that
21401 we couldn't determine its length in cp_complete_array_type because
21402 it is dependent. */
21403 if (VAR_P (expression)
21404 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
21405 && !TYPE_DOMAIN (TREE_TYPE (expression))
21406 && DECL_INITIAL (expression))
21407 return true;
21409 /* A variable template specialization is type-dependent if it has any
21410 dependent template arguments. */
21411 if (VAR_P (expression)
21412 && DECL_LANG_SPECIFIC (expression)
21413 && DECL_TEMPLATE_INFO (expression)
21414 && variable_template_p (DECL_TI_TEMPLATE (expression)))
21415 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
21417 if (TREE_TYPE (expression) == unknown_type_node)
21419 if (TREE_CODE (expression) == ADDR_EXPR)
21420 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
21421 if (TREE_CODE (expression) == COMPONENT_REF
21422 || TREE_CODE (expression) == OFFSET_REF)
21424 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
21425 return true;
21426 expression = TREE_OPERAND (expression, 1);
21427 if (identifier_p (expression))
21428 return false;
21430 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
21431 if (TREE_CODE (expression) == SCOPE_REF)
21432 return false;
21434 /* Always dependent, on the number of arguments if nothing else. */
21435 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
21436 return true;
21438 if (BASELINK_P (expression))
21440 if (BASELINK_OPTYPE (expression)
21441 && dependent_type_p (BASELINK_OPTYPE (expression)))
21442 return true;
21443 expression = BASELINK_FUNCTIONS (expression);
21446 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
21448 if (any_dependent_template_arguments_p
21449 (TREE_OPERAND (expression, 1)))
21450 return true;
21451 expression = TREE_OPERAND (expression, 0);
21453 gcc_assert (TREE_CODE (expression) == OVERLOAD
21454 || TREE_CODE (expression) == FUNCTION_DECL);
21456 while (expression)
21458 if (type_dependent_expression_p (OVL_CURRENT (expression)))
21459 return true;
21460 expression = OVL_NEXT (expression);
21462 return false;
21465 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
21467 return (dependent_type_p (TREE_TYPE (expression)));
21470 /* walk_tree callback function for instantiation_dependent_expression_p,
21471 below. Returns non-zero if a dependent subexpression is found. */
21473 static tree
21474 instantiation_dependent_r (tree *tp, int *walk_subtrees,
21475 void * /*data*/)
21477 if (TYPE_P (*tp))
21479 /* We don't have to worry about decltype currently because decltype
21480 of an instantiation-dependent expr is a dependent type. This
21481 might change depending on the resolution of DR 1172. */
21482 *walk_subtrees = false;
21483 return NULL_TREE;
21485 enum tree_code code = TREE_CODE (*tp);
21486 switch (code)
21488 /* Don't treat an argument list as dependent just because it has no
21489 TREE_TYPE. */
21490 case TREE_LIST:
21491 case TREE_VEC:
21492 return NULL_TREE;
21494 case VAR_DECL:
21495 case CONST_DECL:
21496 /* A constant with a dependent initializer is dependent. */
21497 if (value_dependent_expression_p (*tp))
21498 return *tp;
21499 break;
21501 case TEMPLATE_PARM_INDEX:
21502 return *tp;
21504 /* Handle expressions with type operands. */
21505 case SIZEOF_EXPR:
21506 case ALIGNOF_EXPR:
21507 case TYPEID_EXPR:
21508 case AT_ENCODE_EXPR:
21510 tree op = TREE_OPERAND (*tp, 0);
21511 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
21512 op = TREE_TYPE (op);
21513 if (TYPE_P (op))
21515 if (dependent_type_p (op))
21516 return *tp;
21517 else
21519 *walk_subtrees = false;
21520 return NULL_TREE;
21523 break;
21526 case TRAIT_EXPR:
21527 if (dependent_type_p (TRAIT_EXPR_TYPE1 (*tp))
21528 || (TRAIT_EXPR_TYPE2 (*tp)
21529 && dependent_type_p (TRAIT_EXPR_TYPE2 (*tp))))
21530 return *tp;
21531 *walk_subtrees = false;
21532 return NULL_TREE;
21534 case COMPONENT_REF:
21535 if (identifier_p (TREE_OPERAND (*tp, 1)))
21536 /* In a template, finish_class_member_access_expr creates a
21537 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
21538 type-dependent, so that we can check access control at
21539 instantiation time (PR 42277). See also Core issue 1273. */
21540 return *tp;
21541 break;
21543 case SCOPE_REF:
21544 if (instantiation_dependent_scope_ref_p (*tp))
21545 return *tp;
21546 else
21547 break;
21549 /* Treat statement-expressions as dependent. */
21550 case BIND_EXPR:
21551 return *tp;
21553 default:
21554 break;
21557 if (type_dependent_expression_p (*tp))
21558 return *tp;
21559 else
21560 return NULL_TREE;
21563 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
21564 sense defined by the ABI:
21566 "An expression is instantiation-dependent if it is type-dependent
21567 or value-dependent, or it has a subexpression that is type-dependent
21568 or value-dependent." */
21570 bool
21571 instantiation_dependent_expression_p (tree expression)
21573 tree result;
21575 if (!processing_template_decl)
21576 return false;
21578 if (expression == error_mark_node)
21579 return false;
21581 result = cp_walk_tree_without_duplicates (&expression,
21582 instantiation_dependent_r, NULL);
21583 return result != NULL_TREE;
21586 /* Like type_dependent_expression_p, but it also works while not processing
21587 a template definition, i.e. during substitution or mangling. */
21589 bool
21590 type_dependent_expression_p_push (tree expr)
21592 bool b;
21593 ++processing_template_decl;
21594 b = type_dependent_expression_p (expr);
21595 --processing_template_decl;
21596 return b;
21599 /* Returns TRUE if ARGS contains a type-dependent expression. */
21601 bool
21602 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
21604 unsigned int i;
21605 tree arg;
21607 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
21609 if (type_dependent_expression_p (arg))
21610 return true;
21612 return false;
21615 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21616 expressions) contains any type-dependent expressions. */
21618 bool
21619 any_type_dependent_elements_p (const_tree list)
21621 for (; list; list = TREE_CHAIN (list))
21622 if (type_dependent_expression_p (TREE_VALUE (list)))
21623 return true;
21625 return false;
21628 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21629 expressions) contains any value-dependent expressions. */
21631 bool
21632 any_value_dependent_elements_p (const_tree list)
21634 for (; list; list = TREE_CHAIN (list))
21635 if (value_dependent_expression_p (TREE_VALUE (list)))
21636 return true;
21638 return false;
21641 /* Returns TRUE if the ARG (a template argument) is dependent. */
21643 bool
21644 dependent_template_arg_p (tree arg)
21646 if (!processing_template_decl)
21647 return false;
21649 /* Assume a template argument that was wrongly written by the user
21650 is dependent. This is consistent with what
21651 any_dependent_template_arguments_p [that calls this function]
21652 does. */
21653 if (!arg || arg == error_mark_node)
21654 return true;
21656 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
21657 arg = ARGUMENT_PACK_SELECT_ARG (arg);
21659 if (TREE_CODE (arg) == TEMPLATE_DECL
21660 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
21661 return dependent_template_p (arg);
21662 else if (ARGUMENT_PACK_P (arg))
21664 tree args = ARGUMENT_PACK_ARGS (arg);
21665 int i, len = TREE_VEC_LENGTH (args);
21666 for (i = 0; i < len; ++i)
21668 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21669 return true;
21672 return false;
21674 else if (TYPE_P (arg))
21675 return dependent_type_p (arg);
21676 else
21677 return (type_dependent_expression_p (arg)
21678 || value_dependent_expression_p (arg));
21681 /* Returns true if ARGS (a collection of template arguments) contains
21682 any types that require structural equality testing. */
21684 bool
21685 any_template_arguments_need_structural_equality_p (tree args)
21687 int i;
21688 int j;
21690 if (!args)
21691 return false;
21692 if (args == error_mark_node)
21693 return true;
21695 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21697 tree level = TMPL_ARGS_LEVEL (args, i + 1);
21698 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21700 tree arg = TREE_VEC_ELT (level, j);
21701 tree packed_args = NULL_TREE;
21702 int k, len = 1;
21704 if (ARGUMENT_PACK_P (arg))
21706 /* Look inside the argument pack. */
21707 packed_args = ARGUMENT_PACK_ARGS (arg);
21708 len = TREE_VEC_LENGTH (packed_args);
21711 for (k = 0; k < len; ++k)
21713 if (packed_args)
21714 arg = TREE_VEC_ELT (packed_args, k);
21716 if (error_operand_p (arg))
21717 return true;
21718 else if (TREE_CODE (arg) == TEMPLATE_DECL)
21719 continue;
21720 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
21721 return true;
21722 else if (!TYPE_P (arg) && TREE_TYPE (arg)
21723 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
21724 return true;
21729 return false;
21732 /* Returns true if ARGS (a collection of template arguments) contains
21733 any dependent arguments. */
21735 bool
21736 any_dependent_template_arguments_p (const_tree args)
21738 int i;
21739 int j;
21741 if (!args)
21742 return false;
21743 if (args == error_mark_node)
21744 return true;
21746 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21748 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
21749 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21750 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
21751 return true;
21754 return false;
21757 /* Returns TRUE if the template TMPL is dependent. */
21759 bool
21760 dependent_template_p (tree tmpl)
21762 if (TREE_CODE (tmpl) == OVERLOAD)
21764 while (tmpl)
21766 if (dependent_template_p (OVL_CURRENT (tmpl)))
21767 return true;
21768 tmpl = OVL_NEXT (tmpl);
21770 return false;
21773 /* Template template parameters are dependent. */
21774 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
21775 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
21776 return true;
21777 /* So are names that have not been looked up. */
21778 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
21779 return true;
21780 /* So are member templates of dependent classes. */
21781 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
21782 return dependent_type_p (DECL_CONTEXT (tmpl));
21783 return false;
21786 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
21788 bool
21789 dependent_template_id_p (tree tmpl, tree args)
21791 return (dependent_template_p (tmpl)
21792 || any_dependent_template_arguments_p (args));
21795 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
21796 is dependent. */
21798 bool
21799 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
21801 int i;
21803 if (!processing_template_decl)
21804 return false;
21806 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
21808 tree decl = TREE_VEC_ELT (declv, i);
21809 tree init = TREE_VEC_ELT (initv, i);
21810 tree cond = TREE_VEC_ELT (condv, i);
21811 tree incr = TREE_VEC_ELT (incrv, i);
21813 if (type_dependent_expression_p (decl))
21814 return true;
21816 if (init && type_dependent_expression_p (init))
21817 return true;
21819 if (type_dependent_expression_p (cond))
21820 return true;
21822 if (COMPARISON_CLASS_P (cond)
21823 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
21824 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
21825 return true;
21827 if (TREE_CODE (incr) == MODOP_EXPR)
21829 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
21830 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
21831 return true;
21833 else if (type_dependent_expression_p (incr))
21834 return true;
21835 else if (TREE_CODE (incr) == MODIFY_EXPR)
21837 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
21838 return true;
21839 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
21841 tree t = TREE_OPERAND (incr, 1);
21842 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
21843 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
21844 return true;
21849 return false;
21852 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
21853 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
21854 no such TYPE can be found. Note that this function peers inside
21855 uninstantiated templates and therefore should be used only in
21856 extremely limited situations. ONLY_CURRENT_P restricts this
21857 peering to the currently open classes hierarchy (which is required
21858 when comparing types). */
21860 tree
21861 resolve_typename_type (tree type, bool only_current_p)
21863 tree scope;
21864 tree name;
21865 tree decl;
21866 int quals;
21867 tree pushed_scope;
21868 tree result;
21870 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
21872 scope = TYPE_CONTEXT (type);
21873 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
21874 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
21875 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
21876 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
21877 identifier of the TYPENAME_TYPE anymore.
21878 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
21879 TYPENAME_TYPE instead, we avoid messing up with a possible
21880 typedef variant case. */
21881 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
21883 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
21884 it first before we can figure out what NAME refers to. */
21885 if (TREE_CODE (scope) == TYPENAME_TYPE)
21887 if (TYPENAME_IS_RESOLVING_P (scope))
21888 /* Given a class template A with a dependent base with nested type C,
21889 typedef typename A::C::C C will land us here, as trying to resolve
21890 the initial A::C leads to the local C typedef, which leads back to
21891 A::C::C. So we break the recursion now. */
21892 return type;
21893 else
21894 scope = resolve_typename_type (scope, only_current_p);
21896 /* If we don't know what SCOPE refers to, then we cannot resolve the
21897 TYPENAME_TYPE. */
21898 if (TREE_CODE (scope) == TYPENAME_TYPE)
21899 return type;
21900 /* If the SCOPE is a template type parameter, we have no way of
21901 resolving the name. */
21902 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
21903 return type;
21904 /* If the SCOPE is not the current instantiation, there's no reason
21905 to look inside it. */
21906 if (only_current_p && !currently_open_class (scope))
21907 return type;
21908 /* If this is a typedef, we don't want to look inside (c++/11987). */
21909 if (typedef_variant_p (type))
21910 return type;
21911 /* If SCOPE isn't the template itself, it will not have a valid
21912 TYPE_FIELDS list. */
21913 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
21914 /* scope is either the template itself or a compatible instantiation
21915 like X<T>, so look up the name in the original template. */
21916 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
21917 else
21918 /* scope is a partial instantiation, so we can't do the lookup or we
21919 will lose the template arguments. */
21920 return type;
21921 /* Enter the SCOPE so that name lookup will be resolved as if we
21922 were in the class definition. In particular, SCOPE will no
21923 longer be considered a dependent type. */
21924 pushed_scope = push_scope (scope);
21925 /* Look up the declaration. */
21926 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
21927 tf_warning_or_error);
21929 result = NULL_TREE;
21931 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
21932 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
21933 if (!decl)
21934 /*nop*/;
21935 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
21936 && TREE_CODE (decl) == TYPE_DECL)
21938 result = TREE_TYPE (decl);
21939 if (result == error_mark_node)
21940 result = NULL_TREE;
21942 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
21943 && DECL_CLASS_TEMPLATE_P (decl))
21945 tree tmpl;
21946 tree args;
21947 /* Obtain the template and the arguments. */
21948 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
21949 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
21950 /* Instantiate the template. */
21951 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
21952 /*entering_scope=*/0,
21953 tf_error | tf_user);
21954 if (result == error_mark_node)
21955 result = NULL_TREE;
21958 /* Leave the SCOPE. */
21959 if (pushed_scope)
21960 pop_scope (pushed_scope);
21962 /* If we failed to resolve it, return the original typename. */
21963 if (!result)
21964 return type;
21966 /* If lookup found a typename type, resolve that too. */
21967 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
21969 /* Ill-formed programs can cause infinite recursion here, so we
21970 must catch that. */
21971 TYPENAME_IS_RESOLVING_P (type) = 1;
21972 result = resolve_typename_type (result, only_current_p);
21973 TYPENAME_IS_RESOLVING_P (type) = 0;
21976 /* Qualify the resulting type. */
21977 quals = cp_type_quals (type);
21978 if (quals)
21979 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
21981 return result;
21984 /* EXPR is an expression which is not type-dependent. Return a proxy
21985 for EXPR that can be used to compute the types of larger
21986 expressions containing EXPR. */
21988 tree
21989 build_non_dependent_expr (tree expr)
21991 tree inner_expr;
21993 #ifdef ENABLE_CHECKING
21994 /* Try to get a constant value for all non-dependent expressions in
21995 order to expose bugs in *_dependent_expression_p and constexpr. */
21996 if (cxx_dialect >= cxx11)
21997 fold_non_dependent_expr (expr);
21998 #endif
22000 /* Preserve OVERLOADs; the functions must be available to resolve
22001 types. */
22002 inner_expr = expr;
22003 if (TREE_CODE (inner_expr) == STMT_EXPR)
22004 inner_expr = stmt_expr_value_expr (inner_expr);
22005 if (TREE_CODE (inner_expr) == ADDR_EXPR)
22006 inner_expr = TREE_OPERAND (inner_expr, 0);
22007 if (TREE_CODE (inner_expr) == COMPONENT_REF)
22008 inner_expr = TREE_OPERAND (inner_expr, 1);
22009 if (is_overloaded_fn (inner_expr)
22010 || TREE_CODE (inner_expr) == OFFSET_REF)
22011 return expr;
22012 /* There is no need to return a proxy for a variable. */
22013 if (VAR_P (expr))
22014 return expr;
22015 /* Preserve string constants; conversions from string constants to
22016 "char *" are allowed, even though normally a "const char *"
22017 cannot be used to initialize a "char *". */
22018 if (TREE_CODE (expr) == STRING_CST)
22019 return expr;
22020 /* Preserve void and arithmetic constants, as an optimization -- there is no
22021 reason to create a new node. */
22022 if (TREE_CODE (expr) == VOID_CST
22023 || TREE_CODE (expr) == INTEGER_CST
22024 || TREE_CODE (expr) == REAL_CST)
22025 return expr;
22026 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
22027 There is at least one place where we want to know that a
22028 particular expression is a throw-expression: when checking a ?:
22029 expression, there are special rules if the second or third
22030 argument is a throw-expression. */
22031 if (TREE_CODE (expr) == THROW_EXPR)
22032 return expr;
22034 /* Don't wrap an initializer list, we need to be able to look inside. */
22035 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
22036 return expr;
22038 /* Don't wrap a dummy object, we need to be able to test for it. */
22039 if (is_dummy_object (expr))
22040 return expr;
22042 if (TREE_CODE (expr) == COND_EXPR)
22043 return build3 (COND_EXPR,
22044 TREE_TYPE (expr),
22045 TREE_OPERAND (expr, 0),
22046 (TREE_OPERAND (expr, 1)
22047 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
22048 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
22049 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
22050 if (TREE_CODE (expr) == COMPOUND_EXPR
22051 && !COMPOUND_EXPR_OVERLOADED (expr))
22052 return build2 (COMPOUND_EXPR,
22053 TREE_TYPE (expr),
22054 TREE_OPERAND (expr, 0),
22055 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
22057 /* If the type is unknown, it can't really be non-dependent */
22058 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
22060 /* Otherwise, build a NON_DEPENDENT_EXPR. */
22061 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
22064 /* ARGS is a vector of expressions as arguments to a function call.
22065 Replace the arguments with equivalent non-dependent expressions.
22066 This modifies ARGS in place. */
22068 void
22069 make_args_non_dependent (vec<tree, va_gc> *args)
22071 unsigned int ix;
22072 tree arg;
22074 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
22076 tree newarg = build_non_dependent_expr (arg);
22077 if (newarg != arg)
22078 (*args)[ix] = newarg;
22082 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
22083 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
22084 parms. */
22086 static tree
22087 make_auto_1 (tree name)
22089 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
22090 TYPE_NAME (au) = build_decl (input_location,
22091 TYPE_DECL, name, au);
22092 TYPE_STUB_DECL (au) = TYPE_NAME (au);
22093 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
22094 (0, processing_template_decl + 1, processing_template_decl + 1,
22095 TYPE_NAME (au), NULL_TREE);
22096 TYPE_CANONICAL (au) = canonical_type_parameter (au);
22097 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
22098 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
22100 return au;
22103 tree
22104 make_decltype_auto (void)
22106 return make_auto_1 (get_identifier ("decltype(auto)"));
22109 tree
22110 make_auto (void)
22112 return make_auto_1 (get_identifier ("auto"));
22115 /* Given type ARG, return std::initializer_list<ARG>. */
22117 static tree
22118 listify (tree arg)
22120 tree std_init_list = namespace_binding
22121 (get_identifier ("initializer_list"), std_node);
22122 tree argvec;
22123 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
22125 error ("deducing from brace-enclosed initializer list requires "
22126 "#include <initializer_list>");
22127 return error_mark_node;
22129 argvec = make_tree_vec (1);
22130 TREE_VEC_ELT (argvec, 0) = arg;
22131 return lookup_template_class (std_init_list, argvec, NULL_TREE,
22132 NULL_TREE, 0, tf_warning_or_error);
22135 /* Replace auto in TYPE with std::initializer_list<auto>. */
22137 static tree
22138 listify_autos (tree type, tree auto_node)
22140 tree init_auto = listify (auto_node);
22141 tree argvec = make_tree_vec (1);
22142 TREE_VEC_ELT (argvec, 0) = init_auto;
22143 if (processing_template_decl)
22144 argvec = add_to_template_args (current_template_args (), argvec);
22145 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22148 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
22149 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
22151 tree
22152 do_auto_deduction (tree type, tree init, tree auto_node)
22154 tree targs;
22156 if (init == error_mark_node)
22157 return error_mark_node;
22159 if (type_dependent_expression_p (init))
22160 /* Defining a subset of type-dependent expressions that we can deduce
22161 from ahead of time isn't worth the trouble. */
22162 return type;
22164 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
22165 with either a new invented type template parameter U or, if the
22166 initializer is a braced-init-list (8.5.4), with
22167 std::initializer_list<U>. */
22168 if (BRACE_ENCLOSED_INITIALIZER_P (init))
22170 if (!DIRECT_LIST_INIT_P (init))
22171 type = listify_autos (type, auto_node);
22172 else if (CONSTRUCTOR_NELTS (init) == 1)
22173 init = CONSTRUCTOR_ELT (init, 0)->value;
22174 else
22176 if (permerror (input_location, "direct-list-initialization of "
22177 "%<auto%> requires exactly one element"))
22178 inform (input_location,
22179 "for deduction to %<std::initializer_list%>, use copy-"
22180 "list-initialization (i.e. add %<=%> before the %<{%>)");
22181 type = listify_autos (type, auto_node);
22185 init = resolve_nondeduced_context (init);
22187 targs = make_tree_vec (1);
22188 if (AUTO_IS_DECLTYPE (auto_node))
22190 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
22191 && !REF_PARENTHESIZED_P (init)));
22192 TREE_VEC_ELT (targs, 0)
22193 = finish_decltype_type (init, id, tf_warning_or_error);
22194 if (type != auto_node)
22196 error ("%qT as type rather than plain %<decltype(auto)%>", type);
22197 return error_mark_node;
22200 else
22202 tree parms = build_tree_list (NULL_TREE, type);
22203 tree tparms = make_tree_vec (1);
22204 int val;
22206 TREE_VEC_ELT (tparms, 0)
22207 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
22208 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
22209 DEDUCE_CALL, LOOKUP_NORMAL,
22210 NULL, /*explain_p=*/false);
22211 if (val > 0)
22213 if (processing_template_decl)
22214 /* Try again at instantiation time. */
22215 return type;
22216 if (type && type != error_mark_node)
22217 /* If type is error_mark_node a diagnostic must have been
22218 emitted by now. Also, having a mention to '<type error>'
22219 in the diagnostic is not really useful to the user. */
22221 if (cfun && auto_node == current_function_auto_return_pattern
22222 && LAMBDA_FUNCTION_P (current_function_decl))
22223 error ("unable to deduce lambda return type from %qE", init);
22224 else
22225 error ("unable to deduce %qT from %qE", type, init);
22227 return error_mark_node;
22231 /* If the list of declarators contains more than one declarator, the type
22232 of each declared variable is determined as described above. If the
22233 type deduced for the template parameter U is not the same in each
22234 deduction, the program is ill-formed. */
22235 if (TREE_TYPE (auto_node)
22236 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
22238 if (cfun && auto_node == current_function_auto_return_pattern
22239 && LAMBDA_FUNCTION_P (current_function_decl))
22240 error ("inconsistent types %qT and %qT deduced for "
22241 "lambda return type", TREE_TYPE (auto_node),
22242 TREE_VEC_ELT (targs, 0));
22243 else
22244 error ("inconsistent deduction for %qT: %qT and then %qT",
22245 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
22246 return error_mark_node;
22248 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
22250 if (processing_template_decl)
22251 targs = add_to_template_args (current_template_args (), targs);
22252 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
22255 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
22256 result. */
22258 tree
22259 splice_late_return_type (tree type, tree late_return_type)
22261 tree argvec;
22263 if (late_return_type == NULL_TREE)
22264 return type;
22265 argvec = make_tree_vec (1);
22266 TREE_VEC_ELT (argvec, 0) = late_return_type;
22267 if (processing_template_parmlist)
22268 /* For a late-specified return type in a template type-parameter, we
22269 need to add a dummy argument level for its parmlist. */
22270 argvec = add_to_template_args
22271 (make_tree_vec (processing_template_parmlist), argvec);
22272 if (current_template_parms)
22273 argvec = add_to_template_args (current_template_args (), argvec);
22274 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
22277 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
22278 'decltype(auto)'. */
22280 bool
22281 is_auto (const_tree type)
22283 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22284 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
22285 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
22286 return true;
22287 else
22288 return false;
22291 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
22292 a use of `auto'. Returns NULL_TREE otherwise. */
22294 tree
22295 type_uses_auto (tree type)
22297 return find_type_usage (type, is_auto);
22300 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
22301 'decltype(auto)' or a concept. */
22303 bool
22304 is_auto_or_concept (const_tree type)
22306 return is_auto (type); // or concept
22309 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
22310 a concept identifier) iff TYPE contains a use of a generic type. Returns
22311 NULL_TREE otherwise. */
22313 tree
22314 type_uses_auto_or_concept (tree type)
22316 return find_type_usage (type, is_auto_or_concept);
22320 /* For a given template T, return the vector of typedefs referenced
22321 in T for which access check is needed at T instantiation time.
22322 T is either a FUNCTION_DECL or a RECORD_TYPE.
22323 Those typedefs were added to T by the function
22324 append_type_to_template_for_access_check. */
22326 vec<qualified_typedef_usage_t, va_gc> *
22327 get_types_needing_access_check (tree t)
22329 tree ti;
22330 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
22332 if (!t || t == error_mark_node)
22333 return NULL;
22335 if (!(ti = get_template_info (t)))
22336 return NULL;
22338 if (CLASS_TYPE_P (t)
22339 || TREE_CODE (t) == FUNCTION_DECL)
22341 if (!TI_TEMPLATE (ti))
22342 return NULL;
22344 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
22347 return result;
22350 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
22351 tied to T. That list of typedefs will be access checked at
22352 T instantiation time.
22353 T is either a FUNCTION_DECL or a RECORD_TYPE.
22354 TYPE_DECL is a TYPE_DECL node representing a typedef.
22355 SCOPE is the scope through which TYPE_DECL is accessed.
22356 LOCATION is the location of the usage point of TYPE_DECL.
22358 This function is a subroutine of
22359 append_type_to_template_for_access_check. */
22361 static void
22362 append_type_to_template_for_access_check_1 (tree t,
22363 tree type_decl,
22364 tree scope,
22365 location_t location)
22367 qualified_typedef_usage_t typedef_usage;
22368 tree ti;
22370 if (!t || t == error_mark_node)
22371 return;
22373 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
22374 || CLASS_TYPE_P (t))
22375 && type_decl
22376 && TREE_CODE (type_decl) == TYPE_DECL
22377 && scope);
22379 if (!(ti = get_template_info (t)))
22380 return;
22382 gcc_assert (TI_TEMPLATE (ti));
22384 typedef_usage.typedef_decl = type_decl;
22385 typedef_usage.context = scope;
22386 typedef_usage.locus = location;
22388 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
22391 /* Append TYPE_DECL to the template TEMPL.
22392 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
22393 At TEMPL instanciation time, TYPE_DECL will be checked to see
22394 if it can be accessed through SCOPE.
22395 LOCATION is the location of the usage point of TYPE_DECL.
22397 e.g. consider the following code snippet:
22399 class C
22401 typedef int myint;
22404 template<class U> struct S
22406 C::myint mi; // <-- usage point of the typedef C::myint
22409 S<char> s;
22411 At S<char> instantiation time, we need to check the access of C::myint
22412 In other words, we need to check the access of the myint typedef through
22413 the C scope. For that purpose, this function will add the myint typedef
22414 and the scope C through which its being accessed to a list of typedefs
22415 tied to the template S. That list will be walked at template instantiation
22416 time and access check performed on each typedefs it contains.
22417 Note that this particular code snippet should yield an error because
22418 myint is private to C. */
22420 void
22421 append_type_to_template_for_access_check (tree templ,
22422 tree type_decl,
22423 tree scope,
22424 location_t location)
22426 qualified_typedef_usage_t *iter;
22427 unsigned i;
22429 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
22431 /* Make sure we don't append the type to the template twice. */
22432 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
22433 if (iter->typedef_decl == type_decl && scope == iter->context)
22434 return;
22436 append_type_to_template_for_access_check_1 (templ, type_decl,
22437 scope, location);
22440 /* Convert the generic type parameters in PARM that match the types given in the
22441 range [START_IDX, END_IDX) from the current_template_parms into generic type
22442 packs. */
22444 tree
22445 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
22447 tree current = current_template_parms;
22448 int depth = TMPL_PARMS_DEPTH (current);
22449 current = INNERMOST_TEMPLATE_PARMS (current);
22450 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
22452 for (int i = 0; i < start_idx; ++i)
22453 TREE_VEC_ELT (replacement, i)
22454 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22456 for (int i = start_idx; i < end_idx; ++i)
22458 /* Create a distinct parameter pack type from the current parm and add it
22459 to the replacement args to tsubst below into the generic function
22460 parameter. */
22462 tree o = TREE_TYPE (TREE_VALUE
22463 (TREE_VEC_ELT (current, i)));
22464 tree t = copy_type (o);
22465 TEMPLATE_TYPE_PARM_INDEX (t)
22466 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
22467 o, 0, 0, tf_none);
22468 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
22469 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
22470 TYPE_MAIN_VARIANT (t) = t;
22471 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
22472 TYPE_CANONICAL (t) = canonical_type_parameter (t);
22473 TREE_VEC_ELT (replacement, i) = t;
22474 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
22477 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
22478 TREE_VEC_ELT (replacement, i)
22479 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
22481 /* If there are more levels then build up the replacement with the outer
22482 template parms. */
22483 if (depth > 1)
22484 replacement = add_to_template_args (template_parms_to_args
22485 (TREE_CHAIN (current_template_parms)),
22486 replacement);
22488 return tsubst (parm, replacement, tf_none, NULL_TREE);
22492 /* Set up the hash tables for template instantiations. */
22494 void
22495 init_template_processing (void)
22497 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
22498 type_specializations = hash_table<spec_hasher>::create_ggc (37);
22501 /* Print stats about the template hash tables for -fstats. */
22503 void
22504 print_template_statistics (void)
22506 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
22507 "%f collisions\n", (long) decl_specializations->size (),
22508 (long) decl_specializations->elements (),
22509 decl_specializations->collisions ());
22510 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
22511 "%f collisions\n", (long) type_specializations->size (),
22512 (long) type_specializations->elements (),
22513 type_specializations->collisions ());
22516 #include "gt-cp-pt.h"