c-family/
[official-gcc.git] / gcc / cp / pt.c
blobdb947cc632e382424957db96fc7cb966af658440
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 "alias.h"
32 #include "tree.h"
33 #include "stringpool.h"
34 #include "varasm.h"
35 #include "attribs.h"
36 #include "stor-layout.h"
37 #include "intl.h"
38 #include "flags.h"
39 #include "cp-tree.h"
40 #include "c-family/c-common.h"
41 #include "c-family/c-objc.h"
42 #include "cp-objcp-common.h"
43 #include "tree-inline.h"
44 #include "decl.h"
45 #include "toplev.h"
46 #include "timevar.h"
47 #include "tree-iterator.h"
48 #include "type-utils.h"
49 #include "gimplify.h"
51 /* The type of functions taking a tree, and some additional data, and
52 returning an int. */
53 typedef int (*tree_fn_t) (tree, void*);
55 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
56 instantiations have been deferred, either because their definitions
57 were not yet available, or because we were putting off doing the work. */
58 struct GTY ((chain_next ("%h.next"))) pending_template {
59 struct pending_template *next;
60 struct tinst_level *tinst;
63 static GTY(()) struct pending_template *pending_templates;
64 static GTY(()) struct pending_template *last_pending_template;
66 int processing_template_parmlist;
67 static int template_header_count;
69 static GTY(()) tree saved_trees;
70 static vec<int> inline_parm_levels;
72 static GTY(()) struct tinst_level *current_tinst_level;
74 static GTY(()) tree saved_access_scope;
76 /* Live only within one (recursive) call to tsubst_expr. We use
77 this to pass the statement expression node from the STMT_EXPR
78 to the EXPR_STMT that is its result. */
79 static tree cur_stmt_expr;
81 // -------------------------------------------------------------------------- //
82 // Local Specialization Stack
84 // Implementation of the RAII helper for creating new local
85 // specializations.
86 local_specialization_stack::local_specialization_stack ()
87 : saved (local_specializations)
89 local_specializations = new hash_map<tree, tree>;
92 local_specialization_stack::~local_specialization_stack ()
94 delete local_specializations;
95 local_specializations = saved;
98 /* True if we've recursed into fn_type_unification too many times. */
99 static bool excessive_deduction_depth;
101 struct GTY((for_user)) spec_entry
103 tree tmpl;
104 tree args;
105 tree spec;
108 struct spec_hasher : ggc_ptr_hash<spec_entry>
110 static hashval_t hash (spec_entry *);
111 static bool equal (spec_entry *, spec_entry *);
114 static GTY (()) hash_table<spec_hasher> *decl_specializations;
116 static GTY (()) hash_table<spec_hasher> *type_specializations;
118 /* Contains canonical template parameter types. The vector is indexed by
119 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
120 TREE_LIST, whose TREE_VALUEs contain the canonical template
121 parameters of various types and levels. */
122 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
124 #define UNIFY_ALLOW_NONE 0
125 #define UNIFY_ALLOW_MORE_CV_QUAL 1
126 #define UNIFY_ALLOW_LESS_CV_QUAL 2
127 #define UNIFY_ALLOW_DERIVED 4
128 #define UNIFY_ALLOW_INTEGER 8
129 #define UNIFY_ALLOW_OUTER_LEVEL 16
130 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
131 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
133 enum template_base_result {
134 tbr_incomplete_type,
135 tbr_ambiguous_baseclass,
136 tbr_success
139 static void push_access_scope (tree);
140 static void pop_access_scope (tree);
141 static bool resolve_overloaded_unification (tree, tree, tree, tree,
142 unification_kind_t, int,
143 bool);
144 static int try_one_overload (tree, tree, tree, tree, tree,
145 unification_kind_t, int, bool, bool);
146 static int unify (tree, tree, tree, tree, int, bool);
147 static void add_pending_template (tree);
148 static tree reopen_tinst_level (struct tinst_level *);
149 static tree tsubst_initializer_list (tree, tree);
150 static tree get_partial_spec_bindings (tree, tree, tree, tree);
151 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
152 bool, bool);
153 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
154 bool, bool);
155 static void tsubst_enum (tree, tree, tree);
156 static tree add_to_template_args (tree, tree);
157 static tree add_outermost_template_args (tree, tree);
158 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
159 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
160 tree);
161 static int type_unification_real (tree, tree, tree, const tree *,
162 unsigned int, int, unification_kind_t, int,
163 vec<deferred_access_check, va_gc> **,
164 bool);
165 static void note_template_header (int);
166 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
167 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
168 static tree convert_template_argument (tree, tree, tree,
169 tsubst_flags_t, int, tree);
170 static int for_each_template_parm (tree, tree_fn_t, void*,
171 hash_set<tree> *, bool);
172 static tree expand_template_argument_pack (tree);
173 static tree build_template_parm_index (int, int, int, tree, tree);
174 static bool inline_needs_template_parms (tree, bool);
175 static void push_inline_template_parms_recursive (tree, int);
176 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
177 static int mark_template_parm (tree, void *);
178 static int template_parm_this_level_p (tree, void *);
179 static tree tsubst_friend_function (tree, tree);
180 static tree tsubst_friend_class (tree, tree);
181 static int can_complete_type_without_circularity (tree);
182 static tree get_bindings (tree, tree, tree, bool);
183 static int template_decl_level (tree);
184 static int check_cv_quals_for_unify (int, tree, tree);
185 static void template_parm_level_and_index (tree, int*, int*);
186 static int unify_pack_expansion (tree, tree, tree,
187 tree, unification_kind_t, bool, bool);
188 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
189 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
190 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
191 static void regenerate_decl_from_template (tree, tree);
192 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
193 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
194 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
195 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
196 static bool check_specialization_scope (void);
197 static tree process_partial_specialization (tree);
198 static void set_current_access_from_decl (tree);
199 static enum template_base_result get_template_base (tree, tree, tree, tree,
200 bool , tree *);
201 static tree try_class_unification (tree, tree, tree, tree, bool);
202 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
203 tree, tree);
204 static bool template_template_parm_bindings_ok_p (tree, tree);
205 static int template_args_equal (tree, tree);
206 static void tsubst_default_arguments (tree, tsubst_flags_t);
207 static tree for_each_template_parm_r (tree *, int *, void *);
208 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
209 static void copy_default_args_to_explicit_spec (tree);
210 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
211 static bool dependent_template_arg_p (tree);
212 static bool any_template_arguments_need_structural_equality_p (tree);
213 static bool dependent_type_p_r (tree);
214 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
215 static tree tsubst_decl (tree, tree, tsubst_flags_t);
216 static void perform_typedefs_access_check (tree tmpl, tree targs);
217 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
218 location_t);
219 static tree listify (tree);
220 static tree listify_autos (tree, tree);
221 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
222 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
223 static bool complex_alias_template_p (const_tree tmpl);
225 /* Make the current scope suitable for access checking when we are
226 processing T. T can be FUNCTION_DECL for instantiated function
227 template, VAR_DECL for static member variable, or TYPE_DECL for
228 alias template (needed by instantiate_decl). */
230 static void
231 push_access_scope (tree t)
233 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
234 || TREE_CODE (t) == TYPE_DECL);
236 if (DECL_FRIEND_CONTEXT (t))
237 push_nested_class (DECL_FRIEND_CONTEXT (t));
238 else if (DECL_CLASS_SCOPE_P (t))
239 push_nested_class (DECL_CONTEXT (t));
240 else
241 push_to_top_level ();
243 if (TREE_CODE (t) == FUNCTION_DECL)
245 saved_access_scope = tree_cons
246 (NULL_TREE, current_function_decl, saved_access_scope);
247 current_function_decl = t;
251 /* Restore the scope set up by push_access_scope. T is the node we
252 are processing. */
254 static void
255 pop_access_scope (tree t)
257 if (TREE_CODE (t) == FUNCTION_DECL)
259 current_function_decl = TREE_VALUE (saved_access_scope);
260 saved_access_scope = TREE_CHAIN (saved_access_scope);
263 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
264 pop_nested_class ();
265 else
266 pop_from_top_level ();
269 /* Do any processing required when DECL (a member template
270 declaration) is finished. Returns the TEMPLATE_DECL corresponding
271 to DECL, unless it is a specialization, in which case the DECL
272 itself is returned. */
274 tree
275 finish_member_template_decl (tree decl)
277 if (decl == error_mark_node)
278 return error_mark_node;
280 gcc_assert (DECL_P (decl));
282 if (TREE_CODE (decl) == TYPE_DECL)
284 tree type;
286 type = TREE_TYPE (decl);
287 if (type == error_mark_node)
288 return error_mark_node;
289 if (MAYBE_CLASS_TYPE_P (type)
290 && CLASSTYPE_TEMPLATE_INFO (type)
291 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
293 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
294 check_member_template (tmpl);
295 return tmpl;
297 return NULL_TREE;
299 else if (TREE_CODE (decl) == FIELD_DECL)
300 error ("data member %qD cannot be a member template", decl);
301 else if (DECL_TEMPLATE_INFO (decl))
303 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
305 check_member_template (DECL_TI_TEMPLATE (decl));
306 return DECL_TI_TEMPLATE (decl);
308 else
309 return decl;
311 else
312 error ("invalid member template declaration %qD", decl);
314 return error_mark_node;
317 /* Create a template info node. */
319 tree
320 build_template_info (tree template_decl, tree template_args)
322 tree result = make_node (TEMPLATE_INFO);
323 TI_TEMPLATE (result) = template_decl;
324 TI_ARGS (result) = template_args;
325 return result;
328 /* Return the template info node corresponding to T, whatever T is. */
330 tree
331 get_template_info (const_tree t)
333 tree tinfo = NULL_TREE;
335 if (!t || t == error_mark_node)
336 return NULL;
338 if (TREE_CODE (t) == NAMESPACE_DECL)
339 return NULL;
341 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
342 tinfo = DECL_TEMPLATE_INFO (t);
344 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
345 t = TREE_TYPE (t);
347 if (OVERLOAD_TYPE_P (t))
348 tinfo = TYPE_TEMPLATE_INFO (t);
349 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
350 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
352 return tinfo;
355 /* Returns the template nesting level of the indicated class TYPE.
357 For example, in:
358 template <class T>
359 struct A
361 template <class U>
362 struct B {};
365 A<T>::B<U> has depth two, while A<T> has depth one.
366 Both A<T>::B<int> and A<int>::B<U> have depth one, if
367 they are instantiations, not specializations.
369 This function is guaranteed to return 0 if passed NULL_TREE so
370 that, for example, `template_class_depth (current_class_type)' is
371 always safe. */
374 template_class_depth (tree type)
376 int depth;
378 for (depth = 0;
379 type && TREE_CODE (type) != NAMESPACE_DECL;
380 type = (TREE_CODE (type) == FUNCTION_DECL)
381 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
383 tree tinfo = get_template_info (type);
385 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
386 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
387 ++depth;
390 return depth;
393 /* Subroutine of maybe_begin_member_template_processing.
394 Returns true if processing DECL needs us to push template parms. */
396 static bool
397 inline_needs_template_parms (tree decl, bool nsdmi)
399 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
400 return false;
402 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
403 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
406 /* Subroutine of maybe_begin_member_template_processing.
407 Push the template parms in PARMS, starting from LEVELS steps into the
408 chain, and ending at the beginning, since template parms are listed
409 innermost first. */
411 static void
412 push_inline_template_parms_recursive (tree parmlist, int levels)
414 tree parms = TREE_VALUE (parmlist);
415 int i;
417 if (levels > 1)
418 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
420 ++processing_template_decl;
421 current_template_parms
422 = tree_cons (size_int (processing_template_decl),
423 parms, current_template_parms);
424 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
426 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
427 NULL);
428 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
430 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
432 if (error_operand_p (parm))
433 continue;
435 gcc_assert (DECL_P (parm));
437 switch (TREE_CODE (parm))
439 case TYPE_DECL:
440 case TEMPLATE_DECL:
441 pushdecl (parm);
442 break;
444 case PARM_DECL:
446 /* Make a CONST_DECL as is done in process_template_parm.
447 It is ugly that we recreate this here; the original
448 version built in process_template_parm is no longer
449 available. */
450 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
451 CONST_DECL, DECL_NAME (parm),
452 TREE_TYPE (parm));
453 DECL_ARTIFICIAL (decl) = 1;
454 TREE_CONSTANT (decl) = 1;
455 TREE_READONLY (decl) = 1;
456 DECL_INITIAL (decl) = DECL_INITIAL (parm);
457 SET_DECL_TEMPLATE_PARM_P (decl);
458 pushdecl (decl);
460 break;
462 default:
463 gcc_unreachable ();
468 /* Restore the template parameter context for a member template, a
469 friend template defined in a class definition, or a non-template
470 member of template class. */
472 void
473 maybe_begin_member_template_processing (tree decl)
475 tree parms;
476 int levels = 0;
477 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
479 if (nsdmi)
481 tree ctx = DECL_CONTEXT (decl);
482 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
483 /* Disregard full specializations (c++/60999). */
484 && uses_template_parms (ctx)
485 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
488 if (inline_needs_template_parms (decl, nsdmi))
490 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
491 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
493 if (DECL_TEMPLATE_SPECIALIZATION (decl))
495 --levels;
496 parms = TREE_CHAIN (parms);
499 push_inline_template_parms_recursive (parms, levels);
502 /* Remember how many levels of template parameters we pushed so that
503 we can pop them later. */
504 inline_parm_levels.safe_push (levels);
507 /* Undo the effects of maybe_begin_member_template_processing. */
509 void
510 maybe_end_member_template_processing (void)
512 int i;
513 int last;
515 if (inline_parm_levels.length () == 0)
516 return;
518 last = inline_parm_levels.pop ();
519 for (i = 0; i < last; ++i)
521 --processing_template_decl;
522 current_template_parms = TREE_CHAIN (current_template_parms);
523 poplevel (0, 0, 0);
527 /* Return a new template argument vector which contains all of ARGS,
528 but has as its innermost set of arguments the EXTRA_ARGS. */
530 static tree
531 add_to_template_args (tree args, tree extra_args)
533 tree new_args;
534 int extra_depth;
535 int i;
536 int j;
538 if (args == NULL_TREE || extra_args == error_mark_node)
539 return extra_args;
541 extra_depth = TMPL_ARGS_DEPTH (extra_args);
542 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
544 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
545 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
547 for (j = 1; j <= extra_depth; ++j, ++i)
548 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
550 return new_args;
553 /* Like add_to_template_args, but only the outermost ARGS are added to
554 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
555 (EXTRA_ARGS) levels are added. This function is used to combine
556 the template arguments from a partial instantiation with the
557 template arguments used to attain the full instantiation from the
558 partial instantiation. */
560 static tree
561 add_outermost_template_args (tree args, tree extra_args)
563 tree new_args;
565 /* If there are more levels of EXTRA_ARGS than there are ARGS,
566 something very fishy is going on. */
567 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
569 /* If *all* the new arguments will be the EXTRA_ARGS, just return
570 them. */
571 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
572 return extra_args;
574 /* For the moment, we make ARGS look like it contains fewer levels. */
575 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
577 new_args = add_to_template_args (args, extra_args);
579 /* Now, we restore ARGS to its full dimensions. */
580 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
582 return new_args;
585 /* Return the N levels of innermost template arguments from the ARGS. */
587 tree
588 get_innermost_template_args (tree args, int n)
590 tree new_args;
591 int extra_levels;
592 int i;
594 gcc_assert (n >= 0);
596 /* If N is 1, just return the innermost set of template arguments. */
597 if (n == 1)
598 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
600 /* If we're not removing anything, just return the arguments we were
601 given. */
602 extra_levels = TMPL_ARGS_DEPTH (args) - n;
603 gcc_assert (extra_levels >= 0);
604 if (extra_levels == 0)
605 return args;
607 /* Make a new set of arguments, not containing the outer arguments. */
608 new_args = make_tree_vec (n);
609 for (i = 1; i <= n; ++i)
610 SET_TMPL_ARGS_LEVEL (new_args, i,
611 TMPL_ARGS_LEVEL (args, i + extra_levels));
613 return new_args;
616 /* The inverse of get_innermost_template_args: Return all but the innermost
617 EXTRA_LEVELS levels of template arguments from the ARGS. */
619 static tree
620 strip_innermost_template_args (tree args, int extra_levels)
622 tree new_args;
623 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
624 int i;
626 gcc_assert (n >= 0);
628 /* If N is 1, just return the outermost set of template arguments. */
629 if (n == 1)
630 return TMPL_ARGS_LEVEL (args, 1);
632 /* If we're not removing anything, just return the arguments we were
633 given. */
634 gcc_assert (extra_levels >= 0);
635 if (extra_levels == 0)
636 return args;
638 /* Make a new set of arguments, not containing the inner arguments. */
639 new_args = make_tree_vec (n);
640 for (i = 1; i <= n; ++i)
641 SET_TMPL_ARGS_LEVEL (new_args, i,
642 TMPL_ARGS_LEVEL (args, i));
644 return new_args;
647 /* We've got a template header coming up; push to a new level for storing
648 the parms. */
650 void
651 begin_template_parm_list (void)
653 /* We use a non-tag-transparent scope here, which causes pushtag to
654 put tags in this scope, rather than in the enclosing class or
655 namespace scope. This is the right thing, since we want
656 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
657 global template class, push_template_decl handles putting the
658 TEMPLATE_DECL into top-level scope. For a nested template class,
659 e.g.:
661 template <class T> struct S1 {
662 template <class T> struct S2 {};
665 pushtag contains special code to call pushdecl_with_scope on the
666 TEMPLATE_DECL for S2. */
667 begin_scope (sk_template_parms, NULL);
668 ++processing_template_decl;
669 ++processing_template_parmlist;
670 note_template_header (0);
672 /* Add a dummy parameter level while we process the parameter list. */
673 current_template_parms
674 = tree_cons (size_int (processing_template_decl),
675 make_tree_vec (0),
676 current_template_parms);
679 /* This routine is called when a specialization is declared. If it is
680 invalid to declare a specialization here, an error is reported and
681 false is returned, otherwise this routine will return true. */
683 static bool
684 check_specialization_scope (void)
686 tree scope = current_scope ();
688 /* [temp.expl.spec]
690 An explicit specialization shall be declared in the namespace of
691 which the template is a member, or, for member templates, in the
692 namespace of which the enclosing class or enclosing class
693 template is a member. An explicit specialization of a member
694 function, member class or static data member of a class template
695 shall be declared in the namespace of which the class template
696 is a member. */
697 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
699 error ("explicit specialization in non-namespace scope %qD", scope);
700 return false;
703 /* [temp.expl.spec]
705 In an explicit specialization declaration for a member of a class
706 template or a member template that appears in namespace scope,
707 the member template and some of its enclosing class templates may
708 remain unspecialized, except that the declaration shall not
709 explicitly specialize a class member template if its enclosing
710 class templates are not explicitly specialized as well. */
711 if (current_template_parms)
713 error ("enclosing class templates are not explicitly specialized");
714 return false;
717 return true;
720 /* We've just seen template <>. */
722 bool
723 begin_specialization (void)
725 begin_scope (sk_template_spec, NULL);
726 note_template_header (1);
727 return check_specialization_scope ();
730 /* Called at then end of processing a declaration preceded by
731 template<>. */
733 void
734 end_specialization (void)
736 finish_scope ();
737 reset_specialization ();
740 /* Any template <>'s that we have seen thus far are not referring to a
741 function specialization. */
743 void
744 reset_specialization (void)
746 processing_specialization = 0;
747 template_header_count = 0;
750 /* We've just seen a template header. If SPECIALIZATION is nonzero,
751 it was of the form template <>. */
753 static void
754 note_template_header (int specialization)
756 processing_specialization = specialization;
757 template_header_count++;
760 /* We're beginning an explicit instantiation. */
762 void
763 begin_explicit_instantiation (void)
765 gcc_assert (!processing_explicit_instantiation);
766 processing_explicit_instantiation = true;
770 void
771 end_explicit_instantiation (void)
773 gcc_assert (processing_explicit_instantiation);
774 processing_explicit_instantiation = false;
777 /* An explicit specialization or partial specialization of TMPL is being
778 declared. Check that the namespace in which the specialization is
779 occurring is permissible. Returns false iff it is invalid to
780 specialize TMPL in the current namespace. */
782 static bool
783 check_specialization_namespace (tree tmpl)
785 tree tpl_ns = decl_namespace_context (tmpl);
787 /* [tmpl.expl.spec]
789 An explicit specialization shall be declared in the namespace of
790 which the template is a member, or, for member templates, in the
791 namespace of which the enclosing class or enclosing class
792 template is a member. An explicit specialization of a member
793 function, member class or static data member of a class template
794 shall be declared in the namespace of which the class template is
795 a member. */
796 if (current_scope() != DECL_CONTEXT (tmpl)
797 && !at_namespace_scope_p ())
799 error ("specialization of %qD must appear at namespace scope", tmpl);
800 return false;
802 if (is_associated_namespace (current_namespace, tpl_ns))
803 /* Same or super-using namespace. */
804 return true;
805 else
807 permerror (input_location,
808 "specialization of %qD in different namespace", tmpl);
809 permerror (DECL_SOURCE_LOCATION (tmpl),
810 " from definition of %q#D", tmpl);
811 return false;
815 /* SPEC is an explicit instantiation. Check that it is valid to
816 perform this explicit instantiation in the current namespace. */
818 static void
819 check_explicit_instantiation_namespace (tree spec)
821 tree ns;
823 /* DR 275: An explicit instantiation shall appear in an enclosing
824 namespace of its template. */
825 ns = decl_namespace_context (spec);
826 if (!is_ancestor (current_namespace, ns))
827 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
828 "(which does not enclose namespace %qD)",
829 spec, current_namespace, ns);
832 // Returns the type of a template specialization only if that
833 // specialization needs to be defined. Otherwise (e.g., if the type has
834 // already been defined), the function returns NULL_TREE.
835 static tree
836 maybe_new_partial_specialization (tree type)
838 // An implicit instantiation of an incomplete type implies
839 // the definition of a new class template.
841 // template<typename T>
842 // struct S;
844 // template<typename T>
845 // struct S<T*>;
847 // Here, S<T*> is an implicit instantiation of S whose type
848 // is incomplete.
849 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
850 return type;
852 // It can also be the case that TYPE is a completed specialization.
853 // Continuing the previous example, suppose we also declare:
855 // template<typename T>
856 // requires Integral<T>
857 // struct S<T*>;
859 // Here, S<T*> refers to the specialization S<T*> defined
860 // above. However, we need to differentiate definitions because
861 // we intend to define a new partial specialization. In this case,
862 // we rely on the fact that the constraints are different for
863 // this declaration than that above.
865 // Note that we also get here for injected class names and
866 // late-parsed template definitions. We must ensure that we
867 // do not create new type declarations for those cases.
868 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
870 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
871 tree args = CLASSTYPE_TI_ARGS (type);
873 // If there are no template parameters, this cannot be a new
874 // partial template specializtion?
875 if (!current_template_parms)
876 return NULL_TREE;
878 // If the constraints are not the same as those of the primary
879 // then, we can probably create a new specialization.
880 tree type_constr = current_template_constraints ();
882 if (type == TREE_TYPE (tmpl))
883 if (tree main_constr = get_constraints (tmpl))
884 if (equivalent_constraints (type_constr, main_constr))
885 return NULL_TREE;
887 // Also, if there's a pre-existing specialization with matching
888 // constraints, then this also isn't new.
889 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
890 while (specs)
892 tree spec_tmpl = TREE_VALUE (specs);
893 tree spec_args = TREE_PURPOSE (specs);
894 tree spec_constr = get_constraints (spec_tmpl);
895 if (comp_template_args (args, spec_args)
896 && equivalent_constraints (type_constr, spec_constr))
897 return NULL_TREE;
898 specs = TREE_CHAIN (specs);
901 // Create a new type node (and corresponding type decl)
902 // for the newly declared specialization.
903 tree t = make_class_type (TREE_CODE (type));
904 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
905 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
906 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
908 /* We only need a separate type node for storing the definition of this
909 partial specialization; uses of S<T*> are unconstrained, so all are
910 equivalent. So keep TYPE_CANONICAL the same. */
911 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
913 // Build the corresponding type decl.
914 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
915 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
916 DECL_SOURCE_LOCATION (d) = input_location;
918 return t;
921 return NULL_TREE;
924 /* The TYPE is being declared. If it is a template type, that means it
925 is a partial specialization. Do appropriate error-checking. */
927 tree
928 maybe_process_partial_specialization (tree type)
930 tree context;
932 if (type == error_mark_node)
933 return error_mark_node;
935 /* A lambda that appears in specialization context is not itself a
936 specialization. */
937 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
938 return type;
940 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
942 error ("name of class shadows template template parameter %qD",
943 TYPE_NAME (type));
944 return error_mark_node;
947 context = TYPE_CONTEXT (type);
949 if (TYPE_ALIAS_P (type))
951 if (TYPE_TEMPLATE_INFO (type)
952 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
953 error ("specialization of alias template %qD",
954 TYPE_TI_TEMPLATE (type));
955 else
956 error ("explicit specialization of non-template %qT", type);
957 return error_mark_node;
959 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
961 /* This is for ordinary explicit specialization and partial
962 specialization of a template class such as:
964 template <> class C<int>;
968 template <class T> class C<T*>;
970 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
972 if (tree t = maybe_new_partial_specialization (type))
974 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
975 && !at_namespace_scope_p ())
976 return error_mark_node;
977 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
978 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
979 if (processing_template_decl)
981 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
982 if (decl == error_mark_node)
983 return error_mark_node;
984 return TREE_TYPE (decl);
987 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
988 error ("specialization of %qT after instantiation", type);
989 else if (errorcount && !processing_specialization
990 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
991 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
992 /* Trying to define a specialization either without a template<> header
993 or in an inappropriate place. We've already given an error, so just
994 bail now so we don't actually define the specialization. */
995 return error_mark_node;
997 else if (CLASS_TYPE_P (type)
998 && !CLASSTYPE_USE_TEMPLATE (type)
999 && CLASSTYPE_TEMPLATE_INFO (type)
1000 && context && CLASS_TYPE_P (context)
1001 && CLASSTYPE_TEMPLATE_INFO (context))
1003 /* This is for an explicit specialization of member class
1004 template according to [temp.expl.spec/18]:
1006 template <> template <class U> class C<int>::D;
1008 The context `C<int>' must be an implicit instantiation.
1009 Otherwise this is just a member class template declared
1010 earlier like:
1012 template <> class C<int> { template <class U> class D; };
1013 template <> template <class U> class C<int>::D;
1015 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1016 while in the second case, `C<int>::D' is a primary template
1017 and `C<T>::D' may not exist. */
1019 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1020 && !COMPLETE_TYPE_P (type))
1022 tree t;
1023 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1025 if (current_namespace
1026 != decl_namespace_context (tmpl))
1028 permerror (input_location,
1029 "specializing %q#T in different namespace", type);
1030 permerror (DECL_SOURCE_LOCATION (tmpl),
1031 " from definition of %q#D", tmpl);
1034 /* Check for invalid specialization after instantiation:
1036 template <> template <> class C<int>::D<int>;
1037 template <> template <class U> class C<int>::D; */
1039 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1040 t; t = TREE_CHAIN (t))
1042 tree inst = TREE_VALUE (t);
1043 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1044 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1046 /* We already have a full specialization of this partial
1047 instantiation, or a full specialization has been
1048 looked up but not instantiated. Reassign it to the
1049 new member specialization template. */
1050 spec_entry elt;
1051 spec_entry *entry;
1053 elt.tmpl = most_general_template (tmpl);
1054 elt.args = CLASSTYPE_TI_ARGS (inst);
1055 elt.spec = inst;
1057 type_specializations->remove_elt (&elt);
1059 elt.tmpl = tmpl;
1060 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1062 spec_entry **slot
1063 = type_specializations->find_slot (&elt, INSERT);
1064 entry = ggc_alloc<spec_entry> ();
1065 *entry = elt;
1066 *slot = entry;
1068 else
1069 /* But if we've had an implicit instantiation, that's a
1070 problem ([temp.expl.spec]/6). */
1071 error ("specialization %qT after instantiation %qT",
1072 type, inst);
1075 /* Mark TYPE as a specialization. And as a result, we only
1076 have one level of template argument for the innermost
1077 class template. */
1078 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1079 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1080 CLASSTYPE_TI_ARGS (type)
1081 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1084 else if (processing_specialization)
1086 /* Someday C++0x may allow for enum template specialization. */
1087 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1088 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1089 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1090 "of %qD not allowed by ISO C++", type);
1091 else
1093 error ("explicit specialization of non-template %qT", type);
1094 return error_mark_node;
1098 return type;
1101 /* Returns nonzero if we can optimize the retrieval of specializations
1102 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1103 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1105 static inline bool
1106 optimize_specialization_lookup_p (tree tmpl)
1108 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1109 && DECL_CLASS_SCOPE_P (tmpl)
1110 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1111 parameter. */
1112 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1113 /* The optimized lookup depends on the fact that the
1114 template arguments for the member function template apply
1115 purely to the containing class, which is not true if the
1116 containing class is an explicit or partial
1117 specialization. */
1118 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1119 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1120 && !DECL_CONV_FN_P (tmpl)
1121 /* It is possible to have a template that is not a member
1122 template and is not a member of a template class:
1124 template <typename T>
1125 struct S { friend A::f(); };
1127 Here, the friend function is a template, but the context does
1128 not have template information. The optimized lookup relies
1129 on having ARGS be the template arguments for both the class
1130 and the function template. */
1131 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1134 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1135 gone through coerce_template_parms by now. */
1137 static void
1138 check_unstripped_args (tree args ATTRIBUTE_UNUSED)
1140 #ifdef ENABLE_CHECKING
1141 ++processing_template_decl;
1142 if (!any_dependent_template_arguments_p (args))
1144 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1145 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1147 tree arg = TREE_VEC_ELT (inner, i);
1148 if (TREE_CODE (arg) == TEMPLATE_DECL)
1149 /* OK */;
1150 else if (TYPE_P (arg))
1151 gcc_assert (strip_typedefs (arg, NULL) == arg);
1152 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1153 /* Allow typedefs on the type of a non-type argument, since a
1154 parameter can have them. */;
1155 else
1156 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1159 --processing_template_decl;
1160 #endif
1163 /* Retrieve the specialization (in the sense of [temp.spec] - a
1164 specialization is either an instantiation or an explicit
1165 specialization) of TMPL for the given template ARGS. If there is
1166 no such specialization, return NULL_TREE. The ARGS are a vector of
1167 arguments, or a vector of vectors of arguments, in the case of
1168 templates with more than one level of parameters.
1170 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1171 then we search for a partial specialization matching ARGS. This
1172 parameter is ignored if TMPL is not a class template.
1174 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1175 result is a NONTYPE_ARGUMENT_PACK. */
1177 static tree
1178 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1180 if (tmpl == NULL_TREE)
1181 return NULL_TREE;
1183 if (args == error_mark_node)
1184 return NULL_TREE;
1186 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1187 || TREE_CODE (tmpl) == FIELD_DECL);
1189 /* There should be as many levels of arguments as there are
1190 levels of parameters. */
1191 gcc_assert (TMPL_ARGS_DEPTH (args)
1192 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1193 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1194 : template_class_depth (DECL_CONTEXT (tmpl))));
1196 check_unstripped_args (args);
1198 if (optimize_specialization_lookup_p (tmpl))
1200 tree class_template;
1201 tree class_specialization;
1202 vec<tree, va_gc> *methods;
1203 tree fns;
1204 int idx;
1206 /* The template arguments actually apply to the containing
1207 class. Find the class specialization with those
1208 arguments. */
1209 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1210 class_specialization
1211 = retrieve_specialization (class_template, args, 0);
1212 if (!class_specialization)
1213 return NULL_TREE;
1214 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1215 for the specialization. */
1216 idx = class_method_index_for_fn (class_specialization, tmpl);
1217 if (idx == -1)
1218 return NULL_TREE;
1219 /* Iterate through the methods with the indicated name, looking
1220 for the one that has an instance of TMPL. */
1221 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1222 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1224 tree fn = OVL_CURRENT (fns);
1225 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1226 /* using-declarations can add base methods to the method vec,
1227 and we don't want those here. */
1228 && DECL_CONTEXT (fn) == class_specialization)
1229 return fn;
1231 return NULL_TREE;
1233 else
1235 spec_entry *found;
1236 spec_entry elt;
1237 hash_table<spec_hasher> *specializations;
1239 elt.tmpl = tmpl;
1240 elt.args = args;
1241 elt.spec = NULL_TREE;
1243 if (DECL_CLASS_TEMPLATE_P (tmpl))
1244 specializations = type_specializations;
1245 else
1246 specializations = decl_specializations;
1248 if (hash == 0)
1249 hash = spec_hasher::hash (&elt);
1250 found = specializations->find_with_hash (&elt, hash);
1251 if (found)
1252 return found->spec;
1255 return NULL_TREE;
1258 /* Like retrieve_specialization, but for local declarations. */
1260 tree
1261 retrieve_local_specialization (tree tmpl)
1263 if (local_specializations == NULL)
1264 return NULL_TREE;
1266 tree *slot = local_specializations->get (tmpl);
1267 return slot ? *slot : NULL_TREE;
1270 /* Returns nonzero iff DECL is a specialization of TMPL. */
1273 is_specialization_of (tree decl, tree tmpl)
1275 tree t;
1277 if (TREE_CODE (decl) == FUNCTION_DECL)
1279 for (t = decl;
1280 t != NULL_TREE;
1281 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1282 if (t == tmpl)
1283 return 1;
1285 else
1287 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1289 for (t = TREE_TYPE (decl);
1290 t != NULL_TREE;
1291 t = CLASSTYPE_USE_TEMPLATE (t)
1292 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1293 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1294 return 1;
1297 return 0;
1300 /* Returns nonzero iff DECL is a specialization of friend declaration
1301 FRIEND_DECL according to [temp.friend]. */
1303 bool
1304 is_specialization_of_friend (tree decl, tree friend_decl)
1306 bool need_template = true;
1307 int template_depth;
1309 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1310 || TREE_CODE (decl) == TYPE_DECL);
1312 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1313 of a template class, we want to check if DECL is a specialization
1314 if this. */
1315 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1316 && DECL_TEMPLATE_INFO (friend_decl)
1317 && !DECL_USE_TEMPLATE (friend_decl))
1319 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1320 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1321 need_template = false;
1323 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1324 && !PRIMARY_TEMPLATE_P (friend_decl))
1325 need_template = false;
1327 /* There is nothing to do if this is not a template friend. */
1328 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1329 return false;
1331 if (is_specialization_of (decl, friend_decl))
1332 return true;
1334 /* [temp.friend/6]
1335 A member of a class template may be declared to be a friend of a
1336 non-template class. In this case, the corresponding member of
1337 every specialization of the class template is a friend of the
1338 class granting friendship.
1340 For example, given a template friend declaration
1342 template <class T> friend void A<T>::f();
1344 the member function below is considered a friend
1346 template <> struct A<int> {
1347 void f();
1350 For this type of template friend, TEMPLATE_DEPTH below will be
1351 nonzero. To determine if DECL is a friend of FRIEND, we first
1352 check if the enclosing class is a specialization of another. */
1354 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1355 if (template_depth
1356 && DECL_CLASS_SCOPE_P (decl)
1357 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1358 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1360 /* Next, we check the members themselves. In order to handle
1361 a few tricky cases, such as when FRIEND_DECL's are
1363 template <class T> friend void A<T>::g(T t);
1364 template <class T> template <T t> friend void A<T>::h();
1366 and DECL's are
1368 void A<int>::g(int);
1369 template <int> void A<int>::h();
1371 we need to figure out ARGS, the template arguments from
1372 the context of DECL. This is required for template substitution
1373 of `T' in the function parameter of `g' and template parameter
1374 of `h' in the above examples. Here ARGS corresponds to `int'. */
1376 tree context = DECL_CONTEXT (decl);
1377 tree args = NULL_TREE;
1378 int current_depth = 0;
1380 while (current_depth < template_depth)
1382 if (CLASSTYPE_TEMPLATE_INFO (context))
1384 if (current_depth == 0)
1385 args = TYPE_TI_ARGS (context);
1386 else
1387 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1388 current_depth++;
1390 context = TYPE_CONTEXT (context);
1393 if (TREE_CODE (decl) == FUNCTION_DECL)
1395 bool is_template;
1396 tree friend_type;
1397 tree decl_type;
1398 tree friend_args_type;
1399 tree decl_args_type;
1401 /* Make sure that both DECL and FRIEND_DECL are templates or
1402 non-templates. */
1403 is_template = DECL_TEMPLATE_INFO (decl)
1404 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1405 if (need_template ^ is_template)
1406 return false;
1407 else if (is_template)
1409 /* If both are templates, check template parameter list. */
1410 tree friend_parms
1411 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1412 args, tf_none);
1413 if (!comp_template_parms
1414 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1415 friend_parms))
1416 return false;
1418 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1420 else
1421 decl_type = TREE_TYPE (decl);
1423 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1424 tf_none, NULL_TREE);
1425 if (friend_type == error_mark_node)
1426 return false;
1428 /* Check if return types match. */
1429 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1430 return false;
1432 /* Check if function parameter types match, ignoring the
1433 `this' parameter. */
1434 friend_args_type = TYPE_ARG_TYPES (friend_type);
1435 decl_args_type = TYPE_ARG_TYPES (decl_type);
1436 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1437 friend_args_type = TREE_CHAIN (friend_args_type);
1438 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1439 decl_args_type = TREE_CHAIN (decl_args_type);
1441 return compparms (decl_args_type, friend_args_type);
1443 else
1445 /* DECL is a TYPE_DECL */
1446 bool is_template;
1447 tree decl_type = TREE_TYPE (decl);
1449 /* Make sure that both DECL and FRIEND_DECL are templates or
1450 non-templates. */
1451 is_template
1452 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1453 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1455 if (need_template ^ is_template)
1456 return false;
1457 else if (is_template)
1459 tree friend_parms;
1460 /* If both are templates, check the name of the two
1461 TEMPLATE_DECL's first because is_friend didn't. */
1462 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1463 != DECL_NAME (friend_decl))
1464 return false;
1466 /* Now check template parameter list. */
1467 friend_parms
1468 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1469 args, tf_none);
1470 return comp_template_parms
1471 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1472 friend_parms);
1474 else
1475 return (DECL_NAME (decl)
1476 == DECL_NAME (friend_decl));
1479 return false;
1482 /* Register the specialization SPEC as a specialization of TMPL with
1483 the indicated ARGS. IS_FRIEND indicates whether the specialization
1484 is actually just a friend declaration. Returns SPEC, or an
1485 equivalent prior declaration, if available.
1487 We also store instantiations of field packs in the hash table, even
1488 though they are not themselves templates, to make lookup easier. */
1490 static tree
1491 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1492 hashval_t hash)
1494 tree fn;
1495 spec_entry **slot = NULL;
1496 spec_entry elt;
1498 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1499 || (TREE_CODE (tmpl) == FIELD_DECL
1500 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1502 if (TREE_CODE (spec) == FUNCTION_DECL
1503 && uses_template_parms (DECL_TI_ARGS (spec)))
1504 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1505 register it; we want the corresponding TEMPLATE_DECL instead.
1506 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1507 the more obvious `uses_template_parms (spec)' to avoid problems
1508 with default function arguments. In particular, given
1509 something like this:
1511 template <class T> void f(T t1, T t = T())
1513 the default argument expression is not substituted for in an
1514 instantiation unless and until it is actually needed. */
1515 return spec;
1517 if (optimize_specialization_lookup_p (tmpl))
1518 /* We don't put these specializations in the hash table, but we might
1519 want to give an error about a mismatch. */
1520 fn = retrieve_specialization (tmpl, args, 0);
1521 else
1523 elt.tmpl = tmpl;
1524 elt.args = args;
1525 elt.spec = spec;
1527 if (hash == 0)
1528 hash = spec_hasher::hash (&elt);
1530 slot =
1531 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1532 if (*slot)
1533 fn = ((spec_entry *) *slot)->spec;
1534 else
1535 fn = NULL_TREE;
1538 /* We can sometimes try to re-register a specialization that we've
1539 already got. In particular, regenerate_decl_from_template calls
1540 duplicate_decls which will update the specialization list. But,
1541 we'll still get called again here anyhow. It's more convenient
1542 to simply allow this than to try to prevent it. */
1543 if (fn == spec)
1544 return spec;
1545 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1547 if (DECL_TEMPLATE_INSTANTIATION (fn))
1549 if (DECL_ODR_USED (fn)
1550 || DECL_EXPLICIT_INSTANTIATION (fn))
1552 error ("specialization of %qD after instantiation",
1553 fn);
1554 return error_mark_node;
1556 else
1558 tree clone;
1559 /* This situation should occur only if the first
1560 specialization is an implicit instantiation, the
1561 second is an explicit specialization, and the
1562 implicit instantiation has not yet been used. That
1563 situation can occur if we have implicitly
1564 instantiated a member function and then specialized
1565 it later.
1567 We can also wind up here if a friend declaration that
1568 looked like an instantiation turns out to be a
1569 specialization:
1571 template <class T> void foo(T);
1572 class S { friend void foo<>(int) };
1573 template <> void foo(int);
1575 We transform the existing DECL in place so that any
1576 pointers to it become pointers to the updated
1577 declaration.
1579 If there was a definition for the template, but not
1580 for the specialization, we want this to look as if
1581 there were no definition, and vice versa. */
1582 DECL_INITIAL (fn) = NULL_TREE;
1583 duplicate_decls (spec, fn, is_friend);
1584 /* The call to duplicate_decls will have applied
1585 [temp.expl.spec]:
1587 An explicit specialization of a function template
1588 is inline only if it is explicitly declared to be,
1589 and independently of whether its function template
1592 to the primary function; now copy the inline bits to
1593 the various clones. */
1594 FOR_EACH_CLONE (clone, fn)
1596 DECL_DECLARED_INLINE_P (clone)
1597 = DECL_DECLARED_INLINE_P (fn);
1598 DECL_SOURCE_LOCATION (clone)
1599 = DECL_SOURCE_LOCATION (fn);
1600 DECL_DELETED_FN (clone)
1601 = DECL_DELETED_FN (fn);
1603 check_specialization_namespace (tmpl);
1605 return fn;
1608 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1610 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1611 /* Dup decl failed, but this is a new definition. Set the
1612 line number so any errors match this new
1613 definition. */
1614 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1616 return fn;
1619 else if (fn)
1620 return duplicate_decls (spec, fn, is_friend);
1622 /* A specialization must be declared in the same namespace as the
1623 template it is specializing. */
1624 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1625 && !check_specialization_namespace (tmpl))
1626 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1628 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1630 spec_entry *entry = ggc_alloc<spec_entry> ();
1631 gcc_assert (tmpl && args && spec);
1632 *entry = elt;
1633 *slot = entry;
1634 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1635 && PRIMARY_TEMPLATE_P (tmpl)
1636 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1637 || variable_template_p (tmpl))
1638 /* If TMPL is a forward declaration of a template function, keep a list
1639 of all specializations in case we need to reassign them to a friend
1640 template later in tsubst_friend_function.
1642 Also keep a list of all variable template instantiations so that
1643 process_partial_specialization can check whether a later partial
1644 specialization would have used it. */
1645 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1646 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1649 return spec;
1652 /* Returns true iff two spec_entry nodes are equivalent. */
1654 int comparing_specializations;
1656 bool
1657 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1659 int equal;
1661 ++comparing_specializations;
1662 equal = (e1->tmpl == e2->tmpl
1663 && comp_template_args (e1->args, e2->args));
1664 if (equal && flag_concepts
1665 /* tmpl could be a FIELD_DECL for a capture pack. */
1666 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1667 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1668 && uses_template_parms (e1->args))
1670 /* Partial specializations of a variable template can be distinguished by
1671 constraints. */
1672 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1673 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1674 equal = equivalent_constraints (c1, c2);
1676 --comparing_specializations;
1678 return equal;
1681 /* Returns a hash for a template TMPL and template arguments ARGS. */
1683 static hashval_t
1684 hash_tmpl_and_args (tree tmpl, tree args)
1686 hashval_t val = DECL_UID (tmpl);
1687 return iterative_hash_template_arg (args, val);
1690 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1691 ignoring SPEC. */
1693 hashval_t
1694 spec_hasher::hash (spec_entry *e)
1696 return hash_tmpl_and_args (e->tmpl, e->args);
1699 /* Recursively calculate a hash value for a template argument ARG, for use
1700 in the hash tables of template specializations. */
1702 hashval_t
1703 iterative_hash_template_arg (tree arg, hashval_t val)
1705 unsigned HOST_WIDE_INT i;
1706 enum tree_code code;
1707 char tclass;
1709 if (arg == NULL_TREE)
1710 return iterative_hash_object (arg, val);
1712 if (!TYPE_P (arg))
1713 STRIP_NOPS (arg);
1715 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1716 /* We can get one of these when re-hashing a previous entry in the middle
1717 of substituting into a pack expansion. Just look through it. */
1718 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1720 code = TREE_CODE (arg);
1721 tclass = TREE_CODE_CLASS (code);
1723 val = iterative_hash_object (code, val);
1725 switch (code)
1727 case ERROR_MARK:
1728 return val;
1730 case IDENTIFIER_NODE:
1731 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1733 case TREE_VEC:
1735 int i, len = TREE_VEC_LENGTH (arg);
1736 for (i = 0; i < len; ++i)
1737 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1738 return val;
1741 case TYPE_PACK_EXPANSION:
1742 case EXPR_PACK_EXPANSION:
1743 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1744 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1746 case TYPE_ARGUMENT_PACK:
1747 case NONTYPE_ARGUMENT_PACK:
1748 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1750 case TREE_LIST:
1751 for (; arg; arg = TREE_CHAIN (arg))
1752 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1753 return val;
1755 case OVERLOAD:
1756 for (; arg; arg = OVL_NEXT (arg))
1757 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1758 return val;
1760 case CONSTRUCTOR:
1762 tree field, value;
1763 iterative_hash_template_arg (TREE_TYPE (arg), val);
1764 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1766 val = iterative_hash_template_arg (field, val);
1767 val = iterative_hash_template_arg (value, val);
1769 return val;
1772 case PARM_DECL:
1773 if (!DECL_ARTIFICIAL (arg))
1775 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1776 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1778 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1780 case TARGET_EXPR:
1781 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1783 case PTRMEM_CST:
1784 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1785 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1787 case TEMPLATE_PARM_INDEX:
1788 val = iterative_hash_template_arg
1789 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1790 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1791 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1793 case TRAIT_EXPR:
1794 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1795 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1796 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1798 case BASELINK:
1799 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1800 val);
1801 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1802 val);
1804 case MODOP_EXPR:
1805 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1806 code = TREE_CODE (TREE_OPERAND (arg, 1));
1807 val = iterative_hash_object (code, val);
1808 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1810 case LAMBDA_EXPR:
1811 /* A lambda can't appear in a template arg, but don't crash on
1812 erroneous input. */
1813 gcc_assert (seen_error ());
1814 return val;
1816 case CAST_EXPR:
1817 case IMPLICIT_CONV_EXPR:
1818 case STATIC_CAST_EXPR:
1819 case REINTERPRET_CAST_EXPR:
1820 case CONST_CAST_EXPR:
1821 case DYNAMIC_CAST_EXPR:
1822 case NEW_EXPR:
1823 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1824 /* Now hash operands as usual. */
1825 break;
1827 default:
1828 break;
1831 switch (tclass)
1833 case tcc_type:
1834 if (alias_template_specialization_p (arg))
1836 // We want an alias specialization that survived strip_typedefs
1837 // to hash differently from its TYPE_CANONICAL, to avoid hash
1838 // collisions that compare as different in template_args_equal.
1839 // These could be dependent specializations that strip_typedefs
1840 // left alone, or untouched specializations because
1841 // coerce_template_parms returns the unconverted template
1842 // arguments if it sees incomplete argument packs.
1843 tree ti = TYPE_TEMPLATE_INFO (arg);
1844 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1846 if (TYPE_CANONICAL (arg))
1847 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1848 val);
1849 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1850 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1851 /* Otherwise just compare the types during lookup. */
1852 return val;
1854 case tcc_declaration:
1855 case tcc_constant:
1856 return iterative_hash_expr (arg, val);
1858 default:
1859 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1861 unsigned n = cp_tree_operand_length (arg);
1862 for (i = 0; i < n; ++i)
1863 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1864 return val;
1867 gcc_unreachable ();
1868 return 0;
1871 /* Unregister the specialization SPEC as a specialization of TMPL.
1872 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1873 if the SPEC was listed as a specialization of TMPL.
1875 Note that SPEC has been ggc_freed, so we can't look inside it. */
1877 bool
1878 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1880 spec_entry *entry;
1881 spec_entry elt;
1883 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1884 elt.args = TI_ARGS (tinfo);
1885 elt.spec = NULL_TREE;
1887 entry = decl_specializations->find (&elt);
1888 if (entry != NULL)
1890 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1891 gcc_assert (new_spec != NULL_TREE);
1892 entry->spec = new_spec;
1893 return 1;
1896 return 0;
1899 /* Like register_specialization, but for local declarations. We are
1900 registering SPEC, an instantiation of TMPL. */
1902 void
1903 register_local_specialization (tree spec, tree tmpl)
1905 local_specializations->put (tmpl, spec);
1908 /* TYPE is a class type. Returns true if TYPE is an explicitly
1909 specialized class. */
1911 bool
1912 explicit_class_specialization_p (tree type)
1914 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1915 return false;
1916 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1919 /* Print the list of functions at FNS, going through all the overloads
1920 for each element of the list. Alternatively, FNS can not be a
1921 TREE_LIST, in which case it will be printed together with all the
1922 overloads.
1924 MORE and *STR should respectively be FALSE and NULL when the function
1925 is called from the outside. They are used internally on recursive
1926 calls. print_candidates manages the two parameters and leaves NULL
1927 in *STR when it ends. */
1929 static void
1930 print_candidates_1 (tree fns, bool more, const char **str)
1932 tree fn, fn2;
1933 char *spaces = NULL;
1935 for (fn = fns; fn; fn = OVL_NEXT (fn))
1936 if (TREE_CODE (fn) == TREE_LIST)
1938 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1939 print_candidates_1 (TREE_VALUE (fn2),
1940 TREE_CHAIN (fn2) || more, str);
1942 else
1944 tree cand = OVL_CURRENT (fn);
1945 if (!*str)
1947 /* Pick the prefix string. */
1948 if (!more && !OVL_NEXT (fns))
1950 inform (DECL_SOURCE_LOCATION (cand),
1951 "candidate is: %#D", cand);
1952 continue;
1955 *str = _("candidates are:");
1956 spaces = get_spaces (*str);
1958 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1959 *str = spaces ? spaces : *str;
1962 if (!more)
1964 free (spaces);
1965 *str = NULL;
1969 /* Print the list of candidate FNS in an error message. FNS can also
1970 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1972 void
1973 print_candidates (tree fns)
1975 const char *str = NULL;
1976 print_candidates_1 (fns, false, &str);
1977 gcc_assert (str == NULL);
1980 /* Get a (possibly) constrained template declaration for the
1981 purpose of ordering candidates. */
1982 static tree
1983 get_template_for_ordering (tree list)
1985 gcc_assert (TREE_CODE (list) == TREE_LIST);
1986 tree f = TREE_VALUE (list);
1987 if (tree ti = DECL_TEMPLATE_INFO (f))
1988 return TI_TEMPLATE (ti);
1989 return f;
1992 /* Among candidates having the same signature, return the
1993 most constrained or NULL_TREE if there is no best candidate.
1994 If the signatures of candidates vary (e.g., template
1995 specialization vs. member function), then there can be no
1996 most constrained.
1998 Note that we don't compare constraints on the functions
1999 themselves, but rather those of their templates. */
2000 static tree
2001 most_constrained_function (tree candidates)
2003 // Try to find the best candidate in a first pass.
2004 tree champ = candidates;
2005 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
2007 int winner = more_constrained (get_template_for_ordering (champ),
2008 get_template_for_ordering (c));
2009 if (winner == -1)
2010 champ = c; // The candidate is more constrained
2011 else if (winner == 0)
2012 return NULL_TREE; // Neither is more constrained
2015 // Verify that the champ is better than previous candidates.
2016 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2017 if (!more_constrained (get_template_for_ordering (champ),
2018 get_template_for_ordering (c)))
2019 return NULL_TREE;
2022 return champ;
2026 /* Returns the template (one of the functions given by TEMPLATE_ID)
2027 which can be specialized to match the indicated DECL with the
2028 explicit template args given in TEMPLATE_ID. The DECL may be
2029 NULL_TREE if none is available. In that case, the functions in
2030 TEMPLATE_ID are non-members.
2032 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2033 specialization of a member template.
2035 The TEMPLATE_COUNT is the number of references to qualifying
2036 template classes that appeared in the name of the function. See
2037 check_explicit_specialization for a more accurate description.
2039 TSK indicates what kind of template declaration (if any) is being
2040 declared. TSK_TEMPLATE indicates that the declaration given by
2041 DECL, though a FUNCTION_DECL, has template parameters, and is
2042 therefore a template function.
2044 The template args (those explicitly specified and those deduced)
2045 are output in a newly created vector *TARGS_OUT.
2047 If it is impossible to determine the result, an error message is
2048 issued. The error_mark_node is returned to indicate failure. */
2050 static tree
2051 determine_specialization (tree template_id,
2052 tree decl,
2053 tree* targs_out,
2054 int need_member_template,
2055 int template_count,
2056 tmpl_spec_kind tsk)
2058 tree fns;
2059 tree targs;
2060 tree explicit_targs;
2061 tree candidates = NULL_TREE;
2063 /* A TREE_LIST of templates of which DECL may be a specialization.
2064 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2065 corresponding TREE_PURPOSE is the set of template arguments that,
2066 when used to instantiate the template, would produce a function
2067 with the signature of DECL. */
2068 tree templates = NULL_TREE;
2069 int header_count;
2070 cp_binding_level *b;
2072 *targs_out = NULL_TREE;
2074 if (template_id == error_mark_node || decl == error_mark_node)
2075 return error_mark_node;
2077 /* We shouldn't be specializing a member template of an
2078 unspecialized class template; we already gave an error in
2079 check_specialization_scope, now avoid crashing. */
2080 if (template_count && DECL_CLASS_SCOPE_P (decl)
2081 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2083 gcc_assert (errorcount);
2084 return error_mark_node;
2087 fns = TREE_OPERAND (template_id, 0);
2088 explicit_targs = TREE_OPERAND (template_id, 1);
2090 if (fns == error_mark_node)
2091 return error_mark_node;
2093 /* Check for baselinks. */
2094 if (BASELINK_P (fns))
2095 fns = BASELINK_FUNCTIONS (fns);
2097 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2099 error ("%qD is not a function template", fns);
2100 return error_mark_node;
2102 else if (VAR_P (decl) && !variable_template_p (fns))
2104 error ("%qD is not a variable template", fns);
2105 return error_mark_node;
2108 /* Count the number of template headers specified for this
2109 specialization. */
2110 header_count = 0;
2111 for (b = current_binding_level;
2112 b->kind == sk_template_parms;
2113 b = b->level_chain)
2114 ++header_count;
2116 tree orig_fns = fns;
2118 if (variable_template_p (fns))
2120 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2121 targs = coerce_template_parms (parms, explicit_targs, fns,
2122 tf_warning_or_error,
2123 /*req_all*/true, /*use_defarg*/true);
2124 if (targs != error_mark_node)
2125 templates = tree_cons (targs, fns, templates);
2127 else for (; fns; fns = OVL_NEXT (fns))
2129 tree fn = OVL_CURRENT (fns);
2131 if (TREE_CODE (fn) == TEMPLATE_DECL)
2133 tree decl_arg_types;
2134 tree fn_arg_types;
2135 tree insttype;
2137 /* In case of explicit specialization, we need to check if
2138 the number of template headers appearing in the specialization
2139 is correct. This is usually done in check_explicit_specialization,
2140 but the check done there cannot be exhaustive when specializing
2141 member functions. Consider the following code:
2143 template <> void A<int>::f(int);
2144 template <> template <> void A<int>::f(int);
2146 Assuming that A<int> is not itself an explicit specialization
2147 already, the first line specializes "f" which is a non-template
2148 member function, whilst the second line specializes "f" which
2149 is a template member function. So both lines are syntactically
2150 correct, and check_explicit_specialization does not reject
2151 them.
2153 Here, we can do better, as we are matching the specialization
2154 against the declarations. We count the number of template
2155 headers, and we check if they match TEMPLATE_COUNT + 1
2156 (TEMPLATE_COUNT is the number of qualifying template classes,
2157 plus there must be another header for the member template
2158 itself).
2160 Notice that if header_count is zero, this is not a
2161 specialization but rather a template instantiation, so there
2162 is no check we can perform here. */
2163 if (header_count && header_count != template_count + 1)
2164 continue;
2166 /* Check that the number of template arguments at the
2167 innermost level for DECL is the same as for FN. */
2168 if (current_binding_level->kind == sk_template_parms
2169 && !current_binding_level->explicit_spec_p
2170 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2171 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2172 (current_template_parms))))
2173 continue;
2175 /* DECL might be a specialization of FN. */
2176 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2177 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2179 /* For a non-static member function, we need to make sure
2180 that the const qualification is the same. Since
2181 get_bindings does not try to merge the "this" parameter,
2182 we must do the comparison explicitly. */
2183 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2184 && !same_type_p (TREE_VALUE (fn_arg_types),
2185 TREE_VALUE (decl_arg_types)))
2186 continue;
2188 /* Skip the "this" parameter and, for constructors of
2189 classes with virtual bases, the VTT parameter. A
2190 full specialization of a constructor will have a VTT
2191 parameter, but a template never will. */
2192 decl_arg_types
2193 = skip_artificial_parms_for (decl, decl_arg_types);
2194 fn_arg_types
2195 = skip_artificial_parms_for (fn, fn_arg_types);
2197 /* Function templates cannot be specializations; there are
2198 no partial specializations of functions. Therefore, if
2199 the type of DECL does not match FN, there is no
2200 match.
2202 Note that it should never be the case that we have both
2203 candidates added here, and for regular member functions
2204 below. */
2205 if (tsk == tsk_template)
2207 if (compparms (fn_arg_types, decl_arg_types))
2208 candidates = tree_cons (NULL_TREE, fn, candidates);
2209 continue;
2212 /* See whether this function might be a specialization of this
2213 template. Suppress access control because we might be trying
2214 to make this specialization a friend, and we have already done
2215 access control for the declaration of the specialization. */
2216 push_deferring_access_checks (dk_no_check);
2217 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2218 pop_deferring_access_checks ();
2220 if (!targs)
2221 /* We cannot deduce template arguments that when used to
2222 specialize TMPL will produce DECL. */
2223 continue;
2225 /* Remove, from the set of candidates, all those functions
2226 whose constraints are not satisfied. */
2227 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2228 continue;
2230 // Then, try to form the new function type.
2231 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2232 if (insttype == error_mark_node)
2233 continue;
2234 fn_arg_types
2235 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2236 if (!compparms (fn_arg_types, decl_arg_types))
2237 continue;
2239 /* Save this template, and the arguments deduced. */
2240 templates = tree_cons (targs, fn, templates);
2242 else if (need_member_template)
2243 /* FN is an ordinary member function, and we need a
2244 specialization of a member template. */
2246 else if (TREE_CODE (fn) != FUNCTION_DECL)
2247 /* We can get IDENTIFIER_NODEs here in certain erroneous
2248 cases. */
2250 else if (!DECL_FUNCTION_MEMBER_P (fn))
2251 /* This is just an ordinary non-member function. Nothing can
2252 be a specialization of that. */
2254 else if (DECL_ARTIFICIAL (fn))
2255 /* Cannot specialize functions that are created implicitly. */
2257 else
2259 tree decl_arg_types;
2261 /* This is an ordinary member function. However, since
2262 we're here, we can assume its enclosing class is a
2263 template class. For example,
2265 template <typename T> struct S { void f(); };
2266 template <> void S<int>::f() {}
2268 Here, S<int>::f is a non-template, but S<int> is a
2269 template class. If FN has the same type as DECL, we
2270 might be in business. */
2272 if (!DECL_TEMPLATE_INFO (fn))
2273 /* Its enclosing class is an explicit specialization
2274 of a template class. This is not a candidate. */
2275 continue;
2277 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2278 TREE_TYPE (TREE_TYPE (fn))))
2279 /* The return types differ. */
2280 continue;
2282 /* Adjust the type of DECL in case FN is a static member. */
2283 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2284 if (DECL_STATIC_FUNCTION_P (fn)
2285 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2286 decl_arg_types = TREE_CHAIN (decl_arg_types);
2288 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2289 decl_arg_types))
2290 continue;
2292 // If the deduced arguments do not satisfy the constraints,
2293 // this is not a candidate.
2294 if (flag_concepts && !constraints_satisfied_p (fn))
2295 continue;
2297 // Add the candidate.
2298 candidates = tree_cons (NULL_TREE, fn, candidates);
2302 if (templates && TREE_CHAIN (templates))
2304 /* We have:
2306 [temp.expl.spec]
2308 It is possible for a specialization with a given function
2309 signature to be instantiated from more than one function
2310 template. In such cases, explicit specification of the
2311 template arguments must be used to uniquely identify the
2312 function template specialization being specialized.
2314 Note that here, there's no suggestion that we're supposed to
2315 determine which of the candidate templates is most
2316 specialized. However, we, also have:
2318 [temp.func.order]
2320 Partial ordering of overloaded function template
2321 declarations is used in the following contexts to select
2322 the function template to which a function template
2323 specialization refers:
2325 -- when an explicit specialization refers to a function
2326 template.
2328 So, we do use the partial ordering rules, at least for now.
2329 This extension can only serve to make invalid programs valid,
2330 so it's safe. And, there is strong anecdotal evidence that
2331 the committee intended the partial ordering rules to apply;
2332 the EDG front end has that behavior, and John Spicer claims
2333 that the committee simply forgot to delete the wording in
2334 [temp.expl.spec]. */
2335 tree tmpl = most_specialized_instantiation (templates);
2336 if (tmpl != error_mark_node)
2338 templates = tmpl;
2339 TREE_CHAIN (templates) = NULL_TREE;
2343 // Concepts allows multiple declarations of member functions
2344 // with the same signature. Like above, we need to rely on
2345 // on the partial ordering of those candidates to determine which
2346 // is the best.
2347 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2349 if (tree cand = most_constrained_function (candidates))
2351 candidates = cand;
2352 TREE_CHAIN (cand) = NULL_TREE;
2356 if (templates == NULL_TREE && candidates == NULL_TREE)
2358 error ("template-id %qD for %q+D does not match any template "
2359 "declaration", template_id, decl);
2360 if (header_count && header_count != template_count + 1)
2361 inform (input_location, "saw %d %<template<>%>, need %d for "
2362 "specializing a member function template",
2363 header_count, template_count + 1);
2364 else
2365 print_candidates (orig_fns);
2366 return error_mark_node;
2368 else if ((templates && TREE_CHAIN (templates))
2369 || (candidates && TREE_CHAIN (candidates))
2370 || (templates && candidates))
2372 error ("ambiguous template specialization %qD for %q+D",
2373 template_id, decl);
2374 candidates = chainon (candidates, templates);
2375 print_candidates (candidates);
2376 return error_mark_node;
2379 /* We have one, and exactly one, match. */
2380 if (candidates)
2382 tree fn = TREE_VALUE (candidates);
2383 *targs_out = copy_node (DECL_TI_ARGS (fn));
2385 // Propagate the candidate's constraints to the declaration.
2386 set_constraints (decl, get_constraints (fn));
2388 /* DECL is a re-declaration or partial instantiation of a template
2389 function. */
2390 if (TREE_CODE (fn) == TEMPLATE_DECL)
2391 return fn;
2392 /* It was a specialization of an ordinary member function in a
2393 template class. */
2394 return DECL_TI_TEMPLATE (fn);
2397 /* It was a specialization of a template. */
2398 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2399 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2401 *targs_out = copy_node (targs);
2402 SET_TMPL_ARGS_LEVEL (*targs_out,
2403 TMPL_ARGS_DEPTH (*targs_out),
2404 TREE_PURPOSE (templates));
2406 else
2407 *targs_out = TREE_PURPOSE (templates);
2408 return TREE_VALUE (templates);
2411 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2412 but with the default argument values filled in from those in the
2413 TMPL_TYPES. */
2415 static tree
2416 copy_default_args_to_explicit_spec_1 (tree spec_types,
2417 tree tmpl_types)
2419 tree new_spec_types;
2421 if (!spec_types)
2422 return NULL_TREE;
2424 if (spec_types == void_list_node)
2425 return void_list_node;
2427 /* Substitute into the rest of the list. */
2428 new_spec_types =
2429 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2430 TREE_CHAIN (tmpl_types));
2432 /* Add the default argument for this parameter. */
2433 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2434 TREE_VALUE (spec_types),
2435 new_spec_types);
2438 /* DECL is an explicit specialization. Replicate default arguments
2439 from the template it specializes. (That way, code like:
2441 template <class T> void f(T = 3);
2442 template <> void f(double);
2443 void g () { f (); }
2445 works, as required.) An alternative approach would be to look up
2446 the correct default arguments at the call-site, but this approach
2447 is consistent with how implicit instantiations are handled. */
2449 static void
2450 copy_default_args_to_explicit_spec (tree decl)
2452 tree tmpl;
2453 tree spec_types;
2454 tree tmpl_types;
2455 tree new_spec_types;
2456 tree old_type;
2457 tree new_type;
2458 tree t;
2459 tree object_type = NULL_TREE;
2460 tree in_charge = NULL_TREE;
2461 tree vtt = NULL_TREE;
2463 /* See if there's anything we need to do. */
2464 tmpl = DECL_TI_TEMPLATE (decl);
2465 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2466 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2467 if (TREE_PURPOSE (t))
2468 break;
2469 if (!t)
2470 return;
2472 old_type = TREE_TYPE (decl);
2473 spec_types = TYPE_ARG_TYPES (old_type);
2475 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2477 /* Remove the this pointer, but remember the object's type for
2478 CV quals. */
2479 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2480 spec_types = TREE_CHAIN (spec_types);
2481 tmpl_types = TREE_CHAIN (tmpl_types);
2483 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2485 /* DECL may contain more parameters than TMPL due to the extra
2486 in-charge parameter in constructors and destructors. */
2487 in_charge = spec_types;
2488 spec_types = TREE_CHAIN (spec_types);
2490 if (DECL_HAS_VTT_PARM_P (decl))
2492 vtt = spec_types;
2493 spec_types = TREE_CHAIN (spec_types);
2497 /* Compute the merged default arguments. */
2498 new_spec_types =
2499 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2501 /* Compute the new FUNCTION_TYPE. */
2502 if (object_type)
2504 if (vtt)
2505 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2506 TREE_VALUE (vtt),
2507 new_spec_types);
2509 if (in_charge)
2510 /* Put the in-charge parameter back. */
2511 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2512 TREE_VALUE (in_charge),
2513 new_spec_types);
2515 new_type = build_method_type_directly (object_type,
2516 TREE_TYPE (old_type),
2517 new_spec_types);
2519 else
2520 new_type = build_function_type (TREE_TYPE (old_type),
2521 new_spec_types);
2522 new_type = cp_build_type_attribute_variant (new_type,
2523 TYPE_ATTRIBUTES (old_type));
2524 new_type = build_exception_variant (new_type,
2525 TYPE_RAISES_EXCEPTIONS (old_type));
2527 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2528 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2530 TREE_TYPE (decl) = new_type;
2533 /* Return the number of template headers we expect to see for a definition
2534 or specialization of CTYPE or one of its non-template members. */
2537 num_template_headers_for_class (tree ctype)
2539 int num_templates = 0;
2541 while (ctype && CLASS_TYPE_P (ctype))
2543 /* You're supposed to have one `template <...>' for every
2544 template class, but you don't need one for a full
2545 specialization. For example:
2547 template <class T> struct S{};
2548 template <> struct S<int> { void f(); };
2549 void S<int>::f () {}
2551 is correct; there shouldn't be a `template <>' for the
2552 definition of `S<int>::f'. */
2553 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2554 /* If CTYPE does not have template information of any
2555 kind, then it is not a template, nor is it nested
2556 within a template. */
2557 break;
2558 if (explicit_class_specialization_p (ctype))
2559 break;
2560 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2561 ++num_templates;
2563 ctype = TYPE_CONTEXT (ctype);
2566 return num_templates;
2569 /* Do a simple sanity check on the template headers that precede the
2570 variable declaration DECL. */
2572 void
2573 check_template_variable (tree decl)
2575 tree ctx = CP_DECL_CONTEXT (decl);
2576 int wanted = num_template_headers_for_class (ctx);
2577 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2578 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2580 if (cxx_dialect < cxx14)
2581 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2582 "variable templates only available with "
2583 "-std=c++14 or -std=gnu++14");
2585 // Namespace-scope variable templates should have a template header.
2586 ++wanted;
2588 if (template_header_count > wanted)
2590 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2591 "too many template headers for %D (should be %d)",
2592 decl, wanted);
2593 if (warned && CLASS_TYPE_P (ctx)
2594 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2595 inform (DECL_SOURCE_LOCATION (decl),
2596 "members of an explicitly specialized class are defined "
2597 "without a template header");
2601 /* Check to see if the function just declared, as indicated in
2602 DECLARATOR, and in DECL, is a specialization of a function
2603 template. We may also discover that the declaration is an explicit
2604 instantiation at this point.
2606 Returns DECL, or an equivalent declaration that should be used
2607 instead if all goes well. Issues an error message if something is
2608 amiss. Returns error_mark_node if the error is not easily
2609 recoverable.
2611 FLAGS is a bitmask consisting of the following flags:
2613 2: The function has a definition.
2614 4: The function is a friend.
2616 The TEMPLATE_COUNT is the number of references to qualifying
2617 template classes that appeared in the name of the function. For
2618 example, in
2620 template <class T> struct S { void f(); };
2621 void S<int>::f();
2623 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2624 classes are not counted in the TEMPLATE_COUNT, so that in
2626 template <class T> struct S {};
2627 template <> struct S<int> { void f(); }
2628 template <> void S<int>::f();
2630 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2631 invalid; there should be no template <>.)
2633 If the function is a specialization, it is marked as such via
2634 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2635 is set up correctly, and it is added to the list of specializations
2636 for that template. */
2638 tree
2639 check_explicit_specialization (tree declarator,
2640 tree decl,
2641 int template_count,
2642 int flags)
2644 int have_def = flags & 2;
2645 int is_friend = flags & 4;
2646 bool is_concept = flags & 8;
2647 int specialization = 0;
2648 int explicit_instantiation = 0;
2649 int member_specialization = 0;
2650 tree ctype = DECL_CLASS_CONTEXT (decl);
2651 tree dname = DECL_NAME (decl);
2652 tmpl_spec_kind tsk;
2654 if (is_friend)
2656 if (!processing_specialization)
2657 tsk = tsk_none;
2658 else
2659 tsk = tsk_excessive_parms;
2661 else
2662 tsk = current_tmpl_spec_kind (template_count);
2664 switch (tsk)
2666 case tsk_none:
2667 if (processing_specialization && !VAR_P (decl))
2669 specialization = 1;
2670 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2672 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2674 if (is_friend)
2675 /* This could be something like:
2677 template <class T> void f(T);
2678 class S { friend void f<>(int); } */
2679 specialization = 1;
2680 else
2682 /* This case handles bogus declarations like template <>
2683 template <class T> void f<int>(); */
2685 error ("template-id %qD in declaration of primary template",
2686 declarator);
2687 return decl;
2690 break;
2692 case tsk_invalid_member_spec:
2693 /* The error has already been reported in
2694 check_specialization_scope. */
2695 return error_mark_node;
2697 case tsk_invalid_expl_inst:
2698 error ("template parameter list used in explicit instantiation");
2700 /* Fall through. */
2702 case tsk_expl_inst:
2703 if (have_def)
2704 error ("definition provided for explicit instantiation");
2706 explicit_instantiation = 1;
2707 break;
2709 case tsk_excessive_parms:
2710 case tsk_insufficient_parms:
2711 if (tsk == tsk_excessive_parms)
2712 error ("too many template parameter lists in declaration of %qD",
2713 decl);
2714 else if (template_header_count)
2715 error("too few template parameter lists in declaration of %qD", decl);
2716 else
2717 error("explicit specialization of %qD must be introduced by "
2718 "%<template <>%>", decl);
2720 /* Fall through. */
2721 case tsk_expl_spec:
2722 if (is_concept)
2723 error ("explicit specialization declared %<concept%>");
2725 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2726 /* In cases like template<> constexpr bool v = true;
2727 We'll give an error in check_template_variable. */
2728 break;
2730 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2731 if (ctype)
2732 member_specialization = 1;
2733 else
2734 specialization = 1;
2735 break;
2737 case tsk_template:
2738 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2740 /* This case handles bogus declarations like template <>
2741 template <class T> void f<int>(); */
2743 if (!uses_template_parms (declarator))
2744 error ("template-id %qD in declaration of primary template",
2745 declarator);
2746 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2748 /* Partial specialization of variable template. */
2749 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2750 specialization = 1;
2751 goto ok;
2753 else if (cxx_dialect < cxx14)
2754 error ("non-type partial specialization %qD "
2755 "is not allowed", declarator);
2756 else
2757 error ("non-class, non-variable partial specialization %qD "
2758 "is not allowed", declarator);
2759 return decl;
2760 ok:;
2763 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2764 /* This is a specialization of a member template, without
2765 specialization the containing class. Something like:
2767 template <class T> struct S {
2768 template <class U> void f (U);
2770 template <> template <class U> void S<int>::f(U) {}
2772 That's a specialization -- but of the entire template. */
2773 specialization = 1;
2774 break;
2776 default:
2777 gcc_unreachable ();
2780 if ((specialization || member_specialization)
2781 /* This doesn't apply to variable templates. */
2782 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2783 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2785 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2786 for (; t; t = TREE_CHAIN (t))
2787 if (TREE_PURPOSE (t))
2789 permerror (input_location,
2790 "default argument specified in explicit specialization");
2791 break;
2795 if (specialization || member_specialization || explicit_instantiation)
2797 tree tmpl = NULL_TREE;
2798 tree targs = NULL_TREE;
2799 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2801 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2802 if (!was_template_id)
2804 tree fns;
2806 gcc_assert (identifier_p (declarator));
2807 if (ctype)
2808 fns = dname;
2809 else
2811 /* If there is no class context, the explicit instantiation
2812 must be at namespace scope. */
2813 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2815 /* Find the namespace binding, using the declaration
2816 context. */
2817 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2818 false, true);
2819 if (fns == error_mark_node || !is_overloaded_fn (fns))
2821 error ("%qD is not a template function", dname);
2822 fns = error_mark_node;
2824 else
2826 tree fn = OVL_CURRENT (fns);
2827 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2828 CP_DECL_CONTEXT (fn)))
2829 error ("%qD is not declared in %qD",
2830 decl, current_namespace);
2834 declarator = lookup_template_function (fns, NULL_TREE);
2837 if (declarator == error_mark_node)
2838 return error_mark_node;
2840 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2842 if (!explicit_instantiation)
2843 /* A specialization in class scope. This is invalid,
2844 but the error will already have been flagged by
2845 check_specialization_scope. */
2846 return error_mark_node;
2847 else
2849 /* It's not valid to write an explicit instantiation in
2850 class scope, e.g.:
2852 class C { template void f(); }
2854 This case is caught by the parser. However, on
2855 something like:
2857 template class C { void f(); };
2859 (which is invalid) we can get here. The error will be
2860 issued later. */
2864 return decl;
2866 else if (ctype != NULL_TREE
2867 && (identifier_p (TREE_OPERAND (declarator, 0))))
2869 // We'll match variable templates in start_decl.
2870 if (VAR_P (decl))
2871 return decl;
2873 /* Find the list of functions in ctype that have the same
2874 name as the declared function. */
2875 tree name = TREE_OPERAND (declarator, 0);
2876 tree fns = NULL_TREE;
2877 int idx;
2879 if (constructor_name_p (name, ctype))
2881 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2883 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2884 : !CLASSTYPE_DESTRUCTORS (ctype))
2886 /* From [temp.expl.spec]:
2888 If such an explicit specialization for the member
2889 of a class template names an implicitly-declared
2890 special member function (clause _special_), the
2891 program is ill-formed.
2893 Similar language is found in [temp.explicit]. */
2894 error ("specialization of implicitly-declared special member function");
2895 return error_mark_node;
2898 name = is_constructor ? ctor_identifier : dtor_identifier;
2901 if (!DECL_CONV_FN_P (decl))
2903 idx = lookup_fnfields_1 (ctype, name);
2904 if (idx >= 0)
2905 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2907 else
2909 vec<tree, va_gc> *methods;
2910 tree ovl;
2912 /* For a type-conversion operator, we cannot do a
2913 name-based lookup. We might be looking for `operator
2914 int' which will be a specialization of `operator T'.
2915 So, we find *all* the conversion operators, and then
2916 select from them. */
2917 fns = NULL_TREE;
2919 methods = CLASSTYPE_METHOD_VEC (ctype);
2920 if (methods)
2921 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2922 methods->iterate (idx, &ovl);
2923 ++idx)
2925 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2926 /* There are no more conversion functions. */
2927 break;
2929 /* Glue all these conversion functions together
2930 with those we already have. */
2931 for (; ovl; ovl = OVL_NEXT (ovl))
2932 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2936 if (fns == NULL_TREE)
2938 error ("no member function %qD declared in %qT", name, ctype);
2939 return error_mark_node;
2941 else
2942 TREE_OPERAND (declarator, 0) = fns;
2945 /* Figure out what exactly is being specialized at this point.
2946 Note that for an explicit instantiation, even one for a
2947 member function, we cannot tell apriori whether the
2948 instantiation is for a member template, or just a member
2949 function of a template class. Even if a member template is
2950 being instantiated, the member template arguments may be
2951 elided if they can be deduced from the rest of the
2952 declaration. */
2953 tmpl = determine_specialization (declarator, decl,
2954 &targs,
2955 member_specialization,
2956 template_count,
2957 tsk);
2959 if (!tmpl || tmpl == error_mark_node)
2960 /* We couldn't figure out what this declaration was
2961 specializing. */
2962 return error_mark_node;
2963 else
2965 tree gen_tmpl = most_general_template (tmpl);
2967 if (explicit_instantiation)
2969 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2970 is done by do_decl_instantiation later. */
2972 int arg_depth = TMPL_ARGS_DEPTH (targs);
2973 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2975 if (arg_depth > parm_depth)
2977 /* If TMPL is not the most general template (for
2978 example, if TMPL is a friend template that is
2979 injected into namespace scope), then there will
2980 be too many levels of TARGS. Remove some of them
2981 here. */
2982 int i;
2983 tree new_targs;
2985 new_targs = make_tree_vec (parm_depth);
2986 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2987 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2988 = TREE_VEC_ELT (targs, i);
2989 targs = new_targs;
2992 return instantiate_template (tmpl, targs, tf_error);
2995 /* If we thought that the DECL was a member function, but it
2996 turns out to be specializing a static member function,
2997 make DECL a static member function as well. */
2998 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2999 && DECL_STATIC_FUNCTION_P (tmpl)
3000 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
3001 revert_static_member_fn (decl);
3003 /* If this is a specialization of a member template of a
3004 template class, we want to return the TEMPLATE_DECL, not
3005 the specialization of it. */
3006 if (tsk == tsk_template && !was_template_id)
3008 tree result = DECL_TEMPLATE_RESULT (tmpl);
3009 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3010 DECL_INITIAL (result) = NULL_TREE;
3011 if (have_def)
3013 tree parm;
3014 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3015 DECL_SOURCE_LOCATION (result)
3016 = DECL_SOURCE_LOCATION (decl);
3017 /* We want to use the argument list specified in the
3018 definition, not in the original declaration. */
3019 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3020 for (parm = DECL_ARGUMENTS (result); parm;
3021 parm = DECL_CHAIN (parm))
3022 DECL_CONTEXT (parm) = result;
3024 return register_specialization (tmpl, gen_tmpl, targs,
3025 is_friend, 0);
3028 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3029 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3031 if (was_template_id)
3032 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3034 /* Inherit default function arguments from the template
3035 DECL is specializing. */
3036 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3037 copy_default_args_to_explicit_spec (decl);
3039 /* This specialization has the same protection as the
3040 template it specializes. */
3041 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3042 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3044 /* 7.1.1-1 [dcl.stc]
3046 A storage-class-specifier shall not be specified in an
3047 explicit specialization...
3049 The parser rejects these, so unless action is taken here,
3050 explicit function specializations will always appear with
3051 global linkage.
3053 The action recommended by the C++ CWG in response to C++
3054 defect report 605 is to make the storage class and linkage
3055 of the explicit specialization match the templated function:
3057 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3059 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3061 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3062 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3064 /* A concept cannot be specialized. */
3065 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3067 error ("explicit specialization of function concept %qD",
3068 gen_tmpl);
3069 return error_mark_node;
3072 /* This specialization has the same linkage and visibility as
3073 the function template it specializes. */
3074 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3075 if (! TREE_PUBLIC (decl))
3077 DECL_INTERFACE_KNOWN (decl) = 1;
3078 DECL_NOT_REALLY_EXTERN (decl) = 1;
3080 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3081 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3083 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3084 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3088 /* If DECL is a friend declaration, declared using an
3089 unqualified name, the namespace associated with DECL may
3090 have been set incorrectly. For example, in:
3092 template <typename T> void f(T);
3093 namespace N {
3094 struct S { friend void f<int>(int); }
3097 we will have set the DECL_CONTEXT for the friend
3098 declaration to N, rather than to the global namespace. */
3099 if (DECL_NAMESPACE_SCOPE_P (decl))
3100 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3102 if (is_friend && !have_def)
3103 /* This is not really a declaration of a specialization.
3104 It's just the name of an instantiation. But, it's not
3105 a request for an instantiation, either. */
3106 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3107 else if (TREE_CODE (decl) == FUNCTION_DECL)
3108 /* A specialization is not necessarily COMDAT. */
3109 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3110 && DECL_DECLARED_INLINE_P (decl));
3111 else if (VAR_P (decl))
3112 DECL_COMDAT (decl) = false;
3114 /* If this is a full specialization, register it so that we can find
3115 it again. Partial specializations will be registered in
3116 process_partial_specialization. */
3117 if (!processing_template_decl)
3118 decl = register_specialization (decl, gen_tmpl, targs,
3119 is_friend, 0);
3121 /* A 'structor should already have clones. */
3122 gcc_assert (decl == error_mark_node
3123 || variable_template_p (tmpl)
3124 || !(DECL_CONSTRUCTOR_P (decl)
3125 || DECL_DESTRUCTOR_P (decl))
3126 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3130 return decl;
3133 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3134 parameters. These are represented in the same format used for
3135 DECL_TEMPLATE_PARMS. */
3138 comp_template_parms (const_tree parms1, const_tree parms2)
3140 const_tree p1;
3141 const_tree p2;
3143 if (parms1 == parms2)
3144 return 1;
3146 for (p1 = parms1, p2 = parms2;
3147 p1 != NULL_TREE && p2 != NULL_TREE;
3148 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3150 tree t1 = TREE_VALUE (p1);
3151 tree t2 = TREE_VALUE (p2);
3152 int i;
3154 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3155 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3157 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3158 return 0;
3160 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3162 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3163 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3165 /* If either of the template parameters are invalid, assume
3166 they match for the sake of error recovery. */
3167 if (error_operand_p (parm1) || error_operand_p (parm2))
3168 return 1;
3170 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3171 return 0;
3173 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3174 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3175 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3176 continue;
3177 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3178 return 0;
3182 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3183 /* One set of parameters has more parameters lists than the
3184 other. */
3185 return 0;
3187 return 1;
3190 /* Determine whether PARM is a parameter pack. */
3192 bool
3193 template_parameter_pack_p (const_tree parm)
3195 /* Determine if we have a non-type template parameter pack. */
3196 if (TREE_CODE (parm) == PARM_DECL)
3197 return (DECL_TEMPLATE_PARM_P (parm)
3198 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3199 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3200 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3202 /* If this is a list of template parameters, we could get a
3203 TYPE_DECL or a TEMPLATE_DECL. */
3204 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3205 parm = TREE_TYPE (parm);
3207 /* Otherwise it must be a type template parameter. */
3208 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3209 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3210 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3213 /* Determine if T is a function parameter pack. */
3215 bool
3216 function_parameter_pack_p (const_tree t)
3218 if (t && TREE_CODE (t) == PARM_DECL)
3219 return DECL_PACK_P (t);
3220 return false;
3223 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3224 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3226 tree
3227 get_function_template_decl (const_tree primary_func_tmpl_inst)
3229 if (! primary_func_tmpl_inst
3230 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3231 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3232 return NULL;
3234 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3237 /* Return true iff the function parameter PARAM_DECL was expanded
3238 from the function parameter pack PACK. */
3240 bool
3241 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3243 if (DECL_ARTIFICIAL (param_decl)
3244 || !function_parameter_pack_p (pack))
3245 return false;
3247 /* The parameter pack and its pack arguments have the same
3248 DECL_PARM_INDEX. */
3249 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3252 /* Determine whether ARGS describes a variadic template args list,
3253 i.e., one that is terminated by a template argument pack. */
3255 static bool
3256 template_args_variadic_p (tree args)
3258 int nargs;
3259 tree last_parm;
3261 if (args == NULL_TREE)
3262 return false;
3264 args = INNERMOST_TEMPLATE_ARGS (args);
3265 nargs = TREE_VEC_LENGTH (args);
3267 if (nargs == 0)
3268 return false;
3270 last_parm = TREE_VEC_ELT (args, nargs - 1);
3272 return ARGUMENT_PACK_P (last_parm);
3275 /* Generate a new name for the parameter pack name NAME (an
3276 IDENTIFIER_NODE) that incorporates its */
3278 static tree
3279 make_ith_pack_parameter_name (tree name, int i)
3281 /* Munge the name to include the parameter index. */
3282 #define NUMBUF_LEN 128
3283 char numbuf[NUMBUF_LEN];
3284 char* newname;
3285 int newname_len;
3287 if (name == NULL_TREE)
3288 return name;
3289 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3290 newname_len = IDENTIFIER_LENGTH (name)
3291 + strlen (numbuf) + 2;
3292 newname = (char*)alloca (newname_len);
3293 snprintf (newname, newname_len,
3294 "%s#%i", IDENTIFIER_POINTER (name), i);
3295 return get_identifier (newname);
3298 /* Return true if T is a primary function, class or alias template
3299 instantiation. */
3301 bool
3302 primary_template_instantiation_p (const_tree t)
3304 if (!t)
3305 return false;
3307 if (TREE_CODE (t) == FUNCTION_DECL)
3308 return DECL_LANG_SPECIFIC (t)
3309 && DECL_TEMPLATE_INSTANTIATION (t)
3310 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3311 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3312 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3313 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3314 else if (alias_template_specialization_p (t))
3315 return true;
3316 return false;
3319 /* Return true if PARM is a template template parameter. */
3321 bool
3322 template_template_parameter_p (const_tree parm)
3324 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3327 /* Return true iff PARM is a DECL representing a type template
3328 parameter. */
3330 bool
3331 template_type_parameter_p (const_tree parm)
3333 return (parm
3334 && (TREE_CODE (parm) == TYPE_DECL
3335 || TREE_CODE (parm) == TEMPLATE_DECL)
3336 && DECL_TEMPLATE_PARM_P (parm));
3339 /* Return the template parameters of T if T is a
3340 primary template instantiation, NULL otherwise. */
3342 tree
3343 get_primary_template_innermost_parameters (const_tree t)
3345 tree parms = NULL, template_info = NULL;
3347 if ((template_info = get_template_info (t))
3348 && primary_template_instantiation_p (t))
3349 parms = INNERMOST_TEMPLATE_PARMS
3350 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3352 return parms;
3355 /* Return the template parameters of the LEVELth level from the full list
3356 of template parameters PARMS. */
3358 tree
3359 get_template_parms_at_level (tree parms, int level)
3361 tree p;
3362 if (!parms
3363 || TREE_CODE (parms) != TREE_LIST
3364 || level > TMPL_PARMS_DEPTH (parms))
3365 return NULL_TREE;
3367 for (p = parms; p; p = TREE_CHAIN (p))
3368 if (TMPL_PARMS_DEPTH (p) == level)
3369 return p;
3371 return NULL_TREE;
3374 /* Returns the template arguments of T if T is a template instantiation,
3375 NULL otherwise. */
3377 tree
3378 get_template_innermost_arguments (const_tree t)
3380 tree args = NULL, template_info = NULL;
3382 if ((template_info = get_template_info (t))
3383 && TI_ARGS (template_info))
3384 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3386 return args;
3389 /* Return the argument pack elements of T if T is a template argument pack,
3390 NULL otherwise. */
3392 tree
3393 get_template_argument_pack_elems (const_tree t)
3395 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3396 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3397 return NULL;
3399 return ARGUMENT_PACK_ARGS (t);
3402 /* Structure used to track the progress of find_parameter_packs_r. */
3403 struct find_parameter_pack_data
3405 /* TREE_LIST that will contain all of the parameter packs found by
3406 the traversal. */
3407 tree* parameter_packs;
3409 /* Set of AST nodes that have been visited by the traversal. */
3410 hash_set<tree> *visited;
3413 /* Identifies all of the argument packs that occur in a template
3414 argument and appends them to the TREE_LIST inside DATA, which is a
3415 find_parameter_pack_data structure. This is a subroutine of
3416 make_pack_expansion and uses_parameter_packs. */
3417 static tree
3418 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3420 tree t = *tp;
3421 struct find_parameter_pack_data* ppd =
3422 (struct find_parameter_pack_data*)data;
3423 bool parameter_pack_p = false;
3425 /* Handle type aliases/typedefs. */
3426 if (TYPE_ALIAS_P (t))
3428 if (TYPE_TEMPLATE_INFO (t))
3429 cp_walk_tree (&TYPE_TI_ARGS (t),
3430 &find_parameter_packs_r,
3431 ppd, ppd->visited);
3432 *walk_subtrees = 0;
3433 return NULL_TREE;
3436 /* Identify whether this is a parameter pack or not. */
3437 switch (TREE_CODE (t))
3439 case TEMPLATE_PARM_INDEX:
3440 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3441 parameter_pack_p = true;
3442 break;
3444 case TEMPLATE_TYPE_PARM:
3445 t = TYPE_MAIN_VARIANT (t);
3446 case TEMPLATE_TEMPLATE_PARM:
3447 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3448 parameter_pack_p = true;
3449 break;
3451 case FIELD_DECL:
3452 case PARM_DECL:
3453 if (DECL_PACK_P (t))
3455 /* We don't want to walk into the type of a PARM_DECL,
3456 because we don't want to see the type parameter pack. */
3457 *walk_subtrees = 0;
3458 parameter_pack_p = true;
3460 break;
3462 /* Look through a lambda capture proxy to the field pack. */
3463 case VAR_DECL:
3464 if (DECL_HAS_VALUE_EXPR_P (t))
3466 tree v = DECL_VALUE_EXPR (t);
3467 cp_walk_tree (&v,
3468 &find_parameter_packs_r,
3469 ppd, ppd->visited);
3470 *walk_subtrees = 0;
3472 else if (variable_template_specialization_p (t))
3474 cp_walk_tree (&DECL_TI_ARGS (t),
3475 find_parameter_packs_r,
3476 ppd, ppd->visited);
3477 *walk_subtrees = 0;
3479 break;
3481 case BASES:
3482 parameter_pack_p = true;
3483 break;
3484 default:
3485 /* Not a parameter pack. */
3486 break;
3489 if (parameter_pack_p)
3491 /* Add this parameter pack to the list. */
3492 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3495 if (TYPE_P (t))
3496 cp_walk_tree (&TYPE_CONTEXT (t),
3497 &find_parameter_packs_r, ppd, ppd->visited);
3499 /* This switch statement will return immediately if we don't find a
3500 parameter pack. */
3501 switch (TREE_CODE (t))
3503 case TEMPLATE_PARM_INDEX:
3504 return NULL_TREE;
3506 case BOUND_TEMPLATE_TEMPLATE_PARM:
3507 /* Check the template itself. */
3508 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3509 &find_parameter_packs_r, ppd, ppd->visited);
3510 /* Check the template arguments. */
3511 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3512 ppd->visited);
3513 *walk_subtrees = 0;
3514 return NULL_TREE;
3516 case TEMPLATE_TYPE_PARM:
3517 case TEMPLATE_TEMPLATE_PARM:
3518 return NULL_TREE;
3520 case PARM_DECL:
3521 return NULL_TREE;
3523 case RECORD_TYPE:
3524 if (TYPE_PTRMEMFUNC_P (t))
3525 return NULL_TREE;
3526 /* Fall through. */
3528 case UNION_TYPE:
3529 case ENUMERAL_TYPE:
3530 if (TYPE_TEMPLATE_INFO (t))
3531 cp_walk_tree (&TYPE_TI_ARGS (t),
3532 &find_parameter_packs_r, ppd, ppd->visited);
3534 *walk_subtrees = 0;
3535 return NULL_TREE;
3537 case CONSTRUCTOR:
3538 case TEMPLATE_DECL:
3539 cp_walk_tree (&TREE_TYPE (t),
3540 &find_parameter_packs_r, ppd, ppd->visited);
3541 return NULL_TREE;
3543 case TYPENAME_TYPE:
3544 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3545 ppd, ppd->visited);
3546 *walk_subtrees = 0;
3547 return NULL_TREE;
3549 case TYPE_PACK_EXPANSION:
3550 case EXPR_PACK_EXPANSION:
3551 *walk_subtrees = 0;
3552 return NULL_TREE;
3554 case INTEGER_TYPE:
3555 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3556 ppd, ppd->visited);
3557 *walk_subtrees = 0;
3558 return NULL_TREE;
3560 case IDENTIFIER_NODE:
3561 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3562 ppd->visited);
3563 *walk_subtrees = 0;
3564 return NULL_TREE;
3566 default:
3567 return NULL_TREE;
3570 return NULL_TREE;
3573 /* Determines if the expression or type T uses any parameter packs. */
3574 bool
3575 uses_parameter_packs (tree t)
3577 tree parameter_packs = NULL_TREE;
3578 struct find_parameter_pack_data ppd;
3579 ppd.parameter_packs = &parameter_packs;
3580 ppd.visited = new hash_set<tree>;
3581 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3582 delete ppd.visited;
3583 return parameter_packs != NULL_TREE;
3586 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3587 representation a base-class initializer into a parameter pack
3588 expansion. If all goes well, the resulting node will be an
3589 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3590 respectively. */
3591 tree
3592 make_pack_expansion (tree arg)
3594 tree result;
3595 tree parameter_packs = NULL_TREE;
3596 bool for_types = false;
3597 struct find_parameter_pack_data ppd;
3599 if (!arg || arg == error_mark_node)
3600 return arg;
3602 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3604 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3605 class initializer. In this case, the TREE_PURPOSE will be a
3606 _TYPE node (representing the base class expansion we're
3607 initializing) and the TREE_VALUE will be a TREE_LIST
3608 containing the initialization arguments.
3610 The resulting expansion looks somewhat different from most
3611 expansions. Rather than returning just one _EXPANSION, we
3612 return a TREE_LIST whose TREE_PURPOSE is a
3613 TYPE_PACK_EXPANSION containing the bases that will be
3614 initialized. The TREE_VALUE will be identical to the
3615 original TREE_VALUE, which is a list of arguments that will
3616 be passed to each base. We do not introduce any new pack
3617 expansion nodes into the TREE_VALUE (although it is possible
3618 that some already exist), because the TREE_PURPOSE and
3619 TREE_VALUE all need to be expanded together with the same
3620 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3621 resulting TREE_PURPOSE will mention the parameter packs in
3622 both the bases and the arguments to the bases. */
3623 tree purpose;
3624 tree value;
3625 tree parameter_packs = NULL_TREE;
3627 /* Determine which parameter packs will be used by the base
3628 class expansion. */
3629 ppd.visited = new hash_set<tree>;
3630 ppd.parameter_packs = &parameter_packs;
3631 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3632 &ppd, ppd.visited);
3634 if (parameter_packs == NULL_TREE)
3636 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3637 delete ppd.visited;
3638 return error_mark_node;
3641 if (TREE_VALUE (arg) != void_type_node)
3643 /* Collect the sets of parameter packs used in each of the
3644 initialization arguments. */
3645 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3647 /* Determine which parameter packs will be expanded in this
3648 argument. */
3649 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3650 &ppd, ppd.visited);
3654 delete ppd.visited;
3656 /* Create the pack expansion type for the base type. */
3657 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3658 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3659 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3661 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3662 they will rarely be compared to anything. */
3663 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3665 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3668 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3669 for_types = true;
3671 /* Build the PACK_EXPANSION_* node. */
3672 result = for_types
3673 ? cxx_make_type (TYPE_PACK_EXPANSION)
3674 : make_node (EXPR_PACK_EXPANSION);
3675 SET_PACK_EXPANSION_PATTERN (result, arg);
3676 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3678 /* Propagate type and const-expression information. */
3679 TREE_TYPE (result) = TREE_TYPE (arg);
3680 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3682 else
3683 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3684 they will rarely be compared to anything. */
3685 SET_TYPE_STRUCTURAL_EQUALITY (result);
3687 /* Determine which parameter packs will be expanded. */
3688 ppd.parameter_packs = &parameter_packs;
3689 ppd.visited = new hash_set<tree>;
3690 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3691 delete ppd.visited;
3693 /* Make sure we found some parameter packs. */
3694 if (parameter_packs == NULL_TREE)
3696 if (TYPE_P (arg))
3697 error ("expansion pattern %<%T%> contains no argument packs", arg);
3698 else
3699 error ("expansion pattern %<%E%> contains no argument packs", arg);
3700 return error_mark_node;
3702 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3704 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3706 return result;
3709 /* Checks T for any "bare" parameter packs, which have not yet been
3710 expanded, and issues an error if any are found. This operation can
3711 only be done on full expressions or types (e.g., an expression
3712 statement, "if" condition, etc.), because we could have expressions like:
3714 foo(f(g(h(args)))...)
3716 where "args" is a parameter pack. check_for_bare_parameter_packs
3717 should not be called for the subexpressions args, h(args),
3718 g(h(args)), or f(g(h(args))), because we would produce erroneous
3719 error messages.
3721 Returns TRUE and emits an error if there were bare parameter packs,
3722 returns FALSE otherwise. */
3723 bool
3724 check_for_bare_parameter_packs (tree t)
3726 tree parameter_packs = NULL_TREE;
3727 struct find_parameter_pack_data ppd;
3729 if (!processing_template_decl || !t || t == error_mark_node)
3730 return false;
3732 if (TREE_CODE (t) == TYPE_DECL)
3733 t = TREE_TYPE (t);
3735 ppd.parameter_packs = &parameter_packs;
3736 ppd.visited = new hash_set<tree>;
3737 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3738 delete ppd.visited;
3740 if (parameter_packs)
3742 error ("parameter packs not expanded with %<...%>:");
3743 while (parameter_packs)
3745 tree pack = TREE_VALUE (parameter_packs);
3746 tree name = NULL_TREE;
3748 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3749 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3750 name = TYPE_NAME (pack);
3751 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3752 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3753 else
3754 name = DECL_NAME (pack);
3756 if (name)
3757 inform (input_location, " %qD", name);
3758 else
3759 inform (input_location, " <anonymous>");
3761 parameter_packs = TREE_CHAIN (parameter_packs);
3764 return true;
3767 return false;
3770 /* Expand any parameter packs that occur in the template arguments in
3771 ARGS. */
3772 tree
3773 expand_template_argument_pack (tree args)
3775 tree result_args = NULL_TREE;
3776 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3777 int num_result_args = -1;
3778 int non_default_args_count = -1;
3780 /* First, determine if we need to expand anything, and the number of
3781 slots we'll need. */
3782 for (in_arg = 0; in_arg < nargs; ++in_arg)
3784 tree arg = TREE_VEC_ELT (args, in_arg);
3785 if (arg == NULL_TREE)
3786 return args;
3787 if (ARGUMENT_PACK_P (arg))
3789 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3790 if (num_result_args < 0)
3791 num_result_args = in_arg + num_packed;
3792 else
3793 num_result_args += num_packed;
3795 else
3797 if (num_result_args >= 0)
3798 num_result_args++;
3802 /* If no expansion is necessary, we're done. */
3803 if (num_result_args < 0)
3804 return args;
3806 /* Expand arguments. */
3807 result_args = make_tree_vec (num_result_args);
3808 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3809 non_default_args_count =
3810 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3811 for (in_arg = 0; in_arg < nargs; ++in_arg)
3813 tree arg = TREE_VEC_ELT (args, in_arg);
3814 if (ARGUMENT_PACK_P (arg))
3816 tree packed = ARGUMENT_PACK_ARGS (arg);
3817 int i, num_packed = TREE_VEC_LENGTH (packed);
3818 for (i = 0; i < num_packed; ++i, ++out_arg)
3819 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3820 if (non_default_args_count > 0)
3821 non_default_args_count += num_packed - 1;
3823 else
3825 TREE_VEC_ELT (result_args, out_arg) = arg;
3826 ++out_arg;
3829 if (non_default_args_count >= 0)
3830 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3831 return result_args;
3834 /* Checks if DECL shadows a template parameter.
3836 [temp.local]: A template-parameter shall not be redeclared within its
3837 scope (including nested scopes).
3839 Emits an error and returns TRUE if the DECL shadows a parameter,
3840 returns FALSE otherwise. */
3842 bool
3843 check_template_shadow (tree decl)
3845 tree olddecl;
3847 /* If we're not in a template, we can't possibly shadow a template
3848 parameter. */
3849 if (!current_template_parms)
3850 return true;
3852 /* Figure out what we're shadowing. */
3853 if (TREE_CODE (decl) == OVERLOAD)
3854 decl = OVL_CURRENT (decl);
3855 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3857 /* If there's no previous binding for this name, we're not shadowing
3858 anything, let alone a template parameter. */
3859 if (!olddecl)
3860 return true;
3862 /* If we're not shadowing a template parameter, we're done. Note
3863 that OLDDECL might be an OVERLOAD (or perhaps even an
3864 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3865 node. */
3866 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3867 return true;
3869 /* We check for decl != olddecl to avoid bogus errors for using a
3870 name inside a class. We check TPFI to avoid duplicate errors for
3871 inline member templates. */
3872 if (decl == olddecl
3873 || (DECL_TEMPLATE_PARM_P (decl)
3874 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3875 return true;
3877 /* Don't complain about the injected class name, as we've already
3878 complained about the class itself. */
3879 if (DECL_SELF_REFERENCE_P (decl))
3880 return false;
3882 if (DECL_TEMPLATE_PARM_P (decl))
3883 error ("declaration of template parameter %q+D shadows "
3884 "template parameter", decl);
3885 else
3886 error ("declaration of %q+#D shadows template parameter", decl);
3887 inform (DECL_SOURCE_LOCATION (olddecl),
3888 "template parameter %qD declared here", olddecl);
3889 return false;
3892 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3893 ORIG_LEVEL, DECL, and TYPE. */
3895 static tree
3896 build_template_parm_index (int index,
3897 int level,
3898 int orig_level,
3899 tree decl,
3900 tree type)
3902 tree t = make_node (TEMPLATE_PARM_INDEX);
3903 TEMPLATE_PARM_IDX (t) = index;
3904 TEMPLATE_PARM_LEVEL (t) = level;
3905 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3906 TEMPLATE_PARM_DECL (t) = decl;
3907 TREE_TYPE (t) = type;
3908 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3909 TREE_READONLY (t) = TREE_READONLY (decl);
3911 return t;
3914 /* Find the canonical type parameter for the given template type
3915 parameter. Returns the canonical type parameter, which may be TYPE
3916 if no such parameter existed. */
3918 static tree
3919 canonical_type_parameter (tree type)
3921 tree list;
3922 int idx = TEMPLATE_TYPE_IDX (type);
3923 if (!canonical_template_parms)
3924 vec_alloc (canonical_template_parms, idx+1);
3926 while (canonical_template_parms->length () <= (unsigned)idx)
3927 vec_safe_push (canonical_template_parms, NULL_TREE);
3929 list = (*canonical_template_parms)[idx];
3930 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3931 list = TREE_CHAIN (list);
3933 if (list)
3934 return TREE_VALUE (list);
3935 else
3937 (*canonical_template_parms)[idx]
3938 = tree_cons (NULL_TREE, type,
3939 (*canonical_template_parms)[idx]);
3940 return type;
3944 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3945 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3946 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3947 new one is created. */
3949 static tree
3950 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3951 tsubst_flags_t complain)
3953 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3954 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3955 != TEMPLATE_PARM_LEVEL (index) - levels)
3956 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3958 tree orig_decl = TEMPLATE_PARM_DECL (index);
3959 tree decl, t;
3961 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3962 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3963 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3964 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3965 DECL_ARTIFICIAL (decl) = 1;
3966 SET_DECL_TEMPLATE_PARM_P (decl);
3968 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3969 TEMPLATE_PARM_LEVEL (index) - levels,
3970 TEMPLATE_PARM_ORIG_LEVEL (index),
3971 decl, type);
3972 TEMPLATE_PARM_DESCENDANTS (index) = t;
3973 TEMPLATE_PARM_PARAMETER_PACK (t)
3974 = TEMPLATE_PARM_PARAMETER_PACK (index);
3976 /* Template template parameters need this. */
3977 if (TREE_CODE (decl) == TEMPLATE_DECL)
3979 DECL_TEMPLATE_RESULT (decl)
3980 = build_decl (DECL_SOURCE_LOCATION (decl),
3981 TYPE_DECL, DECL_NAME (decl), type);
3982 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
3983 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3984 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
3988 return TEMPLATE_PARM_DESCENDANTS (index);
3991 /* Process information from new template parameter PARM and append it
3992 to the LIST being built. This new parameter is a non-type
3993 parameter iff IS_NON_TYPE is true. This new parameter is a
3994 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3995 is in PARM_LOC. */
3997 tree
3998 process_template_parm (tree list, location_t parm_loc, tree parm,
3999 bool is_non_type, bool is_parameter_pack)
4001 tree decl = 0;
4002 int idx = 0;
4004 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4005 tree defval = TREE_PURPOSE (parm);
4006 tree constr = TREE_TYPE (parm);
4008 if (list)
4010 tree p = tree_last (list);
4012 if (p && TREE_VALUE (p) != error_mark_node)
4014 p = TREE_VALUE (p);
4015 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4016 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4017 else
4018 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4021 ++idx;
4024 if (is_non_type)
4026 parm = TREE_VALUE (parm);
4028 SET_DECL_TEMPLATE_PARM_P (parm);
4030 if (TREE_TYPE (parm) != error_mark_node)
4032 /* [temp.param]
4034 The top-level cv-qualifiers on the template-parameter are
4035 ignored when determining its type. */
4036 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4037 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4038 TREE_TYPE (parm) = error_mark_node;
4039 else if (uses_parameter_packs (TREE_TYPE (parm))
4040 && !is_parameter_pack
4041 /* If we're in a nested template parameter list, the template
4042 template parameter could be a parameter pack. */
4043 && processing_template_parmlist == 1)
4045 /* This template parameter is not a parameter pack, but it
4046 should be. Complain about "bare" parameter packs. */
4047 check_for_bare_parameter_packs (TREE_TYPE (parm));
4049 /* Recover by calling this a parameter pack. */
4050 is_parameter_pack = true;
4054 /* A template parameter is not modifiable. */
4055 TREE_CONSTANT (parm) = 1;
4056 TREE_READONLY (parm) = 1;
4057 decl = build_decl (parm_loc,
4058 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4059 TREE_CONSTANT (decl) = 1;
4060 TREE_READONLY (decl) = 1;
4061 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4062 = build_template_parm_index (idx, processing_template_decl,
4063 processing_template_decl,
4064 decl, TREE_TYPE (parm));
4066 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4067 = is_parameter_pack;
4069 else
4071 tree t;
4072 parm = TREE_VALUE (TREE_VALUE (parm));
4074 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4076 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4077 /* This is for distinguishing between real templates and template
4078 template parameters */
4079 TREE_TYPE (parm) = t;
4080 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4081 decl = parm;
4083 else
4085 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4086 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4087 decl = build_decl (parm_loc,
4088 TYPE_DECL, parm, t);
4091 TYPE_NAME (t) = decl;
4092 TYPE_STUB_DECL (t) = decl;
4093 parm = decl;
4094 TEMPLATE_TYPE_PARM_INDEX (t)
4095 = build_template_parm_index (idx, processing_template_decl,
4096 processing_template_decl,
4097 decl, TREE_TYPE (parm));
4098 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4099 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4101 DECL_ARTIFICIAL (decl) = 1;
4102 SET_DECL_TEMPLATE_PARM_P (decl);
4104 /* Build requirements for the type/template parameter.
4105 This must be done after SET_DECL_TEMPLATE_PARM_P or
4106 process_template_parm could fail. */
4107 tree reqs = finish_shorthand_constraint (parm, constr);
4109 pushdecl (decl);
4111 /* Build the parameter node linking the parameter declaration,
4112 its default argument (if any), and its constraints (if any). */
4113 parm = build_tree_list (defval, parm);
4114 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4116 return chainon (list, parm);
4119 /* The end of a template parameter list has been reached. Process the
4120 tree list into a parameter vector, converting each parameter into a more
4121 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4122 as PARM_DECLs. */
4124 tree
4125 end_template_parm_list (tree parms)
4127 int nparms;
4128 tree parm, next;
4129 tree saved_parmlist = make_tree_vec (list_length (parms));
4131 /* Pop the dummy parameter level and add the real one. */
4132 current_template_parms = TREE_CHAIN (current_template_parms);
4134 current_template_parms
4135 = tree_cons (size_int (processing_template_decl),
4136 saved_parmlist, current_template_parms);
4138 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4140 next = TREE_CHAIN (parm);
4141 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4142 TREE_CHAIN (parm) = NULL_TREE;
4145 --processing_template_parmlist;
4147 return saved_parmlist;
4150 // Explicitly indicate the end of the template parameter list. We assume
4151 // that the current template parameters have been constructed and/or
4152 // managed explicitly, as when creating new template template parameters
4153 // from a shorthand constraint.
4154 void
4155 end_template_parm_list ()
4157 --processing_template_parmlist;
4160 /* end_template_decl is called after a template declaration is seen. */
4162 void
4163 end_template_decl (void)
4165 reset_specialization ();
4167 if (! processing_template_decl)
4168 return;
4170 /* This matches the pushlevel in begin_template_parm_list. */
4171 finish_scope ();
4173 --processing_template_decl;
4174 current_template_parms = TREE_CHAIN (current_template_parms);
4177 /* Takes a TREE_LIST representing a template parameter and convert it
4178 into an argument suitable to be passed to the type substitution
4179 functions. Note that If the TREE_LIST contains an error_mark
4180 node, the returned argument is error_mark_node. */
4182 tree
4183 template_parm_to_arg (tree t)
4186 if (t == NULL_TREE
4187 || TREE_CODE (t) != TREE_LIST)
4188 return t;
4190 if (error_operand_p (TREE_VALUE (t)))
4191 return error_mark_node;
4193 t = TREE_VALUE (t);
4195 if (TREE_CODE (t) == TYPE_DECL
4196 || TREE_CODE (t) == TEMPLATE_DECL)
4198 t = TREE_TYPE (t);
4200 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4202 /* Turn this argument into a TYPE_ARGUMENT_PACK
4203 with a single element, which expands T. */
4204 tree vec = make_tree_vec (1);
4205 #ifdef ENABLE_CHECKING
4206 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
4207 (vec, TREE_VEC_LENGTH (vec));
4208 #endif
4209 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4211 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4212 SET_ARGUMENT_PACK_ARGS (t, vec);
4215 else
4217 t = DECL_INITIAL (t);
4219 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4221 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4222 with a single element, which expands T. */
4223 tree vec = make_tree_vec (1);
4224 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4225 #ifdef ENABLE_CHECKING
4226 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
4227 (vec, TREE_VEC_LENGTH (vec));
4228 #endif
4229 t = convert_from_reference (t);
4230 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4232 t = make_node (NONTYPE_ARGUMENT_PACK);
4233 SET_ARGUMENT_PACK_ARGS (t, vec);
4234 TREE_TYPE (t) = type;
4236 else
4237 t = convert_from_reference (t);
4239 return t;
4242 /* Given a set of template parameters, return them as a set of template
4243 arguments. The template parameters are represented as a TREE_VEC, in
4244 the form documented in cp-tree.h for template arguments. */
4246 static tree
4247 template_parms_to_args (tree parms)
4249 tree header;
4250 tree args = NULL_TREE;
4251 int length = TMPL_PARMS_DEPTH (parms);
4252 int l = length;
4254 /* If there is only one level of template parameters, we do not
4255 create a TREE_VEC of TREE_VECs. Instead, we return a single
4256 TREE_VEC containing the arguments. */
4257 if (length > 1)
4258 args = make_tree_vec (length);
4260 for (header = parms; header; header = TREE_CHAIN (header))
4262 tree a = copy_node (TREE_VALUE (header));
4263 int i;
4265 TREE_TYPE (a) = NULL_TREE;
4266 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4267 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4269 #ifdef ENABLE_CHECKING
4270 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4271 #endif
4273 if (length > 1)
4274 TREE_VEC_ELT (args, --l) = a;
4275 else
4276 args = a;
4279 return args;
4282 /* Within the declaration of a template, return the currently active
4283 template parameters as an argument TREE_VEC. */
4285 static tree
4286 current_template_args (void)
4288 return template_parms_to_args (current_template_parms);
4291 /* Update the declared TYPE by doing any lookups which were thought to be
4292 dependent, but are not now that we know the SCOPE of the declarator. */
4294 tree
4295 maybe_update_decl_type (tree orig_type, tree scope)
4297 tree type = orig_type;
4299 if (type == NULL_TREE)
4300 return type;
4302 if (TREE_CODE (orig_type) == TYPE_DECL)
4303 type = TREE_TYPE (type);
4305 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4306 && dependent_type_p (type)
4307 /* Don't bother building up the args in this case. */
4308 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4310 /* tsubst in the args corresponding to the template parameters,
4311 including auto if present. Most things will be unchanged, but
4312 make_typename_type and tsubst_qualified_id will resolve
4313 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4314 tree args = current_template_args ();
4315 tree auto_node = type_uses_auto (type);
4316 tree pushed;
4317 if (auto_node)
4319 tree auto_vec = make_tree_vec (1);
4320 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4321 args = add_to_template_args (args, auto_vec);
4323 pushed = push_scope (scope);
4324 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4325 if (pushed)
4326 pop_scope (scope);
4329 if (type == error_mark_node)
4330 return orig_type;
4332 if (TREE_CODE (orig_type) == TYPE_DECL)
4334 if (same_type_p (type, TREE_TYPE (orig_type)))
4335 type = orig_type;
4336 else
4337 type = TYPE_NAME (type);
4339 return type;
4342 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4343 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4344 the new template is a member template. */
4346 tree
4347 build_template_decl (tree decl, tree parms, bool member_template_p)
4349 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4350 DECL_TEMPLATE_PARMS (tmpl) = parms;
4351 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4352 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4353 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4355 return tmpl;
4358 struct template_parm_data
4360 /* The level of the template parameters we are currently
4361 processing. */
4362 int level;
4364 /* The index of the specialization argument we are currently
4365 processing. */
4366 int current_arg;
4368 /* An array whose size is the number of template parameters. The
4369 elements are nonzero if the parameter has been used in any one
4370 of the arguments processed so far. */
4371 int* parms;
4373 /* An array whose size is the number of template arguments. The
4374 elements are nonzero if the argument makes use of template
4375 parameters of this level. */
4376 int* arg_uses_template_parms;
4379 /* Subroutine of push_template_decl used to see if each template
4380 parameter in a partial specialization is used in the explicit
4381 argument list. If T is of the LEVEL given in DATA (which is
4382 treated as a template_parm_data*), then DATA->PARMS is marked
4383 appropriately. */
4385 static int
4386 mark_template_parm (tree t, void* data)
4388 int level;
4389 int idx;
4390 struct template_parm_data* tpd = (struct template_parm_data*) data;
4392 template_parm_level_and_index (t, &level, &idx);
4394 if (level == tpd->level)
4396 tpd->parms[idx] = 1;
4397 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4400 /* Return zero so that for_each_template_parm will continue the
4401 traversal of the tree; we want to mark *every* template parm. */
4402 return 0;
4405 /* Process the partial specialization DECL. */
4407 static tree
4408 process_partial_specialization (tree decl)
4410 tree type = TREE_TYPE (decl);
4411 tree tinfo = get_template_info (decl);
4412 tree maintmpl = TI_TEMPLATE (tinfo);
4413 tree specargs = TI_ARGS (tinfo);
4414 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4415 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4416 tree inner_parms;
4417 tree inst;
4418 int nargs = TREE_VEC_LENGTH (inner_args);
4419 int ntparms;
4420 int i;
4421 bool did_error_intro = false;
4422 struct template_parm_data tpd;
4423 struct template_parm_data tpd2;
4425 gcc_assert (current_template_parms);
4427 /* A concept cannot be specialized. */
4428 if (flag_concepts && variable_concept_p (maintmpl))
4430 error ("specialization of variable concept %q#D", maintmpl);
4431 return error_mark_node;
4434 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4435 ntparms = TREE_VEC_LENGTH (inner_parms);
4437 /* We check that each of the template parameters given in the
4438 partial specialization is used in the argument list to the
4439 specialization. For example:
4441 template <class T> struct S;
4442 template <class T> struct S<T*>;
4444 The second declaration is OK because `T*' uses the template
4445 parameter T, whereas
4447 template <class T> struct S<int>;
4449 is no good. Even trickier is:
4451 template <class T>
4452 struct S1
4454 template <class U>
4455 struct S2;
4456 template <class U>
4457 struct S2<T>;
4460 The S2<T> declaration is actually invalid; it is a
4461 full-specialization. Of course,
4463 template <class U>
4464 struct S2<T (*)(U)>;
4466 or some such would have been OK. */
4467 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4468 tpd.parms = XALLOCAVEC (int, ntparms);
4469 memset (tpd.parms, 0, sizeof (int) * ntparms);
4471 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4472 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4473 for (i = 0; i < nargs; ++i)
4475 tpd.current_arg = i;
4476 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4477 &mark_template_parm,
4478 &tpd,
4479 NULL,
4480 /*include_nondeduced_p=*/false);
4482 for (i = 0; i < ntparms; ++i)
4483 if (tpd.parms[i] == 0)
4485 /* One of the template parms was not used in a deduced context in the
4486 specialization. */
4487 if (!did_error_intro)
4489 error ("template parameters not deducible in "
4490 "partial specialization:");
4491 did_error_intro = true;
4494 inform (input_location, " %qD",
4495 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4498 if (did_error_intro)
4499 return error_mark_node;
4501 /* [temp.class.spec]
4503 The argument list of the specialization shall not be identical to
4504 the implicit argument list of the primary template. */
4505 tree main_args
4506 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4507 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4508 && (!flag_concepts
4509 || !subsumes_constraints (current_template_constraints (),
4510 get_constraints (maintmpl))))
4512 if (!flag_concepts)
4513 error ("partial specialization %q+D does not specialize "
4514 "any template arguments", decl);
4515 else
4516 error ("partial specialization %q+D does not specialize any "
4517 "template arguments and is not more constrained than", decl);
4518 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4521 /* A partial specialization that replaces multiple parameters of the
4522 primary template with a pack expansion is less specialized for those
4523 parameters. */
4524 if (nargs < DECL_NTPARMS (maintmpl))
4526 error ("partial specialization is not more specialized than the "
4527 "primary template because it replaces multiple parameters "
4528 "with a pack expansion");
4529 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4530 return decl;
4533 /* [temp.class.spec]
4535 A partially specialized non-type argument expression shall not
4536 involve template parameters of the partial specialization except
4537 when the argument expression is a simple identifier.
4539 The type of a template parameter corresponding to a specialized
4540 non-type argument shall not be dependent on a parameter of the
4541 specialization.
4543 Also, we verify that pack expansions only occur at the
4544 end of the argument list. */
4545 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4546 tpd2.parms = 0;
4547 for (i = 0; i < nargs; ++i)
4549 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4550 tree arg = TREE_VEC_ELT (inner_args, i);
4551 tree packed_args = NULL_TREE;
4552 int j, len = 1;
4554 if (ARGUMENT_PACK_P (arg))
4556 /* Extract the arguments from the argument pack. We'll be
4557 iterating over these in the following loop. */
4558 packed_args = ARGUMENT_PACK_ARGS (arg);
4559 len = TREE_VEC_LENGTH (packed_args);
4562 for (j = 0; j < len; j++)
4564 if (packed_args)
4565 /* Get the Jth argument in the parameter pack. */
4566 arg = TREE_VEC_ELT (packed_args, j);
4568 if (PACK_EXPANSION_P (arg))
4570 /* Pack expansions must come at the end of the
4571 argument list. */
4572 if ((packed_args && j < len - 1)
4573 || (!packed_args && i < nargs - 1))
4575 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4576 error ("parameter pack argument %qE must be at the "
4577 "end of the template argument list", arg);
4578 else
4579 error ("parameter pack argument %qT must be at the "
4580 "end of the template argument list", arg);
4584 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4585 /* We only care about the pattern. */
4586 arg = PACK_EXPANSION_PATTERN (arg);
4588 if (/* These first two lines are the `non-type' bit. */
4589 !TYPE_P (arg)
4590 && TREE_CODE (arg) != TEMPLATE_DECL
4591 /* This next two lines are the `argument expression is not just a
4592 simple identifier' condition and also the `specialized
4593 non-type argument' bit. */
4594 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4595 && !(REFERENCE_REF_P (arg)
4596 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4598 if ((!packed_args && tpd.arg_uses_template_parms[i])
4599 || (packed_args && uses_template_parms (arg)))
4600 error ("template argument %qE involves template parameter(s)",
4601 arg);
4602 else
4604 /* Look at the corresponding template parameter,
4605 marking which template parameters its type depends
4606 upon. */
4607 tree type = TREE_TYPE (parm);
4609 if (!tpd2.parms)
4611 /* We haven't yet initialized TPD2. Do so now. */
4612 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4613 /* The number of parameters here is the number in the
4614 main template, which, as checked in the assertion
4615 above, is NARGS. */
4616 tpd2.parms = XALLOCAVEC (int, nargs);
4617 tpd2.level =
4618 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4621 /* Mark the template parameters. But this time, we're
4622 looking for the template parameters of the main
4623 template, not in the specialization. */
4624 tpd2.current_arg = i;
4625 tpd2.arg_uses_template_parms[i] = 0;
4626 memset (tpd2.parms, 0, sizeof (int) * nargs);
4627 for_each_template_parm (type,
4628 &mark_template_parm,
4629 &tpd2,
4630 NULL,
4631 /*include_nondeduced_p=*/false);
4633 if (tpd2.arg_uses_template_parms [i])
4635 /* The type depended on some template parameters.
4636 If they are fully specialized in the
4637 specialization, that's OK. */
4638 int j;
4639 int count = 0;
4640 for (j = 0; j < nargs; ++j)
4641 if (tpd2.parms[j] != 0
4642 && tpd.arg_uses_template_parms [j])
4643 ++count;
4644 if (count != 0)
4645 error_n (input_location, count,
4646 "type %qT of template argument %qE depends "
4647 "on a template parameter",
4648 "type %qT of template argument %qE depends "
4649 "on template parameters",
4650 type,
4651 arg);
4658 /* We should only get here once. */
4659 if (TREE_CODE (decl) == TYPE_DECL)
4660 gcc_assert (!COMPLETE_TYPE_P (type));
4662 // Build the template decl.
4663 tree tmpl = build_template_decl (decl, current_template_parms,
4664 DECL_MEMBER_TEMPLATE_P (maintmpl));
4665 TREE_TYPE (tmpl) = type;
4666 DECL_TEMPLATE_RESULT (tmpl) = decl;
4667 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4668 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4669 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4671 if (VAR_P (decl))
4672 /* We didn't register this in check_explicit_specialization so we could
4673 wait until the constraints were set. */
4674 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4675 else
4676 associate_classtype_constraints (type);
4678 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4679 = tree_cons (specargs, tmpl,
4680 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4681 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4683 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4684 inst = TREE_CHAIN (inst))
4686 tree instance = TREE_VALUE (inst);
4687 if (TYPE_P (instance)
4688 ? (COMPLETE_TYPE_P (instance)
4689 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4690 : DECL_TEMPLATE_INSTANTIATION (instance))
4692 tree spec = most_specialized_partial_spec (instance, tf_none);
4693 if (spec && TREE_VALUE (spec) == tmpl)
4695 tree inst_decl = (DECL_P (instance)
4696 ? instance : TYPE_NAME (instance));
4697 permerror (input_location,
4698 "partial specialization of %qD after instantiation "
4699 "of %qD", decl, inst_decl);
4704 return decl;
4707 /* PARM is a template parameter of some form; return the corresponding
4708 TEMPLATE_PARM_INDEX. */
4710 static tree
4711 get_template_parm_index (tree parm)
4713 if (TREE_CODE (parm) == PARM_DECL
4714 || TREE_CODE (parm) == CONST_DECL)
4715 parm = DECL_INITIAL (parm);
4716 else if (TREE_CODE (parm) == TYPE_DECL
4717 || TREE_CODE (parm) == TEMPLATE_DECL)
4718 parm = TREE_TYPE (parm);
4719 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4720 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4721 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4722 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4723 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4724 return parm;
4727 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4728 parameter packs used by the template parameter PARM. */
4730 static void
4731 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4733 /* A type parm can't refer to another parm. */
4734 if (TREE_CODE (parm) == TYPE_DECL)
4735 return;
4736 else if (TREE_CODE (parm) == PARM_DECL)
4738 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4739 ppd, ppd->visited);
4740 return;
4743 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4745 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4746 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4747 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4750 /* PARM is a template parameter pack. Return any parameter packs used in
4751 its type or the type of any of its template parameters. If there are
4752 any such packs, it will be instantiated into a fixed template parameter
4753 list by partial instantiation rather than be fully deduced. */
4755 tree
4756 fixed_parameter_pack_p (tree parm)
4758 /* This can only be true in a member template. */
4759 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4760 return NULL_TREE;
4761 /* This can only be true for a parameter pack. */
4762 if (!template_parameter_pack_p (parm))
4763 return NULL_TREE;
4764 /* A type parm can't refer to another parm. */
4765 if (TREE_CODE (parm) == TYPE_DECL)
4766 return NULL_TREE;
4768 tree parameter_packs = NULL_TREE;
4769 struct find_parameter_pack_data ppd;
4770 ppd.parameter_packs = &parameter_packs;
4771 ppd.visited = new hash_set<tree>;
4773 fixed_parameter_pack_p_1 (parm, &ppd);
4775 delete ppd.visited;
4776 return parameter_packs;
4779 /* Check that a template declaration's use of default arguments and
4780 parameter packs is not invalid. Here, PARMS are the template
4781 parameters. IS_PRIMARY is true if DECL is the thing declared by
4782 a primary template. IS_PARTIAL is true if DECL is a partial
4783 specialization.
4785 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4786 declaration (but not a definition); 1 indicates a declaration, 2
4787 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4788 emitted for extraneous default arguments.
4790 Returns TRUE if there were no errors found, FALSE otherwise. */
4792 bool
4793 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4794 bool is_partial, int is_friend_decl)
4796 const char *msg;
4797 int last_level_to_check;
4798 tree parm_level;
4799 bool no_errors = true;
4801 /* [temp.param]
4803 A default template-argument shall not be specified in a
4804 function template declaration or a function template definition, nor
4805 in the template-parameter-list of the definition of a member of a
4806 class template. */
4808 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4809 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4810 /* You can't have a function template declaration in a local
4811 scope, nor you can you define a member of a class template in a
4812 local scope. */
4813 return true;
4815 if ((TREE_CODE (decl) == TYPE_DECL
4816 && TREE_TYPE (decl)
4817 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4818 || (TREE_CODE (decl) == FUNCTION_DECL
4819 && LAMBDA_FUNCTION_P (decl)))
4820 /* A lambda doesn't have an explicit declaration; don't complain
4821 about the parms of the enclosing class. */
4822 return true;
4824 if (current_class_type
4825 && !TYPE_BEING_DEFINED (current_class_type)
4826 && DECL_LANG_SPECIFIC (decl)
4827 && DECL_DECLARES_FUNCTION_P (decl)
4828 /* If this is either a friend defined in the scope of the class
4829 or a member function. */
4830 && (DECL_FUNCTION_MEMBER_P (decl)
4831 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4832 : DECL_FRIEND_CONTEXT (decl)
4833 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4834 : false)
4835 /* And, if it was a member function, it really was defined in
4836 the scope of the class. */
4837 && (!DECL_FUNCTION_MEMBER_P (decl)
4838 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4839 /* We already checked these parameters when the template was
4840 declared, so there's no need to do it again now. This function
4841 was defined in class scope, but we're processing its body now
4842 that the class is complete. */
4843 return true;
4845 /* Core issue 226 (C++0x only): the following only applies to class
4846 templates. */
4847 if (is_primary
4848 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4850 /* [temp.param]
4852 If a template-parameter has a default template-argument, all
4853 subsequent template-parameters shall have a default
4854 template-argument supplied. */
4855 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4857 tree inner_parms = TREE_VALUE (parm_level);
4858 int ntparms = TREE_VEC_LENGTH (inner_parms);
4859 int seen_def_arg_p = 0;
4860 int i;
4862 for (i = 0; i < ntparms; ++i)
4864 tree parm = TREE_VEC_ELT (inner_parms, i);
4866 if (parm == error_mark_node)
4867 continue;
4869 if (TREE_PURPOSE (parm))
4870 seen_def_arg_p = 1;
4871 else if (seen_def_arg_p
4872 && !template_parameter_pack_p (TREE_VALUE (parm)))
4874 error ("no default argument for %qD", TREE_VALUE (parm));
4875 /* For better subsequent error-recovery, we indicate that
4876 there should have been a default argument. */
4877 TREE_PURPOSE (parm) = error_mark_node;
4878 no_errors = false;
4880 else if (!is_partial
4881 && !is_friend_decl
4882 /* Don't complain about an enclosing partial
4883 specialization. */
4884 && parm_level == parms
4885 && TREE_CODE (decl) == TYPE_DECL
4886 && i < ntparms - 1
4887 && template_parameter_pack_p (TREE_VALUE (parm))
4888 /* A fixed parameter pack will be partially
4889 instantiated into a fixed length list. */
4890 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4892 /* A primary class template can only have one
4893 parameter pack, at the end of the template
4894 parameter list. */
4896 error ("parameter pack %q+D must be at the end of the"
4897 " template parameter list", TREE_VALUE (parm));
4899 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4900 = error_mark_node;
4901 no_errors = false;
4907 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4908 || is_partial
4909 || !is_primary
4910 || is_friend_decl)
4911 /* For an ordinary class template, default template arguments are
4912 allowed at the innermost level, e.g.:
4913 template <class T = int>
4914 struct S {};
4915 but, in a partial specialization, they're not allowed even
4916 there, as we have in [temp.class.spec]:
4918 The template parameter list of a specialization shall not
4919 contain default template argument values.
4921 So, for a partial specialization, or for a function template
4922 (in C++98/C++03), we look at all of them. */
4924 else
4925 /* But, for a primary class template that is not a partial
4926 specialization we look at all template parameters except the
4927 innermost ones. */
4928 parms = TREE_CHAIN (parms);
4930 /* Figure out what error message to issue. */
4931 if (is_friend_decl == 2)
4932 msg = G_("default template arguments may not be used in function template "
4933 "friend re-declaration");
4934 else if (is_friend_decl)
4935 msg = G_("default template arguments may not be used in function template "
4936 "friend declarations");
4937 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4938 msg = G_("default template arguments may not be used in function templates "
4939 "without -std=c++11 or -std=gnu++11");
4940 else if (is_partial)
4941 msg = G_("default template arguments may not be used in "
4942 "partial specializations");
4943 else
4944 msg = G_("default argument for template parameter for class enclosing %qD");
4946 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4947 /* If we're inside a class definition, there's no need to
4948 examine the parameters to the class itself. On the one
4949 hand, they will be checked when the class is defined, and,
4950 on the other, default arguments are valid in things like:
4951 template <class T = double>
4952 struct S { template <class U> void f(U); };
4953 Here the default argument for `S' has no bearing on the
4954 declaration of `f'. */
4955 last_level_to_check = template_class_depth (current_class_type) + 1;
4956 else
4957 /* Check everything. */
4958 last_level_to_check = 0;
4960 for (parm_level = parms;
4961 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4962 parm_level = TREE_CHAIN (parm_level))
4964 tree inner_parms = TREE_VALUE (parm_level);
4965 int i;
4966 int ntparms;
4968 ntparms = TREE_VEC_LENGTH (inner_parms);
4969 for (i = 0; i < ntparms; ++i)
4971 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4972 continue;
4974 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4976 if (msg)
4978 no_errors = false;
4979 if (is_friend_decl == 2)
4980 return no_errors;
4982 error (msg, decl);
4983 msg = 0;
4986 /* Clear out the default argument so that we are not
4987 confused later. */
4988 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4992 /* At this point, if we're still interested in issuing messages,
4993 they must apply to classes surrounding the object declared. */
4994 if (msg)
4995 msg = G_("default argument for template parameter for class "
4996 "enclosing %qD");
4999 return no_errors;
5002 /* Worker for push_template_decl_real, called via
5003 for_each_template_parm. DATA is really an int, indicating the
5004 level of the parameters we are interested in. If T is a template
5005 parameter of that level, return nonzero. */
5007 static int
5008 template_parm_this_level_p (tree t, void* data)
5010 int this_level = *(int *)data;
5011 int level;
5013 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5014 level = TEMPLATE_PARM_LEVEL (t);
5015 else
5016 level = TEMPLATE_TYPE_LEVEL (t);
5017 return level == this_level;
5020 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5021 parameters given by current_template_args, or reuses a
5022 previously existing one, if appropriate. Returns the DECL, or an
5023 equivalent one, if it is replaced via a call to duplicate_decls.
5025 If IS_FRIEND is true, DECL is a friend declaration. */
5027 tree
5028 push_template_decl_real (tree decl, bool is_friend)
5030 tree tmpl;
5031 tree args;
5032 tree info;
5033 tree ctx;
5034 bool is_primary;
5035 bool is_partial;
5036 int new_template_p = 0;
5037 /* True if the template is a member template, in the sense of
5038 [temp.mem]. */
5039 bool member_template_p = false;
5041 if (decl == error_mark_node || !current_template_parms)
5042 return error_mark_node;
5044 /* See if this is a partial specialization. */
5045 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5046 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5047 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5048 || (VAR_P (decl)
5049 && DECL_LANG_SPECIFIC (decl)
5050 && DECL_TEMPLATE_SPECIALIZATION (decl)
5051 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5053 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5054 is_friend = true;
5056 if (is_friend)
5057 /* For a friend, we want the context of the friend function, not
5058 the type of which it is a friend. */
5059 ctx = CP_DECL_CONTEXT (decl);
5060 else if (CP_DECL_CONTEXT (decl)
5061 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5062 /* In the case of a virtual function, we want the class in which
5063 it is defined. */
5064 ctx = CP_DECL_CONTEXT (decl);
5065 else
5066 /* Otherwise, if we're currently defining some class, the DECL
5067 is assumed to be a member of the class. */
5068 ctx = current_scope ();
5070 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5071 ctx = NULL_TREE;
5073 if (!DECL_CONTEXT (decl))
5074 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5076 /* See if this is a primary template. */
5077 if (is_friend && ctx
5078 && uses_template_parms_level (ctx, processing_template_decl))
5079 /* A friend template that specifies a class context, i.e.
5080 template <typename T> friend void A<T>::f();
5081 is not primary. */
5082 is_primary = false;
5083 else if (TREE_CODE (decl) == TYPE_DECL
5084 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5085 is_primary = false;
5086 else
5087 is_primary = template_parm_scope_p ();
5089 if (is_primary)
5091 warning (OPT_Wtemplates, "template %qD declared", decl);
5093 if (DECL_CLASS_SCOPE_P (decl))
5094 member_template_p = true;
5095 if (TREE_CODE (decl) == TYPE_DECL
5096 && anon_aggrname_p (DECL_NAME (decl)))
5098 error ("template class without a name");
5099 return error_mark_node;
5101 else if (TREE_CODE (decl) == FUNCTION_DECL)
5103 if (member_template_p)
5105 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5106 error ("member template %qD may not have virt-specifiers", decl);
5108 if (DECL_DESTRUCTOR_P (decl))
5110 /* [temp.mem]
5112 A destructor shall not be a member template. */
5113 error ("destructor %qD declared as member template", decl);
5114 return error_mark_node;
5116 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5117 && (!prototype_p (TREE_TYPE (decl))
5118 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5119 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5120 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5121 == void_list_node)))
5123 /* [basic.stc.dynamic.allocation]
5125 An allocation function can be a function
5126 template. ... Template allocation functions shall
5127 have two or more parameters. */
5128 error ("invalid template declaration of %qD", decl);
5129 return error_mark_node;
5132 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5133 && CLASS_TYPE_P (TREE_TYPE (decl)))
5134 /* OK */;
5135 else if (TREE_CODE (decl) == TYPE_DECL
5136 && TYPE_DECL_ALIAS_P (decl))
5137 /* alias-declaration */
5138 gcc_assert (!DECL_ARTIFICIAL (decl));
5139 else if (VAR_P (decl))
5140 /* C++14 variable template. */;
5141 else
5143 error ("template declaration of %q#D", decl);
5144 return error_mark_node;
5148 /* Check to see that the rules regarding the use of default
5149 arguments are not being violated. */
5150 check_default_tmpl_args (decl, current_template_parms,
5151 is_primary, is_partial, /*is_friend_decl=*/0);
5153 /* Ensure that there are no parameter packs in the type of this
5154 declaration that have not been expanded. */
5155 if (TREE_CODE (decl) == FUNCTION_DECL)
5157 /* Check each of the arguments individually to see if there are
5158 any bare parameter packs. */
5159 tree type = TREE_TYPE (decl);
5160 tree arg = DECL_ARGUMENTS (decl);
5161 tree argtype = TYPE_ARG_TYPES (type);
5163 while (arg && argtype)
5165 if (!DECL_PACK_P (arg)
5166 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5168 /* This is a PARM_DECL that contains unexpanded parameter
5169 packs. We have already complained about this in the
5170 check_for_bare_parameter_packs call, so just replace
5171 these types with ERROR_MARK_NODE. */
5172 TREE_TYPE (arg) = error_mark_node;
5173 TREE_VALUE (argtype) = error_mark_node;
5176 arg = DECL_CHAIN (arg);
5177 argtype = TREE_CHAIN (argtype);
5180 /* Check for bare parameter packs in the return type and the
5181 exception specifiers. */
5182 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5183 /* Errors were already issued, set return type to int
5184 as the frontend doesn't expect error_mark_node as
5185 the return type. */
5186 TREE_TYPE (type) = integer_type_node;
5187 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5188 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5190 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5191 && TYPE_DECL_ALIAS_P (decl))
5192 ? DECL_ORIGINAL_TYPE (decl)
5193 : TREE_TYPE (decl)))
5195 TREE_TYPE (decl) = error_mark_node;
5196 return error_mark_node;
5199 if (is_partial)
5200 return process_partial_specialization (decl);
5202 args = current_template_args ();
5204 if (!ctx
5205 || TREE_CODE (ctx) == FUNCTION_DECL
5206 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5207 || (TREE_CODE (decl) == TYPE_DECL
5208 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5209 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5211 if (DECL_LANG_SPECIFIC (decl)
5212 && DECL_TEMPLATE_INFO (decl)
5213 && DECL_TI_TEMPLATE (decl))
5214 tmpl = DECL_TI_TEMPLATE (decl);
5215 /* If DECL is a TYPE_DECL for a class-template, then there won't
5216 be DECL_LANG_SPECIFIC. The information equivalent to
5217 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5218 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5219 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5220 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5222 /* Since a template declaration already existed for this
5223 class-type, we must be redeclaring it here. Make sure
5224 that the redeclaration is valid. */
5225 redeclare_class_template (TREE_TYPE (decl),
5226 current_template_parms,
5227 current_template_constraints ());
5228 /* We don't need to create a new TEMPLATE_DECL; just use the
5229 one we already had. */
5230 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5232 else
5234 tmpl = build_template_decl (decl, current_template_parms,
5235 member_template_p);
5236 new_template_p = 1;
5238 if (DECL_LANG_SPECIFIC (decl)
5239 && DECL_TEMPLATE_SPECIALIZATION (decl))
5241 /* A specialization of a member template of a template
5242 class. */
5243 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5244 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5245 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5249 else
5251 tree a, t, current, parms;
5252 int i;
5253 tree tinfo = get_template_info (decl);
5255 if (!tinfo)
5257 error ("template definition of non-template %q#D", decl);
5258 return error_mark_node;
5261 tmpl = TI_TEMPLATE (tinfo);
5263 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5264 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5265 && DECL_TEMPLATE_SPECIALIZATION (decl)
5266 && DECL_MEMBER_TEMPLATE_P (tmpl))
5268 tree new_tmpl;
5270 /* The declaration is a specialization of a member
5271 template, declared outside the class. Therefore, the
5272 innermost template arguments will be NULL, so we
5273 replace them with the arguments determined by the
5274 earlier call to check_explicit_specialization. */
5275 args = DECL_TI_ARGS (decl);
5277 new_tmpl
5278 = build_template_decl (decl, current_template_parms,
5279 member_template_p);
5280 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5281 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5282 DECL_TI_TEMPLATE (decl) = new_tmpl;
5283 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5284 DECL_TEMPLATE_INFO (new_tmpl)
5285 = build_template_info (tmpl, args);
5287 register_specialization (new_tmpl,
5288 most_general_template (tmpl),
5289 args,
5290 is_friend, 0);
5291 return decl;
5294 /* Make sure the template headers we got make sense. */
5296 parms = DECL_TEMPLATE_PARMS (tmpl);
5297 i = TMPL_PARMS_DEPTH (parms);
5298 if (TMPL_ARGS_DEPTH (args) != i)
5300 error ("expected %d levels of template parms for %q#D, got %d",
5301 i, decl, TMPL_ARGS_DEPTH (args));
5302 DECL_INTERFACE_KNOWN (decl) = 1;
5303 return error_mark_node;
5305 else
5306 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5308 a = TMPL_ARGS_LEVEL (args, i);
5309 t = INNERMOST_TEMPLATE_PARMS (parms);
5311 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5313 if (current == decl)
5314 error ("got %d template parameters for %q#D",
5315 TREE_VEC_LENGTH (a), decl);
5316 else
5317 error ("got %d template parameters for %q#T",
5318 TREE_VEC_LENGTH (a), current);
5319 error (" but %d required", TREE_VEC_LENGTH (t));
5320 /* Avoid crash in import_export_decl. */
5321 DECL_INTERFACE_KNOWN (decl) = 1;
5322 return error_mark_node;
5325 if (current == decl)
5326 current = ctx;
5327 else if (current == NULL_TREE)
5328 /* Can happen in erroneous input. */
5329 break;
5330 else
5331 current = get_containing_scope (current);
5334 /* Check that the parms are used in the appropriate qualifying scopes
5335 in the declarator. */
5336 if (!comp_template_args
5337 (TI_ARGS (tinfo),
5338 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5340 error ("\
5341 template arguments to %qD do not match original template %qD",
5342 decl, DECL_TEMPLATE_RESULT (tmpl));
5343 if (!uses_template_parms (TI_ARGS (tinfo)))
5344 inform (input_location, "use template<> for an explicit specialization");
5345 /* Avoid crash in import_export_decl. */
5346 DECL_INTERFACE_KNOWN (decl) = 1;
5347 return error_mark_node;
5351 DECL_TEMPLATE_RESULT (tmpl) = decl;
5352 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5354 /* Push template declarations for global functions and types. Note
5355 that we do not try to push a global template friend declared in a
5356 template class; such a thing may well depend on the template
5357 parameters of the class. */
5358 if (new_template_p && !ctx
5359 && !(is_friend && template_class_depth (current_class_type) > 0))
5361 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5362 if (tmpl == error_mark_node)
5363 return error_mark_node;
5365 /* Hide template friend classes that haven't been declared yet. */
5366 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5368 DECL_ANTICIPATED (tmpl) = 1;
5369 DECL_FRIEND_P (tmpl) = 1;
5373 if (is_primary)
5375 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5376 int i;
5378 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5379 if (DECL_CONV_FN_P (tmpl))
5381 int depth = TMPL_PARMS_DEPTH (parms);
5383 /* It is a conversion operator. See if the type converted to
5384 depends on innermost template operands. */
5386 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5387 depth))
5388 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5391 /* Give template template parms a DECL_CONTEXT of the template
5392 for which they are a parameter. */
5393 parms = INNERMOST_TEMPLATE_PARMS (parms);
5394 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5396 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5397 if (TREE_CODE (parm) == TEMPLATE_DECL)
5398 DECL_CONTEXT (parm) = tmpl;
5401 if (TREE_CODE (decl) == TYPE_DECL
5402 && TYPE_DECL_ALIAS_P (decl)
5403 && complex_alias_template_p (tmpl))
5404 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5407 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5408 back to its most general template. If TMPL is a specialization,
5409 ARGS may only have the innermost set of arguments. Add the missing
5410 argument levels if necessary. */
5411 if (DECL_TEMPLATE_INFO (tmpl))
5412 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5414 info = build_template_info (tmpl, args);
5416 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5417 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5418 else
5420 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5421 retrofit_lang_decl (decl);
5422 if (DECL_LANG_SPECIFIC (decl))
5423 DECL_TEMPLATE_INFO (decl) = info;
5426 if (flag_implicit_templates
5427 && !is_friend
5428 && TREE_PUBLIC (decl)
5429 && VAR_OR_FUNCTION_DECL_P (decl))
5430 /* Set DECL_COMDAT on template instantiations; if we force
5431 them to be emitted by explicit instantiation or -frepo,
5432 mark_needed will tell cgraph to do the right thing. */
5433 DECL_COMDAT (decl) = true;
5435 return DECL_TEMPLATE_RESULT (tmpl);
5438 tree
5439 push_template_decl (tree decl)
5441 return push_template_decl_real (decl, false);
5444 /* FN is an inheriting constructor that inherits from the constructor
5445 template INHERITED; turn FN into a constructor template with a matching
5446 template header. */
5448 tree
5449 add_inherited_template_parms (tree fn, tree inherited)
5451 tree inner_parms
5452 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5453 inner_parms = copy_node (inner_parms);
5454 tree parms
5455 = tree_cons (size_int (processing_template_decl + 1),
5456 inner_parms, current_template_parms);
5457 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5458 tree args = template_parms_to_args (parms);
5459 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5460 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5461 DECL_TEMPLATE_RESULT (tmpl) = fn;
5462 DECL_ARTIFICIAL (tmpl) = true;
5463 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5464 return tmpl;
5467 /* Called when a class template TYPE is redeclared with the indicated
5468 template PARMS, e.g.:
5470 template <class T> struct S;
5471 template <class T> struct S {}; */
5473 bool
5474 redeclare_class_template (tree type, tree parms, tree cons)
5476 tree tmpl;
5477 tree tmpl_parms;
5478 int i;
5480 if (!TYPE_TEMPLATE_INFO (type))
5482 error ("%qT is not a template type", type);
5483 return false;
5486 tmpl = TYPE_TI_TEMPLATE (type);
5487 if (!PRIMARY_TEMPLATE_P (tmpl))
5488 /* The type is nested in some template class. Nothing to worry
5489 about here; there are no new template parameters for the nested
5490 type. */
5491 return true;
5493 if (!parms)
5495 error ("template specifiers not specified in declaration of %qD",
5496 tmpl);
5497 return false;
5500 parms = INNERMOST_TEMPLATE_PARMS (parms);
5501 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5503 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5505 error_n (input_location, TREE_VEC_LENGTH (parms),
5506 "redeclared with %d template parameter",
5507 "redeclared with %d template parameters",
5508 TREE_VEC_LENGTH (parms));
5509 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5510 "previous declaration %qD used %d template parameter",
5511 "previous declaration %qD used %d template parameters",
5512 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5513 return false;
5516 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5518 tree tmpl_parm;
5519 tree parm;
5520 tree tmpl_default;
5521 tree parm_default;
5523 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5524 || TREE_VEC_ELT (parms, i) == error_mark_node)
5525 continue;
5527 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5528 if (error_operand_p (tmpl_parm))
5529 return false;
5531 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5532 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5533 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5535 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5536 TEMPLATE_DECL. */
5537 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5538 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5539 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5540 || (TREE_CODE (tmpl_parm) != PARM_DECL
5541 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5542 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5543 || (TREE_CODE (tmpl_parm) == PARM_DECL
5544 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5545 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5547 error ("template parameter %q+#D", tmpl_parm);
5548 error ("redeclared here as %q#D", parm);
5549 return false;
5552 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5554 /* We have in [temp.param]:
5556 A template-parameter may not be given default arguments
5557 by two different declarations in the same scope. */
5558 error_at (input_location, "redefinition of default argument for %q#D", parm);
5559 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5560 "original definition appeared here");
5561 return false;
5564 if (parm_default != NULL_TREE)
5565 /* Update the previous template parameters (which are the ones
5566 that will really count) with the new default value. */
5567 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5568 else if (tmpl_default != NULL_TREE)
5569 /* Update the new parameters, too; they'll be used as the
5570 parameters for any members. */
5571 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5573 /* Give each template template parm in this redeclaration a
5574 DECL_CONTEXT of the template for which they are a parameter. */
5575 if (TREE_CODE (parm) == TEMPLATE_DECL)
5577 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5578 DECL_CONTEXT (parm) = tmpl;
5582 // Cannot redeclare a class template with a different set of constraints.
5583 if (!equivalent_constraints (get_constraints (tmpl), cons))
5585 error_at (input_location, "redeclaration %q#D with different "
5586 "constraints", tmpl);
5587 inform (DECL_SOURCE_LOCATION (tmpl),
5588 "original declaration appeared here");
5591 return true;
5594 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5595 to be used when the caller has already checked
5596 (processing_template_decl
5597 && !instantiation_dependent_expression_p (expr)
5598 && potential_constant_expression (expr))
5599 and cleared processing_template_decl. */
5601 tree
5602 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5604 return tsubst_copy_and_build (expr,
5605 /*args=*/NULL_TREE,
5606 complain,
5607 /*in_decl=*/NULL_TREE,
5608 /*function_p=*/false,
5609 /*integral_constant_expression_p=*/true);
5612 /* Simplify EXPR if it is a non-dependent expression. Returns the
5613 (possibly simplified) expression. */
5615 tree
5616 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5618 if (expr == NULL_TREE)
5619 return NULL_TREE;
5621 /* If we're in a template, but EXPR isn't value dependent, simplify
5622 it. We're supposed to treat:
5624 template <typename T> void f(T[1 + 1]);
5625 template <typename T> void f(T[2]);
5627 as two declarations of the same function, for example. */
5628 if (processing_template_decl
5629 && !instantiation_dependent_expression_p (expr)
5630 && potential_constant_expression (expr))
5632 processing_template_decl_sentinel s;
5633 expr = instantiate_non_dependent_expr_internal (expr, complain);
5635 return expr;
5638 tree
5639 instantiate_non_dependent_expr (tree expr)
5641 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5644 /* True iff T is a specialization of a variable template. */
5646 bool
5647 variable_template_specialization_p (tree t)
5649 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5650 return false;
5651 tree tmpl = DECL_TI_TEMPLATE (t);
5652 return variable_template_p (tmpl);
5655 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5656 template declaration, or a TYPE_DECL for an alias declaration. */
5658 bool
5659 alias_type_or_template_p (tree t)
5661 if (t == NULL_TREE)
5662 return false;
5663 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5664 || (TYPE_P (t)
5665 && TYPE_NAME (t)
5666 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5667 || DECL_ALIAS_TEMPLATE_P (t));
5670 /* Return TRUE iff T is a specialization of an alias template. */
5672 bool
5673 alias_template_specialization_p (const_tree t)
5675 /* It's an alias template specialization if it's an alias and its
5676 TYPE_NAME is a specialization of a primary template. */
5677 if (TYPE_ALIAS_P (t))
5679 tree name = TYPE_NAME (t);
5680 if (DECL_LANG_SPECIFIC (name))
5681 if (tree ti = DECL_TEMPLATE_INFO (name))
5683 tree tmpl = TI_TEMPLATE (ti);
5684 return PRIMARY_TEMPLATE_P (tmpl);
5687 return false;
5690 /* An alias template is complex from a SFINAE perspective if a template-id
5691 using that alias can be ill-formed when the expansion is not, as with
5692 the void_t template. We determine this by checking whether the
5693 expansion for the alias template uses all its template parameters. */
5695 struct uses_all_template_parms_data
5697 int level;
5698 bool *seen;
5701 static int
5702 uses_all_template_parms_r (tree t, void *data_)
5704 struct uses_all_template_parms_data &data
5705 = *(struct uses_all_template_parms_data*)data_;
5706 tree idx = get_template_parm_index (t);
5708 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5709 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5710 return 0;
5713 static bool
5714 complex_alias_template_p (const_tree tmpl)
5716 struct uses_all_template_parms_data data;
5717 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5718 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5719 data.level = TMPL_PARMS_DEPTH (parms);
5720 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5721 data.seen = XALLOCAVEC (bool, len);
5722 for (int i = 0; i < len; ++i)
5723 data.seen[i] = false;
5725 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5726 for (int i = 0; i < len; ++i)
5727 if (!data.seen[i])
5728 return true;
5729 return false;
5732 /* Return TRUE iff T is a specialization of a complex alias template with
5733 dependent template-arguments. */
5735 bool
5736 dependent_alias_template_spec_p (const_tree t)
5738 return (alias_template_specialization_p (t)
5739 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5740 && (any_dependent_template_arguments_p
5741 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5744 /* Return the number of innermost template parameters in TMPL. */
5746 static int
5747 num_innermost_template_parms (tree tmpl)
5749 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5750 return TREE_VEC_LENGTH (parms);
5753 /* Return either TMPL or another template that it is equivalent to under DR
5754 1286: An alias that just changes the name of a template is equivalent to
5755 the other template. */
5757 static tree
5758 get_underlying_template (tree tmpl)
5760 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5761 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5763 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5764 if (TYPE_TEMPLATE_INFO (result))
5766 tree sub = TYPE_TI_TEMPLATE (result);
5767 if (PRIMARY_TEMPLATE_P (sub)
5768 && (num_innermost_template_parms (tmpl)
5769 == num_innermost_template_parms (sub)))
5771 tree alias_args = INNERMOST_TEMPLATE_ARGS
5772 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5773 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5774 break;
5775 /* The alias type is equivalent to the pattern of the
5776 underlying template, so strip the alias. */
5777 tmpl = sub;
5778 continue;
5781 break;
5783 return tmpl;
5786 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5787 must be a function or a pointer-to-function type, as specified
5788 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5789 and check that the resulting function has external linkage. */
5791 static tree
5792 convert_nontype_argument_function (tree type, tree expr,
5793 tsubst_flags_t complain)
5795 tree fns = expr;
5796 tree fn, fn_no_ptr;
5797 linkage_kind linkage;
5799 fn = instantiate_type (type, fns, tf_none);
5800 if (fn == error_mark_node)
5801 return error_mark_node;
5803 fn_no_ptr = fn;
5804 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5805 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5806 if (BASELINK_P (fn_no_ptr))
5807 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5809 /* [temp.arg.nontype]/1
5811 A template-argument for a non-type, non-template template-parameter
5812 shall be one of:
5813 [...]
5814 -- the address of an object or function with external [C++11: or
5815 internal] linkage. */
5817 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5819 if (complain & tf_error)
5821 error ("%qE is not a valid template argument for type %qT",
5822 expr, type);
5823 if (TYPE_PTR_P (type))
5824 error ("it must be the address of a function with "
5825 "external linkage");
5826 else
5827 error ("it must be the name of a function with "
5828 "external linkage");
5830 return NULL_TREE;
5833 linkage = decl_linkage (fn_no_ptr);
5834 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5836 if (complain & tf_error)
5838 if (cxx_dialect >= cxx11)
5839 error ("%qE is not a valid template argument for type %qT "
5840 "because %qD has no linkage",
5841 expr, type, fn_no_ptr);
5842 else
5843 error ("%qE is not a valid template argument for type %qT "
5844 "because %qD does not have external linkage",
5845 expr, type, fn_no_ptr);
5847 return NULL_TREE;
5850 return fn;
5853 /* Subroutine of convert_nontype_argument.
5854 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5855 Emit an error otherwise. */
5857 static bool
5858 check_valid_ptrmem_cst_expr (tree type, tree expr,
5859 tsubst_flags_t complain)
5861 STRIP_NOPS (expr);
5862 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5863 return true;
5864 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5865 return true;
5866 if (processing_template_decl
5867 && TREE_CODE (expr) == ADDR_EXPR
5868 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5869 return true;
5870 if (complain & tf_error)
5872 error ("%qE is not a valid template argument for type %qT",
5873 expr, type);
5874 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5876 return false;
5879 /* Returns TRUE iff the address of OP is value-dependent.
5881 14.6.2.4 [temp.dep.temp]:
5882 A non-integral non-type template-argument is dependent if its type is
5883 dependent or it has either of the following forms
5884 qualified-id
5885 & qualified-id
5886 and contains a nested-name-specifier which specifies a class-name that
5887 names a dependent type.
5889 We generalize this to just say that the address of a member of a
5890 dependent class is value-dependent; the above doesn't cover the
5891 address of a static data member named with an unqualified-id. */
5893 static bool
5894 has_value_dependent_address (tree op)
5896 /* We could use get_inner_reference here, but there's no need;
5897 this is only relevant for template non-type arguments, which
5898 can only be expressed as &id-expression. */
5899 if (DECL_P (op))
5901 tree ctx = CP_DECL_CONTEXT (op);
5902 if (TYPE_P (ctx) && dependent_type_p (ctx))
5903 return true;
5906 return false;
5909 /* The next set of functions are used for providing helpful explanatory
5910 diagnostics for failed overload resolution. Their messages should be
5911 indented by two spaces for consistency with the messages in
5912 call.c */
5914 static int
5915 unify_success (bool /*explain_p*/)
5917 return 0;
5920 static int
5921 unify_parameter_deduction_failure (bool explain_p, tree parm)
5923 if (explain_p)
5924 inform (input_location,
5925 " couldn't deduce template parameter %qD", parm);
5926 return 1;
5929 static int
5930 unify_invalid (bool /*explain_p*/)
5932 return 1;
5935 static int
5936 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5938 if (explain_p)
5939 inform (input_location,
5940 " types %qT and %qT have incompatible cv-qualifiers",
5941 parm, arg);
5942 return 1;
5945 static int
5946 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5948 if (explain_p)
5949 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5950 return 1;
5953 static int
5954 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5956 if (explain_p)
5957 inform (input_location,
5958 " template parameter %qD is not a parameter pack, but "
5959 "argument %qD is",
5960 parm, arg);
5961 return 1;
5964 static int
5965 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5967 if (explain_p)
5968 inform (input_location,
5969 " template argument %qE does not match "
5970 "pointer-to-member constant %qE",
5971 arg, parm);
5972 return 1;
5975 static int
5976 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5978 if (explain_p)
5979 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5980 return 1;
5983 static int
5984 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5986 if (explain_p)
5987 inform (input_location,
5988 " inconsistent parameter pack deduction with %qT and %qT",
5989 old_arg, new_arg);
5990 return 1;
5993 static int
5994 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5996 if (explain_p)
5998 if (TYPE_P (parm))
5999 inform (input_location,
6000 " deduced conflicting types for parameter %qT (%qT and %qT)",
6001 parm, first, second);
6002 else
6003 inform (input_location,
6004 " deduced conflicting values for non-type parameter "
6005 "%qE (%qE and %qE)", parm, first, second);
6007 return 1;
6010 static int
6011 unify_vla_arg (bool explain_p, tree arg)
6013 if (explain_p)
6014 inform (input_location,
6015 " variable-sized array type %qT is not "
6016 "a valid template argument",
6017 arg);
6018 return 1;
6021 static int
6022 unify_method_type_error (bool explain_p, tree arg)
6024 if (explain_p)
6025 inform (input_location,
6026 " member function type %qT is not a valid template argument",
6027 arg);
6028 return 1;
6031 static int
6032 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6034 if (explain_p)
6036 if (least_p)
6037 inform_n (input_location, wanted,
6038 " candidate expects at least %d argument, %d provided",
6039 " candidate expects at least %d arguments, %d provided",
6040 wanted, have);
6041 else
6042 inform_n (input_location, wanted,
6043 " candidate expects %d argument, %d provided",
6044 " candidate expects %d arguments, %d provided",
6045 wanted, have);
6047 return 1;
6050 static int
6051 unify_too_many_arguments (bool explain_p, int have, int wanted)
6053 return unify_arity (explain_p, have, wanted);
6056 static int
6057 unify_too_few_arguments (bool explain_p, int have, int wanted,
6058 bool least_p = false)
6060 return unify_arity (explain_p, have, wanted, least_p);
6063 static int
6064 unify_arg_conversion (bool explain_p, tree to_type,
6065 tree from_type, tree arg)
6067 if (explain_p)
6068 inform (EXPR_LOC_OR_LOC (arg, input_location),
6069 " cannot convert %qE (type %qT) to type %qT",
6070 arg, from_type, to_type);
6071 return 1;
6074 static int
6075 unify_no_common_base (bool explain_p, enum template_base_result r,
6076 tree parm, tree arg)
6078 if (explain_p)
6079 switch (r)
6081 case tbr_ambiguous_baseclass:
6082 inform (input_location, " %qT is an ambiguous base class of %qT",
6083 parm, arg);
6084 break;
6085 default:
6086 inform (input_location, " %qT is not derived from %qT", arg, parm);
6087 break;
6089 return 1;
6092 static int
6093 unify_inconsistent_template_template_parameters (bool explain_p)
6095 if (explain_p)
6096 inform (input_location,
6097 " template parameters of a template template argument are "
6098 "inconsistent with other deduced template arguments");
6099 return 1;
6102 static int
6103 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6105 if (explain_p)
6106 inform (input_location,
6107 " can't deduce a template for %qT from non-template type %qT",
6108 parm, arg);
6109 return 1;
6112 static int
6113 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6115 if (explain_p)
6116 inform (input_location,
6117 " template argument %qE does not match %qD", arg, parm);
6118 return 1;
6121 static int
6122 unify_overload_resolution_failure (bool explain_p, tree arg)
6124 if (explain_p)
6125 inform (input_location,
6126 " could not resolve address from overloaded function %qE",
6127 arg);
6128 return 1;
6131 /* Attempt to convert the non-type template parameter EXPR to the
6132 indicated TYPE. If the conversion is successful, return the
6133 converted value. If the conversion is unsuccessful, return
6134 NULL_TREE if we issued an error message, or error_mark_node if we
6135 did not. We issue error messages for out-and-out bad template
6136 parameters, but not simply because the conversion failed, since we
6137 might be just trying to do argument deduction. Both TYPE and EXPR
6138 must be non-dependent.
6140 The conversion follows the special rules described in
6141 [temp.arg.nontype], and it is much more strict than an implicit
6142 conversion.
6144 This function is called twice for each template argument (see
6145 lookup_template_class for a more accurate description of this
6146 problem). This means that we need to handle expressions which
6147 are not valid in a C++ source, but can be created from the
6148 first call (for instance, casts to perform conversions). These
6149 hacks can go away after we fix the double coercion problem. */
6151 static tree
6152 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6154 tree expr_type;
6156 /* Detect immediately string literals as invalid non-type argument.
6157 This special-case is not needed for correctness (we would easily
6158 catch this later), but only to provide better diagnostic for this
6159 common user mistake. As suggested by DR 100, we do not mention
6160 linkage issues in the diagnostic as this is not the point. */
6161 /* FIXME we're making this OK. */
6162 if (TREE_CODE (expr) == STRING_CST)
6164 if (complain & tf_error)
6165 error ("%qE is not a valid template argument for type %qT "
6166 "because string literals can never be used in this context",
6167 expr, type);
6168 return NULL_TREE;
6171 /* Add the ADDR_EXPR now for the benefit of
6172 value_dependent_expression_p. */
6173 if (TYPE_PTROBV_P (type)
6174 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6176 expr = decay_conversion (expr, complain);
6177 if (expr == error_mark_node)
6178 return error_mark_node;
6181 /* If we are in a template, EXPR may be non-dependent, but still
6182 have a syntactic, rather than semantic, form. For example, EXPR
6183 might be a SCOPE_REF, rather than the VAR_DECL to which the
6184 SCOPE_REF refers. Preserving the qualifying scope is necessary
6185 so that access checking can be performed when the template is
6186 instantiated -- but here we need the resolved form so that we can
6187 convert the argument. */
6188 bool non_dep = false;
6189 if (TYPE_REF_OBJ_P (type)
6190 && has_value_dependent_address (expr))
6191 /* If we want the address and it's value-dependent, don't fold. */;
6192 else if (!type_unknown_p (expr)
6193 && processing_template_decl
6194 && !instantiation_dependent_expression_p (expr)
6195 && potential_constant_expression (expr))
6196 non_dep = true;
6197 if (error_operand_p (expr))
6198 return error_mark_node;
6199 expr_type = TREE_TYPE (expr);
6200 if (TREE_CODE (type) == REFERENCE_TYPE)
6201 expr = mark_lvalue_use (expr);
6202 else
6203 expr = mark_rvalue_use (expr);
6205 /* If the argument is non-dependent, perform any conversions in
6206 non-dependent context as well. */
6207 processing_template_decl_sentinel s (non_dep);
6208 if (non_dep)
6209 expr = instantiate_non_dependent_expr_internal (expr, complain);
6211 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6212 to a non-type argument of "nullptr". */
6213 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6214 expr = convert (type, expr);
6216 /* In C++11, integral or enumeration non-type template arguments can be
6217 arbitrary constant expressions. Pointer and pointer to
6218 member arguments can be general constant expressions that evaluate
6219 to a null value, but otherwise still need to be of a specific form. */
6220 if (cxx_dialect >= cxx11)
6222 if (TREE_CODE (expr) == PTRMEM_CST)
6223 /* A PTRMEM_CST is already constant, and a valid template
6224 argument for a parameter of pointer to member type, we just want
6225 to leave it in that form rather than lower it to a
6226 CONSTRUCTOR. */;
6227 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6228 expr = maybe_constant_value (expr);
6229 else if (TYPE_PTR_OR_PTRMEM_P (type))
6231 tree folded = maybe_constant_value (expr);
6232 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6233 : null_member_pointer_value_p (folded))
6234 expr = folded;
6238 /* HACK: Due to double coercion, we can get a
6239 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6240 which is the tree that we built on the first call (see
6241 below when coercing to reference to object or to reference to
6242 function). We just strip everything and get to the arg.
6243 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6244 for examples. */
6245 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6247 tree probe_type, probe = expr;
6248 if (REFERENCE_REF_P (probe))
6249 probe = TREE_OPERAND (probe, 0);
6250 probe_type = TREE_TYPE (probe);
6251 if (TREE_CODE (probe) == NOP_EXPR)
6253 /* ??? Maybe we could use convert_from_reference here, but we
6254 would need to relax its constraints because the NOP_EXPR
6255 could actually change the type to something more cv-qualified,
6256 and this is not folded by convert_from_reference. */
6257 tree addr = TREE_OPERAND (probe, 0);
6258 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6259 && TREE_CODE (addr) == ADDR_EXPR
6260 && TYPE_PTR_P (TREE_TYPE (addr))
6261 && (same_type_ignoring_top_level_qualifiers_p
6262 (TREE_TYPE (probe_type),
6263 TREE_TYPE (TREE_TYPE (addr)))))
6265 expr = TREE_OPERAND (addr, 0);
6266 expr_type = TREE_TYPE (probe_type);
6271 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6272 parameter is a pointer to object, through decay and
6273 qualification conversion. Let's strip everything. */
6274 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6276 tree probe = expr;
6277 STRIP_NOPS (probe);
6278 if (TREE_CODE (probe) == ADDR_EXPR
6279 && TYPE_PTR_P (TREE_TYPE (probe)))
6281 /* Skip the ADDR_EXPR only if it is part of the decay for
6282 an array. Otherwise, it is part of the original argument
6283 in the source code. */
6284 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6285 probe = TREE_OPERAND (probe, 0);
6286 expr = probe;
6287 expr_type = TREE_TYPE (expr);
6291 /* [temp.arg.nontype]/5, bullet 1
6293 For a non-type template-parameter of integral or enumeration type,
6294 integral promotions (_conv.prom_) and integral conversions
6295 (_conv.integral_) are applied. */
6296 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6298 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6299 t = maybe_constant_value (t);
6300 if (t != error_mark_node)
6301 expr = t;
6303 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6304 return error_mark_node;
6306 /* Notice that there are constant expressions like '4 % 0' which
6307 do not fold into integer constants. */
6308 if (TREE_CODE (expr) != INTEGER_CST)
6310 if (complain & tf_error)
6312 int errs = errorcount, warns = warningcount + werrorcount;
6313 if (processing_template_decl
6314 && !require_potential_constant_expression (expr))
6315 return NULL_TREE;
6316 expr = cxx_constant_value (expr);
6317 if (errorcount > errs || warningcount + werrorcount > warns)
6318 inform (EXPR_LOC_OR_LOC (expr, input_location),
6319 "in template argument for type %qT ", type);
6320 if (expr == error_mark_node)
6321 return NULL_TREE;
6322 /* else cxx_constant_value complained but gave us
6323 a real constant, so go ahead. */
6324 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6326 else
6327 return NULL_TREE;
6330 /* Avoid typedef problems. */
6331 if (TREE_TYPE (expr) != type)
6332 expr = fold_convert (type, expr);
6334 /* [temp.arg.nontype]/5, bullet 2
6336 For a non-type template-parameter of type pointer to object,
6337 qualification conversions (_conv.qual_) and the array-to-pointer
6338 conversion (_conv.array_) are applied. */
6339 else if (TYPE_PTROBV_P (type))
6341 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6343 A template-argument for a non-type, non-template template-parameter
6344 shall be one of: [...]
6346 -- the name of a non-type template-parameter;
6347 -- the address of an object or function with external linkage, [...]
6348 expressed as "& id-expression" where the & is optional if the name
6349 refers to a function or array, or if the corresponding
6350 template-parameter is a reference.
6352 Here, we do not care about functions, as they are invalid anyway
6353 for a parameter of type pointer-to-object. */
6355 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6356 /* Non-type template parameters are OK. */
6358 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6359 /* Null pointer values are OK in C++11. */;
6360 else if (TREE_CODE (expr) != ADDR_EXPR
6361 && TREE_CODE (expr_type) != ARRAY_TYPE)
6363 if (VAR_P (expr))
6365 if (complain & tf_error)
6366 error ("%qD is not a valid template argument "
6367 "because %qD is a variable, not the address of "
6368 "a variable", expr, expr);
6369 return NULL_TREE;
6371 if (POINTER_TYPE_P (expr_type))
6373 if (complain & tf_error)
6374 error ("%qE is not a valid template argument for %qT "
6375 "because it is not the address of a variable",
6376 expr, type);
6377 return NULL_TREE;
6379 /* Other values, like integer constants, might be valid
6380 non-type arguments of some other type. */
6381 return error_mark_node;
6383 else
6385 tree decl;
6387 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6388 ? TREE_OPERAND (expr, 0) : expr);
6389 if (!VAR_P (decl))
6391 if (complain & tf_error)
6392 error ("%qE is not a valid template argument of type %qT "
6393 "because %qE is not a variable", expr, type, decl);
6394 return NULL_TREE;
6396 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6398 if (complain & tf_error)
6399 error ("%qE is not a valid template argument of type %qT "
6400 "because %qD does not have external linkage",
6401 expr, type, decl);
6402 return NULL_TREE;
6404 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6406 if (complain & tf_error)
6407 error ("%qE is not a valid template argument of type %qT "
6408 "because %qD has no linkage", expr, type, decl);
6409 return NULL_TREE;
6413 expr = decay_conversion (expr, complain);
6414 if (expr == error_mark_node)
6415 return error_mark_node;
6417 expr = perform_qualification_conversions (type, expr);
6418 if (expr == error_mark_node)
6419 return error_mark_node;
6421 /* [temp.arg.nontype]/5, bullet 3
6423 For a non-type template-parameter of type reference to object, no
6424 conversions apply. The type referred to by the reference may be more
6425 cv-qualified than the (otherwise identical) type of the
6426 template-argument. The template-parameter is bound directly to the
6427 template-argument, which must be an lvalue. */
6428 else if (TYPE_REF_OBJ_P (type))
6430 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6431 expr_type))
6432 return error_mark_node;
6434 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6436 if (complain & tf_error)
6437 error ("%qE is not a valid template argument for type %qT "
6438 "because of conflicts in cv-qualification", expr, type);
6439 return NULL_TREE;
6442 if (!real_lvalue_p (expr))
6444 if (complain & tf_error)
6445 error ("%qE is not a valid template argument for type %qT "
6446 "because it is not an lvalue", expr, type);
6447 return NULL_TREE;
6450 /* [temp.arg.nontype]/1
6452 A template-argument for a non-type, non-template template-parameter
6453 shall be one of: [...]
6455 -- the address of an object or function with external linkage. */
6456 if (INDIRECT_REF_P (expr)
6457 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6459 expr = TREE_OPERAND (expr, 0);
6460 if (DECL_P (expr))
6462 if (complain & tf_error)
6463 error ("%q#D is not a valid template argument for type %qT "
6464 "because a reference variable does not have a constant "
6465 "address", expr, type);
6466 return NULL_TREE;
6470 if (!DECL_P (expr))
6472 if (complain & tf_error)
6473 error ("%qE is not a valid template argument for type %qT "
6474 "because it is not an object with linkage",
6475 expr, type);
6476 return NULL_TREE;
6479 /* DR 1155 allows internal linkage in C++11 and up. */
6480 linkage_kind linkage = decl_linkage (expr);
6481 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6483 if (complain & tf_error)
6484 error ("%qE is not a valid template argument for type %qT "
6485 "because object %qD does not have linkage",
6486 expr, type, expr);
6487 return NULL_TREE;
6490 expr = build_nop (type, build_address (expr));
6492 /* [temp.arg.nontype]/5, bullet 4
6494 For a non-type template-parameter of type pointer to function, only
6495 the function-to-pointer conversion (_conv.func_) is applied. If the
6496 template-argument represents a set of overloaded functions (or a
6497 pointer to such), the matching function is selected from the set
6498 (_over.over_). */
6499 else if (TYPE_PTRFN_P (type))
6501 /* If the argument is a template-id, we might not have enough
6502 context information to decay the pointer. */
6503 if (!type_unknown_p (expr_type))
6505 expr = decay_conversion (expr, complain);
6506 if (expr == error_mark_node)
6507 return error_mark_node;
6510 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6511 /* Null pointer values are OK in C++11. */
6512 return perform_qualification_conversions (type, expr);
6514 expr = convert_nontype_argument_function (type, expr, complain);
6515 if (!expr || expr == error_mark_node)
6516 return expr;
6518 /* [temp.arg.nontype]/5, bullet 5
6520 For a non-type template-parameter of type reference to function, no
6521 conversions apply. If the template-argument represents a set of
6522 overloaded functions, the matching function is selected from the set
6523 (_over.over_). */
6524 else if (TYPE_REFFN_P (type))
6526 if (TREE_CODE (expr) == ADDR_EXPR)
6528 if (complain & tf_error)
6530 error ("%qE is not a valid template argument for type %qT "
6531 "because it is a pointer", expr, type);
6532 inform (input_location, "try using %qE instead",
6533 TREE_OPERAND (expr, 0));
6535 return NULL_TREE;
6538 expr = convert_nontype_argument_function (type, expr, complain);
6539 if (!expr || expr == error_mark_node)
6540 return expr;
6542 expr = build_nop (type, build_address (expr));
6544 /* [temp.arg.nontype]/5, bullet 6
6546 For a non-type template-parameter of type pointer to member function,
6547 no conversions apply. If the template-argument represents a set of
6548 overloaded member functions, the matching member function is selected
6549 from the set (_over.over_). */
6550 else if (TYPE_PTRMEMFUNC_P (type))
6552 expr = instantiate_type (type, expr, tf_none);
6553 if (expr == error_mark_node)
6554 return error_mark_node;
6556 /* [temp.arg.nontype] bullet 1 says the pointer to member
6557 expression must be a pointer-to-member constant. */
6558 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6559 return error_mark_node;
6561 /* There is no way to disable standard conversions in
6562 resolve_address_of_overloaded_function (called by
6563 instantiate_type). It is possible that the call succeeded by
6564 converting &B::I to &D::I (where B is a base of D), so we need
6565 to reject this conversion here.
6567 Actually, even if there was a way to disable standard conversions,
6568 it would still be better to reject them here so that we can
6569 provide a superior diagnostic. */
6570 if (!same_type_p (TREE_TYPE (expr), type))
6572 if (complain & tf_error)
6574 error ("%qE is not a valid template argument for type %qT "
6575 "because it is of type %qT", expr, type,
6576 TREE_TYPE (expr));
6577 /* If we are just one standard conversion off, explain. */
6578 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6579 inform (input_location,
6580 "standard conversions are not allowed in this context");
6582 return NULL_TREE;
6585 /* [temp.arg.nontype]/5, bullet 7
6587 For a non-type template-parameter of type pointer to data member,
6588 qualification conversions (_conv.qual_) are applied. */
6589 else if (TYPE_PTRDATAMEM_P (type))
6591 /* [temp.arg.nontype] bullet 1 says the pointer to member
6592 expression must be a pointer-to-member constant. */
6593 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6594 return error_mark_node;
6596 expr = perform_qualification_conversions (type, expr);
6597 if (expr == error_mark_node)
6598 return expr;
6600 else if (NULLPTR_TYPE_P (type))
6602 if (expr != nullptr_node)
6604 if (complain & tf_error)
6605 error ("%qE is not a valid template argument for type %qT "
6606 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6607 return NULL_TREE;
6609 return expr;
6611 /* A template non-type parameter must be one of the above. */
6612 else
6613 gcc_unreachable ();
6615 /* Sanity check: did we actually convert the argument to the
6616 right type? */
6617 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6618 (type, TREE_TYPE (expr)));
6619 return convert_from_reference (expr);
6622 /* Subroutine of coerce_template_template_parms, which returns 1 if
6623 PARM_PARM and ARG_PARM match using the rule for the template
6624 parameters of template template parameters. Both PARM and ARG are
6625 template parameters; the rest of the arguments are the same as for
6626 coerce_template_template_parms.
6628 static int
6629 coerce_template_template_parm (tree parm,
6630 tree arg,
6631 tsubst_flags_t complain,
6632 tree in_decl,
6633 tree outer_args)
6635 if (arg == NULL_TREE || error_operand_p (arg)
6636 || parm == NULL_TREE || error_operand_p (parm))
6637 return 0;
6639 if (TREE_CODE (arg) != TREE_CODE (parm))
6640 return 0;
6642 switch (TREE_CODE (parm))
6644 case TEMPLATE_DECL:
6645 /* We encounter instantiations of templates like
6646 template <template <template <class> class> class TT>
6647 class C; */
6649 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6650 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6652 if (!coerce_template_template_parms
6653 (parmparm, argparm, complain, in_decl, outer_args))
6654 return 0;
6656 /* Fall through. */
6658 case TYPE_DECL:
6659 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6660 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6661 /* Argument is a parameter pack but parameter is not. */
6662 return 0;
6663 break;
6665 case PARM_DECL:
6666 /* The tsubst call is used to handle cases such as
6668 template <int> class C {};
6669 template <class T, template <T> class TT> class D {};
6670 D<int, C> d;
6672 i.e. the parameter list of TT depends on earlier parameters. */
6673 if (!uses_template_parms (TREE_TYPE (arg)))
6675 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6676 if (!uses_template_parms (t)
6677 && !same_type_p (t, TREE_TYPE (arg)))
6678 return 0;
6681 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6682 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6683 /* Argument is a parameter pack but parameter is not. */
6684 return 0;
6686 break;
6688 default:
6689 gcc_unreachable ();
6692 return 1;
6696 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6697 template template parameters. Both PARM_PARMS and ARG_PARMS are
6698 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6699 or PARM_DECL.
6701 Consider the example:
6702 template <class T> class A;
6703 template<template <class U> class TT> class B;
6705 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6706 the parameters to A, and OUTER_ARGS contains A. */
6708 static int
6709 coerce_template_template_parms (tree parm_parms,
6710 tree arg_parms,
6711 tsubst_flags_t complain,
6712 tree in_decl,
6713 tree outer_args)
6715 int nparms, nargs, i;
6716 tree parm, arg;
6717 int variadic_p = 0;
6719 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6720 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6722 nparms = TREE_VEC_LENGTH (parm_parms);
6723 nargs = TREE_VEC_LENGTH (arg_parms);
6725 /* Determine whether we have a parameter pack at the end of the
6726 template template parameter's template parameter list. */
6727 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6729 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6731 if (error_operand_p (parm))
6732 return 0;
6734 switch (TREE_CODE (parm))
6736 case TEMPLATE_DECL:
6737 case TYPE_DECL:
6738 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6739 variadic_p = 1;
6740 break;
6742 case PARM_DECL:
6743 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6744 variadic_p = 1;
6745 break;
6747 default:
6748 gcc_unreachable ();
6752 if (nargs != nparms
6753 && !(variadic_p && nargs >= nparms - 1))
6754 return 0;
6756 /* Check all of the template parameters except the parameter pack at
6757 the end (if any). */
6758 for (i = 0; i < nparms - variadic_p; ++i)
6760 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6761 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6762 continue;
6764 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6765 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6767 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6768 outer_args))
6769 return 0;
6773 if (variadic_p)
6775 /* Check each of the template parameters in the template
6776 argument against the template parameter pack at the end of
6777 the template template parameter. */
6778 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6779 return 0;
6781 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6783 for (; i < nargs; ++i)
6785 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6786 continue;
6788 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6790 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6791 outer_args))
6792 return 0;
6796 return 1;
6799 /* Verifies that the deduced template arguments (in TARGS) for the
6800 template template parameters (in TPARMS) represent valid bindings,
6801 by comparing the template parameter list of each template argument
6802 to the template parameter list of its corresponding template
6803 template parameter, in accordance with DR150. This
6804 routine can only be called after all template arguments have been
6805 deduced. It will return TRUE if all of the template template
6806 parameter bindings are okay, FALSE otherwise. */
6807 bool
6808 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6810 int i, ntparms = TREE_VEC_LENGTH (tparms);
6811 bool ret = true;
6813 /* We're dealing with template parms in this process. */
6814 ++processing_template_decl;
6816 targs = INNERMOST_TEMPLATE_ARGS (targs);
6818 for (i = 0; i < ntparms; ++i)
6820 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6821 tree targ = TREE_VEC_ELT (targs, i);
6823 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6825 tree packed_args = NULL_TREE;
6826 int idx, len = 1;
6828 if (ARGUMENT_PACK_P (targ))
6830 /* Look inside the argument pack. */
6831 packed_args = ARGUMENT_PACK_ARGS (targ);
6832 len = TREE_VEC_LENGTH (packed_args);
6835 for (idx = 0; idx < len; ++idx)
6837 tree targ_parms = NULL_TREE;
6839 if (packed_args)
6840 /* Extract the next argument from the argument
6841 pack. */
6842 targ = TREE_VEC_ELT (packed_args, idx);
6844 if (PACK_EXPANSION_P (targ))
6845 /* Look at the pattern of the pack expansion. */
6846 targ = PACK_EXPANSION_PATTERN (targ);
6848 /* Extract the template parameters from the template
6849 argument. */
6850 if (TREE_CODE (targ) == TEMPLATE_DECL)
6851 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6852 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6853 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6855 /* Verify that we can coerce the template template
6856 parameters from the template argument to the template
6857 parameter. This requires an exact match. */
6858 if (targ_parms
6859 && !coerce_template_template_parms
6860 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6861 targ_parms,
6862 tf_none,
6863 tparm,
6864 targs))
6866 ret = false;
6867 goto out;
6873 out:
6875 --processing_template_decl;
6876 return ret;
6879 /* Since type attributes aren't mangled, we need to strip them from
6880 template type arguments. */
6882 static tree
6883 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6885 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6886 return arg;
6887 bool removed_attributes = false;
6888 tree canon = strip_typedefs (arg, &removed_attributes);
6889 if (removed_attributes
6890 && (complain & tf_warning))
6891 warning (0, "ignoring attributes on template argument %qT", arg);
6892 return canon;
6895 // A template declaration can be substituted for a constrained
6896 // template template parameter only when the argument is more
6897 // constrained than the parameter.
6898 static bool
6899 is_compatible_template_arg (tree parm, tree arg)
6901 tree parm_cons = get_constraints (parm);
6903 /* For now, allow constrained template template arguments
6904 and unconstrained template template parameters. */
6905 if (parm_cons == NULL_TREE)
6906 return true;
6908 tree arg_cons = get_constraints (arg);
6910 // If the template parameter is constrained, we need to rewrite its
6911 // constraints in terms of the ARG's template parameters. This ensures
6912 // that all of the template parameter types will have the same depth.
6914 // Note that this is only valid when coerce_template_template_parm is
6915 // true for the innermost template parameters of PARM and ARG. In other
6916 // words, because coercion is successful, this conversion will be valid.
6917 if (parm_cons)
6919 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
6920 parm_cons = tsubst_constraint_info (parm_cons,
6921 INNERMOST_TEMPLATE_ARGS (args),
6922 tf_none, NULL_TREE);
6923 if (parm_cons == error_mark_node)
6924 return false;
6927 return subsumes (parm_cons, arg_cons);
6930 // Convert a placeholder argument into a binding to the original
6931 // parameter. The original parameter is saved as the TREE_TYPE of
6932 // ARG.
6933 static inline tree
6934 convert_wildcard_argument (tree parm, tree arg)
6936 TREE_TYPE (arg) = parm;
6937 return arg;
6940 /* Convert the indicated template ARG as necessary to match the
6941 indicated template PARM. Returns the converted ARG, or
6942 error_mark_node if the conversion was unsuccessful. Error and
6943 warning messages are issued under control of COMPLAIN. This
6944 conversion is for the Ith parameter in the parameter list. ARGS is
6945 the full set of template arguments deduced so far. */
6947 static tree
6948 convert_template_argument (tree parm,
6949 tree arg,
6950 tree args,
6951 tsubst_flags_t complain,
6952 int i,
6953 tree in_decl)
6955 tree orig_arg;
6956 tree val;
6957 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6959 if (parm == error_mark_node)
6960 return error_mark_node;
6962 /* Trivially convert placeholders. */
6963 if (TREE_CODE (arg) == WILDCARD_DECL)
6964 return convert_wildcard_argument (parm, arg);
6966 if (TREE_CODE (arg) == TREE_LIST
6967 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6969 /* The template argument was the name of some
6970 member function. That's usually
6971 invalid, but static members are OK. In any
6972 case, grab the underlying fields/functions
6973 and issue an error later if required. */
6974 orig_arg = TREE_VALUE (arg);
6975 TREE_TYPE (arg) = unknown_type_node;
6978 orig_arg = arg;
6980 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6981 requires_type = (TREE_CODE (parm) == TYPE_DECL
6982 || requires_tmpl_type);
6984 /* When determining whether an argument pack expansion is a template,
6985 look at the pattern. */
6986 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6987 arg = PACK_EXPANSION_PATTERN (arg);
6989 /* Deal with an injected-class-name used as a template template arg. */
6990 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6992 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6993 if (TREE_CODE (t) == TEMPLATE_DECL)
6995 if (cxx_dialect >= cxx11)
6996 /* OK under DR 1004. */;
6997 else if (complain & tf_warning_or_error)
6998 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6999 " used as template template argument", TYPE_NAME (arg));
7000 else if (flag_pedantic_errors)
7001 t = arg;
7003 arg = t;
7007 is_tmpl_type =
7008 ((TREE_CODE (arg) == TEMPLATE_DECL
7009 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7010 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7011 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7012 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7014 if (is_tmpl_type
7015 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7016 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7017 arg = TYPE_STUB_DECL (arg);
7019 is_type = TYPE_P (arg) || is_tmpl_type;
7021 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7022 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7024 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7026 if (complain & tf_error)
7027 error ("invalid use of destructor %qE as a type", orig_arg);
7028 return error_mark_node;
7031 permerror (input_location,
7032 "to refer to a type member of a template parameter, "
7033 "use %<typename %E%>", orig_arg);
7035 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7036 TREE_OPERAND (arg, 1),
7037 typename_type,
7038 complain);
7039 arg = orig_arg;
7040 is_type = 1;
7042 if (is_type != requires_type)
7044 if (in_decl)
7046 if (complain & tf_error)
7048 error ("type/value mismatch at argument %d in template "
7049 "parameter list for %qD",
7050 i + 1, in_decl);
7051 if (is_type)
7052 inform (input_location,
7053 " expected a constant of type %qT, got %qT",
7054 TREE_TYPE (parm),
7055 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7056 else if (requires_tmpl_type)
7057 inform (input_location,
7058 " expected a class template, got %qE", orig_arg);
7059 else
7060 inform (input_location,
7061 " expected a type, got %qE", orig_arg);
7064 return error_mark_node;
7066 if (is_tmpl_type ^ requires_tmpl_type)
7068 if (in_decl && (complain & tf_error))
7070 error ("type/value mismatch at argument %d in template "
7071 "parameter list for %qD",
7072 i + 1, in_decl);
7073 if (is_tmpl_type)
7074 inform (input_location,
7075 " expected a type, got %qT", DECL_NAME (arg));
7076 else
7077 inform (input_location,
7078 " expected a class template, got %qT", orig_arg);
7080 return error_mark_node;
7083 if (is_type)
7085 if (requires_tmpl_type)
7087 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7088 val = orig_arg;
7089 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7090 /* The number of argument required is not known yet.
7091 Just accept it for now. */
7092 val = TREE_TYPE (arg);
7093 else
7095 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7096 tree argparm;
7098 /* Strip alias templates that are equivalent to another
7099 template. */
7100 arg = get_underlying_template (arg);
7101 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7103 if (coerce_template_template_parms (parmparm, argparm,
7104 complain, in_decl,
7105 args))
7107 val = arg;
7109 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7110 TEMPLATE_DECL. */
7111 if (val != error_mark_node)
7113 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7114 val = TREE_TYPE (val);
7115 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7116 val = make_pack_expansion (val);
7119 else
7121 if (in_decl && (complain & tf_error))
7123 error ("type/value mismatch at argument %d in "
7124 "template parameter list for %qD",
7125 i + 1, in_decl);
7126 inform (input_location,
7127 " expected a template of type %qD, got %qT",
7128 parm, orig_arg);
7131 val = error_mark_node;
7134 // Check that the constraints are compatible before allowing the
7135 // substitution.
7136 if (val != error_mark_node)
7137 if (!is_compatible_template_arg (parm, arg))
7139 if (in_decl && (complain & tf_error))
7141 error ("constraint mismatch at argument %d in "
7142 "template parameter list for %qD",
7143 i + 1, in_decl);
7144 inform (input_location, " expected %qD but got %qD",
7145 parm, arg);
7147 val = error_mark_node;
7151 else
7152 val = orig_arg;
7153 /* We only form one instance of each template specialization.
7154 Therefore, if we use a non-canonical variant (i.e., a
7155 typedef), any future messages referring to the type will use
7156 the typedef, which is confusing if those future uses do not
7157 themselves also use the typedef. */
7158 if (TYPE_P (val))
7159 val = canonicalize_type_argument (val, complain);
7161 else
7163 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7165 if (invalid_nontype_parm_type_p (t, complain))
7166 return error_mark_node;
7168 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7170 if (same_type_p (t, TREE_TYPE (orig_arg)))
7171 val = orig_arg;
7172 else
7174 /* Not sure if this is reachable, but it doesn't hurt
7175 to be robust. */
7176 error ("type mismatch in nontype parameter pack");
7177 val = error_mark_node;
7180 else if (!dependent_template_arg_p (orig_arg)
7181 && !uses_template_parms (t))
7182 /* We used to call digest_init here. However, digest_init
7183 will report errors, which we don't want when complain
7184 is zero. More importantly, digest_init will try too
7185 hard to convert things: for example, `0' should not be
7186 converted to pointer type at this point according to
7187 the standard. Accepting this is not merely an
7188 extension, since deciding whether or not these
7189 conversions can occur is part of determining which
7190 function template to call, or whether a given explicit
7191 argument specification is valid. */
7192 val = convert_nontype_argument (t, orig_arg, complain);
7193 else
7195 bool removed_attr = false;
7196 val = strip_typedefs_expr (orig_arg, &removed_attr);
7199 if (val == NULL_TREE)
7200 val = error_mark_node;
7201 else if (val == error_mark_node && (complain & tf_error))
7202 error ("could not convert template argument %qE to %qT", orig_arg, t);
7204 if (INDIRECT_REF_P (val))
7206 /* Reject template arguments that are references to built-in
7207 functions with no library fallbacks. */
7208 const_tree inner = TREE_OPERAND (val, 0);
7209 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7210 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7211 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7212 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7213 return error_mark_node;
7216 if (TREE_CODE (val) == SCOPE_REF)
7218 /* Strip typedefs from the SCOPE_REF. */
7219 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7220 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7221 complain);
7222 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7223 QUALIFIED_NAME_IS_TEMPLATE (val));
7227 return val;
7230 /* Coerces the remaining template arguments in INNER_ARGS (from
7231 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7232 Returns the coerced argument pack. PARM_IDX is the position of this
7233 parameter in the template parameter list. ARGS is the original
7234 template argument list. */
7235 static tree
7236 coerce_template_parameter_pack (tree parms,
7237 int parm_idx,
7238 tree args,
7239 tree inner_args,
7240 int arg_idx,
7241 tree new_args,
7242 int* lost,
7243 tree in_decl,
7244 tsubst_flags_t complain)
7246 tree parm = TREE_VEC_ELT (parms, parm_idx);
7247 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7248 tree packed_args;
7249 tree argument_pack;
7250 tree packed_parms = NULL_TREE;
7252 if (arg_idx > nargs)
7253 arg_idx = nargs;
7255 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7257 /* When the template parameter is a non-type template parameter pack
7258 or template template parameter pack whose type or template
7259 parameters use parameter packs, we know exactly how many arguments
7260 we are looking for. Build a vector of the instantiated decls for
7261 these template parameters in PACKED_PARMS. */
7262 /* We can't use make_pack_expansion here because it would interpret a
7263 _DECL as a use rather than a declaration. */
7264 tree decl = TREE_VALUE (parm);
7265 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7266 SET_PACK_EXPANSION_PATTERN (exp, decl);
7267 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7268 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7270 TREE_VEC_LENGTH (args)--;
7271 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7272 TREE_VEC_LENGTH (args)++;
7274 if (packed_parms == error_mark_node)
7275 return error_mark_node;
7277 /* If we're doing a partial instantiation of a member template,
7278 verify that all of the types used for the non-type
7279 template parameter pack are, in fact, valid for non-type
7280 template parameters. */
7281 if (arg_idx < nargs
7282 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7284 int j, len = TREE_VEC_LENGTH (packed_parms);
7285 for (j = 0; j < len; ++j)
7287 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7288 if (invalid_nontype_parm_type_p (t, complain))
7289 return error_mark_node;
7291 /* We don't know how many args we have yet, just
7292 use the unconverted ones for now. */
7293 return NULL_TREE;
7296 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7298 /* Check if we have a placeholder pack, which indicates we're
7299 in the context of a introduction list. In that case we want
7300 to match this pack to the single placeholder. */
7301 else if (arg_idx < nargs
7302 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7303 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7305 nargs = arg_idx + 1;
7306 packed_args = make_tree_vec (1);
7308 else
7309 packed_args = make_tree_vec (nargs - arg_idx);
7311 /* Convert the remaining arguments, which will be a part of the
7312 parameter pack "parm". */
7313 for (; arg_idx < nargs; ++arg_idx)
7315 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7316 tree actual_parm = TREE_VALUE (parm);
7317 int pack_idx = arg_idx - parm_idx;
7319 if (packed_parms)
7321 /* Once we've packed as many args as we have types, stop. */
7322 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7323 break;
7324 else if (PACK_EXPANSION_P (arg))
7325 /* We don't know how many args we have yet, just
7326 use the unconverted ones for now. */
7327 return NULL_TREE;
7328 else
7329 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7332 if (arg == error_mark_node)
7334 if (complain & tf_error)
7335 error ("template argument %d is invalid", arg_idx + 1);
7337 else
7338 arg = convert_template_argument (actual_parm,
7339 arg, new_args, complain, parm_idx,
7340 in_decl);
7341 if (arg == error_mark_node)
7342 (*lost)++;
7343 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7346 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
7347 && TREE_VEC_LENGTH (packed_args) > 0)
7349 if (complain & tf_error)
7350 error ("wrong number of template arguments (%d, should be %d)",
7351 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
7352 return error_mark_node;
7355 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7356 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7357 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7358 else
7360 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7361 TREE_TYPE (argument_pack)
7362 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7363 TREE_CONSTANT (argument_pack) = 1;
7366 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7367 #ifdef ENABLE_CHECKING
7368 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7369 TREE_VEC_LENGTH (packed_args));
7370 #endif
7371 return argument_pack;
7374 /* Returns the number of pack expansions in the template argument vector
7375 ARGS. */
7377 static int
7378 pack_expansion_args_count (tree args)
7380 int i;
7381 int count = 0;
7382 if (args)
7383 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7385 tree elt = TREE_VEC_ELT (args, i);
7386 if (elt && PACK_EXPANSION_P (elt))
7387 ++count;
7389 return count;
7392 /* Convert all template arguments to their appropriate types, and
7393 return a vector containing the innermost resulting template
7394 arguments. If any error occurs, return error_mark_node. Error and
7395 warning messages are issued under control of COMPLAIN.
7397 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7398 for arguments not specified in ARGS. Otherwise, if
7399 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7400 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7401 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7402 ARGS. */
7404 static tree
7405 coerce_template_parms (tree parms,
7406 tree args,
7407 tree in_decl,
7408 tsubst_flags_t complain,
7409 bool require_all_args,
7410 bool use_default_args)
7412 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7413 tree orig_inner_args;
7414 tree inner_args;
7415 tree new_args;
7416 tree new_inner_args;
7417 int saved_unevaluated_operand;
7418 int saved_inhibit_evaluation_warnings;
7420 /* When used as a boolean value, indicates whether this is a
7421 variadic template parameter list. Since it's an int, we can also
7422 subtract it from nparms to get the number of non-variadic
7423 parameters. */
7424 int variadic_p = 0;
7425 int variadic_args_p = 0;
7426 int post_variadic_parms = 0;
7428 /* Likewise for parameters with default arguments. */
7429 int default_p = 0;
7431 if (args == error_mark_node)
7432 return error_mark_node;
7434 nparms = TREE_VEC_LENGTH (parms);
7436 /* Determine if there are any parameter packs or default arguments. */
7437 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7439 tree parm = TREE_VEC_ELT (parms, parm_idx);
7440 if (variadic_p)
7441 ++post_variadic_parms;
7442 if (template_parameter_pack_p (TREE_VALUE (parm)))
7443 ++variadic_p;
7444 if (TREE_PURPOSE (parm))
7445 ++default_p;
7448 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7449 /* If there are no parameters that follow a parameter pack, we need to
7450 expand any argument packs so that we can deduce a parameter pack from
7451 some non-packed args followed by an argument pack, as in variadic85.C.
7452 If there are such parameters, we need to leave argument packs intact
7453 so the arguments are assigned properly. This can happen when dealing
7454 with a nested class inside a partial specialization of a class
7455 template, as in variadic92.C, or when deducing a template parameter pack
7456 from a sub-declarator, as in variadic114.C. */
7457 if (!post_variadic_parms)
7458 inner_args = expand_template_argument_pack (inner_args);
7460 /* Count any pack expansion args. */
7461 variadic_args_p = pack_expansion_args_count (inner_args);
7463 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7464 if ((nargs > nparms && !variadic_p)
7465 || (nargs < nparms - variadic_p
7466 && require_all_args
7467 && !variadic_args_p
7468 && (!use_default_args
7469 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7470 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7472 if (complain & tf_error)
7474 if (variadic_p || default_p)
7476 nparms -= variadic_p + default_p;
7477 error ("wrong number of template arguments "
7478 "(%d, should be at least %d)", nargs, nparms);
7480 else
7481 error ("wrong number of template arguments "
7482 "(%d, should be %d)", nargs, nparms);
7484 if (in_decl)
7485 inform (DECL_SOURCE_LOCATION (in_decl),
7486 "provided for %qD", in_decl);
7489 return error_mark_node;
7491 /* We can't pass a pack expansion to a non-pack parameter of an alias
7492 template (DR 1430). */
7493 else if (in_decl
7494 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7495 || concept_template_p (in_decl))
7496 && variadic_args_p
7497 && nargs - variadic_args_p < nparms - variadic_p)
7499 if (complain & tf_error)
7501 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7503 tree arg = TREE_VEC_ELT (inner_args, i);
7504 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7506 if (PACK_EXPANSION_P (arg)
7507 && !template_parameter_pack_p (parm))
7509 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7510 error_at (location_of (arg),
7511 "pack expansion argument for non-pack parameter "
7512 "%qD of alias template %qD", parm, in_decl);
7513 else
7514 error_at (location_of (arg),
7515 "pack expansion argument for non-pack parameter "
7516 "%qD of concept %qD", parm, in_decl);
7517 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7518 goto found;
7521 gcc_unreachable ();
7522 found:;
7524 return error_mark_node;
7527 /* We need to evaluate the template arguments, even though this
7528 template-id may be nested within a "sizeof". */
7529 saved_unevaluated_operand = cp_unevaluated_operand;
7530 cp_unevaluated_operand = 0;
7531 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7532 c_inhibit_evaluation_warnings = 0;
7533 new_inner_args = make_tree_vec (nparms);
7534 new_args = add_outermost_template_args (args, new_inner_args);
7535 int pack_adjust = 0;
7536 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7538 tree arg;
7539 tree parm;
7541 /* Get the Ith template parameter. */
7542 parm = TREE_VEC_ELT (parms, parm_idx);
7544 if (parm == error_mark_node)
7546 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7547 continue;
7550 /* Calculate the next argument. */
7551 if (arg_idx < nargs)
7552 arg = TREE_VEC_ELT (inner_args, arg_idx);
7553 else
7554 arg = NULL_TREE;
7556 if (template_parameter_pack_p (TREE_VALUE (parm))
7557 && !(arg && ARGUMENT_PACK_P (arg)))
7559 /* Some arguments will be placed in the
7560 template parameter pack PARM. */
7561 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7562 inner_args, arg_idx,
7563 new_args, &lost,
7564 in_decl, complain);
7566 if (arg == NULL_TREE)
7568 /* We don't know how many args we have yet, just use the
7569 unconverted (and still packed) ones for now. */
7570 new_inner_args = orig_inner_args;
7571 arg_idx = nargs;
7572 break;
7575 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7577 /* Store this argument. */
7578 if (arg == error_mark_node)
7580 lost++;
7581 /* We are done with all of the arguments. */
7582 arg_idx = nargs;
7584 else
7586 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7587 arg_idx += pack_adjust;
7590 continue;
7592 else if (arg)
7594 if (PACK_EXPANSION_P (arg))
7596 /* "If every valid specialization of a variadic template
7597 requires an empty template parameter pack, the template is
7598 ill-formed, no diagnostic required." So check that the
7599 pattern works with this parameter. */
7600 tree pattern = PACK_EXPANSION_PATTERN (arg);
7601 tree conv = convert_template_argument (TREE_VALUE (parm),
7602 pattern, new_args,
7603 complain, parm_idx,
7604 in_decl);
7605 if (conv == error_mark_node)
7607 inform (input_location, "so any instantiation with a "
7608 "non-empty parameter pack would be ill-formed");
7609 ++lost;
7611 else if (TYPE_P (conv) && !TYPE_P (pattern))
7612 /* Recover from missing typename. */
7613 TREE_VEC_ELT (inner_args, arg_idx)
7614 = make_pack_expansion (conv);
7616 /* We don't know how many args we have yet, just
7617 use the unconverted ones for now. */
7618 new_inner_args = inner_args;
7619 arg_idx = nargs;
7620 break;
7623 else if (require_all_args)
7625 /* There must be a default arg in this case. */
7626 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7627 complain, in_decl);
7628 /* The position of the first default template argument,
7629 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7630 Record that. */
7631 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7632 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7633 arg_idx - pack_adjust);
7635 else
7636 break;
7638 if (arg == error_mark_node)
7640 if (complain & tf_error)
7641 error ("template argument %d is invalid", arg_idx + 1);
7643 else if (!arg)
7644 /* This only occurs if there was an error in the template
7645 parameter list itself (which we would already have
7646 reported) that we are trying to recover from, e.g., a class
7647 template with a parameter list such as
7648 template<typename..., typename>. */
7649 ++lost;
7650 else
7651 arg = convert_template_argument (TREE_VALUE (parm),
7652 arg, new_args, complain,
7653 parm_idx, in_decl);
7655 if (arg == error_mark_node)
7656 lost++;
7657 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7659 cp_unevaluated_operand = saved_unevaluated_operand;
7660 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7662 if (variadic_p && arg_idx < nargs)
7664 if (complain & tf_error)
7666 error ("wrong number of template arguments "
7667 "(%d, should be %d)", nargs, arg_idx);
7668 if (in_decl)
7669 error ("provided for %q+D", in_decl);
7671 return error_mark_node;
7674 if (lost)
7675 return error_mark_node;
7677 #ifdef ENABLE_CHECKING
7678 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7679 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7680 TREE_VEC_LENGTH (new_inner_args));
7681 #endif
7683 return new_inner_args;
7686 /* Convert all template arguments to their appropriate types, and
7687 return a vector containing the innermost resulting template
7688 arguments. If any error occurs, return error_mark_node. Error and
7689 warning messages are not issued.
7691 Note that no function argument deduction is performed, and default
7692 arguments are used to fill in unspecified arguments. */
7693 tree
7694 coerce_template_parms (tree parms, tree args, tree in_decl)
7696 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7699 /* Convert all template arguments to their appropriate type, and
7700 instantiate default arguments as needed. This returns a vector
7701 containing the innermost resulting template arguments, or
7702 error_mark_node if unsuccessful. */
7703 tree
7704 coerce_template_parms (tree parms, tree args, tree in_decl,
7705 tsubst_flags_t complain)
7707 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7710 /* Like coerce_template_parms. If PARMS represents all template
7711 parameters levels, this function returns a vector of vectors
7712 representing all the resulting argument levels. Note that in this
7713 case, only the innermost arguments are coerced because the
7714 outermost ones are supposed to have been coerced already.
7716 Otherwise, if PARMS represents only (the innermost) vector of
7717 parameters, this function returns a vector containing just the
7718 innermost resulting arguments. */
7720 static tree
7721 coerce_innermost_template_parms (tree parms,
7722 tree args,
7723 tree in_decl,
7724 tsubst_flags_t complain,
7725 bool require_all_args,
7726 bool use_default_args)
7728 int parms_depth = TMPL_PARMS_DEPTH (parms);
7729 int args_depth = TMPL_ARGS_DEPTH (args);
7730 tree coerced_args;
7732 if (parms_depth > 1)
7734 coerced_args = make_tree_vec (parms_depth);
7735 tree level;
7736 int cur_depth;
7738 for (level = parms, cur_depth = parms_depth;
7739 parms_depth > 0 && level != NULL_TREE;
7740 level = TREE_CHAIN (level), --cur_depth)
7742 tree l;
7743 if (cur_depth == args_depth)
7744 l = coerce_template_parms (TREE_VALUE (level),
7745 args, in_decl, complain,
7746 require_all_args,
7747 use_default_args);
7748 else
7749 l = TMPL_ARGS_LEVEL (args, cur_depth);
7751 if (l == error_mark_node)
7752 return error_mark_node;
7754 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7757 else
7758 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7759 args, in_decl, complain,
7760 require_all_args,
7761 use_default_args);
7762 return coerced_args;
7765 /* Returns 1 if template args OT and NT are equivalent. */
7767 static int
7768 template_args_equal (tree ot, tree nt)
7770 if (nt == ot)
7771 return 1;
7772 if (nt == NULL_TREE || ot == NULL_TREE)
7773 return false;
7775 if (TREE_CODE (nt) == TREE_VEC)
7776 /* For member templates */
7777 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7778 else if (PACK_EXPANSION_P (ot))
7779 return (PACK_EXPANSION_P (nt)
7780 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7781 PACK_EXPANSION_PATTERN (nt))
7782 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7783 PACK_EXPANSION_EXTRA_ARGS (nt)));
7784 else if (ARGUMENT_PACK_P (ot))
7786 int i, len;
7787 tree opack, npack;
7789 if (!ARGUMENT_PACK_P (nt))
7790 return 0;
7792 opack = ARGUMENT_PACK_ARGS (ot);
7793 npack = ARGUMENT_PACK_ARGS (nt);
7794 len = TREE_VEC_LENGTH (opack);
7795 if (TREE_VEC_LENGTH (npack) != len)
7796 return 0;
7797 for (i = 0; i < len; ++i)
7798 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7799 TREE_VEC_ELT (npack, i)))
7800 return 0;
7801 return 1;
7803 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7805 /* We get here probably because we are in the middle of substituting
7806 into the pattern of a pack expansion. In that case the
7807 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7808 interested in. So we want to use the initial pack argument for
7809 the comparison. */
7810 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7811 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7812 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7813 return template_args_equal (ot, nt);
7815 else if (TYPE_P (nt))
7817 if (!TYPE_P (ot))
7818 return false;
7819 /* Don't treat an alias template specialization with dependent
7820 arguments as equivalent to its underlying type when used as a
7821 template argument; we need them to be distinct so that we
7822 substitute into the specialization arguments at instantiation
7823 time. And aliases can't be equivalent without being ==, so
7824 we don't need to look any deeper. */
7825 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7826 return false;
7827 else
7828 return same_type_p (ot, nt);
7830 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7831 return 0;
7832 else
7834 /* Try to treat a template non-type argument that has been converted
7835 to the parameter type as equivalent to one that hasn't yet. */
7836 for (enum tree_code code1 = TREE_CODE (ot);
7837 CONVERT_EXPR_CODE_P (code1)
7838 || code1 == NON_LVALUE_EXPR;
7839 code1 = TREE_CODE (ot))
7840 ot = TREE_OPERAND (ot, 0);
7841 for (enum tree_code code2 = TREE_CODE (nt);
7842 CONVERT_EXPR_CODE_P (code2)
7843 || code2 == NON_LVALUE_EXPR;
7844 code2 = TREE_CODE (nt))
7845 nt = TREE_OPERAND (nt, 0);
7847 return cp_tree_equal (ot, nt);
7851 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7852 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7853 NEWARG_PTR with the offending arguments if they are non-NULL. */
7855 static int
7856 comp_template_args_with_info (tree oldargs, tree newargs,
7857 tree *oldarg_ptr, tree *newarg_ptr)
7859 int i;
7861 if (oldargs == newargs)
7862 return 1;
7864 if (!oldargs || !newargs)
7865 return 0;
7867 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7868 return 0;
7870 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7872 tree nt = TREE_VEC_ELT (newargs, i);
7873 tree ot = TREE_VEC_ELT (oldargs, i);
7875 if (! template_args_equal (ot, nt))
7877 if (oldarg_ptr != NULL)
7878 *oldarg_ptr = ot;
7879 if (newarg_ptr != NULL)
7880 *newarg_ptr = nt;
7881 return 0;
7884 return 1;
7887 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7888 of template arguments. Returns 0 otherwise. */
7891 comp_template_args (tree oldargs, tree newargs)
7893 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7896 static void
7897 add_pending_template (tree d)
7899 tree ti = (TYPE_P (d)
7900 ? CLASSTYPE_TEMPLATE_INFO (d)
7901 : DECL_TEMPLATE_INFO (d));
7902 struct pending_template *pt;
7903 int level;
7905 if (TI_PENDING_TEMPLATE_FLAG (ti))
7906 return;
7908 /* We are called both from instantiate_decl, where we've already had a
7909 tinst_level pushed, and instantiate_template, where we haven't.
7910 Compensate. */
7911 level = !current_tinst_level || current_tinst_level->decl != d;
7913 if (level)
7914 push_tinst_level (d);
7916 pt = ggc_alloc<pending_template> ();
7917 pt->next = NULL;
7918 pt->tinst = current_tinst_level;
7919 if (last_pending_template)
7920 last_pending_template->next = pt;
7921 else
7922 pending_templates = pt;
7924 last_pending_template = pt;
7926 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7928 if (level)
7929 pop_tinst_level ();
7933 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7934 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7935 documentation for TEMPLATE_ID_EXPR. */
7937 tree
7938 lookup_template_function (tree fns, tree arglist)
7940 tree type;
7942 if (fns == error_mark_node || arglist == error_mark_node)
7943 return error_mark_node;
7945 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7947 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7949 error ("%q#D is not a function template", fns);
7950 return error_mark_node;
7953 if (BASELINK_P (fns))
7955 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7956 unknown_type_node,
7957 BASELINK_FUNCTIONS (fns),
7958 arglist);
7959 return fns;
7962 type = TREE_TYPE (fns);
7963 if (TREE_CODE (fns) == OVERLOAD || !type)
7964 type = unknown_type_node;
7966 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7969 /* Within the scope of a template class S<T>, the name S gets bound
7970 (in build_self_reference) to a TYPE_DECL for the class, not a
7971 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7972 or one of its enclosing classes, and that type is a template,
7973 return the associated TEMPLATE_DECL. Otherwise, the original
7974 DECL is returned.
7976 Also handle the case when DECL is a TREE_LIST of ambiguous
7977 injected-class-names from different bases. */
7979 tree
7980 maybe_get_template_decl_from_type_decl (tree decl)
7982 if (decl == NULL_TREE)
7983 return decl;
7985 /* DR 176: A lookup that finds an injected-class-name (10.2
7986 [class.member.lookup]) can result in an ambiguity in certain cases
7987 (for example, if it is found in more than one base class). If all of
7988 the injected-class-names that are found refer to specializations of
7989 the same class template, and if the name is followed by a
7990 template-argument-list, the reference refers to the class template
7991 itself and not a specialization thereof, and is not ambiguous. */
7992 if (TREE_CODE (decl) == TREE_LIST)
7994 tree t, tmpl = NULL_TREE;
7995 for (t = decl; t; t = TREE_CHAIN (t))
7997 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7998 if (!tmpl)
7999 tmpl = elt;
8000 else if (tmpl != elt)
8001 break;
8003 if (tmpl && t == NULL_TREE)
8004 return tmpl;
8005 else
8006 return decl;
8009 return (decl != NULL_TREE
8010 && DECL_SELF_REFERENCE_P (decl)
8011 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8012 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8015 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8016 parameters, find the desired type.
8018 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8020 IN_DECL, if non-NULL, is the template declaration we are trying to
8021 instantiate.
8023 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8024 the class we are looking up.
8026 Issue error and warning messages under control of COMPLAIN.
8028 If the template class is really a local class in a template
8029 function, then the FUNCTION_CONTEXT is the function in which it is
8030 being instantiated.
8032 ??? Note that this function is currently called *twice* for each
8033 template-id: the first time from the parser, while creating the
8034 incomplete type (finish_template_type), and the second type during the
8035 real instantiation (instantiate_template_class). This is surely something
8036 that we want to avoid. It also causes some problems with argument
8037 coercion (see convert_nontype_argument for more information on this). */
8039 static tree
8040 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8041 int entering_scope, tsubst_flags_t complain)
8043 tree templ = NULL_TREE, parmlist;
8044 tree t;
8045 spec_entry **slot;
8046 spec_entry *entry;
8047 spec_entry elt;
8048 hashval_t hash;
8050 if (identifier_p (d1))
8052 tree value = innermost_non_namespace_value (d1);
8053 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8054 templ = value;
8055 else
8057 if (context)
8058 push_decl_namespace (context);
8059 templ = lookup_name (d1);
8060 templ = maybe_get_template_decl_from_type_decl (templ);
8061 if (context)
8062 pop_decl_namespace ();
8064 if (templ)
8065 context = DECL_CONTEXT (templ);
8067 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8069 tree type = TREE_TYPE (d1);
8071 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8072 an implicit typename for the second A. Deal with it. */
8073 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8074 type = TREE_TYPE (type);
8076 if (CLASSTYPE_TEMPLATE_INFO (type))
8078 templ = CLASSTYPE_TI_TEMPLATE (type);
8079 d1 = DECL_NAME (templ);
8082 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8083 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8085 templ = TYPE_TI_TEMPLATE (d1);
8086 d1 = DECL_NAME (templ);
8088 else if (DECL_TYPE_TEMPLATE_P (d1))
8090 templ = d1;
8091 d1 = DECL_NAME (templ);
8092 context = DECL_CONTEXT (templ);
8094 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8096 templ = d1;
8097 d1 = DECL_NAME (templ);
8100 /* Issue an error message if we didn't find a template. */
8101 if (! templ)
8103 if (complain & tf_error)
8104 error ("%qT is not a template", d1);
8105 return error_mark_node;
8108 if (TREE_CODE (templ) != TEMPLATE_DECL
8109 /* Make sure it's a user visible template, if it was named by
8110 the user. */
8111 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8112 && !PRIMARY_TEMPLATE_P (templ)))
8114 if (complain & tf_error)
8116 error ("non-template type %qT used as a template", d1);
8117 if (in_decl)
8118 error ("for template declaration %q+D", in_decl);
8120 return error_mark_node;
8123 complain &= ~tf_user;
8125 /* An alias that just changes the name of a template is equivalent to the
8126 other template, so if any of the arguments are pack expansions, strip
8127 the alias to avoid problems with a pack expansion passed to a non-pack
8128 alias template parameter (DR 1430). */
8129 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8130 templ = get_underlying_template (templ);
8132 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8134 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8135 template arguments */
8137 tree parm;
8138 tree arglist2;
8139 tree outer;
8141 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8143 /* Consider an example where a template template parameter declared as
8145 template <class T, class U = std::allocator<T> > class TT
8147 The template parameter level of T and U are one level larger than
8148 of TT. To proper process the default argument of U, say when an
8149 instantiation `TT<int>' is seen, we need to build the full
8150 arguments containing {int} as the innermost level. Outer levels,
8151 available when not appearing as default template argument, can be
8152 obtained from the arguments of the enclosing template.
8154 Suppose that TT is later substituted with std::vector. The above
8155 instantiation is `TT<int, std::allocator<T> >' with TT at
8156 level 1, and T at level 2, while the template arguments at level 1
8157 becomes {std::vector} and the inner level 2 is {int}. */
8159 outer = DECL_CONTEXT (templ);
8160 if (outer)
8161 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8162 else if (current_template_parms)
8164 /* This is an argument of the current template, so we haven't set
8165 DECL_CONTEXT yet. */
8166 tree relevant_template_parms;
8168 /* Parameter levels that are greater than the level of the given
8169 template template parm are irrelevant. */
8170 relevant_template_parms = current_template_parms;
8171 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8172 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8173 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8175 outer = template_parms_to_args (relevant_template_parms);
8178 if (outer)
8179 arglist = add_to_template_args (outer, arglist);
8181 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8182 complain,
8183 /*require_all_args=*/true,
8184 /*use_default_args=*/true);
8185 if (arglist2 == error_mark_node
8186 || (!uses_template_parms (arglist2)
8187 && check_instantiated_args (templ, arglist2, complain)))
8188 return error_mark_node;
8190 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8191 return parm;
8193 else
8195 tree template_type = TREE_TYPE (templ);
8196 tree gen_tmpl;
8197 tree type_decl;
8198 tree found = NULL_TREE;
8199 int arg_depth;
8200 int parm_depth;
8201 int is_dependent_type;
8202 int use_partial_inst_tmpl = false;
8204 if (template_type == error_mark_node)
8205 /* An error occurred while building the template TEMPL, and a
8206 diagnostic has most certainly been emitted for that
8207 already. Let's propagate that error. */
8208 return error_mark_node;
8210 gen_tmpl = most_general_template (templ);
8211 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8212 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8213 arg_depth = TMPL_ARGS_DEPTH (arglist);
8215 if (arg_depth == 1 && parm_depth > 1)
8217 /* We've been given an incomplete set of template arguments.
8218 For example, given:
8220 template <class T> struct S1 {
8221 template <class U> struct S2 {};
8222 template <class U> struct S2<U*> {};
8225 we will be called with an ARGLIST of `U*', but the
8226 TEMPLATE will be `template <class T> template
8227 <class U> struct S1<T>::S2'. We must fill in the missing
8228 arguments. */
8229 arglist
8230 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8231 arglist);
8232 arg_depth = TMPL_ARGS_DEPTH (arglist);
8235 /* Now we should have enough arguments. */
8236 gcc_assert (parm_depth == arg_depth);
8238 /* From here on, we're only interested in the most general
8239 template. */
8241 /* Calculate the BOUND_ARGS. These will be the args that are
8242 actually tsubst'd into the definition to create the
8243 instantiation. */
8244 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8245 complain,
8246 /*require_all_args=*/true,
8247 /*use_default_args=*/true);
8249 if (arglist == error_mark_node)
8250 /* We were unable to bind the arguments. */
8251 return error_mark_node;
8253 /* In the scope of a template class, explicit references to the
8254 template class refer to the type of the template, not any
8255 instantiation of it. For example, in:
8257 template <class T> class C { void f(C<T>); }
8259 the `C<T>' is just the same as `C'. Outside of the
8260 class, however, such a reference is an instantiation. */
8261 if ((entering_scope
8262 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8263 || currently_open_class (template_type))
8264 /* comp_template_args is expensive, check it last. */
8265 && comp_template_args (TYPE_TI_ARGS (template_type),
8266 arglist))
8267 return template_type;
8269 /* If we already have this specialization, return it. */
8270 elt.tmpl = gen_tmpl;
8271 elt.args = arglist;
8272 elt.spec = NULL_TREE;
8273 hash = spec_hasher::hash (&elt);
8274 entry = type_specializations->find_with_hash (&elt, hash);
8276 if (entry)
8277 return entry->spec;
8279 /* If the the template's constraints are not satisfied,
8280 then we cannot form a valid type.
8282 Note that the check is deferred until after the hash
8283 lookup. This prevents redundant checks on previously
8284 instantiated specializations. */
8285 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8287 if (complain & tf_error)
8289 error ("template constraint failure");
8290 diagnose_constraints (input_location, gen_tmpl, arglist);
8292 return error_mark_node;
8295 is_dependent_type = uses_template_parms (arglist);
8297 /* If the deduced arguments are invalid, then the binding
8298 failed. */
8299 if (!is_dependent_type
8300 && check_instantiated_args (gen_tmpl,
8301 INNERMOST_TEMPLATE_ARGS (arglist),
8302 complain))
8303 return error_mark_node;
8305 if (!is_dependent_type
8306 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8307 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8308 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8310 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8311 DECL_NAME (gen_tmpl),
8312 /*tag_scope=*/ts_global);
8313 return found;
8316 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8317 complain, in_decl);
8318 if (context == error_mark_node)
8319 return error_mark_node;
8321 if (!context)
8322 context = global_namespace;
8324 /* Create the type. */
8325 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8327 /* The user referred to a specialization of an alias
8328 template represented by GEN_TMPL.
8330 [temp.alias]/2 says:
8332 When a template-id refers to the specialization of an
8333 alias template, it is equivalent to the associated
8334 type obtained by substitution of its
8335 template-arguments for the template-parameters in the
8336 type-id of the alias template. */
8338 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8339 /* Note that the call above (by indirectly calling
8340 register_specialization in tsubst_decl) registers the
8341 TYPE_DECL representing the specialization of the alias
8342 template. So next time someone substitutes ARGLIST for
8343 the template parms into the alias template (GEN_TMPL),
8344 she'll get that TYPE_DECL back. */
8346 if (t == error_mark_node)
8347 return t;
8349 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8351 if (!is_dependent_type)
8353 set_current_access_from_decl (TYPE_NAME (template_type));
8354 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8355 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8356 arglist, complain, in_decl),
8357 SCOPED_ENUM_P (template_type), NULL);
8359 if (t == error_mark_node)
8360 return t;
8362 else
8364 /* We don't want to call start_enum for this type, since
8365 the values for the enumeration constants may involve
8366 template parameters. And, no one should be interested
8367 in the enumeration constants for such a type. */
8368 t = cxx_make_type (ENUMERAL_TYPE);
8369 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8371 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8372 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8373 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8375 else if (CLASS_TYPE_P (template_type))
8377 t = make_class_type (TREE_CODE (template_type));
8378 CLASSTYPE_DECLARED_CLASS (t)
8379 = CLASSTYPE_DECLARED_CLASS (template_type);
8380 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8381 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8383 /* A local class. Make sure the decl gets registered properly. */
8384 if (context == current_function_decl)
8385 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8387 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8388 /* This instantiation is another name for the primary
8389 template type. Set the TYPE_CANONICAL field
8390 appropriately. */
8391 TYPE_CANONICAL (t) = template_type;
8392 else if (any_template_arguments_need_structural_equality_p (arglist))
8393 /* Some of the template arguments require structural
8394 equality testing, so this template class requires
8395 structural equality testing. */
8396 SET_TYPE_STRUCTURAL_EQUALITY (t);
8398 else
8399 gcc_unreachable ();
8401 /* If we called start_enum or pushtag above, this information
8402 will already be set up. */
8403 if (!TYPE_NAME (t))
8405 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8407 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8408 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8409 DECL_SOURCE_LOCATION (type_decl)
8410 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8412 else
8413 type_decl = TYPE_NAME (t);
8415 if (CLASS_TYPE_P (template_type))
8417 TREE_PRIVATE (type_decl)
8418 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8419 TREE_PROTECTED (type_decl)
8420 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8421 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8423 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8424 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8428 if (OVERLOAD_TYPE_P (t)
8429 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8431 static const char *tags[] = {"abi_tag", "may_alias"};
8433 for (unsigned ix = 0; ix != 2; ix++)
8435 tree attributes
8436 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8438 if (!attributes)
8440 else if (!TREE_CHAIN (attributes) && !TYPE_ATTRIBUTES (t))
8441 TYPE_ATTRIBUTES (t) = attributes;
8442 else
8443 TYPE_ATTRIBUTES (t)
8444 = tree_cons (TREE_PURPOSE (attributes),
8445 TREE_VALUE (attributes),
8446 TYPE_ATTRIBUTES (t));
8450 /* Let's consider the explicit specialization of a member
8451 of a class template specialization that is implicitly instantiated,
8452 e.g.:
8453 template<class T>
8454 struct S
8456 template<class U> struct M {}; //#0
8459 template<>
8460 template<>
8461 struct S<int>::M<char> //#1
8463 int i;
8465 [temp.expl.spec]/4 says this is valid.
8467 In this case, when we write:
8468 S<int>::M<char> m;
8470 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8471 the one of #0.
8473 When we encounter #1, we want to store the partial instantiation
8474 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8476 For all cases other than this "explicit specialization of member of a
8477 class template", we just want to store the most general template into
8478 the CLASSTYPE_TI_TEMPLATE of M.
8480 This case of "explicit specialization of member of a class template"
8481 only happens when:
8482 1/ the enclosing class is an instantiation of, and therefore not
8483 the same as, the context of the most general template, and
8484 2/ we aren't looking at the partial instantiation itself, i.e.
8485 the innermost arguments are not the same as the innermost parms of
8486 the most general template.
8488 So it's only when 1/ and 2/ happens that we want to use the partial
8489 instantiation of the member template in lieu of its most general
8490 template. */
8492 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8493 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8494 /* the enclosing class must be an instantiation... */
8495 && CLASS_TYPE_P (context)
8496 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8498 tree partial_inst_args;
8499 TREE_VEC_LENGTH (arglist)--;
8500 ++processing_template_decl;
8501 partial_inst_args =
8502 tsubst (INNERMOST_TEMPLATE_ARGS
8503 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8504 arglist, complain, NULL_TREE);
8505 --processing_template_decl;
8506 TREE_VEC_LENGTH (arglist)++;
8507 use_partial_inst_tmpl =
8508 /*...and we must not be looking at the partial instantiation
8509 itself. */
8510 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8511 partial_inst_args);
8514 if (!use_partial_inst_tmpl)
8515 /* This case is easy; there are no member templates involved. */
8516 found = gen_tmpl;
8517 else
8519 /* This is a full instantiation of a member template. Find
8520 the partial instantiation of which this is an instance. */
8522 /* Temporarily reduce by one the number of levels in the ARGLIST
8523 so as to avoid comparing the last set of arguments. */
8524 TREE_VEC_LENGTH (arglist)--;
8525 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8526 TREE_VEC_LENGTH (arglist)++;
8527 /* FOUND is either a proper class type, or an alias
8528 template specialization. In the later case, it's a
8529 TYPE_DECL, resulting from the substituting of arguments
8530 for parameters in the TYPE_DECL of the alias template
8531 done earlier. So be careful while getting the template
8532 of FOUND. */
8533 found = TREE_CODE (found) == TYPE_DECL
8534 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8535 : CLASSTYPE_TI_TEMPLATE (found);
8538 // Build template info for the new specialization.
8539 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8541 elt.spec = t;
8542 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8543 entry = ggc_alloc<spec_entry> ();
8544 *entry = elt;
8545 *slot = entry;
8547 /* Note this use of the partial instantiation so we can check it
8548 later in maybe_process_partial_specialization. */
8549 DECL_TEMPLATE_INSTANTIATIONS (found)
8550 = tree_cons (arglist, t,
8551 DECL_TEMPLATE_INSTANTIATIONS (found));
8553 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8554 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8555 /* Now that the type has been registered on the instantiations
8556 list, we set up the enumerators. Because the enumeration
8557 constants may involve the enumeration type itself, we make
8558 sure to register the type first, and then create the
8559 constants. That way, doing tsubst_expr for the enumeration
8560 constants won't result in recursive calls here; we'll find
8561 the instantiation and exit above. */
8562 tsubst_enum (template_type, t, arglist);
8564 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8565 /* If the type makes use of template parameters, the
8566 code that generates debugging information will crash. */
8567 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8569 /* Possibly limit visibility based on template args. */
8570 TREE_PUBLIC (type_decl) = 1;
8571 determine_visibility (type_decl);
8573 inherit_targ_abi_tags (t);
8575 return t;
8579 /* Wrapper for lookup_template_class_1. */
8581 tree
8582 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8583 int entering_scope, tsubst_flags_t complain)
8585 tree ret;
8586 timevar_push (TV_TEMPLATE_INST);
8587 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8588 entering_scope, complain);
8589 timevar_pop (TV_TEMPLATE_INST);
8590 return ret;
8593 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8595 tree
8596 lookup_template_variable (tree templ, tree arglist)
8598 /* The type of the expression is NULL_TREE since the template-id could refer
8599 to an explicit or partial specialization. */
8600 tree type = NULL_TREE;
8601 if (flag_concepts && variable_concept_p (templ))
8602 /* Except that concepts are always bool. */
8603 type = boolean_type_node;
8604 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8607 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8609 tree
8610 finish_template_variable (tree var, tsubst_flags_t complain)
8612 tree templ = TREE_OPERAND (var, 0);
8613 tree arglist = TREE_OPERAND (var, 1);
8615 /* We never want to return a VAR_DECL for a variable concept, since they
8616 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8617 bool concept_p = flag_concepts && variable_concept_p (templ);
8618 if (concept_p && processing_template_decl)
8619 return var;
8621 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8622 arglist = add_outermost_template_args (tmpl_args, arglist);
8624 tree parms = DECL_TEMPLATE_PARMS (templ);
8625 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8626 /*req_all*/true,
8627 /*use_default*/true);
8629 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8631 if (complain & tf_error)
8633 error ("constraints for %qD not satisfied", templ);
8634 diagnose_constraints (location_of (var), templ, arglist);
8636 return error_mark_node;
8639 /* If a template-id refers to a specialization of a variable
8640 concept, then the expression is true if and only if the
8641 concept's constraints are satisfied by the given template
8642 arguments.
8644 NOTE: This is an extension of Concepts Lite TS that
8645 allows constraints to be used in expressions. */
8646 if (concept_p)
8648 tree decl = DECL_TEMPLATE_RESULT (templ);
8649 return evaluate_variable_concept (decl, arglist);
8652 return instantiate_template (templ, arglist, complain);
8655 struct pair_fn_data
8657 tree_fn_t fn;
8658 void *data;
8659 /* True when we should also visit template parameters that occur in
8660 non-deduced contexts. */
8661 bool include_nondeduced_p;
8662 hash_set<tree> *visited;
8665 /* Called from for_each_template_parm via walk_tree. */
8667 static tree
8668 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8670 tree t = *tp;
8671 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8672 tree_fn_t fn = pfd->fn;
8673 void *data = pfd->data;
8675 if (TYPE_P (t)
8676 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
8677 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
8678 pfd->include_nondeduced_p))
8679 return error_mark_node;
8681 switch (TREE_CODE (t))
8683 case RECORD_TYPE:
8684 if (TYPE_PTRMEMFUNC_P (t))
8685 break;
8686 /* Fall through. */
8688 case UNION_TYPE:
8689 case ENUMERAL_TYPE:
8690 if (!TYPE_TEMPLATE_INFO (t))
8691 *walk_subtrees = 0;
8692 else if (for_each_template_parm (TYPE_TI_ARGS (t),
8693 fn, data, pfd->visited,
8694 pfd->include_nondeduced_p))
8695 return error_mark_node;
8696 break;
8698 case INTEGER_TYPE:
8699 if (for_each_template_parm (TYPE_MIN_VALUE (t),
8700 fn, data, pfd->visited,
8701 pfd->include_nondeduced_p)
8702 || for_each_template_parm (TYPE_MAX_VALUE (t),
8703 fn, data, pfd->visited,
8704 pfd->include_nondeduced_p))
8705 return error_mark_node;
8706 break;
8708 case METHOD_TYPE:
8709 /* Since we're not going to walk subtrees, we have to do this
8710 explicitly here. */
8711 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
8712 pfd->visited, pfd->include_nondeduced_p))
8713 return error_mark_node;
8714 /* Fall through. */
8716 case FUNCTION_TYPE:
8717 /* Check the return type. */
8718 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8719 pfd->include_nondeduced_p))
8720 return error_mark_node;
8722 /* Check the parameter types. Since default arguments are not
8723 instantiated until they are needed, the TYPE_ARG_TYPES may
8724 contain expressions that involve template parameters. But,
8725 no-one should be looking at them yet. And, once they're
8726 instantiated, they don't contain template parameters, so
8727 there's no point in looking at them then, either. */
8729 tree parm;
8731 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8732 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
8733 pfd->visited, pfd->include_nondeduced_p))
8734 return error_mark_node;
8736 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8737 want walk_tree walking into them itself. */
8738 *walk_subtrees = 0;
8740 break;
8742 case TYPEOF_TYPE:
8743 case UNDERLYING_TYPE:
8744 if (pfd->include_nondeduced_p
8745 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8746 pfd->visited,
8747 pfd->include_nondeduced_p))
8748 return error_mark_node;
8749 break;
8751 case FUNCTION_DECL:
8752 case VAR_DECL:
8753 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
8754 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
8755 pfd->visited, pfd->include_nondeduced_p))
8756 return error_mark_node;
8757 /* Fall through. */
8759 case PARM_DECL:
8760 case CONST_DECL:
8761 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
8762 && for_each_template_parm (DECL_INITIAL (t), fn, data,
8763 pfd->visited, pfd->include_nondeduced_p))
8764 return error_mark_node;
8765 if (DECL_CONTEXT (t)
8766 && pfd->include_nondeduced_p
8767 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
8768 pfd->visited, pfd->include_nondeduced_p))
8769 return error_mark_node;
8770 break;
8772 case BOUND_TEMPLATE_TEMPLATE_PARM:
8773 /* Record template parameters such as `T' inside `TT<T>'. */
8774 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
8775 pfd->include_nondeduced_p))
8776 return error_mark_node;
8777 /* Fall through. */
8779 case TEMPLATE_TEMPLATE_PARM:
8780 case TEMPLATE_TYPE_PARM:
8781 case TEMPLATE_PARM_INDEX:
8782 if (fn && (*fn)(t, data))
8783 return error_mark_node;
8784 else if (!fn)
8785 return error_mark_node;
8786 break;
8788 case TEMPLATE_DECL:
8789 /* A template template parameter is encountered. */
8790 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
8791 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8792 pfd->include_nondeduced_p))
8793 return error_mark_node;
8795 /* Already substituted template template parameter */
8796 *walk_subtrees = 0;
8797 break;
8799 case TYPENAME_TYPE:
8800 if (!fn
8801 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
8802 data, pfd->visited,
8803 pfd->include_nondeduced_p))
8804 return error_mark_node;
8805 break;
8807 case CONSTRUCTOR:
8808 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8809 && pfd->include_nondeduced_p
8810 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
8811 (TREE_TYPE (t)), fn, data,
8812 pfd->visited, pfd->include_nondeduced_p))
8813 return error_mark_node;
8814 break;
8816 case INDIRECT_REF:
8817 case COMPONENT_REF:
8818 /* If there's no type, then this thing must be some expression
8819 involving template parameters. */
8820 if (!fn && !TREE_TYPE (t))
8821 return error_mark_node;
8822 break;
8824 case MODOP_EXPR:
8825 case CAST_EXPR:
8826 case IMPLICIT_CONV_EXPR:
8827 case REINTERPRET_CAST_EXPR:
8828 case CONST_CAST_EXPR:
8829 case STATIC_CAST_EXPR:
8830 case DYNAMIC_CAST_EXPR:
8831 case ARROW_EXPR:
8832 case DOTSTAR_EXPR:
8833 case TYPEID_EXPR:
8834 case PSEUDO_DTOR_EXPR:
8835 if (!fn)
8836 return error_mark_node;
8837 break;
8839 default:
8840 break;
8843 /* We didn't find any template parameters we liked. */
8844 return NULL_TREE;
8847 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8848 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8849 call FN with the parameter and the DATA.
8850 If FN returns nonzero, the iteration is terminated, and
8851 for_each_template_parm returns 1. Otherwise, the iteration
8852 continues. If FN never returns a nonzero value, the value
8853 returned by for_each_template_parm is 0. If FN is NULL, it is
8854 considered to be the function which always returns 1.
8856 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8857 parameters that occur in non-deduced contexts. When false, only
8858 visits those template parameters that can be deduced. */
8860 static int
8861 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8862 hash_set<tree> *visited,
8863 bool include_nondeduced_p)
8865 struct pair_fn_data pfd;
8866 int result;
8868 /* Set up. */
8869 pfd.fn = fn;
8870 pfd.data = data;
8871 pfd.include_nondeduced_p = include_nondeduced_p;
8873 /* Walk the tree. (Conceptually, we would like to walk without
8874 duplicates, but for_each_template_parm_r recursively calls
8875 for_each_template_parm, so we would need to reorganize a fair
8876 bit to use walk_tree_without_duplicates, so we keep our own
8877 visited list.) */
8878 if (visited)
8879 pfd.visited = visited;
8880 else
8881 pfd.visited = new hash_set<tree>;
8882 result = cp_walk_tree (&t,
8883 for_each_template_parm_r,
8884 &pfd,
8885 pfd.visited) != NULL_TREE;
8887 /* Clean up. */
8888 if (!visited)
8890 delete pfd.visited;
8891 pfd.visited = 0;
8894 return result;
8897 /* Returns true if T depends on any template parameter. */
8900 uses_template_parms (tree t)
8902 if (t == NULL_TREE)
8903 return false;
8905 bool dependent_p;
8906 int saved_processing_template_decl;
8908 saved_processing_template_decl = processing_template_decl;
8909 if (!saved_processing_template_decl)
8910 processing_template_decl = 1;
8911 if (TYPE_P (t))
8912 dependent_p = dependent_type_p (t);
8913 else if (TREE_CODE (t) == TREE_VEC)
8914 dependent_p = any_dependent_template_arguments_p (t);
8915 else if (TREE_CODE (t) == TREE_LIST)
8916 dependent_p = (uses_template_parms (TREE_VALUE (t))
8917 || uses_template_parms (TREE_CHAIN (t)));
8918 else if (TREE_CODE (t) == TYPE_DECL)
8919 dependent_p = dependent_type_p (TREE_TYPE (t));
8920 else if (DECL_P (t)
8921 || EXPR_P (t)
8922 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8923 || TREE_CODE (t) == OVERLOAD
8924 || BASELINK_P (t)
8925 || identifier_p (t)
8926 || TREE_CODE (t) == TRAIT_EXPR
8927 || TREE_CODE (t) == CONSTRUCTOR
8928 || CONSTANT_CLASS_P (t))
8929 dependent_p = (type_dependent_expression_p (t)
8930 || value_dependent_expression_p (t));
8931 else
8933 gcc_assert (t == error_mark_node);
8934 dependent_p = false;
8937 processing_template_decl = saved_processing_template_decl;
8939 return dependent_p;
8942 /* Returns true iff current_function_decl is an incompletely instantiated
8943 template. Useful instead of processing_template_decl because the latter
8944 is set to 0 during instantiate_non_dependent_expr. */
8946 bool
8947 in_template_function (void)
8949 tree fn = current_function_decl;
8950 bool ret;
8951 ++processing_template_decl;
8952 ret = (fn && DECL_LANG_SPECIFIC (fn)
8953 && DECL_TEMPLATE_INFO (fn)
8954 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8955 --processing_template_decl;
8956 return ret;
8959 /* Returns true if T depends on any template parameter with level LEVEL. */
8962 uses_template_parms_level (tree t, int level)
8964 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8965 /*include_nondeduced_p=*/true);
8968 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8969 ill-formed translation unit, i.e. a variable or function that isn't
8970 usable in a constant expression. */
8972 static inline bool
8973 neglectable_inst_p (tree d)
8975 return (DECL_P (d)
8976 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8977 : decl_maybe_constant_var_p (d)));
8980 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8981 neglectable and instantiated from within an erroneous instantiation. */
8983 static bool
8984 limit_bad_template_recursion (tree decl)
8986 struct tinst_level *lev = current_tinst_level;
8987 int errs = errorcount + sorrycount;
8988 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8989 return false;
8991 for (; lev; lev = lev->next)
8992 if (neglectable_inst_p (lev->decl))
8993 break;
8995 return (lev && errs > lev->errors);
8998 static int tinst_depth;
8999 extern int max_tinst_depth;
9000 int depth_reached;
9002 static GTY(()) struct tinst_level *last_error_tinst_level;
9004 /* We're starting to instantiate D; record the template instantiation context
9005 for diagnostics and to restore it later. */
9007 bool
9008 push_tinst_level (tree d)
9010 return push_tinst_level_loc (d, input_location);
9013 /* We're starting to instantiate D; record the template instantiation context
9014 at LOC for diagnostics and to restore it later. */
9016 bool
9017 push_tinst_level_loc (tree d, location_t loc)
9019 struct tinst_level *new_level;
9021 if (tinst_depth >= max_tinst_depth)
9023 fatal_error (input_location,
9024 "template instantiation depth exceeds maximum of %d"
9025 " (use -ftemplate-depth= to increase the maximum)",
9026 max_tinst_depth);
9027 return false;
9030 /* If the current instantiation caused problems, don't let it instantiate
9031 anything else. Do allow deduction substitution and decls usable in
9032 constant expressions. */
9033 if (limit_bad_template_recursion (d))
9034 return false;
9036 new_level = ggc_alloc<tinst_level> ();
9037 new_level->decl = d;
9038 new_level->locus = loc;
9039 new_level->errors = errorcount+sorrycount;
9040 new_level->in_system_header_p = in_system_header_at (input_location);
9041 new_level->next = current_tinst_level;
9042 current_tinst_level = new_level;
9044 ++tinst_depth;
9045 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9046 depth_reached = tinst_depth;
9048 return true;
9051 /* We're done instantiating this template; return to the instantiation
9052 context. */
9054 void
9055 pop_tinst_level (void)
9057 /* Restore the filename and line number stashed away when we started
9058 this instantiation. */
9059 input_location = current_tinst_level->locus;
9060 current_tinst_level = current_tinst_level->next;
9061 --tinst_depth;
9064 /* We're instantiating a deferred template; restore the template
9065 instantiation context in which the instantiation was requested, which
9066 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9068 static tree
9069 reopen_tinst_level (struct tinst_level *level)
9071 struct tinst_level *t;
9073 tinst_depth = 0;
9074 for (t = level; t; t = t->next)
9075 ++tinst_depth;
9077 current_tinst_level = level;
9078 pop_tinst_level ();
9079 if (current_tinst_level)
9080 current_tinst_level->errors = errorcount+sorrycount;
9081 return level->decl;
9084 /* Returns the TINST_LEVEL which gives the original instantiation
9085 context. */
9087 struct tinst_level *
9088 outermost_tinst_level (void)
9090 struct tinst_level *level = current_tinst_level;
9091 if (level)
9092 while (level->next)
9093 level = level->next;
9094 return level;
9097 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9098 vector of template arguments, as for tsubst.
9100 Returns an appropriate tsubst'd friend declaration. */
9102 static tree
9103 tsubst_friend_function (tree decl, tree args)
9105 tree new_friend;
9107 if (TREE_CODE (decl) == FUNCTION_DECL
9108 && DECL_TEMPLATE_INSTANTIATION (decl)
9109 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9110 /* This was a friend declared with an explicit template
9111 argument list, e.g.:
9113 friend void f<>(T);
9115 to indicate that f was a template instantiation, not a new
9116 function declaration. Now, we have to figure out what
9117 instantiation of what template. */
9119 tree template_id, arglist, fns;
9120 tree new_args;
9121 tree tmpl;
9122 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9124 /* Friend functions are looked up in the containing namespace scope.
9125 We must enter that scope, to avoid finding member functions of the
9126 current class with same name. */
9127 push_nested_namespace (ns);
9128 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9129 tf_warning_or_error, NULL_TREE,
9130 /*integral_constant_expression_p=*/false);
9131 pop_nested_namespace (ns);
9132 arglist = tsubst (DECL_TI_ARGS (decl), args,
9133 tf_warning_or_error, NULL_TREE);
9134 template_id = lookup_template_function (fns, arglist);
9136 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9137 tmpl = determine_specialization (template_id, new_friend,
9138 &new_args,
9139 /*need_member_template=*/0,
9140 TREE_VEC_LENGTH (args),
9141 tsk_none);
9142 return instantiate_template (tmpl, new_args, tf_error);
9145 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9147 /* The NEW_FRIEND will look like an instantiation, to the
9148 compiler, but is not an instantiation from the point of view of
9149 the language. For example, we might have had:
9151 template <class T> struct S {
9152 template <class U> friend void f(T, U);
9155 Then, in S<int>, template <class U> void f(int, U) is not an
9156 instantiation of anything. */
9157 if (new_friend == error_mark_node)
9158 return error_mark_node;
9160 DECL_USE_TEMPLATE (new_friend) = 0;
9161 if (TREE_CODE (decl) == TEMPLATE_DECL)
9163 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9164 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9165 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9168 /* The mangled name for the NEW_FRIEND is incorrect. The function
9169 is not a template instantiation and should not be mangled like
9170 one. Therefore, we forget the mangling here; we'll recompute it
9171 later if we need it. */
9172 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9174 SET_DECL_RTL (new_friend, NULL);
9175 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9178 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9180 tree old_decl;
9181 tree new_friend_template_info;
9182 tree new_friend_result_template_info;
9183 tree ns;
9184 int new_friend_is_defn;
9186 /* We must save some information from NEW_FRIEND before calling
9187 duplicate decls since that function will free NEW_FRIEND if
9188 possible. */
9189 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9190 new_friend_is_defn =
9191 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9192 (template_for_substitution (new_friend)))
9193 != NULL_TREE);
9194 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9196 /* This declaration is a `primary' template. */
9197 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9199 new_friend_result_template_info
9200 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9202 else
9203 new_friend_result_template_info = NULL_TREE;
9205 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9206 if (new_friend_is_defn)
9207 DECL_INITIAL (new_friend) = error_mark_node;
9209 /* Inside pushdecl_namespace_level, we will push into the
9210 current namespace. However, the friend function should go
9211 into the namespace of the template. */
9212 ns = decl_namespace_context (new_friend);
9213 push_nested_namespace (ns);
9214 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9215 pop_nested_namespace (ns);
9217 if (old_decl == error_mark_node)
9218 return error_mark_node;
9220 if (old_decl != new_friend)
9222 /* This new friend declaration matched an existing
9223 declaration. For example, given:
9225 template <class T> void f(T);
9226 template <class U> class C {
9227 template <class T> friend void f(T) {}
9230 the friend declaration actually provides the definition
9231 of `f', once C has been instantiated for some type. So,
9232 old_decl will be the out-of-class template declaration,
9233 while new_friend is the in-class definition.
9235 But, if `f' was called before this point, the
9236 instantiation of `f' will have DECL_TI_ARGS corresponding
9237 to `T' but not to `U', references to which might appear
9238 in the definition of `f'. Previously, the most general
9239 template for an instantiation of `f' was the out-of-class
9240 version; now it is the in-class version. Therefore, we
9241 run through all specialization of `f', adding to their
9242 DECL_TI_ARGS appropriately. In particular, they need a
9243 new set of outer arguments, corresponding to the
9244 arguments for this class instantiation.
9246 The same situation can arise with something like this:
9248 friend void f(int);
9249 template <class T> class C {
9250 friend void f(T) {}
9253 when `C<int>' is instantiated. Now, `f(int)' is defined
9254 in the class. */
9256 if (!new_friend_is_defn)
9257 /* On the other hand, if the in-class declaration does
9258 *not* provide a definition, then we don't want to alter
9259 existing definitions. We can just leave everything
9260 alone. */
9262 else
9264 tree new_template = TI_TEMPLATE (new_friend_template_info);
9265 tree new_args = TI_ARGS (new_friend_template_info);
9267 /* Overwrite whatever template info was there before, if
9268 any, with the new template information pertaining to
9269 the declaration. */
9270 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9272 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9274 /* We should have called reregister_specialization in
9275 duplicate_decls. */
9276 gcc_assert (retrieve_specialization (new_template,
9277 new_args, 0)
9278 == old_decl);
9280 /* Instantiate it if the global has already been used. */
9281 if (DECL_ODR_USED (old_decl))
9282 instantiate_decl (old_decl, /*defer_ok=*/true,
9283 /*expl_inst_class_mem_p=*/false);
9285 else
9287 tree t;
9289 /* Indicate that the old function template is a partial
9290 instantiation. */
9291 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9292 = new_friend_result_template_info;
9294 gcc_assert (new_template
9295 == most_general_template (new_template));
9296 gcc_assert (new_template != old_decl);
9298 /* Reassign any specializations already in the hash table
9299 to the new more general template, and add the
9300 additional template args. */
9301 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9302 t != NULL_TREE;
9303 t = TREE_CHAIN (t))
9305 tree spec = TREE_VALUE (t);
9306 spec_entry elt;
9308 elt.tmpl = old_decl;
9309 elt.args = DECL_TI_ARGS (spec);
9310 elt.spec = NULL_TREE;
9312 decl_specializations->remove_elt (&elt);
9314 DECL_TI_ARGS (spec)
9315 = add_outermost_template_args (new_args,
9316 DECL_TI_ARGS (spec));
9318 register_specialization
9319 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9322 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9326 /* The information from NEW_FRIEND has been merged into OLD_DECL
9327 by duplicate_decls. */
9328 new_friend = old_decl;
9331 else
9333 tree context = DECL_CONTEXT (new_friend);
9334 bool dependent_p;
9336 /* In the code
9337 template <class T> class C {
9338 template <class U> friend void C1<U>::f (); // case 1
9339 friend void C2<T>::f (); // case 2
9341 we only need to make sure CONTEXT is a complete type for
9342 case 2. To distinguish between the two cases, we note that
9343 CONTEXT of case 1 remains dependent type after tsubst while
9344 this isn't true for case 2. */
9345 ++processing_template_decl;
9346 dependent_p = dependent_type_p (context);
9347 --processing_template_decl;
9349 if (!dependent_p
9350 && !complete_type_or_else (context, NULL_TREE))
9351 return error_mark_node;
9353 if (COMPLETE_TYPE_P (context))
9355 tree fn = new_friend;
9356 /* do_friend adds the TEMPLATE_DECL for any member friend
9357 template even if it isn't a member template, i.e.
9358 template <class T> friend A<T>::f();
9359 Look through it in that case. */
9360 if (TREE_CODE (fn) == TEMPLATE_DECL
9361 && !PRIMARY_TEMPLATE_P (fn))
9362 fn = DECL_TEMPLATE_RESULT (fn);
9363 /* Check to see that the declaration is really present, and,
9364 possibly obtain an improved declaration. */
9365 fn = check_classfn (context, fn, NULL_TREE);
9367 if (fn)
9368 new_friend = fn;
9372 return new_friend;
9375 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9376 template arguments, as for tsubst.
9378 Returns an appropriate tsubst'd friend type or error_mark_node on
9379 failure. */
9381 static tree
9382 tsubst_friend_class (tree friend_tmpl, tree args)
9384 tree friend_type;
9385 tree tmpl;
9386 tree context;
9388 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9390 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9391 return TREE_TYPE (t);
9394 context = CP_DECL_CONTEXT (friend_tmpl);
9396 if (context != global_namespace)
9398 if (TREE_CODE (context) == NAMESPACE_DECL)
9399 push_nested_namespace (context);
9400 else
9401 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9404 /* Look for a class template declaration. We look for hidden names
9405 because two friend declarations of the same template are the
9406 same. For example, in:
9408 struct A {
9409 template <typename> friend class F;
9411 template <typename> struct B {
9412 template <typename> friend class F;
9415 both F templates are the same. */
9416 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9417 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9419 /* But, if we don't find one, it might be because we're in a
9420 situation like this:
9422 template <class T>
9423 struct S {
9424 template <class U>
9425 friend struct S;
9428 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9429 for `S<int>', not the TEMPLATE_DECL. */
9430 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9432 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9433 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9436 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9438 /* The friend template has already been declared. Just
9439 check to see that the declarations match, and install any new
9440 default parameters. We must tsubst the default parameters,
9441 of course. We only need the innermost template parameters
9442 because that is all that redeclare_class_template will look
9443 at. */
9444 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9445 > TMPL_ARGS_DEPTH (args))
9447 tree parms;
9448 location_t saved_input_location;
9449 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9450 args, tf_warning_or_error);
9452 saved_input_location = input_location;
9453 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9454 tree cons = get_constraints (tmpl);
9455 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9456 input_location = saved_input_location;
9460 friend_type = TREE_TYPE (tmpl);
9462 else
9464 /* The friend template has not already been declared. In this
9465 case, the instantiation of the template class will cause the
9466 injection of this template into the global scope. */
9467 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9468 if (tmpl == error_mark_node)
9469 return error_mark_node;
9471 /* The new TMPL is not an instantiation of anything, so we
9472 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9473 the new type because that is supposed to be the corresponding
9474 template decl, i.e., TMPL. */
9475 DECL_USE_TEMPLATE (tmpl) = 0;
9476 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9477 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9478 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9479 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9481 /* Inject this template into the global scope. */
9482 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9485 if (context != global_namespace)
9487 if (TREE_CODE (context) == NAMESPACE_DECL)
9488 pop_nested_namespace (context);
9489 else
9490 pop_nested_class ();
9493 return friend_type;
9496 /* Returns zero if TYPE cannot be completed later due to circularity.
9497 Otherwise returns one. */
9499 static int
9500 can_complete_type_without_circularity (tree type)
9502 if (type == NULL_TREE || type == error_mark_node)
9503 return 0;
9504 else if (COMPLETE_TYPE_P (type))
9505 return 1;
9506 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
9507 return can_complete_type_without_circularity (TREE_TYPE (type));
9508 else if (CLASS_TYPE_P (type)
9509 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9510 return 0;
9511 else
9512 return 1;
9515 static tree tsubst_omp_clauses (tree, bool, tree, tsubst_flags_t, tree);
9517 /* Apply any attributes which had to be deferred until instantiation
9518 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9519 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9521 static void
9522 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9523 tree args, tsubst_flags_t complain, tree in_decl)
9525 tree last_dep = NULL_TREE;
9526 tree t;
9527 tree *p;
9529 for (t = attributes; t; t = TREE_CHAIN (t))
9530 if (ATTR_IS_DEPENDENT (t))
9532 last_dep = t;
9533 attributes = copy_list (attributes);
9534 break;
9537 if (DECL_P (*decl_p))
9539 if (TREE_TYPE (*decl_p) == error_mark_node)
9540 return;
9541 p = &DECL_ATTRIBUTES (*decl_p);
9543 else
9544 p = &TYPE_ATTRIBUTES (*decl_p);
9546 if (last_dep)
9548 tree late_attrs = NULL_TREE;
9549 tree *q = &late_attrs;
9551 for (*p = attributes; *p; )
9553 t = *p;
9554 if (ATTR_IS_DEPENDENT (t))
9556 *p = TREE_CHAIN (t);
9557 TREE_CHAIN (t) = NULL_TREE;
9558 if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9559 && is_attribute_p ("omp declare simd",
9560 get_attribute_name (t))
9561 && TREE_VALUE (t))
9563 tree clauses = TREE_VALUE (TREE_VALUE (t));
9564 clauses = tsubst_omp_clauses (clauses, true, args,
9565 complain, in_decl);
9566 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9567 clauses = finish_omp_clauses (clauses);
9568 tree parms = DECL_ARGUMENTS (*decl_p);
9569 clauses
9570 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9571 if (clauses)
9572 TREE_VALUE (TREE_VALUE (t)) = clauses;
9573 else
9574 TREE_VALUE (t) = NULL_TREE;
9576 /* If the first attribute argument is an identifier, don't
9577 pass it through tsubst. Attributes like mode, format,
9578 cleanup and several target specific attributes expect it
9579 unmodified. */
9580 else if (attribute_takes_identifier_p (get_attribute_name (t))
9581 && TREE_VALUE (t))
9583 tree chain
9584 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
9585 in_decl,
9586 /*integral_constant_expression_p=*/false);
9587 if (chain != TREE_CHAIN (TREE_VALUE (t)))
9588 TREE_VALUE (t)
9589 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
9590 chain);
9592 else if (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t)))
9594 /* An attribute pack expansion. */
9595 tree purp = TREE_PURPOSE (t);
9596 tree pack = (tsubst_pack_expansion
9597 (TREE_VALUE (t), args, complain, in_decl));
9598 int len = TREE_VEC_LENGTH (pack);
9599 for (int i = 0; i < len; ++i)
9601 tree elt = TREE_VEC_ELT (pack, i);
9602 *q = build_tree_list (purp, elt);
9603 q = &TREE_CHAIN (*q);
9605 continue;
9607 else
9608 TREE_VALUE (t)
9609 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
9610 /*integral_constant_expression_p=*/false);
9611 *q = t;
9612 q = &TREE_CHAIN (t);
9614 else
9615 p = &TREE_CHAIN (t);
9618 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9622 /* Perform (or defer) access check for typedefs that were referenced
9623 from within the template TMPL code.
9624 This is a subroutine of instantiate_decl and instantiate_class_template.
9625 TMPL is the template to consider and TARGS is the list of arguments of
9626 that template. */
9628 static void
9629 perform_typedefs_access_check (tree tmpl, tree targs)
9631 location_t saved_location;
9632 unsigned i;
9633 qualified_typedef_usage_t *iter;
9635 if (!tmpl
9636 || (!CLASS_TYPE_P (tmpl)
9637 && TREE_CODE (tmpl) != FUNCTION_DECL))
9638 return;
9640 saved_location = input_location;
9641 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9643 tree type_decl = iter->typedef_decl;
9644 tree type_scope = iter->context;
9646 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9647 continue;
9649 if (uses_template_parms (type_decl))
9650 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9651 if (uses_template_parms (type_scope))
9652 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9654 /* Make access check error messages point to the location
9655 of the use of the typedef. */
9656 input_location = iter->locus;
9657 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9658 type_decl, type_decl,
9659 tf_warning_or_error);
9661 input_location = saved_location;
9664 static tree
9665 instantiate_class_template_1 (tree type)
9667 tree templ, args, pattern, t, member;
9668 tree typedecl;
9669 tree pbinfo;
9670 tree base_list;
9671 unsigned int saved_maximum_field_alignment;
9672 tree fn_context;
9674 if (type == error_mark_node)
9675 return error_mark_node;
9677 if (COMPLETE_OR_OPEN_TYPE_P (type)
9678 || uses_template_parms (type))
9679 return type;
9681 /* Figure out which template is being instantiated. */
9682 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9683 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9685 /* Determine what specialization of the original template to
9686 instantiate. */
9687 t = most_specialized_partial_spec (type, tf_warning_or_error);
9688 if (t == error_mark_node)
9690 TYPE_BEING_DEFINED (type) = 1;
9691 return error_mark_node;
9693 else if (t)
9695 /* This TYPE is actually an instantiation of a partial
9696 specialization. We replace the innermost set of ARGS with
9697 the arguments appropriate for substitution. For example,
9698 given:
9700 template <class T> struct S {};
9701 template <class T> struct S<T*> {};
9703 and supposing that we are instantiating S<int*>, ARGS will
9704 presently be {int*} -- but we need {int}. */
9705 pattern = TREE_TYPE (t);
9706 args = TREE_PURPOSE (t);
9708 else
9710 pattern = TREE_TYPE (templ);
9711 args = CLASSTYPE_TI_ARGS (type);
9714 /* If the template we're instantiating is incomplete, then clearly
9715 there's nothing we can do. */
9716 if (!COMPLETE_TYPE_P (pattern))
9717 return type;
9719 /* If we've recursively instantiated too many templates, stop. */
9720 if (! push_tinst_level (type))
9721 return type;
9723 /* Now we're really doing the instantiation. Mark the type as in
9724 the process of being defined. */
9725 TYPE_BEING_DEFINED (type) = 1;
9727 /* We may be in the middle of deferred access check. Disable
9728 it now. */
9729 push_deferring_access_checks (dk_no_deferred);
9731 int saved_unevaluated_operand = cp_unevaluated_operand;
9732 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9734 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9735 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9736 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9737 fn_context = error_mark_node;
9738 if (!fn_context)
9739 push_to_top_level ();
9740 else
9742 cp_unevaluated_operand = 0;
9743 c_inhibit_evaluation_warnings = 0;
9745 /* Use #pragma pack from the template context. */
9746 saved_maximum_field_alignment = maximum_field_alignment;
9747 maximum_field_alignment = TYPE_PRECISION (pattern);
9749 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9751 /* Set the input location to the most specialized template definition.
9752 This is needed if tsubsting causes an error. */
9753 typedecl = TYPE_MAIN_DECL (pattern);
9754 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9755 DECL_SOURCE_LOCATION (typedecl);
9757 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9758 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
9759 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9760 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9761 if (ANON_AGGR_TYPE_P (pattern))
9762 SET_ANON_AGGR_TYPE_P (type);
9763 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9765 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9766 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9767 /* Adjust visibility for template arguments. */
9768 determine_visibility (TYPE_MAIN_DECL (type));
9770 if (CLASS_TYPE_P (type))
9771 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9773 pbinfo = TYPE_BINFO (pattern);
9775 /* We should never instantiate a nested class before its enclosing
9776 class; we need to look up the nested class by name before we can
9777 instantiate it, and that lookup should instantiate the enclosing
9778 class. */
9779 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9780 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9782 base_list = NULL_TREE;
9783 if (BINFO_N_BASE_BINFOS (pbinfo))
9785 tree pbase_binfo;
9786 tree pushed_scope;
9787 int i;
9789 /* We must enter the scope containing the type, as that is where
9790 the accessibility of types named in dependent bases are
9791 looked up from. */
9792 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9794 /* Substitute into each of the bases to determine the actual
9795 basetypes. */
9796 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9798 tree base;
9799 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9800 tree expanded_bases = NULL_TREE;
9801 int idx, len = 1;
9803 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9805 expanded_bases =
9806 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9807 args, tf_error, NULL_TREE);
9808 if (expanded_bases == error_mark_node)
9809 continue;
9811 len = TREE_VEC_LENGTH (expanded_bases);
9814 for (idx = 0; idx < len; idx++)
9816 if (expanded_bases)
9817 /* Extract the already-expanded base class. */
9818 base = TREE_VEC_ELT (expanded_bases, idx);
9819 else
9820 /* Substitute to figure out the base class. */
9821 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9822 NULL_TREE);
9824 if (base == error_mark_node)
9825 continue;
9827 base_list = tree_cons (access, base, base_list);
9828 if (BINFO_VIRTUAL_P (pbase_binfo))
9829 TREE_TYPE (base_list) = integer_type_node;
9833 /* The list is now in reverse order; correct that. */
9834 base_list = nreverse (base_list);
9836 if (pushed_scope)
9837 pop_scope (pushed_scope);
9839 /* Now call xref_basetypes to set up all the base-class
9840 information. */
9841 xref_basetypes (type, base_list);
9843 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9844 (int) ATTR_FLAG_TYPE_IN_PLACE,
9845 args, tf_error, NULL_TREE);
9846 fixup_attribute_variants (type);
9848 /* Now that our base classes are set up, enter the scope of the
9849 class, so that name lookups into base classes, etc. will work
9850 correctly. This is precisely analogous to what we do in
9851 begin_class_definition when defining an ordinary non-template
9852 class, except we also need to push the enclosing classes. */
9853 push_nested_class (type);
9855 /* Now members are processed in the order of declaration. */
9856 for (member = CLASSTYPE_DECL_LIST (pattern);
9857 member; member = TREE_CHAIN (member))
9859 tree t = TREE_VALUE (member);
9861 if (TREE_PURPOSE (member))
9863 if (TYPE_P (t))
9865 /* Build new CLASSTYPE_NESTED_UTDS. */
9867 tree newtag;
9868 bool class_template_p;
9870 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9871 && TYPE_LANG_SPECIFIC (t)
9872 && CLASSTYPE_IS_TEMPLATE (t));
9873 /* If the member is a class template, then -- even after
9874 substitution -- there may be dependent types in the
9875 template argument list for the class. We increment
9876 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9877 that function will assume that no types are dependent
9878 when outside of a template. */
9879 if (class_template_p)
9880 ++processing_template_decl;
9881 newtag = tsubst (t, args, tf_error, NULL_TREE);
9882 if (class_template_p)
9883 --processing_template_decl;
9884 if (newtag == error_mark_node)
9885 continue;
9887 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9889 tree name = TYPE_IDENTIFIER (t);
9891 if (class_template_p)
9892 /* Unfortunately, lookup_template_class sets
9893 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9894 instantiation (i.e., for the type of a member
9895 template class nested within a template class.)
9896 This behavior is required for
9897 maybe_process_partial_specialization to work
9898 correctly, but is not accurate in this case;
9899 the TAG is not an instantiation of anything.
9900 (The corresponding TEMPLATE_DECL is an
9901 instantiation, but the TYPE is not.) */
9902 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9904 /* Now, we call pushtag to put this NEWTAG into the scope of
9905 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9906 pushtag calling push_template_decl. We don't have to do
9907 this for enums because it will already have been done in
9908 tsubst_enum. */
9909 if (name)
9910 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9911 pushtag (name, newtag, /*tag_scope=*/ts_current);
9914 else if (DECL_DECLARES_FUNCTION_P (t))
9916 /* Build new TYPE_METHODS. */
9917 tree r;
9919 if (TREE_CODE (t) == TEMPLATE_DECL)
9920 ++processing_template_decl;
9921 r = tsubst (t, args, tf_error, NULL_TREE);
9922 if (TREE_CODE (t) == TEMPLATE_DECL)
9923 --processing_template_decl;
9924 set_current_access_from_decl (r);
9925 finish_member_declaration (r);
9926 /* Instantiate members marked with attribute used. */
9927 if (r != error_mark_node && DECL_PRESERVE_P (r))
9928 mark_used (r);
9929 if (TREE_CODE (r) == FUNCTION_DECL
9930 && DECL_OMP_DECLARE_REDUCTION_P (r))
9931 cp_check_omp_declare_reduction (r);
9933 else if (DECL_CLASS_TEMPLATE_P (t)
9934 && LAMBDA_TYPE_P (TREE_TYPE (t)))
9935 /* A closure type for a lambda in a default argument for a
9936 member template. Ignore it; it will be instantiated with
9937 the default argument. */;
9938 else
9940 /* Build new TYPE_FIELDS. */
9941 if (TREE_CODE (t) == STATIC_ASSERT)
9943 tree condition;
9945 ++c_inhibit_evaluation_warnings;
9946 condition =
9947 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9948 tf_warning_or_error, NULL_TREE,
9949 /*integral_constant_expression_p=*/true);
9950 --c_inhibit_evaluation_warnings;
9952 finish_static_assert (condition,
9953 STATIC_ASSERT_MESSAGE (t),
9954 STATIC_ASSERT_SOURCE_LOCATION (t),
9955 /*member_p=*/true);
9957 else if (TREE_CODE (t) != CONST_DECL)
9959 tree r;
9960 tree vec = NULL_TREE;
9961 int len = 1;
9963 /* The file and line for this declaration, to
9964 assist in error message reporting. Since we
9965 called push_tinst_level above, we don't need to
9966 restore these. */
9967 input_location = DECL_SOURCE_LOCATION (t);
9969 if (TREE_CODE (t) == TEMPLATE_DECL)
9970 ++processing_template_decl;
9971 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9972 if (TREE_CODE (t) == TEMPLATE_DECL)
9973 --processing_template_decl;
9975 if (TREE_CODE (r) == TREE_VEC)
9977 /* A capture pack became multiple fields. */
9978 vec = r;
9979 len = TREE_VEC_LENGTH (vec);
9982 for (int i = 0; i < len; ++i)
9984 if (vec)
9985 r = TREE_VEC_ELT (vec, i);
9986 if (VAR_P (r))
9988 /* In [temp.inst]:
9990 [t]he initialization (and any associated
9991 side-effects) of a static data member does
9992 not occur unless the static data member is
9993 itself used in a way that requires the
9994 definition of the static data member to
9995 exist.
9997 Therefore, we do not substitute into the
9998 initialized for the static data member here. */
9999 finish_static_data_member_decl
10001 /*init=*/NULL_TREE,
10002 /*init_const_expr_p=*/false,
10003 /*asmspec_tree=*/NULL_TREE,
10004 /*flags=*/0);
10005 /* Instantiate members marked with attribute used. */
10006 if (r != error_mark_node && DECL_PRESERVE_P (r))
10007 mark_used (r);
10009 else if (TREE_CODE (r) == FIELD_DECL)
10011 /* Determine whether R has a valid type and can be
10012 completed later. If R is invalid, then its type
10013 is replaced by error_mark_node. */
10014 tree rtype = TREE_TYPE (r);
10015 if (can_complete_type_without_circularity (rtype))
10016 complete_type (rtype);
10018 if (!COMPLETE_TYPE_P (rtype))
10020 cxx_incomplete_type_error (r, rtype);
10021 TREE_TYPE (r) = error_mark_node;
10025 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10026 such a thing will already have been added to the field
10027 list by tsubst_enum in finish_member_declaration in the
10028 CLASSTYPE_NESTED_UTDS case above. */
10029 if (!(TREE_CODE (r) == TYPE_DECL
10030 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10031 && DECL_ARTIFICIAL (r)))
10033 set_current_access_from_decl (r);
10034 finish_member_declaration (r);
10040 else
10042 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10043 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10045 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10047 tree friend_type = t;
10048 bool adjust_processing_template_decl = false;
10050 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10052 /* template <class T> friend class C; */
10053 friend_type = tsubst_friend_class (friend_type, args);
10054 adjust_processing_template_decl = true;
10056 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10058 /* template <class T> friend class C::D; */
10059 friend_type = tsubst (friend_type, args,
10060 tf_warning_or_error, NULL_TREE);
10061 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10062 friend_type = TREE_TYPE (friend_type);
10063 adjust_processing_template_decl = true;
10065 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10066 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10068 /* This could be either
10070 friend class T::C;
10072 when dependent_type_p is false or
10074 template <class U> friend class T::C;
10076 otherwise. */
10077 friend_type = tsubst (friend_type, args,
10078 tf_warning_or_error, NULL_TREE);
10079 /* Bump processing_template_decl for correct
10080 dependent_type_p calculation. */
10081 ++processing_template_decl;
10082 if (dependent_type_p (friend_type))
10083 adjust_processing_template_decl = true;
10084 --processing_template_decl;
10086 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10087 && hidden_name_p (TYPE_NAME (friend_type)))
10089 /* friend class C;
10091 where C hasn't been declared yet. Let's lookup name
10092 from namespace scope directly, bypassing any name that
10093 come from dependent base class. */
10094 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10096 /* The call to xref_tag_from_type does injection for friend
10097 classes. */
10098 push_nested_namespace (ns);
10099 friend_type =
10100 xref_tag_from_type (friend_type, NULL_TREE,
10101 /*tag_scope=*/ts_current);
10102 pop_nested_namespace (ns);
10104 else if (uses_template_parms (friend_type))
10105 /* friend class C<T>; */
10106 friend_type = tsubst (friend_type, args,
10107 tf_warning_or_error, NULL_TREE);
10108 /* Otherwise it's
10110 friend class C;
10112 where C is already declared or
10114 friend class C<int>;
10116 We don't have to do anything in these cases. */
10118 if (adjust_processing_template_decl)
10119 /* Trick make_friend_class into realizing that the friend
10120 we're adding is a template, not an ordinary class. It's
10121 important that we use make_friend_class since it will
10122 perform some error-checking and output cross-reference
10123 information. */
10124 ++processing_template_decl;
10126 if (friend_type != error_mark_node)
10127 make_friend_class (type, friend_type, /*complain=*/false);
10129 if (adjust_processing_template_decl)
10130 --processing_template_decl;
10132 else
10134 /* Build new DECL_FRIENDLIST. */
10135 tree r;
10137 /* The file and line for this declaration, to
10138 assist in error message reporting. Since we
10139 called push_tinst_level above, we don't need to
10140 restore these. */
10141 input_location = DECL_SOURCE_LOCATION (t);
10143 if (TREE_CODE (t) == TEMPLATE_DECL)
10145 ++processing_template_decl;
10146 push_deferring_access_checks (dk_no_check);
10149 r = tsubst_friend_function (t, args);
10150 add_friend (type, r, /*complain=*/false);
10151 if (TREE_CODE (t) == TEMPLATE_DECL)
10153 pop_deferring_access_checks ();
10154 --processing_template_decl;
10160 if (fn_context)
10162 /* Restore these before substituting into the lambda capture
10163 initializers. */
10164 cp_unevaluated_operand = saved_unevaluated_operand;
10165 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10168 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10170 tree decl = lambda_function (type);
10171 if (decl)
10173 if (!DECL_TEMPLATE_INFO (decl)
10174 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10175 instantiate_decl (decl, false, false);
10177 /* We need to instantiate the capture list from the template
10178 after we've instantiated the closure members, but before we
10179 consider adding the conversion op. Also keep any captures
10180 that may have been added during instantiation of the op(). */
10181 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10182 tree tmpl_cap
10183 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10184 args, tf_warning_or_error, NULL_TREE,
10185 false, false);
10187 LAMBDA_EXPR_CAPTURE_LIST (expr)
10188 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10190 maybe_add_lambda_conv_op (type);
10192 else
10193 gcc_assert (errorcount);
10196 /* Set the file and line number information to whatever is given for
10197 the class itself. This puts error messages involving generated
10198 implicit functions at a predictable point, and the same point
10199 that would be used for non-template classes. */
10200 input_location = DECL_SOURCE_LOCATION (typedecl);
10202 unreverse_member_declarations (type);
10203 finish_struct_1 (type);
10204 TYPE_BEING_DEFINED (type) = 0;
10206 /* We don't instantiate default arguments for member functions. 14.7.1:
10208 The implicit instantiation of a class template specialization causes
10209 the implicit instantiation of the declarations, but not of the
10210 definitions or default arguments, of the class member functions,
10211 member classes, static data members and member templates.... */
10213 /* Some typedefs referenced from within the template code need to be access
10214 checked at template instantiation time, i.e now. These types were
10215 added to the template at parsing time. Let's get those and perform
10216 the access checks then. */
10217 perform_typedefs_access_check (pattern, args);
10218 perform_deferred_access_checks (tf_warning_or_error);
10219 pop_nested_class ();
10220 maximum_field_alignment = saved_maximum_field_alignment;
10221 if (!fn_context)
10222 pop_from_top_level ();
10223 pop_deferring_access_checks ();
10224 pop_tinst_level ();
10226 /* The vtable for a template class can be emitted in any translation
10227 unit in which the class is instantiated. When there is no key
10228 method, however, finish_struct_1 will already have added TYPE to
10229 the keyed_classes list. */
10230 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10231 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10233 return type;
10236 /* Wrapper for instantiate_class_template_1. */
10238 tree
10239 instantiate_class_template (tree type)
10241 tree ret;
10242 timevar_push (TV_TEMPLATE_INST);
10243 ret = instantiate_class_template_1 (type);
10244 timevar_pop (TV_TEMPLATE_INST);
10245 return ret;
10248 static tree
10249 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10251 tree r;
10253 if (!t)
10254 r = t;
10255 else if (TYPE_P (t))
10256 r = tsubst (t, args, complain, in_decl);
10257 else
10259 if (!(complain & tf_warning))
10260 ++c_inhibit_evaluation_warnings;
10261 r = tsubst_expr (t, args, complain, in_decl,
10262 /*integral_constant_expression_p=*/true);
10263 if (!(complain & tf_warning))
10264 --c_inhibit_evaluation_warnings;
10266 return r;
10269 /* Given a function parameter pack TMPL_PARM and some function parameters
10270 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10271 and set *SPEC_P to point at the next point in the list. */
10273 tree
10274 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10276 /* Collect all of the extra "packed" parameters into an
10277 argument pack. */
10278 tree parmvec;
10279 tree parmtypevec;
10280 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10281 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10282 tree spec_parm = *spec_p;
10283 int i, len;
10285 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10286 if (tmpl_parm
10287 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10288 break;
10290 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10291 parmvec = make_tree_vec (len);
10292 parmtypevec = make_tree_vec (len);
10293 spec_parm = *spec_p;
10294 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10296 TREE_VEC_ELT (parmvec, i) = spec_parm;
10297 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10300 /* Build the argument packs. */
10301 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10302 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10303 TREE_TYPE (argpack) = argtypepack;
10304 *spec_p = spec_parm;
10306 return argpack;
10309 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10310 NONTYPE_ARGUMENT_PACK. */
10312 static tree
10313 make_fnparm_pack (tree spec_parm)
10315 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10318 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10319 pack expansion with no extra args, 2 if it has extra args, or 0
10320 if it is not a pack expansion. */
10322 static int
10323 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10325 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10326 if (i >= TREE_VEC_LENGTH (vec))
10327 return 0;
10328 tree elt = TREE_VEC_ELT (vec, i);
10329 if (DECL_P (elt))
10330 /* A decl pack is itself an expansion. */
10331 elt = TREE_TYPE (elt);
10332 if (!PACK_EXPANSION_P (elt))
10333 return 0;
10334 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10335 return 2;
10336 return 1;
10340 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10342 static tree
10343 make_argument_pack_select (tree arg_pack, unsigned index)
10345 tree aps = make_node (ARGUMENT_PACK_SELECT);
10347 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10348 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10350 return aps;
10353 /* This is a subroutine of tsubst_pack_expansion.
10355 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10356 mechanism to store the (non complete list of) arguments of the
10357 substitution and return a non substituted pack expansion, in order
10358 to wait for when we have enough arguments to really perform the
10359 substitution. */
10361 static bool
10362 use_pack_expansion_extra_args_p (tree parm_packs,
10363 int arg_pack_len,
10364 bool has_empty_arg)
10366 /* If one pack has an expansion and another pack has a normal
10367 argument or if one pack has an empty argument and an another
10368 one hasn't then tsubst_pack_expansion cannot perform the
10369 substitution and need to fall back on the
10370 PACK_EXPANSION_EXTRA mechanism. */
10371 if (parm_packs == NULL_TREE)
10372 return false;
10373 else if (has_empty_arg)
10374 return true;
10376 bool has_expansion_arg = false;
10377 for (int i = 0 ; i < arg_pack_len; ++i)
10379 bool has_non_expansion_arg = false;
10380 for (tree parm_pack = parm_packs;
10381 parm_pack;
10382 parm_pack = TREE_CHAIN (parm_pack))
10384 tree arg = TREE_VALUE (parm_pack);
10386 int exp = argument_pack_element_is_expansion_p (arg, i);
10387 if (exp == 2)
10388 /* We can't substitute a pack expansion with extra args into
10389 our pattern. */
10390 return true;
10391 else if (exp)
10392 has_expansion_arg = true;
10393 else
10394 has_non_expansion_arg = true;
10397 if (has_expansion_arg && has_non_expansion_arg)
10398 return true;
10400 return false;
10403 /* [temp.variadic]/6 says that:
10405 The instantiation of a pack expansion [...]
10406 produces a list E1,E2, ..., En, where N is the number of elements
10407 in the pack expansion parameters.
10409 This subroutine of tsubst_pack_expansion produces one of these Ei.
10411 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10412 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10413 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10414 INDEX is the index 'i' of the element Ei to produce. ARGS,
10415 COMPLAIN, and IN_DECL are the same parameters as for the
10416 tsubst_pack_expansion function.
10418 The function returns the resulting Ei upon successful completion,
10419 or error_mark_node.
10421 Note that this function possibly modifies the ARGS parameter, so
10422 it's the responsibility of the caller to restore it. */
10424 static tree
10425 gen_elem_of_pack_expansion_instantiation (tree pattern,
10426 tree parm_packs,
10427 unsigned index,
10428 tree args /* This parm gets
10429 modified. */,
10430 tsubst_flags_t complain,
10431 tree in_decl)
10433 tree t;
10434 bool ith_elem_is_expansion = false;
10436 /* For each parameter pack, change the substitution of the parameter
10437 pack to the ith argument in its argument pack, then expand the
10438 pattern. */
10439 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10441 tree parm = TREE_PURPOSE (pack);
10442 tree arg_pack = TREE_VALUE (pack);
10443 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10445 ith_elem_is_expansion |=
10446 argument_pack_element_is_expansion_p (arg_pack, index);
10448 /* Select the Ith argument from the pack. */
10449 if (TREE_CODE (parm) == PARM_DECL
10450 || TREE_CODE (parm) == FIELD_DECL)
10452 if (index == 0)
10454 aps = make_argument_pack_select (arg_pack, index);
10455 if (!mark_used (parm, complain) && !(complain & tf_error))
10456 return error_mark_node;
10457 register_local_specialization (aps, parm);
10459 else
10460 aps = retrieve_local_specialization (parm);
10462 else
10464 int idx, level;
10465 template_parm_level_and_index (parm, &level, &idx);
10467 if (index == 0)
10469 aps = make_argument_pack_select (arg_pack, index);
10470 /* Update the corresponding argument. */
10471 TMPL_ARG (args, level, idx) = aps;
10473 else
10474 /* Re-use the ARGUMENT_PACK_SELECT. */
10475 aps = TMPL_ARG (args, level, idx);
10477 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10480 /* Substitute into the PATTERN with the (possibly altered)
10481 arguments. */
10482 if (pattern == in_decl)
10483 /* Expanding a fixed parameter pack from
10484 coerce_template_parameter_pack. */
10485 t = tsubst_decl (pattern, args, complain);
10486 else if (pattern == error_mark_node)
10487 t = error_mark_node;
10488 else if (constraint_p (pattern))
10490 if (processing_template_decl)
10491 t = tsubst_constraint (pattern, args, complain, in_decl);
10492 else
10493 t = (constraints_satisfied_p (pattern, args)
10494 ? boolean_true_node : boolean_false_node);
10496 else if (!TYPE_P (pattern))
10497 t = tsubst_expr (pattern, args, complain, in_decl,
10498 /*integral_constant_expression_p=*/false);
10499 else
10500 t = tsubst (pattern, args, complain, in_decl);
10502 /* If the Ith argument pack element is a pack expansion, then
10503 the Ith element resulting from the substituting is going to
10504 be a pack expansion as well. */
10505 if (ith_elem_is_expansion)
10506 t = make_pack_expansion (t);
10508 return t;
10511 /* When the unexpanded parameter pack in a fold expression expands to an empty
10512 sequence, the value of the expression is as follows; the program is
10513 ill-formed if the operator is not listed in this table.
10517 & -1
10519 && true
10520 || false
10521 , void() */
10523 tree
10524 expand_empty_fold (tree t, tsubst_flags_t complain)
10526 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10527 if (!FOLD_EXPR_MODIFY_P (t))
10528 switch (code)
10530 case MULT_EXPR:
10531 return integer_one_node;
10532 case PLUS_EXPR:
10533 return integer_zero_node;
10534 case BIT_AND_EXPR:
10535 return integer_minus_one_node;
10536 case BIT_IOR_EXPR:
10537 return integer_zero_node;
10538 case TRUTH_ANDIF_EXPR:
10539 return boolean_true_node;
10540 case TRUTH_ORIF_EXPR:
10541 return boolean_false_node;
10542 case COMPOUND_EXPR:
10543 return void_node;
10544 default:
10545 break;
10548 if (complain & tf_error)
10549 error_at (location_of (t),
10550 "fold of empty expansion over %O", code);
10551 return error_mark_node;
10554 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10555 form an expression that combines the two terms using the
10556 operator of T. */
10558 static tree
10559 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10561 tree op = FOLD_EXPR_OP (t);
10562 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10564 // Handle compound assignment operators.
10565 if (FOLD_EXPR_MODIFY_P (t))
10566 return build_x_modify_expr (input_location, left, code, right, complain);
10568 switch (code)
10570 case COMPOUND_EXPR:
10571 return build_x_compound_expr (input_location, left, right, complain);
10572 case DOTSTAR_EXPR:
10573 return build_m_component_ref (left, right, complain);
10574 default:
10575 return build_x_binary_op (input_location, code,
10576 left, TREE_CODE (left),
10577 right, TREE_CODE (right),
10578 /*overload=*/NULL,
10579 complain);
10583 /* Substitute ARGS into the pack of a fold expression T. */
10585 static inline tree
10586 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10588 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10591 /* Substitute ARGS into the pack of a fold expression T. */
10593 static inline tree
10594 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10596 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10599 /* Expand a PACK of arguments into a grouped as left fold.
10600 Given a pack containing elements A0, A1, ..., An and an
10601 operator @, this builds the expression:
10603 ((A0 @ A1) @ A2) ... @ An
10605 Note that PACK must not be empty.
10607 The operator is defined by the original fold expression T. */
10609 static tree
10610 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10612 tree left = TREE_VEC_ELT (pack, 0);
10613 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10615 tree right = TREE_VEC_ELT (pack, i);
10616 left = fold_expression (t, left, right, complain);
10618 return left;
10621 /* Substitute into a unary left fold expression. */
10623 static tree
10624 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10625 tree in_decl)
10627 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10628 if (TREE_VEC_LENGTH (pack) == 0)
10629 return expand_empty_fold (t, complain);
10630 else
10631 return expand_left_fold (t, pack, complain);
10634 /* Substitute into a binary left fold expression.
10636 Do ths by building a single (non-empty) vector of argumnts and
10637 building the expression from those elements. */
10639 static tree
10640 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10641 tree in_decl)
10643 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10644 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10646 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10647 TREE_VEC_ELT (vec, 0) = init;
10648 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10649 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10651 return expand_left_fold (t, vec, complain);
10654 /* Expand a PACK of arguments into a grouped as right fold.
10655 Given a pack containing elementns A0, A1, ..., and an
10656 operator @, this builds the expression:
10658 A0@ ... (An-2 @ (An-1 @ An))
10660 Note that PACK must not be empty.
10662 The operator is defined by the original fold expression T. */
10664 tree
10665 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10667 // Build the expression.
10668 int n = TREE_VEC_LENGTH (pack);
10669 tree right = TREE_VEC_ELT (pack, n - 1);
10670 for (--n; n != 0; --n)
10672 tree left = TREE_VEC_ELT (pack, n - 1);
10673 right = fold_expression (t, left, right, complain);
10675 return right;
10678 /* Substitute into a unary right fold expression. */
10680 static tree
10681 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10682 tree in_decl)
10684 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10685 if (TREE_VEC_LENGTH (pack) == 0)
10686 return expand_empty_fold (t, complain);
10687 else
10688 return expand_right_fold (t, pack, complain);
10691 /* Substitute into a binary right fold expression.
10693 Do ths by building a single (non-empty) vector of arguments and
10694 building the expression from those elements. */
10696 static tree
10697 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10698 tree in_decl)
10700 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10701 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10703 int n = TREE_VEC_LENGTH (pack);
10704 tree vec = make_tree_vec (n + 1);
10705 for (int i = 0; i < n; ++i)
10706 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10707 TREE_VEC_ELT (vec, n) = init;
10709 return expand_right_fold (t, vec, complain);
10713 /* Substitute ARGS into T, which is an pack expansion
10714 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10715 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10716 (if only a partial substitution could be performed) or
10717 ERROR_MARK_NODE if there was an error. */
10718 tree
10719 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10720 tree in_decl)
10722 tree pattern;
10723 tree pack, packs = NULL_TREE;
10724 bool unsubstituted_packs = false;
10725 int i, len = -1;
10726 tree result;
10727 hash_map<tree, tree> *saved_local_specializations = NULL;
10728 bool need_local_specializations = false;
10729 int levels;
10731 gcc_assert (PACK_EXPANSION_P (t));
10732 pattern = PACK_EXPANSION_PATTERN (t);
10734 /* Add in any args remembered from an earlier partial instantiation. */
10735 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10737 levels = TMPL_ARGS_DEPTH (args);
10739 /* Determine the argument packs that will instantiate the parameter
10740 packs used in the expansion expression. While we're at it,
10741 compute the number of arguments to be expanded and make sure it
10742 is consistent. */
10743 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10744 pack = TREE_CHAIN (pack))
10746 tree parm_pack = TREE_VALUE (pack);
10747 tree arg_pack = NULL_TREE;
10748 tree orig_arg = NULL_TREE;
10749 int level = 0;
10751 if (TREE_CODE (parm_pack) == BASES)
10753 if (BASES_DIRECT (parm_pack))
10754 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10755 args, complain, in_decl, false));
10756 else
10757 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10758 args, complain, in_decl, false));
10760 if (TREE_CODE (parm_pack) == PARM_DECL)
10762 /* We know we have correct local_specializations if this
10763 expansion is at function scope, or if we're dealing with a
10764 local parameter in a requires expression; for the latter,
10765 tsubst_requires_expr set it up appropriately. */
10766 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10767 arg_pack = retrieve_local_specialization (parm_pack);
10768 else
10770 /* We can't rely on local_specializations for a parameter
10771 name used later in a function declaration (such as in a
10772 late-specified return type). Even if it exists, it might
10773 have the wrong value for a recursive call. Just make a
10774 dummy decl, since it's only used for its type. */
10775 arg_pack = tsubst_decl (parm_pack, args, complain);
10776 if (arg_pack && DECL_PACK_P (arg_pack))
10777 /* Partial instantiation of the parm_pack, we can't build
10778 up an argument pack yet. */
10779 arg_pack = NULL_TREE;
10780 else
10781 arg_pack = make_fnparm_pack (arg_pack);
10782 need_local_specializations = true;
10785 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10786 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10787 else
10789 int idx;
10790 template_parm_level_and_index (parm_pack, &level, &idx);
10792 if (level <= levels)
10793 arg_pack = TMPL_ARG (args, level, idx);
10796 orig_arg = arg_pack;
10797 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
10798 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
10800 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
10801 /* This can only happen if we forget to expand an argument
10802 pack somewhere else. Just return an error, silently. */
10804 result = make_tree_vec (1);
10805 TREE_VEC_ELT (result, 0) = error_mark_node;
10806 return result;
10809 if (arg_pack)
10811 int my_len =
10812 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
10814 /* Don't bother trying to do a partial substitution with
10815 incomplete packs; we'll try again after deduction. */
10816 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
10817 return t;
10819 if (len < 0)
10820 len = my_len;
10821 else if (len != my_len)
10823 if (!(complain & tf_error))
10824 /* Fail quietly. */;
10825 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
10826 error ("mismatched argument pack lengths while expanding "
10827 "%<%T%>",
10828 pattern);
10829 else
10830 error ("mismatched argument pack lengths while expanding "
10831 "%<%E%>",
10832 pattern);
10833 return error_mark_node;
10836 /* Keep track of the parameter packs and their corresponding
10837 argument packs. */
10838 packs = tree_cons (parm_pack, arg_pack, packs);
10839 TREE_TYPE (packs) = orig_arg;
10841 else
10843 /* We can't substitute for this parameter pack. We use a flag as
10844 well as the missing_level counter because function parameter
10845 packs don't have a level. */
10846 unsubstituted_packs = true;
10850 /* If the expansion is just T..., return the matching argument pack. */
10851 if (!unsubstituted_packs
10852 && TREE_PURPOSE (packs) == pattern)
10854 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
10855 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
10856 || pack_expansion_args_count (args))
10857 return args;
10858 /* Otherwise use the normal path so we get convert_from_reference. */
10861 /* We cannot expand this expansion expression, because we don't have
10862 all of the argument packs we need. */
10863 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
10865 /* We got some full packs, but we can't substitute them in until we
10866 have values for all the packs. So remember these until then. */
10868 t = make_pack_expansion (pattern);
10869 PACK_EXPANSION_EXTRA_ARGS (t) = args;
10870 return t;
10872 else if (unsubstituted_packs)
10874 /* There were no real arguments, we're just replacing a parameter
10875 pack with another version of itself. Substitute into the
10876 pattern and return a PACK_EXPANSION_*. The caller will need to
10877 deal with that. */
10878 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
10879 t = tsubst_expr (pattern, args, complain, in_decl,
10880 /*integral_constant_expression_p=*/false);
10881 else
10882 t = tsubst (pattern, args, complain, in_decl);
10883 t = make_pack_expansion (t);
10884 return t;
10887 gcc_assert (len >= 0);
10889 if (need_local_specializations)
10891 /* We're in a late-specified return type, so create our own local
10892 specializations map; the current map is either NULL or (in the
10893 case of recursive unification) might have bindings that we don't
10894 want to use or alter. */
10895 saved_local_specializations = local_specializations;
10896 local_specializations = new hash_map<tree, tree>;
10899 /* For each argument in each argument pack, substitute into the
10900 pattern. */
10901 result = make_tree_vec (len);
10902 for (i = 0; i < len; ++i)
10904 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
10906 args, complain,
10907 in_decl);
10908 TREE_VEC_ELT (result, i) = t;
10909 if (t == error_mark_node)
10911 result = error_mark_node;
10912 break;
10916 /* Update ARGS to restore the substitution from parameter packs to
10917 their argument packs. */
10918 for (pack = packs; pack; pack = TREE_CHAIN (pack))
10920 tree parm = TREE_PURPOSE (pack);
10922 if (TREE_CODE (parm) == PARM_DECL
10923 || TREE_CODE (parm) == FIELD_DECL)
10924 register_local_specialization (TREE_TYPE (pack), parm);
10925 else
10927 int idx, level;
10929 if (TREE_VALUE (pack) == NULL_TREE)
10930 continue;
10932 template_parm_level_and_index (parm, &level, &idx);
10934 /* Update the corresponding argument. */
10935 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
10936 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
10937 TREE_TYPE (pack);
10938 else
10939 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
10943 if (need_local_specializations)
10945 delete local_specializations;
10946 local_specializations = saved_local_specializations;
10949 return result;
10952 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
10953 TMPL. We do this using DECL_PARM_INDEX, which should work even with
10954 parameter packs; all parms generated from a function parameter pack will
10955 have the same DECL_PARM_INDEX. */
10957 tree
10958 get_pattern_parm (tree parm, tree tmpl)
10960 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
10961 tree patparm;
10963 if (DECL_ARTIFICIAL (parm))
10965 for (patparm = DECL_ARGUMENTS (pattern);
10966 patparm; patparm = DECL_CHAIN (patparm))
10967 if (DECL_ARTIFICIAL (patparm)
10968 && DECL_NAME (parm) == DECL_NAME (patparm))
10969 break;
10971 else
10973 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
10974 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
10975 gcc_assert (DECL_PARM_INDEX (patparm)
10976 == DECL_PARM_INDEX (parm));
10979 return patparm;
10982 /* Substitute ARGS into the vector or list of template arguments T. */
10984 static tree
10985 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10987 tree orig_t = t;
10988 int len, need_new = 0, i, expanded_len_adjust = 0, out;
10989 tree *elts;
10991 if (t == error_mark_node)
10992 return error_mark_node;
10994 len = TREE_VEC_LENGTH (t);
10995 elts = XALLOCAVEC (tree, len);
10997 for (i = 0; i < len; i++)
10999 tree orig_arg = TREE_VEC_ELT (t, i);
11000 tree new_arg;
11002 if (TREE_CODE (orig_arg) == TREE_VEC)
11003 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11004 else if (PACK_EXPANSION_P (orig_arg))
11006 /* Substitute into an expansion expression. */
11007 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11009 if (TREE_CODE (new_arg) == TREE_VEC)
11010 /* Add to the expanded length adjustment the number of
11011 expanded arguments. We subtract one from this
11012 measurement, because the argument pack expression
11013 itself is already counted as 1 in
11014 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11015 the argument pack is empty. */
11016 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11018 else if (ARGUMENT_PACK_P (orig_arg))
11020 /* Substitute into each of the arguments. */
11021 new_arg = TYPE_P (orig_arg)
11022 ? cxx_make_type (TREE_CODE (orig_arg))
11023 : make_node (TREE_CODE (orig_arg));
11025 SET_ARGUMENT_PACK_ARGS (
11026 new_arg,
11027 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11028 args, complain, in_decl));
11030 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11031 new_arg = error_mark_node;
11033 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11034 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11035 complain, in_decl);
11036 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11038 if (TREE_TYPE (new_arg) == error_mark_node)
11039 new_arg = error_mark_node;
11042 else
11043 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11045 if (new_arg == error_mark_node)
11046 return error_mark_node;
11048 elts[i] = new_arg;
11049 if (new_arg != orig_arg)
11050 need_new = 1;
11053 if (!need_new)
11054 return t;
11056 /* Make space for the expanded arguments coming from template
11057 argument packs. */
11058 t = make_tree_vec (len + expanded_len_adjust);
11059 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11060 arguments for a member template.
11061 In that case each TREE_VEC in ORIG_T represents a level of template
11062 arguments, and ORIG_T won't carry any non defaulted argument count.
11063 It will rather be the nested TREE_VECs that will carry one.
11064 In other words, ORIG_T carries a non defaulted argument count only
11065 if it doesn't contain any nested TREE_VEC. */
11066 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11068 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11069 count += expanded_len_adjust;
11070 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11072 for (i = 0, out = 0; i < len; i++)
11074 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11075 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11076 && TREE_CODE (elts[i]) == TREE_VEC)
11078 int idx;
11080 /* Now expand the template argument pack "in place". */
11081 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11082 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11084 else
11086 TREE_VEC_ELT (t, out) = elts[i];
11087 out++;
11091 return t;
11094 /* Return the result of substituting ARGS into the template parameters
11095 given by PARMS. If there are m levels of ARGS and m + n levels of
11096 PARMS, then the result will contain n levels of PARMS. For
11097 example, if PARMS is `template <class T> template <class U>
11098 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11099 result will be `template <int*, double, class V>'. */
11101 static tree
11102 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11104 tree r = NULL_TREE;
11105 tree* new_parms;
11107 /* When substituting into a template, we must set
11108 PROCESSING_TEMPLATE_DECL as the template parameters may be
11109 dependent if they are based on one-another, and the dependency
11110 predicates are short-circuit outside of templates. */
11111 ++processing_template_decl;
11113 for (new_parms = &r;
11114 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11115 new_parms = &(TREE_CHAIN (*new_parms)),
11116 parms = TREE_CHAIN (parms))
11118 tree new_vec =
11119 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11120 int i;
11122 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11124 tree tuple;
11126 if (parms == error_mark_node)
11127 continue;
11129 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11131 if (tuple == error_mark_node)
11132 continue;
11134 TREE_VEC_ELT (new_vec, i) =
11135 tsubst_template_parm (tuple, args, complain);
11138 *new_parms =
11139 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11140 - TMPL_ARGS_DEPTH (args)),
11141 new_vec, NULL_TREE);
11144 --processing_template_decl;
11146 return r;
11149 /* Return the result of substituting ARGS into one template parameter
11150 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11151 parameter and which TREE_PURPOSE is the default argument of the
11152 template parameter. */
11154 static tree
11155 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11157 tree default_value, parm_decl;
11159 if (args == NULL_TREE
11160 || t == NULL_TREE
11161 || t == error_mark_node)
11162 return t;
11164 gcc_assert (TREE_CODE (t) == TREE_LIST);
11166 default_value = TREE_PURPOSE (t);
11167 parm_decl = TREE_VALUE (t);
11169 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11170 if (TREE_CODE (parm_decl) == PARM_DECL
11171 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11172 parm_decl = error_mark_node;
11173 default_value = tsubst_template_arg (default_value, args,
11174 complain, NULL_TREE);
11176 return build_tree_list (default_value, parm_decl);
11179 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11180 type T. If T is not an aggregate or enumeration type, it is
11181 handled as if by tsubst. IN_DECL is as for tsubst. If
11182 ENTERING_SCOPE is nonzero, T is the context for a template which
11183 we are presently tsubst'ing. Return the substituted value. */
11185 static tree
11186 tsubst_aggr_type (tree t,
11187 tree args,
11188 tsubst_flags_t complain,
11189 tree in_decl,
11190 int entering_scope)
11192 if (t == NULL_TREE)
11193 return NULL_TREE;
11195 switch (TREE_CODE (t))
11197 case RECORD_TYPE:
11198 if (TYPE_PTRMEMFUNC_P (t))
11199 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11201 /* Else fall through. */
11202 case ENUMERAL_TYPE:
11203 case UNION_TYPE:
11204 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11206 tree argvec;
11207 tree context;
11208 tree r;
11209 int saved_unevaluated_operand;
11210 int saved_inhibit_evaluation_warnings;
11212 /* In "sizeof(X<I>)" we need to evaluate "I". */
11213 saved_unevaluated_operand = cp_unevaluated_operand;
11214 cp_unevaluated_operand = 0;
11215 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11216 c_inhibit_evaluation_warnings = 0;
11218 /* First, determine the context for the type we are looking
11219 up. */
11220 context = TYPE_CONTEXT (t);
11221 if (context && TYPE_P (context))
11223 context = tsubst_aggr_type (context, args, complain,
11224 in_decl, /*entering_scope=*/1);
11225 /* If context is a nested class inside a class template,
11226 it may still need to be instantiated (c++/33959). */
11227 context = complete_type (context);
11230 /* Then, figure out what arguments are appropriate for the
11231 type we are trying to find. For example, given:
11233 template <class T> struct S;
11234 template <class T, class U> void f(T, U) { S<U> su; }
11236 and supposing that we are instantiating f<int, double>,
11237 then our ARGS will be {int, double}, but, when looking up
11238 S we only want {double}. */
11239 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11240 complain, in_decl);
11241 if (argvec == error_mark_node)
11242 r = error_mark_node;
11243 else
11245 r = lookup_template_class (t, argvec, in_decl, context,
11246 entering_scope, complain);
11247 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11250 cp_unevaluated_operand = saved_unevaluated_operand;
11251 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11253 return r;
11255 else
11256 /* This is not a template type, so there's nothing to do. */
11257 return t;
11259 default:
11260 return tsubst (t, args, complain, in_decl);
11264 /* Substitute into the default argument ARG (a default argument for
11265 FN), which has the indicated TYPE. */
11267 tree
11268 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11270 tree saved_class_ptr = NULL_TREE;
11271 tree saved_class_ref = NULL_TREE;
11272 int errs = errorcount + sorrycount;
11274 /* This can happen in invalid code. */
11275 if (TREE_CODE (arg) == DEFAULT_ARG)
11276 return arg;
11278 /* This default argument came from a template. Instantiate the
11279 default argument here, not in tsubst. In the case of
11280 something like:
11282 template <class T>
11283 struct S {
11284 static T t();
11285 void f(T = t());
11288 we must be careful to do name lookup in the scope of S<T>,
11289 rather than in the current class. */
11290 push_access_scope (fn);
11291 /* The "this" pointer is not valid in a default argument. */
11292 if (cfun)
11294 saved_class_ptr = current_class_ptr;
11295 cp_function_chain->x_current_class_ptr = NULL_TREE;
11296 saved_class_ref = current_class_ref;
11297 cp_function_chain->x_current_class_ref = NULL_TREE;
11300 push_deferring_access_checks(dk_no_deferred);
11301 /* The default argument expression may cause implicitly defined
11302 member functions to be synthesized, which will result in garbage
11303 collection. We must treat this situation as if we were within
11304 the body of function so as to avoid collecting live data on the
11305 stack. */
11306 ++function_depth;
11307 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11308 complain, NULL_TREE,
11309 /*integral_constant_expression_p=*/false);
11310 --function_depth;
11311 pop_deferring_access_checks();
11313 /* Restore the "this" pointer. */
11314 if (cfun)
11316 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11317 cp_function_chain->x_current_class_ref = saved_class_ref;
11320 if (errorcount+sorrycount > errs
11321 && (complain & tf_warning_or_error))
11322 inform (input_location,
11323 " when instantiating default argument for call to %D", fn);
11325 /* Make sure the default argument is reasonable. */
11326 arg = check_default_argument (type, arg, complain);
11328 pop_access_scope (fn);
11330 return arg;
11333 /* Substitute into all the default arguments for FN. */
11335 static void
11336 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11338 tree arg;
11339 tree tmpl_args;
11341 tmpl_args = DECL_TI_ARGS (fn);
11343 /* If this function is not yet instantiated, we certainly don't need
11344 its default arguments. */
11345 if (uses_template_parms (tmpl_args))
11346 return;
11347 /* Don't do this again for clones. */
11348 if (DECL_CLONED_FUNCTION_P (fn))
11349 return;
11351 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11352 arg;
11353 arg = TREE_CHAIN (arg))
11354 if (TREE_PURPOSE (arg))
11355 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11356 TREE_VALUE (arg),
11357 TREE_PURPOSE (arg),
11358 complain);
11361 /* Substitute the ARGS into the T, which is a _DECL. Return the
11362 result of the substitution. Issue error and warning messages under
11363 control of COMPLAIN. */
11365 static tree
11366 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11368 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11369 location_t saved_loc;
11370 tree r = NULL_TREE;
11371 tree in_decl = t;
11372 hashval_t hash = 0;
11374 /* Set the filename and linenumber to improve error-reporting. */
11375 saved_loc = input_location;
11376 input_location = DECL_SOURCE_LOCATION (t);
11378 switch (TREE_CODE (t))
11380 case TEMPLATE_DECL:
11382 /* We can get here when processing a member function template,
11383 member class template, or template template parameter. */
11384 tree decl = DECL_TEMPLATE_RESULT (t);
11385 tree spec;
11386 tree tmpl_args;
11387 tree full_args;
11389 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11391 /* Template template parameter is treated here. */
11392 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11393 if (new_type == error_mark_node)
11394 r = error_mark_node;
11395 /* If we get a real template back, return it. This can happen in
11396 the context of most_specialized_partial_spec. */
11397 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11398 r = new_type;
11399 else
11400 /* The new TEMPLATE_DECL was built in
11401 reduce_template_parm_level. */
11402 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11403 break;
11406 /* We might already have an instance of this template.
11407 The ARGS are for the surrounding class type, so the
11408 full args contain the tsubst'd args for the context,
11409 plus the innermost args from the template decl. */
11410 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11411 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11412 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11413 /* Because this is a template, the arguments will still be
11414 dependent, even after substitution. If
11415 PROCESSING_TEMPLATE_DECL is not set, the dependency
11416 predicates will short-circuit. */
11417 ++processing_template_decl;
11418 full_args = tsubst_template_args (tmpl_args, args,
11419 complain, in_decl);
11420 --processing_template_decl;
11421 if (full_args == error_mark_node)
11422 RETURN (error_mark_node);
11424 /* If this is a default template template argument,
11425 tsubst might not have changed anything. */
11426 if (full_args == tmpl_args)
11427 RETURN (t);
11429 hash = hash_tmpl_and_args (t, full_args);
11430 spec = retrieve_specialization (t, full_args, hash);
11431 if (spec != NULL_TREE)
11433 r = spec;
11434 break;
11437 /* Make a new template decl. It will be similar to the
11438 original, but will record the current template arguments.
11439 We also create a new function declaration, which is just
11440 like the old one, but points to this new template, rather
11441 than the old one. */
11442 r = copy_decl (t);
11443 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11444 DECL_CHAIN (r) = NULL_TREE;
11446 // Build new template info linking to the original template decl.
11447 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11449 if (TREE_CODE (decl) == TYPE_DECL
11450 && !TYPE_DECL_ALIAS_P (decl))
11452 tree new_type;
11453 ++processing_template_decl;
11454 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11455 --processing_template_decl;
11456 if (new_type == error_mark_node)
11457 RETURN (error_mark_node);
11459 TREE_TYPE (r) = new_type;
11460 /* For a partial specialization, we need to keep pointing to
11461 the primary template. */
11462 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11463 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11464 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11465 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11466 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11468 else
11470 tree new_decl;
11471 ++processing_template_decl;
11472 new_decl = tsubst (decl, args, complain, in_decl);
11473 --processing_template_decl;
11474 if (new_decl == error_mark_node)
11475 RETURN (error_mark_node);
11477 DECL_TEMPLATE_RESULT (r) = new_decl;
11478 DECL_TI_TEMPLATE (new_decl) = r;
11479 TREE_TYPE (r) = TREE_TYPE (new_decl);
11480 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11481 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11484 SET_DECL_IMPLICIT_INSTANTIATION (r);
11485 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11486 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11488 /* The template parameters for this new template are all the
11489 template parameters for the old template, except the
11490 outermost level of parameters. */
11491 DECL_TEMPLATE_PARMS (r)
11492 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11493 complain);
11495 if (PRIMARY_TEMPLATE_P (t))
11496 DECL_PRIMARY_TEMPLATE (r) = r;
11498 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11499 /* Record this non-type partial instantiation. */
11500 register_specialization (r, t,
11501 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11502 false, hash);
11504 break;
11506 case FUNCTION_DECL:
11508 tree ctx;
11509 tree argvec = NULL_TREE;
11510 tree *friends;
11511 tree gen_tmpl;
11512 tree type;
11513 int member;
11514 int args_depth;
11515 int parms_depth;
11517 /* Nobody should be tsubst'ing into non-template functions. */
11518 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11520 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11522 tree spec;
11523 bool dependent_p;
11525 /* If T is not dependent, just return it. We have to
11526 increment PROCESSING_TEMPLATE_DECL because
11527 value_dependent_expression_p assumes that nothing is
11528 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11529 ++processing_template_decl;
11530 dependent_p = value_dependent_expression_p (t);
11531 --processing_template_decl;
11532 if (!dependent_p)
11533 RETURN (t);
11535 /* Calculate the most general template of which R is a
11536 specialization, and the complete set of arguments used to
11537 specialize R. */
11538 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11539 argvec = tsubst_template_args (DECL_TI_ARGS
11540 (DECL_TEMPLATE_RESULT
11541 (DECL_TI_TEMPLATE (t))),
11542 args, complain, in_decl);
11543 if (argvec == error_mark_node)
11544 RETURN (error_mark_node);
11546 /* Check to see if we already have this specialization. */
11547 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11548 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11550 if (spec)
11552 r = spec;
11553 break;
11556 /* We can see more levels of arguments than parameters if
11557 there was a specialization of a member template, like
11558 this:
11560 template <class T> struct S { template <class U> void f(); }
11561 template <> template <class U> void S<int>::f(U);
11563 Here, we'll be substituting into the specialization,
11564 because that's where we can find the code we actually
11565 want to generate, but we'll have enough arguments for
11566 the most general template.
11568 We also deal with the peculiar case:
11570 template <class T> struct S {
11571 template <class U> friend void f();
11573 template <class U> void f() {}
11574 template S<int>;
11575 template void f<double>();
11577 Here, the ARGS for the instantiation of will be {int,
11578 double}. But, we only need as many ARGS as there are
11579 levels of template parameters in CODE_PATTERN. We are
11580 careful not to get fooled into reducing the ARGS in
11581 situations like:
11583 template <class T> struct S { template <class U> void f(U); }
11584 template <class T> template <> void S<T>::f(int) {}
11586 which we can spot because the pattern will be a
11587 specialization in this case. */
11588 args_depth = TMPL_ARGS_DEPTH (args);
11589 parms_depth =
11590 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11591 if (args_depth > parms_depth
11592 && !DECL_TEMPLATE_SPECIALIZATION (t))
11593 args = get_innermost_template_args (args, parms_depth);
11595 else
11597 /* This special case arises when we have something like this:
11599 template <class T> struct S {
11600 friend void f<int>(int, double);
11603 Here, the DECL_TI_TEMPLATE for the friend declaration
11604 will be an IDENTIFIER_NODE. We are being called from
11605 tsubst_friend_function, and we want only to create a
11606 new decl (R) with appropriate types so that we can call
11607 determine_specialization. */
11608 gen_tmpl = NULL_TREE;
11611 if (DECL_CLASS_SCOPE_P (t))
11613 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11614 member = 2;
11615 else
11616 member = 1;
11617 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11618 complain, t, /*entering_scope=*/1);
11620 else
11622 member = 0;
11623 ctx = DECL_CONTEXT (t);
11625 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11626 if (type == error_mark_node)
11627 RETURN (error_mark_node);
11629 /* If we hit excessive deduction depth, the type is bogus even if
11630 it isn't error_mark_node, so don't build a decl. */
11631 if (excessive_deduction_depth)
11632 RETURN (error_mark_node);
11634 /* We do NOT check for matching decls pushed separately at this
11635 point, as they may not represent instantiations of this
11636 template, and in any case are considered separate under the
11637 discrete model. */
11638 r = copy_decl (t);
11639 DECL_USE_TEMPLATE (r) = 0;
11640 TREE_TYPE (r) = type;
11641 /* Clear out the mangled name and RTL for the instantiation. */
11642 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11643 SET_DECL_RTL (r, NULL);
11644 /* Leave DECL_INITIAL set on deleted instantiations. */
11645 if (!DECL_DELETED_FN (r))
11646 DECL_INITIAL (r) = NULL_TREE;
11647 DECL_CONTEXT (r) = ctx;
11649 /* OpenMP UDRs have the only argument a reference to the declared
11650 type. We want to diagnose if the declared type is a reference,
11651 which is invalid, but as references to references are usually
11652 quietly merged, diagnose it here. */
11653 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11655 tree argtype
11656 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11657 argtype = tsubst (argtype, args, complain, in_decl);
11658 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11659 error_at (DECL_SOURCE_LOCATION (t),
11660 "reference type %qT in "
11661 "%<#pragma omp declare reduction%>", argtype);
11662 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11663 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11664 argtype);
11667 if (member && DECL_CONV_FN_P (r))
11668 /* Type-conversion operator. Reconstruct the name, in
11669 case it's the name of one of the template's parameters. */
11670 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11672 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11673 complain, t);
11674 DECL_RESULT (r) = NULL_TREE;
11676 TREE_STATIC (r) = 0;
11677 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11678 DECL_EXTERNAL (r) = 1;
11679 /* If this is an instantiation of a function with internal
11680 linkage, we already know what object file linkage will be
11681 assigned to the instantiation. */
11682 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11683 DECL_DEFER_OUTPUT (r) = 0;
11684 DECL_CHAIN (r) = NULL_TREE;
11685 DECL_PENDING_INLINE_INFO (r) = 0;
11686 DECL_PENDING_INLINE_P (r) = 0;
11687 DECL_SAVED_TREE (r) = NULL_TREE;
11688 DECL_STRUCT_FUNCTION (r) = NULL;
11689 TREE_USED (r) = 0;
11690 /* We'll re-clone as appropriate in instantiate_template. */
11691 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11693 /* If we aren't complaining now, return on error before we register
11694 the specialization so that we'll complain eventually. */
11695 if ((complain & tf_error) == 0
11696 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11697 && !grok_op_properties (r, /*complain=*/false))
11698 RETURN (error_mark_node);
11700 /* When instantiating a constrained member, substitute
11701 into the constraints to create a new constraint. */
11702 if (tree ci = get_constraints (t))
11703 if (member)
11705 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11706 set_constraints (r, ci);
11709 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11710 this in the special friend case mentioned above where
11711 GEN_TMPL is NULL. */
11712 if (gen_tmpl)
11714 DECL_TEMPLATE_INFO (r)
11715 = build_template_info (gen_tmpl, argvec);
11716 SET_DECL_IMPLICIT_INSTANTIATION (r);
11718 tree new_r
11719 = register_specialization (r, gen_tmpl, argvec, false, hash);
11720 if (new_r != r)
11721 /* We instantiated this while substituting into
11722 the type earlier (template/friend54.C). */
11723 RETURN (new_r);
11725 /* We're not supposed to instantiate default arguments
11726 until they are called, for a template. But, for a
11727 declaration like:
11729 template <class T> void f ()
11730 { extern void g(int i = T()); }
11732 we should do the substitution when the template is
11733 instantiated. We handle the member function case in
11734 instantiate_class_template since the default arguments
11735 might refer to other members of the class. */
11736 if (!member
11737 && !PRIMARY_TEMPLATE_P (gen_tmpl)
11738 && !uses_template_parms (argvec))
11739 tsubst_default_arguments (r, complain);
11741 else
11742 DECL_TEMPLATE_INFO (r) = NULL_TREE;
11744 /* Copy the list of befriending classes. */
11745 for (friends = &DECL_BEFRIENDING_CLASSES (r);
11746 *friends;
11747 friends = &TREE_CHAIN (*friends))
11749 *friends = copy_node (*friends);
11750 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
11751 args, complain,
11752 in_decl);
11755 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
11757 maybe_retrofit_in_chrg (r);
11758 if (DECL_CONSTRUCTOR_P (r))
11759 grok_ctor_properties (ctx, r);
11760 if (DECL_INHERITED_CTOR_BASE (r))
11761 deduce_inheriting_ctor (r);
11762 /* If this is an instantiation of a member template, clone it.
11763 If it isn't, that'll be handled by
11764 clone_constructors_and_destructors. */
11765 if (PRIMARY_TEMPLATE_P (gen_tmpl))
11766 clone_function_decl (r, /*update_method_vec_p=*/0);
11768 else if ((complain & tf_error) != 0
11769 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11770 && !grok_op_properties (r, /*complain=*/true))
11771 RETURN (error_mark_node);
11773 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
11774 SET_DECL_FRIEND_CONTEXT (r,
11775 tsubst (DECL_FRIEND_CONTEXT (t),
11776 args, complain, in_decl));
11778 /* Possibly limit visibility based on template args. */
11779 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11780 if (DECL_VISIBILITY_SPECIFIED (t))
11782 DECL_VISIBILITY_SPECIFIED (r) = 0;
11783 DECL_ATTRIBUTES (r)
11784 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11786 determine_visibility (r);
11787 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
11788 && !processing_template_decl)
11789 defaulted_late_check (r);
11791 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11792 args, complain, in_decl);
11794 break;
11796 case PARM_DECL:
11798 tree type = NULL_TREE;
11799 int i, len = 1;
11800 tree expanded_types = NULL_TREE;
11801 tree prev_r = NULL_TREE;
11802 tree first_r = NULL_TREE;
11804 if (DECL_PACK_P (t))
11806 /* If there is a local specialization that isn't a
11807 parameter pack, it means that we're doing a "simple"
11808 substitution from inside tsubst_pack_expansion. Just
11809 return the local specialization (which will be a single
11810 parm). */
11811 tree spec = retrieve_local_specialization (t);
11812 if (spec
11813 && TREE_CODE (spec) == PARM_DECL
11814 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
11815 RETURN (spec);
11817 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11818 the parameters in this function parameter pack. */
11819 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11820 complain, in_decl);
11821 if (TREE_CODE (expanded_types) == TREE_VEC)
11823 len = TREE_VEC_LENGTH (expanded_types);
11825 /* Zero-length parameter packs are boring. Just substitute
11826 into the chain. */
11827 if (len == 0)
11828 RETURN (tsubst (TREE_CHAIN (t), args, complain,
11829 TREE_CHAIN (t)));
11831 else
11833 /* All we did was update the type. Make a note of that. */
11834 type = expanded_types;
11835 expanded_types = NULL_TREE;
11839 /* Loop through all of the parameters we'll build. When T is
11840 a function parameter pack, LEN is the number of expanded
11841 types in EXPANDED_TYPES; otherwise, LEN is 1. */
11842 r = NULL_TREE;
11843 for (i = 0; i < len; ++i)
11845 prev_r = r;
11846 r = copy_node (t);
11847 if (DECL_TEMPLATE_PARM_P (t))
11848 SET_DECL_TEMPLATE_PARM_P (r);
11850 if (expanded_types)
11851 /* We're on the Ith parameter of the function parameter
11852 pack. */
11854 /* Get the Ith type. */
11855 type = TREE_VEC_ELT (expanded_types, i);
11857 /* Rename the parameter to include the index. */
11858 DECL_NAME (r)
11859 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11861 else if (!type)
11862 /* We're dealing with a normal parameter. */
11863 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11865 type = type_decays_to (type);
11866 TREE_TYPE (r) = type;
11867 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11869 if (DECL_INITIAL (r))
11871 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
11872 DECL_INITIAL (r) = TREE_TYPE (r);
11873 else
11874 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
11875 complain, in_decl);
11878 DECL_CONTEXT (r) = NULL_TREE;
11880 if (!DECL_TEMPLATE_PARM_P (r))
11881 DECL_ARG_TYPE (r) = type_passed_as (type);
11883 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11884 args, complain, in_decl);
11886 /* Keep track of the first new parameter we
11887 generate. That's what will be returned to the
11888 caller. */
11889 if (!first_r)
11890 first_r = r;
11892 /* Build a proper chain of parameters when substituting
11893 into a function parameter pack. */
11894 if (prev_r)
11895 DECL_CHAIN (prev_r) = r;
11898 /* If cp_unevaluated_operand is set, we're just looking for a
11899 single dummy parameter, so don't keep going. */
11900 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
11901 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
11902 complain, DECL_CHAIN (t));
11904 /* FIRST_R contains the start of the chain we've built. */
11905 r = first_r;
11907 break;
11909 case FIELD_DECL:
11911 tree type = NULL_TREE;
11912 tree vec = NULL_TREE;
11913 tree expanded_types = NULL_TREE;
11914 int len = 1;
11916 if (PACK_EXPANSION_P (TREE_TYPE (t)))
11918 /* This field is a lambda capture pack. Return a TREE_VEC of
11919 the expanded fields to instantiate_class_template_1 and
11920 store them in the specializations hash table as a
11921 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
11922 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
11923 complain, in_decl);
11924 if (TREE_CODE (expanded_types) == TREE_VEC)
11926 len = TREE_VEC_LENGTH (expanded_types);
11927 vec = make_tree_vec (len);
11929 else
11931 /* All we did was update the type. Make a note of that. */
11932 type = expanded_types;
11933 expanded_types = NULL_TREE;
11937 for (int i = 0; i < len; ++i)
11939 r = copy_decl (t);
11940 if (expanded_types)
11942 type = TREE_VEC_ELT (expanded_types, i);
11943 DECL_NAME (r)
11944 = make_ith_pack_parameter_name (DECL_NAME (r), i);
11946 else if (!type)
11947 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11949 if (type == error_mark_node)
11950 RETURN (error_mark_node);
11951 TREE_TYPE (r) = type;
11952 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11954 if (DECL_C_BIT_FIELD (r))
11955 /* For bit-fields, DECL_INITIAL gives the number of bits. For
11956 non-bit-fields DECL_INITIAL is a non-static data member
11957 initializer, which gets deferred instantiation. */
11958 DECL_INITIAL (r)
11959 = tsubst_expr (DECL_INITIAL (t), args,
11960 complain, in_decl,
11961 /*integral_constant_expression_p=*/true);
11962 else if (DECL_INITIAL (t))
11964 /* Set up DECL_TEMPLATE_INFO so that we can get at the
11965 NSDMI in perform_member_init. Still set DECL_INITIAL
11966 so that we know there is one. */
11967 DECL_INITIAL (r) = void_node;
11968 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
11969 retrofit_lang_decl (r);
11970 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11972 /* We don't have to set DECL_CONTEXT here; it is set by
11973 finish_member_declaration. */
11974 DECL_CHAIN (r) = NULL_TREE;
11976 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
11977 args, complain, in_decl);
11979 if (vec)
11980 TREE_VEC_ELT (vec, i) = r;
11983 if (vec)
11985 r = vec;
11986 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
11987 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
11988 SET_ARGUMENT_PACK_ARGS (pack, vec);
11989 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
11990 TREE_TYPE (pack) = tpack;
11991 register_specialization (pack, t, args, false, 0);
11994 break;
11996 case USING_DECL:
11997 /* We reach here only for member using decls. We also need to check
11998 uses_template_parms because DECL_DEPENDENT_P is not set for a
11999 using-declaration that designates a member of the current
12000 instantiation (c++/53549). */
12001 if (DECL_DEPENDENT_P (t)
12002 || uses_template_parms (USING_DECL_SCOPE (t)))
12004 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12005 complain, in_decl);
12006 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12007 r = do_class_using_decl (inst_scope, name);
12008 if (!r)
12009 r = error_mark_node;
12010 else
12012 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12013 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12016 else
12018 r = copy_node (t);
12019 DECL_CHAIN (r) = NULL_TREE;
12021 break;
12023 case TYPE_DECL:
12024 case VAR_DECL:
12026 tree argvec = NULL_TREE;
12027 tree gen_tmpl = NULL_TREE;
12028 tree spec;
12029 tree tmpl = NULL_TREE;
12030 tree ctx;
12031 tree type = NULL_TREE;
12032 bool local_p;
12034 if (TREE_TYPE (t) == error_mark_node)
12035 RETURN (error_mark_node);
12037 if (TREE_CODE (t) == TYPE_DECL
12038 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12040 /* If this is the canonical decl, we don't have to
12041 mess with instantiations, and often we can't (for
12042 typename, template type parms and such). Note that
12043 TYPE_NAME is not correct for the above test if
12044 we've copied the type for a typedef. */
12045 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12046 if (type == error_mark_node)
12047 RETURN (error_mark_node);
12048 r = TYPE_NAME (type);
12049 break;
12052 /* Check to see if we already have the specialization we
12053 need. */
12054 spec = NULL_TREE;
12055 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12057 /* T is a static data member or namespace-scope entity.
12058 We have to substitute into namespace-scope variables
12059 (not just variable templates) because of cases like:
12061 template <class T> void f() { extern T t; }
12063 where the entity referenced is not known until
12064 instantiation time. */
12065 local_p = false;
12066 ctx = DECL_CONTEXT (t);
12067 if (DECL_CLASS_SCOPE_P (t))
12069 ctx = tsubst_aggr_type (ctx, args,
12070 complain,
12071 in_decl, /*entering_scope=*/1);
12072 /* If CTX is unchanged, then T is in fact the
12073 specialization we want. That situation occurs when
12074 referencing a static data member within in its own
12075 class. We can use pointer equality, rather than
12076 same_type_p, because DECL_CONTEXT is always
12077 canonical... */
12078 if (ctx == DECL_CONTEXT (t)
12079 /* ... unless T is a member template; in which
12080 case our caller can be willing to create a
12081 specialization of that template represented
12082 by T. */
12083 && !(DECL_TI_TEMPLATE (t)
12084 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12085 spec = t;
12088 if (!spec)
12090 tmpl = DECL_TI_TEMPLATE (t);
12091 gen_tmpl = most_general_template (tmpl);
12092 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12093 if (argvec != error_mark_node)
12094 argvec = (coerce_innermost_template_parms
12095 (DECL_TEMPLATE_PARMS (gen_tmpl),
12096 argvec, t, complain,
12097 /*all*/true, /*defarg*/true));
12098 if (argvec == error_mark_node)
12099 RETURN (error_mark_node);
12100 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12101 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12104 else
12106 /* A local variable. */
12107 local_p = true;
12108 /* Subsequent calls to pushdecl will fill this in. */
12109 ctx = NULL_TREE;
12110 spec = retrieve_local_specialization (t);
12112 /* If we already have the specialization we need, there is
12113 nothing more to do. */
12114 if (spec)
12116 r = spec;
12117 break;
12120 /* Create a new node for the specialization we need. */
12121 r = copy_decl (t);
12122 if (type == NULL_TREE)
12124 if (is_typedef_decl (t))
12125 type = DECL_ORIGINAL_TYPE (t);
12126 else
12127 type = TREE_TYPE (t);
12128 if (VAR_P (t)
12129 && VAR_HAD_UNKNOWN_BOUND (t)
12130 && type != error_mark_node)
12131 type = strip_array_domain (type);
12132 type = tsubst (type, args, complain, in_decl);
12134 if (VAR_P (r))
12136 /* Even if the original location is out of scope, the
12137 newly substituted one is not. */
12138 DECL_DEAD_FOR_LOCAL (r) = 0;
12139 DECL_INITIALIZED_P (r) = 0;
12140 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12141 if (type == error_mark_node)
12142 RETURN (error_mark_node);
12143 if (TREE_CODE (type) == FUNCTION_TYPE)
12145 /* It may seem that this case cannot occur, since:
12147 typedef void f();
12148 void g() { f x; }
12150 declares a function, not a variable. However:
12152 typedef void f();
12153 template <typename T> void g() { T t; }
12154 template void g<f>();
12156 is an attempt to declare a variable with function
12157 type. */
12158 error ("variable %qD has function type",
12159 /* R is not yet sufficiently initialized, so we
12160 just use its name. */
12161 DECL_NAME (r));
12162 RETURN (error_mark_node);
12164 type = complete_type (type);
12165 /* Wait until cp_finish_decl to set this again, to handle
12166 circular dependency (template/instantiate6.C). */
12167 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12168 type = check_var_type (DECL_NAME (r), type);
12170 if (DECL_HAS_VALUE_EXPR_P (t))
12172 tree ve = DECL_VALUE_EXPR (t);
12173 ve = tsubst_expr (ve, args, complain, in_decl,
12174 /*constant_expression_p=*/false);
12175 if (REFERENCE_REF_P (ve))
12177 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12178 ve = TREE_OPERAND (ve, 0);
12180 SET_DECL_VALUE_EXPR (r, ve);
12182 if (CP_DECL_THREAD_LOCAL_P (r)
12183 && !processing_template_decl)
12184 set_decl_tls_model (r, decl_default_tls_model (r));
12186 else if (DECL_SELF_REFERENCE_P (t))
12187 SET_DECL_SELF_REFERENCE_P (r);
12188 TREE_TYPE (r) = type;
12189 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12190 DECL_CONTEXT (r) = ctx;
12191 /* Clear out the mangled name and RTL for the instantiation. */
12192 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12193 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12194 SET_DECL_RTL (r, NULL);
12195 /* The initializer must not be expanded until it is required;
12196 see [temp.inst]. */
12197 DECL_INITIAL (r) = NULL_TREE;
12198 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12199 SET_DECL_RTL (r, NULL);
12200 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12201 if (VAR_P (r))
12203 /* Possibly limit visibility based on template args. */
12204 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12205 if (DECL_VISIBILITY_SPECIFIED (t))
12207 DECL_VISIBILITY_SPECIFIED (r) = 0;
12208 DECL_ATTRIBUTES (r)
12209 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12211 determine_visibility (r);
12214 if (!local_p)
12216 /* A static data member declaration is always marked
12217 external when it is declared in-class, even if an
12218 initializer is present. We mimic the non-template
12219 processing here. */
12220 DECL_EXTERNAL (r) = 1;
12221 if (DECL_NAMESPACE_SCOPE_P (t))
12222 DECL_NOT_REALLY_EXTERN (r) = 1;
12224 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12225 SET_DECL_IMPLICIT_INSTANTIATION (r);
12226 register_specialization (r, gen_tmpl, argvec, false, hash);
12228 else if (!cp_unevaluated_operand)
12229 register_local_specialization (r, t);
12231 DECL_CHAIN (r) = NULL_TREE;
12233 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12234 /*flags=*/0,
12235 args, complain, in_decl);
12237 /* Preserve a typedef that names a type. */
12238 if (is_typedef_decl (r))
12240 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12241 set_underlying_type (r);
12242 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12243 /* An alias template specialization can be dependent
12244 even if its underlying type is not. */
12245 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12248 layout_decl (r, 0);
12250 break;
12252 default:
12253 gcc_unreachable ();
12255 #undef RETURN
12257 out:
12258 /* Restore the file and line information. */
12259 input_location = saved_loc;
12261 return r;
12264 /* Substitute into the ARG_TYPES of a function type.
12265 If END is a TREE_CHAIN, leave it and any following types
12266 un-substituted. */
12268 static tree
12269 tsubst_arg_types (tree arg_types,
12270 tree args,
12271 tree end,
12272 tsubst_flags_t complain,
12273 tree in_decl)
12275 tree remaining_arg_types;
12276 tree type = NULL_TREE;
12277 int i = 1;
12278 tree expanded_args = NULL_TREE;
12279 tree default_arg;
12281 if (!arg_types || arg_types == void_list_node || arg_types == end)
12282 return arg_types;
12284 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12285 args, end, complain, in_decl);
12286 if (remaining_arg_types == error_mark_node)
12287 return error_mark_node;
12289 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12291 /* For a pack expansion, perform substitution on the
12292 entire expression. Later on, we'll handle the arguments
12293 one-by-one. */
12294 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12295 args, complain, in_decl);
12297 if (TREE_CODE (expanded_args) == TREE_VEC)
12298 /* So that we'll spin through the parameters, one by one. */
12299 i = TREE_VEC_LENGTH (expanded_args);
12300 else
12302 /* We only partially substituted into the parameter
12303 pack. Our type is TYPE_PACK_EXPANSION. */
12304 type = expanded_args;
12305 expanded_args = NULL_TREE;
12309 while (i > 0) {
12310 --i;
12312 if (expanded_args)
12313 type = TREE_VEC_ELT (expanded_args, i);
12314 else if (!type)
12315 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12317 if (type == error_mark_node)
12318 return error_mark_node;
12319 if (VOID_TYPE_P (type))
12321 if (complain & tf_error)
12323 error ("invalid parameter type %qT", type);
12324 if (in_decl)
12325 error ("in declaration %q+D", in_decl);
12327 return error_mark_node;
12329 /* DR 657. */
12330 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12331 return error_mark_node;
12333 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12334 top-level qualifiers as required. */
12335 type = cv_unqualified (type_decays_to (type));
12337 /* We do not substitute into default arguments here. The standard
12338 mandates that they be instantiated only when needed, which is
12339 done in build_over_call. */
12340 default_arg = TREE_PURPOSE (arg_types);
12342 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12344 /* We've instantiated a template before its default arguments
12345 have been parsed. This can happen for a nested template
12346 class, and is not an error unless we require the default
12347 argument in a call of this function. */
12348 remaining_arg_types =
12349 tree_cons (default_arg, type, remaining_arg_types);
12350 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12352 else
12353 remaining_arg_types =
12354 hash_tree_cons (default_arg, type, remaining_arg_types);
12357 return remaining_arg_types;
12360 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12361 *not* handle the exception-specification for FNTYPE, because the
12362 initial substitution of explicitly provided template parameters
12363 during argument deduction forbids substitution into the
12364 exception-specification:
12366 [temp.deduct]
12368 All references in the function type of the function template to the
12369 corresponding template parameters are replaced by the specified tem-
12370 plate argument values. If a substitution in a template parameter or
12371 in the function type of the function template results in an invalid
12372 type, type deduction fails. [Note: The equivalent substitution in
12373 exception specifications is done only when the function is instanti-
12374 ated, at which point a program is ill-formed if the substitution
12375 results in an invalid type.] */
12377 static tree
12378 tsubst_function_type (tree t,
12379 tree args,
12380 tsubst_flags_t complain,
12381 tree in_decl)
12383 tree return_type;
12384 tree arg_types = NULL_TREE;
12385 tree fntype;
12387 /* The TYPE_CONTEXT is not used for function/method types. */
12388 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12390 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12391 failure. */
12392 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12394 if (late_return_type_p)
12396 /* Substitute the argument types. */
12397 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12398 complain, in_decl);
12399 if (arg_types == error_mark_node)
12400 return error_mark_node;
12402 tree save_ccp = current_class_ptr;
12403 tree save_ccr = current_class_ref;
12404 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12405 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12406 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12407 if (do_inject)
12409 /* DR 1207: 'this' is in scope in the trailing return type. */
12410 inject_this_parameter (this_type, cp_type_quals (this_type));
12413 /* Substitute the return type. */
12414 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12416 if (do_inject)
12418 current_class_ptr = save_ccp;
12419 current_class_ref = save_ccr;
12422 else
12423 /* Substitute the return type. */
12424 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12426 if (return_type == error_mark_node)
12427 return error_mark_node;
12428 /* DR 486 clarifies that creation of a function type with an
12429 invalid return type is a deduction failure. */
12430 if (TREE_CODE (return_type) == ARRAY_TYPE
12431 || TREE_CODE (return_type) == FUNCTION_TYPE)
12433 if (complain & tf_error)
12435 if (TREE_CODE (return_type) == ARRAY_TYPE)
12436 error ("function returning an array");
12437 else
12438 error ("function returning a function");
12440 return error_mark_node;
12442 /* And DR 657. */
12443 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12444 return error_mark_node;
12446 if (!late_return_type_p)
12448 /* Substitute the argument types. */
12449 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12450 complain, in_decl);
12451 if (arg_types == error_mark_node)
12452 return error_mark_node;
12455 /* Construct a new type node and return it. */
12456 if (TREE_CODE (t) == FUNCTION_TYPE)
12458 fntype = build_function_type (return_type, arg_types);
12459 fntype = apply_memfn_quals (fntype,
12460 type_memfn_quals (t),
12461 type_memfn_rqual (t));
12463 else
12465 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12466 /* Don't pick up extra function qualifiers from the basetype. */
12467 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12468 if (! MAYBE_CLASS_TYPE_P (r))
12470 /* [temp.deduct]
12472 Type deduction may fail for any of the following
12473 reasons:
12475 -- Attempting to create "pointer to member of T" when T
12476 is not a class type. */
12477 if (complain & tf_error)
12478 error ("creating pointer to member function of non-class type %qT",
12480 return error_mark_node;
12483 fntype = build_method_type_directly (r, return_type,
12484 TREE_CHAIN (arg_types));
12485 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12487 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12489 if (late_return_type_p)
12490 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12492 return fntype;
12495 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12496 ARGS into that specification, and return the substituted
12497 specification. If there is no specification, return NULL_TREE. */
12499 static tree
12500 tsubst_exception_specification (tree fntype,
12501 tree args,
12502 tsubst_flags_t complain,
12503 tree in_decl,
12504 bool defer_ok)
12506 tree specs;
12507 tree new_specs;
12509 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12510 new_specs = NULL_TREE;
12511 if (specs && TREE_PURPOSE (specs))
12513 /* A noexcept-specifier. */
12514 tree expr = TREE_PURPOSE (specs);
12515 if (TREE_CODE (expr) == INTEGER_CST)
12516 new_specs = expr;
12517 else if (defer_ok)
12519 /* Defer instantiation of noexcept-specifiers to avoid
12520 excessive instantiations (c++/49107). */
12521 new_specs = make_node (DEFERRED_NOEXCEPT);
12522 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12524 /* We already partially instantiated this member template,
12525 so combine the new args with the old. */
12526 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12527 = DEFERRED_NOEXCEPT_PATTERN (expr);
12528 DEFERRED_NOEXCEPT_ARGS (new_specs)
12529 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12531 else
12533 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12534 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12537 else
12538 new_specs = tsubst_copy_and_build
12539 (expr, args, complain, in_decl, /*function_p=*/false,
12540 /*integral_constant_expression_p=*/true);
12541 new_specs = build_noexcept_spec (new_specs, complain);
12543 else if (specs)
12545 if (! TREE_VALUE (specs))
12546 new_specs = specs;
12547 else
12548 while (specs)
12550 tree spec;
12551 int i, len = 1;
12552 tree expanded_specs = NULL_TREE;
12554 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12556 /* Expand the pack expansion type. */
12557 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12558 args, complain,
12559 in_decl);
12561 if (expanded_specs == error_mark_node)
12562 return error_mark_node;
12563 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12564 len = TREE_VEC_LENGTH (expanded_specs);
12565 else
12567 /* We're substituting into a member template, so
12568 we got a TYPE_PACK_EXPANSION back. Add that
12569 expansion and move on. */
12570 gcc_assert (TREE_CODE (expanded_specs)
12571 == TYPE_PACK_EXPANSION);
12572 new_specs = add_exception_specifier (new_specs,
12573 expanded_specs,
12574 complain);
12575 specs = TREE_CHAIN (specs);
12576 continue;
12580 for (i = 0; i < len; ++i)
12582 if (expanded_specs)
12583 spec = TREE_VEC_ELT (expanded_specs, i);
12584 else
12585 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12586 if (spec == error_mark_node)
12587 return spec;
12588 new_specs = add_exception_specifier (new_specs, spec,
12589 complain);
12592 specs = TREE_CHAIN (specs);
12595 return new_specs;
12598 /* Take the tree structure T and replace template parameters used
12599 therein with the argument vector ARGS. IN_DECL is an associated
12600 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12601 Issue error and warning messages under control of COMPLAIN. Note
12602 that we must be relatively non-tolerant of extensions here, in
12603 order to preserve conformance; if we allow substitutions that
12604 should not be allowed, we may allow argument deductions that should
12605 not succeed, and therefore report ambiguous overload situations
12606 where there are none. In theory, we could allow the substitution,
12607 but indicate that it should have failed, and allow our caller to
12608 make sure that the right thing happens, but we don't try to do this
12609 yet.
12611 This function is used for dealing with types, decls and the like;
12612 for expressions, use tsubst_expr or tsubst_copy. */
12614 tree
12615 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12617 enum tree_code code;
12618 tree type, r = NULL_TREE;
12620 if (t == NULL_TREE || t == error_mark_node
12621 || t == integer_type_node
12622 || t == void_type_node
12623 || t == char_type_node
12624 || t == unknown_type_node
12625 || TREE_CODE (t) == NAMESPACE_DECL
12626 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12627 return t;
12629 if (DECL_P (t))
12630 return tsubst_decl (t, args, complain);
12632 if (args == NULL_TREE)
12633 return t;
12635 code = TREE_CODE (t);
12637 if (code == IDENTIFIER_NODE)
12638 type = IDENTIFIER_TYPE_VALUE (t);
12639 else
12640 type = TREE_TYPE (t);
12642 gcc_assert (type != unknown_type_node);
12644 /* Reuse typedefs. We need to do this to handle dependent attributes,
12645 such as attribute aligned. */
12646 if (TYPE_P (t)
12647 && typedef_variant_p (t))
12649 tree decl = TYPE_NAME (t);
12651 if (alias_template_specialization_p (t))
12653 /* DECL represents an alias template and we want to
12654 instantiate it. */
12655 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12656 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12657 r = instantiate_alias_template (tmpl, gen_args, complain);
12659 else if (DECL_CLASS_SCOPE_P (decl)
12660 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12661 && uses_template_parms (DECL_CONTEXT (decl)))
12663 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12664 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12665 r = retrieve_specialization (tmpl, gen_args, 0);
12667 else if (DECL_FUNCTION_SCOPE_P (decl)
12668 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12669 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12670 r = retrieve_local_specialization (decl);
12671 else
12672 /* The typedef is from a non-template context. */
12673 return t;
12675 if (r)
12677 r = TREE_TYPE (r);
12678 r = cp_build_qualified_type_real
12679 (r, cp_type_quals (t) | cp_type_quals (r),
12680 complain | tf_ignore_bad_quals);
12681 return r;
12683 else
12685 /* We don't have an instantiation yet, so drop the typedef. */
12686 int quals = cp_type_quals (t);
12687 t = DECL_ORIGINAL_TYPE (decl);
12688 t = cp_build_qualified_type_real (t, quals,
12689 complain | tf_ignore_bad_quals);
12693 if (type
12694 && code != TYPENAME_TYPE
12695 && code != TEMPLATE_TYPE_PARM
12696 && code != IDENTIFIER_NODE
12697 && code != FUNCTION_TYPE
12698 && code != METHOD_TYPE)
12699 type = tsubst (type, args, complain, in_decl);
12700 if (type == error_mark_node)
12701 return error_mark_node;
12703 switch (code)
12705 case RECORD_TYPE:
12706 case UNION_TYPE:
12707 case ENUMERAL_TYPE:
12708 return tsubst_aggr_type (t, args, complain, in_decl,
12709 /*entering_scope=*/0);
12711 case ERROR_MARK:
12712 case IDENTIFIER_NODE:
12713 case VOID_TYPE:
12714 case REAL_TYPE:
12715 case COMPLEX_TYPE:
12716 case VECTOR_TYPE:
12717 case BOOLEAN_TYPE:
12718 case NULLPTR_TYPE:
12719 case LANG_TYPE:
12720 return t;
12722 case INTEGER_TYPE:
12723 if (t == integer_type_node)
12724 return t;
12726 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
12727 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
12728 return t;
12731 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
12733 max = tsubst_expr (omax, args, complain, in_decl,
12734 /*integral_constant_expression_p=*/false);
12736 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12737 needed. */
12738 if (TREE_CODE (max) == NOP_EXPR
12739 && TREE_SIDE_EFFECTS (omax)
12740 && !TREE_TYPE (max))
12741 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
12743 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12744 with TREE_SIDE_EFFECTS that indicates this is not an integral
12745 constant expression. */
12746 if (processing_template_decl
12747 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
12749 gcc_assert (TREE_CODE (max) == NOP_EXPR);
12750 TREE_SIDE_EFFECTS (max) = 1;
12753 return compute_array_index_type (NULL_TREE, max, complain);
12756 case TEMPLATE_TYPE_PARM:
12757 case TEMPLATE_TEMPLATE_PARM:
12758 case BOUND_TEMPLATE_TEMPLATE_PARM:
12759 case TEMPLATE_PARM_INDEX:
12761 int idx;
12762 int level;
12763 int levels;
12764 tree arg = NULL_TREE;
12766 /* Early in template argument deduction substitution, we don't
12767 want to reduce the level of 'auto', or it will be confused
12768 with a normal template parm in subsequent deduction. */
12769 if (is_auto (t) && (complain & tf_partial))
12770 return t;
12772 r = NULL_TREE;
12774 gcc_assert (TREE_VEC_LENGTH (args) > 0);
12775 template_parm_level_and_index (t, &level, &idx);
12777 levels = TMPL_ARGS_DEPTH (args);
12778 if (level <= levels
12779 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
12781 arg = TMPL_ARG (args, level, idx);
12783 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
12785 /* See through ARGUMENT_PACK_SELECT arguments. */
12786 arg = ARGUMENT_PACK_SELECT_ARG (arg);
12787 /* If the selected argument is an expansion E, that most
12788 likely means we were called from
12789 gen_elem_of_pack_expansion_instantiation during the
12790 substituting of pack an argument pack (which Ith
12791 element is a pack expansion, where I is
12792 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12793 In this case, the Ith element resulting from this
12794 substituting is going to be a pack expansion, which
12795 pattern is the pattern of E. Let's return the
12796 pattern of E, and
12797 gen_elem_of_pack_expansion_instantiation will
12798 build the resulting pack expansion from it. */
12799 if (PACK_EXPANSION_P (arg))
12801 /* Make sure we aren't throwing away arg info. */
12802 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
12803 arg = PACK_EXPANSION_PATTERN (arg);
12808 if (arg == error_mark_node)
12809 return error_mark_node;
12810 else if (arg != NULL_TREE)
12812 if (ARGUMENT_PACK_P (arg))
12813 /* If ARG is an argument pack, we don't actually want to
12814 perform a substitution here, because substitutions
12815 for argument packs are only done
12816 element-by-element. We can get to this point when
12817 substituting the type of a non-type template
12818 parameter pack, when that type actually contains
12819 template parameter packs from an outer template, e.g.,
12821 template<typename... Types> struct A {
12822 template<Types... Values> struct B { };
12823 }; */
12824 return t;
12826 if (code == TEMPLATE_TYPE_PARM)
12828 int quals;
12829 gcc_assert (TYPE_P (arg));
12831 quals = cp_type_quals (arg) | cp_type_quals (t);
12833 return cp_build_qualified_type_real
12834 (arg, quals, complain | tf_ignore_bad_quals);
12836 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12838 /* We are processing a type constructed from a
12839 template template parameter. */
12840 tree argvec = tsubst (TYPE_TI_ARGS (t),
12841 args, complain, in_decl);
12842 if (argvec == error_mark_node)
12843 return error_mark_node;
12845 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
12846 || TREE_CODE (arg) == TEMPLATE_DECL
12847 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
12849 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
12850 /* Consider this code:
12852 template <template <class> class Template>
12853 struct Internal {
12854 template <class Arg> using Bind = Template<Arg>;
12857 template <template <class> class Template, class Arg>
12858 using Instantiate = Template<Arg>; //#0
12860 template <template <class> class Template,
12861 class Argument>
12862 using Bind =
12863 Instantiate<Internal<Template>::template Bind,
12864 Argument>; //#1
12866 When #1 is parsed, the
12867 BOUND_TEMPLATE_TEMPLATE_PARM representing the
12868 parameter `Template' in #0 matches the
12869 UNBOUND_CLASS_TEMPLATE representing the argument
12870 `Internal<Template>::template Bind'; We then want
12871 to assemble the type `Bind<Argument>' that can't
12872 be fully created right now, because
12873 `Internal<Template>' not being complete, the Bind
12874 template cannot be looked up in that context. So
12875 we need to "store" `Bind<Argument>' for later
12876 when the context of Bind becomes complete. Let's
12877 store that in a TYPENAME_TYPE. */
12878 return make_typename_type (TYPE_CONTEXT (arg),
12879 build_nt (TEMPLATE_ID_EXPR,
12880 TYPE_IDENTIFIER (arg),
12881 argvec),
12882 typename_type,
12883 complain);
12885 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
12886 are resolving nested-types in the signature of a
12887 member function templates. Otherwise ARG is a
12888 TEMPLATE_DECL and is the real template to be
12889 instantiated. */
12890 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12891 arg = TYPE_NAME (arg);
12893 r = lookup_template_class (arg,
12894 argvec, in_decl,
12895 DECL_CONTEXT (arg),
12896 /*entering_scope=*/0,
12897 complain);
12898 return cp_build_qualified_type_real
12899 (r, cp_type_quals (t) | cp_type_quals (r), complain);
12901 else
12902 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
12903 return convert_from_reference (unshare_expr (arg));
12906 if (level == 1)
12907 /* This can happen during the attempted tsubst'ing in
12908 unify. This means that we don't yet have any information
12909 about the template parameter in question. */
12910 return t;
12912 /* If we get here, we must have been looking at a parm for a
12913 more deeply nested template. Make a new version of this
12914 template parameter, but with a lower level. */
12915 switch (code)
12917 case TEMPLATE_TYPE_PARM:
12918 case TEMPLATE_TEMPLATE_PARM:
12919 case BOUND_TEMPLATE_TEMPLATE_PARM:
12920 if (cp_type_quals (t))
12922 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
12923 r = cp_build_qualified_type_real
12924 (r, cp_type_quals (t),
12925 complain | (code == TEMPLATE_TYPE_PARM
12926 ? tf_ignore_bad_quals : 0));
12928 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
12929 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
12930 && (r = (TEMPLATE_PARM_DESCENDANTS
12931 (TEMPLATE_TYPE_PARM_INDEX (t))))
12932 && (r = TREE_TYPE (r))
12933 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
12934 /* Break infinite recursion when substituting the constraints
12935 of a constrained placeholder. */;
12936 else
12938 r = copy_type (t);
12939 TEMPLATE_TYPE_PARM_INDEX (r)
12940 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
12941 r, levels, args, complain);
12942 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
12943 TYPE_MAIN_VARIANT (r) = r;
12944 TYPE_POINTER_TO (r) = NULL_TREE;
12945 TYPE_REFERENCE_TO (r) = NULL_TREE;
12947 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
12948 /* We have reduced the level of the template
12949 template parameter, but not the levels of its
12950 template parameters, so canonical_type_parameter
12951 will not be able to find the canonical template
12952 template parameter for this level. Thus, we
12953 require structural equality checking to compare
12954 TEMPLATE_TEMPLATE_PARMs. */
12955 SET_TYPE_STRUCTURAL_EQUALITY (r);
12956 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
12957 SET_TYPE_STRUCTURAL_EQUALITY (r);
12958 else
12959 TYPE_CANONICAL (r) = canonical_type_parameter (r);
12961 /* Propagate constraints on placeholders. */
12962 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
12963 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
12964 PLACEHOLDER_TYPE_CONSTRAINTS (r)
12965 = tsubst_constraint (constr, args, complain, in_decl);
12967 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
12969 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
12970 complain, in_decl);
12971 if (argvec == error_mark_node)
12972 return error_mark_node;
12974 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
12975 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
12978 break;
12980 case TEMPLATE_PARM_INDEX:
12981 r = reduce_template_parm_level (t, type, levels, args, complain);
12982 break;
12984 default:
12985 gcc_unreachable ();
12988 return r;
12991 case TREE_LIST:
12993 tree purpose, value, chain;
12995 if (t == void_list_node)
12996 return t;
12998 purpose = TREE_PURPOSE (t);
12999 if (purpose)
13001 purpose = tsubst (purpose, args, complain, in_decl);
13002 if (purpose == error_mark_node)
13003 return error_mark_node;
13005 value = TREE_VALUE (t);
13006 if (value)
13008 value = tsubst (value, args, complain, in_decl);
13009 if (value == error_mark_node)
13010 return error_mark_node;
13012 chain = TREE_CHAIN (t);
13013 if (chain && chain != void_type_node)
13015 chain = tsubst (chain, args, complain, in_decl);
13016 if (chain == error_mark_node)
13017 return error_mark_node;
13019 if (purpose == TREE_PURPOSE (t)
13020 && value == TREE_VALUE (t)
13021 && chain == TREE_CHAIN (t))
13022 return t;
13023 return hash_tree_cons (purpose, value, chain);
13026 case TREE_BINFO:
13027 /* We should never be tsubsting a binfo. */
13028 gcc_unreachable ();
13030 case TREE_VEC:
13031 /* A vector of template arguments. */
13032 gcc_assert (!type);
13033 return tsubst_template_args (t, args, complain, in_decl);
13035 case POINTER_TYPE:
13036 case REFERENCE_TYPE:
13038 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13039 return t;
13041 /* [temp.deduct]
13043 Type deduction may fail for any of the following
13044 reasons:
13046 -- Attempting to create a pointer to reference type.
13047 -- Attempting to create a reference to a reference type or
13048 a reference to void.
13050 Core issue 106 says that creating a reference to a reference
13051 during instantiation is no longer a cause for failure. We
13052 only enforce this check in strict C++98 mode. */
13053 if ((TREE_CODE (type) == REFERENCE_TYPE
13054 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13055 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13057 static location_t last_loc;
13059 /* We keep track of the last time we issued this error
13060 message to avoid spewing a ton of messages during a
13061 single bad template instantiation. */
13062 if (complain & tf_error
13063 && last_loc != input_location)
13065 if (VOID_TYPE_P (type))
13066 error ("forming reference to void");
13067 else if (code == POINTER_TYPE)
13068 error ("forming pointer to reference type %qT", type);
13069 else
13070 error ("forming reference to reference type %qT", type);
13071 last_loc = input_location;
13074 return error_mark_node;
13076 else if (TREE_CODE (type) == FUNCTION_TYPE
13077 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13078 || type_memfn_rqual (type) != REF_QUAL_NONE))
13080 if (complain & tf_error)
13082 if (code == POINTER_TYPE)
13083 error ("forming pointer to qualified function type %qT",
13084 type);
13085 else
13086 error ("forming reference to qualified function type %qT",
13087 type);
13089 return error_mark_node;
13091 else if (code == POINTER_TYPE)
13093 r = build_pointer_type (type);
13094 if (TREE_CODE (type) == METHOD_TYPE)
13095 r = build_ptrmemfunc_type (r);
13097 else if (TREE_CODE (type) == REFERENCE_TYPE)
13098 /* In C++0x, during template argument substitution, when there is an
13099 attempt to create a reference to a reference type, reference
13100 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13102 "If a template-argument for a template-parameter T names a type
13103 that is a reference to a type A, an attempt to create the type
13104 'lvalue reference to cv T' creates the type 'lvalue reference to
13105 A,' while an attempt to create the type type rvalue reference to
13106 cv T' creates the type T"
13108 r = cp_build_reference_type
13109 (TREE_TYPE (type),
13110 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13111 else
13112 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13113 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13115 if (r != error_mark_node)
13116 /* Will this ever be needed for TYPE_..._TO values? */
13117 layout_type (r);
13119 return r;
13121 case OFFSET_TYPE:
13123 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13124 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13126 /* [temp.deduct]
13128 Type deduction may fail for any of the following
13129 reasons:
13131 -- Attempting to create "pointer to member of T" when T
13132 is not a class type. */
13133 if (complain & tf_error)
13134 error ("creating pointer to member of non-class type %qT", r);
13135 return error_mark_node;
13137 if (TREE_CODE (type) == REFERENCE_TYPE)
13139 if (complain & tf_error)
13140 error ("creating pointer to member reference type %qT", type);
13141 return error_mark_node;
13143 if (VOID_TYPE_P (type))
13145 if (complain & tf_error)
13146 error ("creating pointer to member of type void");
13147 return error_mark_node;
13149 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13150 if (TREE_CODE (type) == FUNCTION_TYPE)
13152 /* The type of the implicit object parameter gets its
13153 cv-qualifiers from the FUNCTION_TYPE. */
13154 tree memptr;
13155 tree method_type
13156 = build_memfn_type (type, r, type_memfn_quals (type),
13157 type_memfn_rqual (type));
13158 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13159 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13160 complain);
13162 else
13163 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13164 cp_type_quals (t),
13165 complain);
13167 case FUNCTION_TYPE:
13168 case METHOD_TYPE:
13170 tree fntype;
13171 tree specs;
13172 fntype = tsubst_function_type (t, args, complain, in_decl);
13173 if (fntype == error_mark_node)
13174 return error_mark_node;
13176 /* Substitute the exception specification. */
13177 specs = tsubst_exception_specification (t, args, complain,
13178 in_decl, /*defer_ok*/true);
13179 if (specs == error_mark_node)
13180 return error_mark_node;
13181 if (specs)
13182 fntype = build_exception_variant (fntype, specs);
13183 return fntype;
13185 case ARRAY_TYPE:
13187 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13188 if (domain == error_mark_node)
13189 return error_mark_node;
13191 /* As an optimization, we avoid regenerating the array type if
13192 it will obviously be the same as T. */
13193 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13194 return t;
13196 /* These checks should match the ones in create_array_type_for_decl.
13198 [temp.deduct]
13200 The deduction may fail for any of the following reasons:
13202 -- Attempting to create an array with an element type that
13203 is void, a function type, or a reference type, or [DR337]
13204 an abstract class type. */
13205 if (VOID_TYPE_P (type)
13206 || TREE_CODE (type) == FUNCTION_TYPE
13207 || (TREE_CODE (type) == ARRAY_TYPE
13208 && TYPE_DOMAIN (type) == NULL_TREE)
13209 || TREE_CODE (type) == REFERENCE_TYPE)
13211 if (complain & tf_error)
13212 error ("creating array of %qT", type);
13213 return error_mark_node;
13216 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13217 return error_mark_node;
13219 r = build_cplus_array_type (type, domain);
13221 if (TYPE_USER_ALIGN (t))
13223 TYPE_ALIGN (r) = TYPE_ALIGN (t);
13224 TYPE_USER_ALIGN (r) = 1;
13227 return r;
13230 case TYPENAME_TYPE:
13232 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13233 in_decl, /*entering_scope=*/1);
13234 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13235 complain, in_decl);
13237 if (ctx == error_mark_node || f == error_mark_node)
13238 return error_mark_node;
13240 if (!MAYBE_CLASS_TYPE_P (ctx))
13242 if (complain & tf_error)
13243 error ("%qT is not a class, struct, or union type", ctx);
13244 return error_mark_node;
13246 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13248 /* Normally, make_typename_type does not require that the CTX
13249 have complete type in order to allow things like:
13251 template <class T> struct S { typename S<T>::X Y; };
13253 But, such constructs have already been resolved by this
13254 point, so here CTX really should have complete type, unless
13255 it's a partial instantiation. */
13256 ctx = complete_type (ctx);
13257 if (!COMPLETE_TYPE_P (ctx))
13259 if (complain & tf_error)
13260 cxx_incomplete_type_error (NULL_TREE, ctx);
13261 return error_mark_node;
13265 f = make_typename_type (ctx, f, typename_type,
13266 complain | tf_keep_type_decl);
13267 if (f == error_mark_node)
13268 return f;
13269 if (TREE_CODE (f) == TYPE_DECL)
13271 complain |= tf_ignore_bad_quals;
13272 f = TREE_TYPE (f);
13275 if (TREE_CODE (f) != TYPENAME_TYPE)
13277 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13279 if (complain & tf_error)
13280 error ("%qT resolves to %qT, which is not an enumeration type",
13281 t, f);
13282 else
13283 return error_mark_node;
13285 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13287 if (complain & tf_error)
13288 error ("%qT resolves to %qT, which is is not a class type",
13289 t, f);
13290 else
13291 return error_mark_node;
13295 return cp_build_qualified_type_real
13296 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13299 case UNBOUND_CLASS_TEMPLATE:
13301 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13302 in_decl, /*entering_scope=*/1);
13303 tree name = TYPE_IDENTIFIER (t);
13304 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13306 if (ctx == error_mark_node || name == error_mark_node)
13307 return error_mark_node;
13309 if (parm_list)
13310 parm_list = tsubst_template_parms (parm_list, args, complain);
13311 return make_unbound_class_template (ctx, name, parm_list, complain);
13314 case TYPEOF_TYPE:
13316 tree type;
13318 ++cp_unevaluated_operand;
13319 ++c_inhibit_evaluation_warnings;
13321 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13322 complain, in_decl,
13323 /*integral_constant_expression_p=*/false);
13325 --cp_unevaluated_operand;
13326 --c_inhibit_evaluation_warnings;
13328 type = finish_typeof (type);
13329 return cp_build_qualified_type_real (type,
13330 cp_type_quals (t)
13331 | cp_type_quals (type),
13332 complain);
13335 case DECLTYPE_TYPE:
13337 tree type;
13339 ++cp_unevaluated_operand;
13340 ++c_inhibit_evaluation_warnings;
13342 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13343 complain|tf_decltype, in_decl,
13344 /*function_p*/false,
13345 /*integral_constant_expression*/false);
13347 --cp_unevaluated_operand;
13348 --c_inhibit_evaluation_warnings;
13350 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13351 type = lambda_capture_field_type (type,
13352 DECLTYPE_FOR_INIT_CAPTURE (t));
13353 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13354 type = lambda_proxy_type (type);
13355 else
13357 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13358 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13359 && EXPR_P (type))
13360 /* In a template ~id could be either a complement expression
13361 or an unqualified-id naming a destructor; if instantiating
13362 it produces an expression, it's not an id-expression or
13363 member access. */
13364 id = false;
13365 type = finish_decltype_type (type, id, complain);
13367 return cp_build_qualified_type_real (type,
13368 cp_type_quals (t)
13369 | cp_type_quals (type),
13370 complain | tf_ignore_bad_quals);
13373 case UNDERLYING_TYPE:
13375 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13376 complain, in_decl);
13377 return finish_underlying_type (type);
13380 case TYPE_ARGUMENT_PACK:
13381 case NONTYPE_ARGUMENT_PACK:
13383 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13384 tree packed_out =
13385 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13386 args,
13387 complain,
13388 in_decl);
13389 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13391 /* For template nontype argument packs, also substitute into
13392 the type. */
13393 if (code == NONTYPE_ARGUMENT_PACK)
13394 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13396 return r;
13398 break;
13400 case VOID_CST:
13401 case INTEGER_CST:
13402 case REAL_CST:
13403 case STRING_CST:
13404 case PLUS_EXPR:
13405 case MINUS_EXPR:
13406 case NEGATE_EXPR:
13407 case NOP_EXPR:
13408 case INDIRECT_REF:
13409 case ADDR_EXPR:
13410 case CALL_EXPR:
13411 case ARRAY_REF:
13412 case SCOPE_REF:
13413 /* We should use one of the expression tsubsts for these codes. */
13414 gcc_unreachable ();
13416 default:
13417 sorry ("use of %qs in template", get_tree_code_name (code));
13418 return error_mark_node;
13422 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13423 type of the expression on the left-hand side of the "." or "->"
13424 operator. */
13426 static tree
13427 tsubst_baselink (tree baselink, tree object_type,
13428 tree args, tsubst_flags_t complain, tree in_decl)
13430 tree name;
13431 tree qualifying_scope;
13432 tree fns;
13433 tree optype;
13434 tree template_args = 0;
13435 bool template_id_p = false;
13436 bool qualified = BASELINK_QUALIFIED_P (baselink);
13438 /* A baselink indicates a function from a base class. Both the
13439 BASELINK_ACCESS_BINFO and the base class referenced may
13440 indicate bases of the template class, rather than the
13441 instantiated class. In addition, lookups that were not
13442 ambiguous before may be ambiguous now. Therefore, we perform
13443 the lookup again. */
13444 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13445 qualifying_scope = tsubst (qualifying_scope, args,
13446 complain, in_decl);
13447 fns = BASELINK_FUNCTIONS (baselink);
13448 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13449 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13451 template_id_p = true;
13452 template_args = TREE_OPERAND (fns, 1);
13453 fns = TREE_OPERAND (fns, 0);
13454 if (template_args)
13455 template_args = tsubst_template_args (template_args, args,
13456 complain, in_decl);
13458 name = DECL_NAME (get_first_fn (fns));
13459 if (IDENTIFIER_TYPENAME_P (name))
13460 name = mangle_conv_op_name_for_type (optype);
13461 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13462 if (!baselink)
13463 return error_mark_node;
13465 /* If lookup found a single function, mark it as used at this
13466 point. (If it lookup found multiple functions the one selected
13467 later by overload resolution will be marked as used at that
13468 point.) */
13469 if (BASELINK_P (baselink))
13470 fns = BASELINK_FUNCTIONS (baselink);
13471 if (!template_id_p && !really_overloaded_fn (fns)
13472 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13473 return error_mark_node;
13475 /* Add back the template arguments, if present. */
13476 if (BASELINK_P (baselink) && template_id_p)
13477 BASELINK_FUNCTIONS (baselink)
13478 = build_nt (TEMPLATE_ID_EXPR,
13479 BASELINK_FUNCTIONS (baselink),
13480 template_args);
13481 /* Update the conversion operator type. */
13482 BASELINK_OPTYPE (baselink) = optype;
13484 if (!object_type)
13485 object_type = current_class_type;
13487 if (qualified)
13488 baselink = adjust_result_of_qualified_name_lookup (baselink,
13489 qualifying_scope,
13490 object_type);
13491 return baselink;
13494 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13495 true if the qualified-id will be a postfix-expression in-and-of
13496 itself; false if more of the postfix-expression follows the
13497 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13498 of "&". */
13500 static tree
13501 tsubst_qualified_id (tree qualified_id, tree args,
13502 tsubst_flags_t complain, tree in_decl,
13503 bool done, bool address_p)
13505 tree expr;
13506 tree scope;
13507 tree name;
13508 bool is_template;
13509 tree template_args;
13510 location_t loc = UNKNOWN_LOCATION;
13512 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13514 /* Figure out what name to look up. */
13515 name = TREE_OPERAND (qualified_id, 1);
13516 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13518 is_template = true;
13519 loc = EXPR_LOCATION (name);
13520 template_args = TREE_OPERAND (name, 1);
13521 if (template_args)
13522 template_args = tsubst_template_args (template_args, args,
13523 complain, in_decl);
13524 name = TREE_OPERAND (name, 0);
13526 else
13528 is_template = false;
13529 template_args = NULL_TREE;
13532 /* Substitute into the qualifying scope. When there are no ARGS, we
13533 are just trying to simplify a non-dependent expression. In that
13534 case the qualifying scope may be dependent, and, in any case,
13535 substituting will not help. */
13536 scope = TREE_OPERAND (qualified_id, 0);
13537 if (args)
13539 scope = tsubst (scope, args, complain, in_decl);
13540 expr = tsubst_copy (name, args, complain, in_decl);
13542 else
13543 expr = name;
13545 if (dependent_scope_p (scope))
13547 if (is_template)
13548 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13549 return build_qualified_name (NULL_TREE, scope, expr,
13550 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13553 if (!BASELINK_P (name) && !DECL_P (expr))
13555 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13557 /* A BIT_NOT_EXPR is used to represent a destructor. */
13558 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13560 error ("qualifying type %qT does not match destructor name ~%qT",
13561 scope, TREE_OPERAND (expr, 0));
13562 expr = error_mark_node;
13564 else
13565 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13566 /*is_type_p=*/0, false);
13568 else
13569 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13570 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13571 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13573 if (complain & tf_error)
13575 error ("dependent-name %qE is parsed as a non-type, but "
13576 "instantiation yields a type", qualified_id);
13577 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13579 return error_mark_node;
13583 if (DECL_P (expr))
13585 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13586 scope);
13587 /* Remember that there was a reference to this entity. */
13588 if (!mark_used (expr, complain) && !(complain & tf_error))
13589 return error_mark_node;
13592 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13594 if (complain & tf_error)
13595 qualified_name_lookup_error (scope,
13596 TREE_OPERAND (qualified_id, 1),
13597 expr, input_location);
13598 return error_mark_node;
13601 if (is_template)
13602 expr = lookup_template_function (expr, template_args);
13604 if (expr == error_mark_node && complain & tf_error)
13605 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13606 expr, input_location);
13607 else if (TYPE_P (scope))
13609 expr = (adjust_result_of_qualified_name_lookup
13610 (expr, scope, current_nonlambda_class_type ()));
13611 expr = (finish_qualified_id_expr
13612 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13613 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13614 /*template_arg_p=*/false, complain));
13617 /* Expressions do not generally have reference type. */
13618 if (TREE_CODE (expr) != SCOPE_REF
13619 /* However, if we're about to form a pointer-to-member, we just
13620 want the referenced member referenced. */
13621 && TREE_CODE (expr) != OFFSET_REF)
13622 expr = convert_from_reference (expr);
13624 return expr;
13627 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13628 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13629 for tsubst. */
13631 static tree
13632 tsubst_init (tree init, tree decl, tree args,
13633 tsubst_flags_t complain, tree in_decl)
13635 if (!init)
13636 return NULL_TREE;
13638 init = tsubst_expr (init, args, complain, in_decl, false);
13640 if (!init)
13642 /* If we had an initializer but it
13643 instantiated to nothing,
13644 value-initialize the object. This will
13645 only occur when the initializer was a
13646 pack expansion where the parameter packs
13647 used in that expansion were of length
13648 zero. */
13649 init = build_value_init (TREE_TYPE (decl),
13650 complain);
13651 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13652 init = get_target_expr_sfinae (init, complain);
13655 return init;
13658 /* Like tsubst, but deals with expressions. This function just replaces
13659 template parms; to finish processing the resultant expression, use
13660 tsubst_copy_and_build or tsubst_expr. */
13662 static tree
13663 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13665 enum tree_code code;
13666 tree r;
13668 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13669 return t;
13671 code = TREE_CODE (t);
13673 switch (code)
13675 case PARM_DECL:
13676 r = retrieve_local_specialization (t);
13678 if (r == NULL_TREE)
13680 /* We get here for a use of 'this' in an NSDMI. */
13681 if (DECL_NAME (t) == this_identifier
13682 && current_function_decl
13683 && DECL_CONSTRUCTOR_P (current_function_decl))
13684 return current_class_ptr;
13686 /* This can happen for a parameter name used later in a function
13687 declaration (such as in a late-specified return type). Just
13688 make a dummy decl, since it's only used for its type. */
13689 gcc_assert (cp_unevaluated_operand != 0);
13690 r = tsubst_decl (t, args, complain);
13691 /* Give it the template pattern as its context; its true context
13692 hasn't been instantiated yet and this is good enough for
13693 mangling. */
13694 DECL_CONTEXT (r) = DECL_CONTEXT (t);
13697 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13698 r = ARGUMENT_PACK_SELECT_ARG (r);
13699 if (!mark_used (r, complain) && !(complain & tf_error))
13700 return error_mark_node;
13701 return r;
13703 case CONST_DECL:
13705 tree enum_type;
13706 tree v;
13708 if (DECL_TEMPLATE_PARM_P (t))
13709 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
13710 /* There is no need to substitute into namespace-scope
13711 enumerators. */
13712 if (DECL_NAMESPACE_SCOPE_P (t))
13713 return t;
13714 /* If ARGS is NULL, then T is known to be non-dependent. */
13715 if (args == NULL_TREE)
13716 return scalar_constant_value (t);
13718 /* Unfortunately, we cannot just call lookup_name here.
13719 Consider:
13721 template <int I> int f() {
13722 enum E { a = I };
13723 struct S { void g() { E e = a; } };
13726 When we instantiate f<7>::S::g(), say, lookup_name is not
13727 clever enough to find f<7>::a. */
13728 enum_type
13729 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13730 /*entering_scope=*/0);
13732 for (v = TYPE_VALUES (enum_type);
13733 v != NULL_TREE;
13734 v = TREE_CHAIN (v))
13735 if (TREE_PURPOSE (v) == DECL_NAME (t))
13736 return TREE_VALUE (v);
13738 /* We didn't find the name. That should never happen; if
13739 name-lookup found it during preliminary parsing, we
13740 should find it again here during instantiation. */
13741 gcc_unreachable ();
13743 return t;
13745 case FIELD_DECL:
13746 if (PACK_EXPANSION_P (TREE_TYPE (t)))
13748 /* Check for a local specialization set up by
13749 tsubst_pack_expansion. */
13750 if (tree r = retrieve_local_specialization (t))
13752 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
13753 r = ARGUMENT_PACK_SELECT_ARG (r);
13754 return r;
13757 /* When retrieving a capture pack from a generic lambda, remove the
13758 lambda call op's own template argument list from ARGS. Only the
13759 template arguments active for the closure type should be used to
13760 retrieve the pack specialization. */
13761 if (LAMBDA_FUNCTION_P (current_function_decl)
13762 && (template_class_depth (DECL_CONTEXT (t))
13763 != TMPL_ARGS_DEPTH (args)))
13764 args = strip_innermost_template_args (args, 1);
13766 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13767 tsubst_decl put in the hash table. */
13768 return retrieve_specialization (t, args, 0);
13771 if (DECL_CONTEXT (t))
13773 tree ctx;
13775 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
13776 /*entering_scope=*/1);
13777 if (ctx != DECL_CONTEXT (t))
13779 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
13780 if (!r)
13782 if (complain & tf_error)
13783 error ("using invalid field %qD", t);
13784 return error_mark_node;
13786 return r;
13790 return t;
13792 case VAR_DECL:
13793 case FUNCTION_DECL:
13794 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
13795 r = tsubst (t, args, complain, in_decl);
13796 else if (local_variable_p (t))
13798 r = retrieve_local_specialization (t);
13799 if (r == NULL_TREE)
13801 /* First try name lookup to find the instantiation. */
13802 r = lookup_name (DECL_NAME (t));
13803 if (r)
13805 /* Make sure that the one we found is the one we want. */
13806 tree ctx = DECL_CONTEXT (t);
13807 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
13808 ctx = tsubst (ctx, args, complain, in_decl);
13809 if (ctx != DECL_CONTEXT (r))
13810 r = NULL_TREE;
13813 if (r)
13814 /* OK */;
13815 else
13817 /* This can happen for a variable used in a
13818 late-specified return type of a local lambda, or for a
13819 local static or constant. Building a new VAR_DECL
13820 should be OK in all those cases. */
13821 r = tsubst_decl (t, args, complain);
13822 if (decl_maybe_constant_var_p (r))
13824 /* We can't call cp_finish_decl, so handle the
13825 initializer by hand. */
13826 tree init = tsubst_init (DECL_INITIAL (t), r, args,
13827 complain, in_decl);
13828 if (!processing_template_decl)
13829 init = maybe_constant_init (init);
13830 if (processing_template_decl
13831 ? potential_constant_expression (init)
13832 : reduced_constant_expression_p (init))
13833 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
13834 = TREE_CONSTANT (r) = true;
13835 DECL_INITIAL (r) = init;
13837 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
13838 || decl_constant_var_p (r)
13839 || errorcount || sorrycount);
13840 if (!processing_template_decl)
13842 if (TREE_STATIC (r))
13843 rest_of_decl_compilation (r, toplevel_bindings_p (),
13844 at_eof);
13845 else
13846 r = process_outer_var_ref (r, complain);
13849 /* Remember this for subsequent uses. */
13850 if (local_specializations)
13851 register_local_specialization (r, t);
13854 else
13855 r = t;
13856 if (!mark_used (r, complain) && !(complain & tf_error))
13857 return error_mark_node;
13858 return r;
13860 case NAMESPACE_DECL:
13861 return t;
13863 case OVERLOAD:
13864 /* An OVERLOAD will always be a non-dependent overload set; an
13865 overload set from function scope will just be represented with an
13866 IDENTIFIER_NODE, and from class scope with a BASELINK. */
13867 gcc_assert (!uses_template_parms (t));
13868 return t;
13870 case BASELINK:
13871 return tsubst_baselink (t, current_nonlambda_class_type (),
13872 args, complain, in_decl);
13874 case TEMPLATE_DECL:
13875 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
13876 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
13877 args, complain, in_decl);
13878 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
13879 return tsubst (t, args, complain, in_decl);
13880 else if (DECL_CLASS_SCOPE_P (t)
13881 && uses_template_parms (DECL_CONTEXT (t)))
13883 /* Template template argument like the following example need
13884 special treatment:
13886 template <template <class> class TT> struct C {};
13887 template <class T> struct D {
13888 template <class U> struct E {};
13889 C<E> c; // #1
13891 D<int> d; // #2
13893 We are processing the template argument `E' in #1 for
13894 the template instantiation #2. Originally, `E' is a
13895 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
13896 have to substitute this with one having context `D<int>'. */
13898 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
13899 return lookup_field (context, DECL_NAME(t), 0, false);
13901 else
13902 /* Ordinary template template argument. */
13903 return t;
13905 case CAST_EXPR:
13906 case REINTERPRET_CAST_EXPR:
13907 case CONST_CAST_EXPR:
13908 case STATIC_CAST_EXPR:
13909 case DYNAMIC_CAST_EXPR:
13910 case IMPLICIT_CONV_EXPR:
13911 case CONVERT_EXPR:
13912 case NOP_EXPR:
13914 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13915 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13916 return build1 (code, type, op0);
13919 case SIZEOF_EXPR:
13920 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13923 tree expanded, op = TREE_OPERAND (t, 0);
13924 int len = 0;
13926 if (SIZEOF_EXPR_TYPE_P (t))
13927 op = TREE_TYPE (op);
13929 ++cp_unevaluated_operand;
13930 ++c_inhibit_evaluation_warnings;
13931 /* We only want to compute the number of arguments. */
13932 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
13933 --cp_unevaluated_operand;
13934 --c_inhibit_evaluation_warnings;
13936 if (TREE_CODE (expanded) == TREE_VEC)
13937 len = TREE_VEC_LENGTH (expanded);
13939 if (expanded == error_mark_node)
13940 return error_mark_node;
13941 else if (PACK_EXPANSION_P (expanded)
13942 || (TREE_CODE (expanded) == TREE_VEC
13943 && len > 0
13944 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
13946 if (TREE_CODE (expanded) == TREE_VEC)
13947 expanded = TREE_VEC_ELT (expanded, len - 1);
13949 if (TYPE_P (expanded))
13950 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
13951 complain & tf_error);
13952 else
13953 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
13954 complain & tf_error);
13956 else
13957 return build_int_cst (size_type_node, len);
13959 if (SIZEOF_EXPR_TYPE_P (t))
13961 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
13962 args, complain, in_decl);
13963 r = build1 (NOP_EXPR, r, error_mark_node);
13964 r = build1 (SIZEOF_EXPR,
13965 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
13966 SIZEOF_EXPR_TYPE_P (r) = 1;
13967 return r;
13969 /* Fall through */
13971 case INDIRECT_REF:
13972 case NEGATE_EXPR:
13973 case TRUTH_NOT_EXPR:
13974 case BIT_NOT_EXPR:
13975 case ADDR_EXPR:
13976 case UNARY_PLUS_EXPR: /* Unary + */
13977 case ALIGNOF_EXPR:
13978 case AT_ENCODE_EXPR:
13979 case ARROW_EXPR:
13980 case THROW_EXPR:
13981 case TYPEID_EXPR:
13982 case REALPART_EXPR:
13983 case IMAGPART_EXPR:
13984 case PAREN_EXPR:
13986 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13987 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13988 return build1 (code, type, op0);
13991 case COMPONENT_REF:
13993 tree object;
13994 tree name;
13996 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
13997 name = TREE_OPERAND (t, 1);
13998 if (TREE_CODE (name) == BIT_NOT_EXPR)
14000 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14001 complain, in_decl);
14002 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14004 else if (TREE_CODE (name) == SCOPE_REF
14005 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14007 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14008 complain, in_decl);
14009 name = TREE_OPERAND (name, 1);
14010 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14011 complain, in_decl);
14012 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14013 name = build_qualified_name (/*type=*/NULL_TREE,
14014 base, name,
14015 /*template_p=*/false);
14017 else if (BASELINK_P (name))
14018 name = tsubst_baselink (name,
14019 non_reference (TREE_TYPE (object)),
14020 args, complain,
14021 in_decl);
14022 else
14023 name = tsubst_copy (name, args, complain, in_decl);
14024 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14027 case PLUS_EXPR:
14028 case MINUS_EXPR:
14029 case MULT_EXPR:
14030 case TRUNC_DIV_EXPR:
14031 case CEIL_DIV_EXPR:
14032 case FLOOR_DIV_EXPR:
14033 case ROUND_DIV_EXPR:
14034 case EXACT_DIV_EXPR:
14035 case BIT_AND_EXPR:
14036 case BIT_IOR_EXPR:
14037 case BIT_XOR_EXPR:
14038 case TRUNC_MOD_EXPR:
14039 case FLOOR_MOD_EXPR:
14040 case TRUTH_ANDIF_EXPR:
14041 case TRUTH_ORIF_EXPR:
14042 case TRUTH_AND_EXPR:
14043 case TRUTH_OR_EXPR:
14044 case RSHIFT_EXPR:
14045 case LSHIFT_EXPR:
14046 case RROTATE_EXPR:
14047 case LROTATE_EXPR:
14048 case EQ_EXPR:
14049 case NE_EXPR:
14050 case MAX_EXPR:
14051 case MIN_EXPR:
14052 case LE_EXPR:
14053 case GE_EXPR:
14054 case LT_EXPR:
14055 case GT_EXPR:
14056 case COMPOUND_EXPR:
14057 case DOTSTAR_EXPR:
14058 case MEMBER_REF:
14059 case PREDECREMENT_EXPR:
14060 case PREINCREMENT_EXPR:
14061 case POSTDECREMENT_EXPR:
14062 case POSTINCREMENT_EXPR:
14064 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14065 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14066 return build_nt (code, op0, op1);
14069 case SCOPE_REF:
14071 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14072 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14073 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14074 QUALIFIED_NAME_IS_TEMPLATE (t));
14077 case ARRAY_REF:
14079 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14080 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14081 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14084 case CALL_EXPR:
14086 int n = VL_EXP_OPERAND_LENGTH (t);
14087 tree result = build_vl_exp (CALL_EXPR, n);
14088 int i;
14089 for (i = 0; i < n; i++)
14090 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14091 complain, in_decl);
14092 return result;
14095 case COND_EXPR:
14096 case MODOP_EXPR:
14097 case PSEUDO_DTOR_EXPR:
14098 case VEC_PERM_EXPR:
14100 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14101 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14102 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14103 r = build_nt (code, op0, op1, op2);
14104 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14105 return r;
14108 case NEW_EXPR:
14110 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14111 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14112 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14113 r = build_nt (code, op0, op1, op2);
14114 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14115 return r;
14118 case DELETE_EXPR:
14120 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14121 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14122 r = build_nt (code, op0, op1);
14123 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14124 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14125 return r;
14128 case TEMPLATE_ID_EXPR:
14130 /* Substituted template arguments */
14131 tree fn = TREE_OPERAND (t, 0);
14132 tree targs = TREE_OPERAND (t, 1);
14134 fn = tsubst_copy (fn, args, complain, in_decl);
14135 if (targs)
14136 targs = tsubst_template_args (targs, args, complain, in_decl);
14138 return lookup_template_function (fn, targs);
14141 case TREE_LIST:
14143 tree purpose, value, chain;
14145 if (t == void_list_node)
14146 return t;
14148 purpose = TREE_PURPOSE (t);
14149 if (purpose)
14150 purpose = tsubst_copy (purpose, args, complain, in_decl);
14151 value = TREE_VALUE (t);
14152 if (value)
14153 value = tsubst_copy (value, args, complain, in_decl);
14154 chain = TREE_CHAIN (t);
14155 if (chain && chain != void_type_node)
14156 chain = tsubst_copy (chain, args, complain, in_decl);
14157 if (purpose == TREE_PURPOSE (t)
14158 && value == TREE_VALUE (t)
14159 && chain == TREE_CHAIN (t))
14160 return t;
14161 return tree_cons (purpose, value, chain);
14164 case RECORD_TYPE:
14165 case UNION_TYPE:
14166 case ENUMERAL_TYPE:
14167 case INTEGER_TYPE:
14168 case TEMPLATE_TYPE_PARM:
14169 case TEMPLATE_TEMPLATE_PARM:
14170 case BOUND_TEMPLATE_TEMPLATE_PARM:
14171 case TEMPLATE_PARM_INDEX:
14172 case POINTER_TYPE:
14173 case REFERENCE_TYPE:
14174 case OFFSET_TYPE:
14175 case FUNCTION_TYPE:
14176 case METHOD_TYPE:
14177 case ARRAY_TYPE:
14178 case TYPENAME_TYPE:
14179 case UNBOUND_CLASS_TEMPLATE:
14180 case TYPEOF_TYPE:
14181 case DECLTYPE_TYPE:
14182 case TYPE_DECL:
14183 return tsubst (t, args, complain, in_decl);
14185 case USING_DECL:
14186 t = DECL_NAME (t);
14187 /* Fall through. */
14188 case IDENTIFIER_NODE:
14189 if (IDENTIFIER_TYPENAME_P (t))
14191 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14192 return mangle_conv_op_name_for_type (new_type);
14194 else
14195 return t;
14197 case CONSTRUCTOR:
14198 /* This is handled by tsubst_copy_and_build. */
14199 gcc_unreachable ();
14201 case VA_ARG_EXPR:
14203 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14204 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14205 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14208 case CLEANUP_POINT_EXPR:
14209 /* We shouldn't have built any of these during initial template
14210 generation. Instead, they should be built during instantiation
14211 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14212 gcc_unreachable ();
14214 case OFFSET_REF:
14216 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14217 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14218 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14219 r = build2 (code, type, op0, op1);
14220 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14221 if (!mark_used (TREE_OPERAND (r, 1), complain)
14222 && !(complain & tf_error))
14223 return error_mark_node;
14224 return r;
14227 case EXPR_PACK_EXPANSION:
14228 error ("invalid use of pack expansion expression");
14229 return error_mark_node;
14231 case NONTYPE_ARGUMENT_PACK:
14232 error ("use %<...%> to expand argument pack");
14233 return error_mark_node;
14235 case VOID_CST:
14236 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14237 return t;
14239 case INTEGER_CST:
14240 case REAL_CST:
14241 case STRING_CST:
14242 case COMPLEX_CST:
14244 /* Instantiate any typedefs in the type. */
14245 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14246 r = fold_convert (type, t);
14247 gcc_assert (TREE_CODE (r) == code);
14248 return r;
14251 case PTRMEM_CST:
14252 /* These can sometimes show up in a partial instantiation, but never
14253 involve template parms. */
14254 gcc_assert (!uses_template_parms (t));
14255 return t;
14257 case UNARY_LEFT_FOLD_EXPR:
14258 return tsubst_unary_left_fold (t, args, complain, in_decl);
14259 case UNARY_RIGHT_FOLD_EXPR:
14260 return tsubst_unary_right_fold (t, args, complain, in_decl);
14261 case BINARY_LEFT_FOLD_EXPR:
14262 return tsubst_binary_left_fold (t, args, complain, in_decl);
14263 case BINARY_RIGHT_FOLD_EXPR:
14264 return tsubst_binary_right_fold (t, args, complain, in_decl);
14266 default:
14267 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
14268 gcc_checking_assert (false);
14269 return t;
14273 /* Helper function for tsubst_omp_clauses, used for instantiation of
14274 OMP_CLAUSE_DECL of clauses that handles also OpenMP array sections
14275 represented with TREE_LIST. */
14277 static tree
14278 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14279 tree in_decl)
14281 if (TREE_CODE (decl) == TREE_LIST)
14283 tree low_bound
14284 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14285 /*integral_constant_expression_p=*/false);
14286 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14287 /*integral_constant_expression_p=*/false);
14288 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14289 in_decl);
14290 if (TREE_PURPOSE (decl) == low_bound
14291 && TREE_VALUE (decl) == length
14292 && TREE_CHAIN (decl) == chain)
14293 return decl;
14294 return tree_cons (low_bound, length, chain);
14296 return tsubst_copy (decl, args, complain, in_decl);
14299 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14301 static tree
14302 tsubst_omp_clauses (tree clauses, bool declare_simd,
14303 tree args, tsubst_flags_t complain, tree in_decl)
14305 tree new_clauses = NULL, nc, oc;
14307 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14309 nc = copy_node (oc);
14310 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14311 new_clauses = nc;
14313 switch (OMP_CLAUSE_CODE (nc))
14315 case OMP_CLAUSE_LASTPRIVATE:
14316 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14318 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14319 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14320 in_decl, /*integral_constant_expression_p=*/false);
14321 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14322 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14324 /* FALLTHRU */
14325 case OMP_CLAUSE_PRIVATE:
14326 case OMP_CLAUSE_SHARED:
14327 case OMP_CLAUSE_FIRSTPRIVATE:
14328 case OMP_CLAUSE_COPYIN:
14329 case OMP_CLAUSE_COPYPRIVATE:
14330 case OMP_CLAUSE_UNIFORM:
14331 OMP_CLAUSE_DECL (nc) = tsubst_copy (OMP_CLAUSE_DECL (oc), args,
14332 complain, in_decl);
14333 break;
14334 case OMP_CLAUSE_DEPEND:
14335 case OMP_CLAUSE_FROM:
14336 case OMP_CLAUSE_TO:
14337 case OMP_CLAUSE_MAP:
14338 OMP_CLAUSE_DECL (nc)
14339 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14340 in_decl);
14341 break;
14342 case OMP_CLAUSE_IF:
14343 case OMP_CLAUSE_NUM_THREADS:
14344 case OMP_CLAUSE_SCHEDULE:
14345 case OMP_CLAUSE_COLLAPSE:
14346 case OMP_CLAUSE_FINAL:
14347 case OMP_CLAUSE_DEVICE:
14348 case OMP_CLAUSE_DIST_SCHEDULE:
14349 case OMP_CLAUSE_NUM_TEAMS:
14350 case OMP_CLAUSE_THREAD_LIMIT:
14351 case OMP_CLAUSE_SAFELEN:
14352 case OMP_CLAUSE_SIMDLEN:
14353 OMP_CLAUSE_OPERAND (nc, 0)
14354 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14355 in_decl, /*integral_constant_expression_p=*/false);
14356 break;
14357 case OMP_CLAUSE_REDUCTION:
14358 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14360 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14361 if (TREE_CODE (placeholder) == SCOPE_REF)
14363 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14364 complain, in_decl);
14365 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14366 = build_qualified_name (NULL_TREE, scope,
14367 TREE_OPERAND (placeholder, 1),
14368 false);
14370 else
14371 gcc_assert (identifier_p (placeholder));
14373 OMP_CLAUSE_DECL (nc) = tsubst_copy (OMP_CLAUSE_DECL (oc), args,
14374 complain, in_decl);
14375 break;
14376 case OMP_CLAUSE_LINEAR:
14377 case OMP_CLAUSE_ALIGNED:
14378 OMP_CLAUSE_DECL (nc) = tsubst_copy (OMP_CLAUSE_DECL (oc), args,
14379 complain, in_decl);
14380 OMP_CLAUSE_OPERAND (nc, 1)
14381 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14382 in_decl, /*integral_constant_expression_p=*/false);
14383 break;
14384 case OMP_CLAUSE_NOWAIT:
14385 case OMP_CLAUSE_ORDERED:
14386 case OMP_CLAUSE_DEFAULT:
14387 case OMP_CLAUSE_UNTIED:
14388 case OMP_CLAUSE_MERGEABLE:
14389 case OMP_CLAUSE_INBRANCH:
14390 case OMP_CLAUSE_NOTINBRANCH:
14391 case OMP_CLAUSE_PROC_BIND:
14392 case OMP_CLAUSE_FOR:
14393 case OMP_CLAUSE_PARALLEL:
14394 case OMP_CLAUSE_SECTIONS:
14395 case OMP_CLAUSE_TASKGROUP:
14396 break;
14397 default:
14398 gcc_unreachable ();
14402 new_clauses = nreverse (new_clauses);
14403 if (!declare_simd)
14404 new_clauses = finish_omp_clauses (new_clauses);
14405 return new_clauses;
14408 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14410 static tree
14411 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14412 tree in_decl)
14414 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14416 tree purpose, value, chain;
14418 if (t == NULL)
14419 return t;
14421 if (TREE_CODE (t) != TREE_LIST)
14422 return tsubst_copy_and_build (t, args, complain, in_decl,
14423 /*function_p=*/false,
14424 /*integral_constant_expression_p=*/false);
14426 if (t == void_list_node)
14427 return t;
14429 purpose = TREE_PURPOSE (t);
14430 if (purpose)
14431 purpose = RECUR (purpose);
14432 value = TREE_VALUE (t);
14433 if (value)
14435 if (TREE_CODE (value) != LABEL_DECL)
14436 value = RECUR (value);
14437 else
14439 value = lookup_label (DECL_NAME (value));
14440 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14441 TREE_USED (value) = 1;
14444 chain = TREE_CHAIN (t);
14445 if (chain && chain != void_type_node)
14446 chain = RECUR (chain);
14447 return tree_cons (purpose, value, chain);
14448 #undef RECUR
14451 /* Substitute one OMP_FOR iterator. */
14453 static void
14454 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
14455 tree condv, tree incrv, tree *clauses,
14456 tree args, tsubst_flags_t complain, tree in_decl,
14457 bool integral_constant_expression_p)
14459 #define RECUR(NODE) \
14460 tsubst_expr ((NODE), args, complain, in_decl, \
14461 integral_constant_expression_p)
14462 tree decl, init, cond, incr;
14464 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14465 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14466 decl = TREE_OPERAND (init, 0);
14467 init = TREE_OPERAND (init, 1);
14468 tree decl_expr = NULL_TREE;
14469 if (init && TREE_CODE (init) == DECL_EXPR)
14471 /* We need to jump through some hoops to handle declarations in the
14472 for-init-statement, since we might need to handle auto deduction,
14473 but we need to keep control of initialization. */
14474 decl_expr = init;
14475 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14476 decl = tsubst_decl (decl, args, complain);
14478 else
14479 decl = RECUR (decl);
14480 init = RECUR (init);
14482 tree auto_node = type_uses_auto (TREE_TYPE (decl));
14483 if (auto_node && init)
14484 TREE_TYPE (decl)
14485 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
14487 gcc_assert (!type_dependent_expression_p (decl));
14489 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
14491 if (decl_expr)
14493 /* Declare the variable, but don't let that initialize it. */
14494 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
14495 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
14496 RECUR (decl_expr);
14497 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
14500 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
14501 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14502 if (TREE_CODE (incr) == MODIFY_EXPR)
14504 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14505 tree rhs = RECUR (TREE_OPERAND (incr, 1));
14506 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
14507 NOP_EXPR, rhs, complain);
14509 else
14510 incr = RECUR (incr);
14511 TREE_VEC_ELT (declv, i) = decl;
14512 TREE_VEC_ELT (initv, i) = init;
14513 TREE_VEC_ELT (condv, i) = cond;
14514 TREE_VEC_ELT (incrv, i) = incr;
14515 return;
14518 if (decl_expr)
14520 /* Declare and initialize the variable. */
14521 RECUR (decl_expr);
14522 init = NULL_TREE;
14524 else if (init)
14526 tree c;
14527 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
14529 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
14530 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
14531 && OMP_CLAUSE_DECL (c) == decl)
14532 break;
14533 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
14534 && OMP_CLAUSE_DECL (c) == decl)
14535 error ("iteration variable %qD should not be firstprivate", decl);
14536 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
14537 && OMP_CLAUSE_DECL (c) == decl)
14538 error ("iteration variable %qD should not be reduction", decl);
14540 if (c == NULL)
14542 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
14543 OMP_CLAUSE_DECL (c) = decl;
14544 c = finish_omp_clauses (c);
14545 if (c)
14547 OMP_CLAUSE_CHAIN (c) = *clauses;
14548 *clauses = c;
14552 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
14553 if (COMPARISON_CLASS_P (cond))
14555 tree op0 = RECUR (TREE_OPERAND (cond, 0));
14556 tree op1 = RECUR (TREE_OPERAND (cond, 1));
14557 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
14559 else
14560 cond = RECUR (cond);
14561 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
14562 switch (TREE_CODE (incr))
14564 case PREINCREMENT_EXPR:
14565 case PREDECREMENT_EXPR:
14566 case POSTINCREMENT_EXPR:
14567 case POSTDECREMENT_EXPR:
14568 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
14569 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
14570 break;
14571 case MODIFY_EXPR:
14572 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14573 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14575 tree rhs = TREE_OPERAND (incr, 1);
14576 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14577 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14578 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14579 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14580 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14581 rhs0, rhs1));
14583 else
14584 incr = RECUR (incr);
14585 break;
14586 case MODOP_EXPR:
14587 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
14588 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
14590 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14591 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14592 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
14593 TREE_TYPE (decl), lhs,
14594 RECUR (TREE_OPERAND (incr, 2))));
14596 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
14597 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
14598 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
14600 tree rhs = TREE_OPERAND (incr, 2);
14601 tree lhs = RECUR (TREE_OPERAND (incr, 0));
14602 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
14603 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
14604 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
14605 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
14606 rhs0, rhs1));
14608 else
14609 incr = RECUR (incr);
14610 break;
14611 default:
14612 incr = RECUR (incr);
14613 break;
14616 TREE_VEC_ELT (declv, i) = decl;
14617 TREE_VEC_ELT (initv, i) = init;
14618 TREE_VEC_ELT (condv, i) = cond;
14619 TREE_VEC_ELT (incrv, i) = incr;
14620 #undef RECUR
14623 /* Like tsubst_copy for expressions, etc. but also does semantic
14624 processing. */
14626 tree
14627 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
14628 bool integral_constant_expression_p)
14630 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
14631 #define RECUR(NODE) \
14632 tsubst_expr ((NODE), args, complain, in_decl, \
14633 integral_constant_expression_p)
14635 tree stmt, tmp;
14636 tree r;
14637 location_t loc;
14639 if (t == NULL_TREE || t == error_mark_node)
14640 return t;
14642 loc = input_location;
14643 if (EXPR_HAS_LOCATION (t))
14644 input_location = EXPR_LOCATION (t);
14645 if (STATEMENT_CODE_P (TREE_CODE (t)))
14646 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
14648 switch (TREE_CODE (t))
14650 case STATEMENT_LIST:
14652 tree_stmt_iterator i;
14653 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
14654 RECUR (tsi_stmt (i));
14655 break;
14658 case CTOR_INITIALIZER:
14659 finish_mem_initializers (tsubst_initializer_list
14660 (TREE_OPERAND (t, 0), args));
14661 break;
14663 case RETURN_EXPR:
14664 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
14665 break;
14667 case EXPR_STMT:
14668 tmp = RECUR (EXPR_STMT_EXPR (t));
14669 if (EXPR_STMT_STMT_EXPR_RESULT (t))
14670 finish_stmt_expr_expr (tmp, cur_stmt_expr);
14671 else
14672 finish_expr_stmt (tmp);
14673 break;
14675 case USING_STMT:
14676 do_using_directive (USING_STMT_NAMESPACE (t));
14677 break;
14679 case DECL_EXPR:
14681 tree decl, pattern_decl;
14682 tree init;
14684 pattern_decl = decl = DECL_EXPR_DECL (t);
14685 if (TREE_CODE (decl) == LABEL_DECL)
14686 finish_label_decl (DECL_NAME (decl));
14687 else if (TREE_CODE (decl) == USING_DECL)
14689 tree scope = USING_DECL_SCOPE (decl);
14690 tree name = DECL_NAME (decl);
14691 tree decl;
14693 scope = tsubst (scope, args, complain, in_decl);
14694 decl = lookup_qualified_name (scope, name,
14695 /*is_type_p=*/false,
14696 /*complain=*/false);
14697 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
14698 qualified_name_lookup_error (scope, name, decl, input_location);
14699 else
14700 do_local_using_decl (decl, scope, name);
14702 else if (DECL_PACK_P (decl))
14704 /* Don't build up decls for a variadic capture proxy, we'll
14705 instantiate the elements directly as needed. */
14706 break;
14708 else
14710 init = DECL_INITIAL (decl);
14711 decl = tsubst (decl, args, complain, in_decl);
14712 if (decl != error_mark_node)
14714 /* By marking the declaration as instantiated, we avoid
14715 trying to instantiate it. Since instantiate_decl can't
14716 handle local variables, and since we've already done
14717 all that needs to be done, that's the right thing to
14718 do. */
14719 if (VAR_P (decl))
14720 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14721 if (VAR_P (decl)
14722 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
14723 /* Anonymous aggregates are a special case. */
14724 finish_anon_union (decl);
14725 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
14727 DECL_CONTEXT (decl) = current_function_decl;
14728 if (DECL_NAME (decl) == this_identifier)
14730 tree lam = DECL_CONTEXT (current_function_decl);
14731 lam = CLASSTYPE_LAMBDA_EXPR (lam);
14732 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
14734 insert_capture_proxy (decl);
14736 else if (DECL_IMPLICIT_TYPEDEF_P (t))
14737 /* We already did a pushtag. */;
14738 else if (TREE_CODE (decl) == FUNCTION_DECL
14739 && DECL_OMP_DECLARE_REDUCTION_P (decl)
14740 && DECL_FUNCTION_SCOPE_P (pattern_decl))
14742 DECL_CONTEXT (decl) = NULL_TREE;
14743 pushdecl (decl);
14744 DECL_CONTEXT (decl) = current_function_decl;
14745 cp_check_omp_declare_reduction (decl);
14747 else
14749 int const_init = false;
14750 maybe_push_decl (decl);
14751 if (VAR_P (decl)
14752 && DECL_PRETTY_FUNCTION_P (decl))
14754 /* For __PRETTY_FUNCTION__ we have to adjust the
14755 initializer. */
14756 const char *const name
14757 = cxx_printable_name (current_function_decl, 2);
14758 init = cp_fname_init (name, &TREE_TYPE (decl));
14760 else
14761 init = tsubst_init (init, decl, args, complain, in_decl);
14763 if (VAR_P (decl))
14764 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
14765 (pattern_decl));
14766 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
14771 break;
14774 case FOR_STMT:
14775 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
14776 RECUR (FOR_INIT_STMT (t));
14777 finish_for_init_stmt (stmt);
14778 tmp = RECUR (FOR_COND (t));
14779 finish_for_cond (tmp, stmt, false);
14780 tmp = RECUR (FOR_EXPR (t));
14781 finish_for_expr (tmp, stmt);
14782 RECUR (FOR_BODY (t));
14783 finish_for_stmt (stmt);
14784 break;
14786 case RANGE_FOR_STMT:
14788 tree decl, expr;
14789 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
14790 decl = RANGE_FOR_DECL (t);
14791 decl = tsubst (decl, args, complain, in_decl);
14792 maybe_push_decl (decl);
14793 expr = RECUR (RANGE_FOR_EXPR (t));
14794 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
14795 RECUR (RANGE_FOR_BODY (t));
14796 finish_for_stmt (stmt);
14798 break;
14800 case WHILE_STMT:
14801 stmt = begin_while_stmt ();
14802 tmp = RECUR (WHILE_COND (t));
14803 finish_while_stmt_cond (tmp, stmt, false);
14804 RECUR (WHILE_BODY (t));
14805 finish_while_stmt (stmt);
14806 break;
14808 case DO_STMT:
14809 stmt = begin_do_stmt ();
14810 RECUR (DO_BODY (t));
14811 finish_do_body (stmt);
14812 tmp = RECUR (DO_COND (t));
14813 finish_do_stmt (tmp, stmt, false);
14814 break;
14816 case IF_STMT:
14817 stmt = begin_if_stmt ();
14818 tmp = RECUR (IF_COND (t));
14819 finish_if_stmt_cond (tmp, stmt);
14820 RECUR (THEN_CLAUSE (t));
14821 finish_then_clause (stmt);
14823 if (ELSE_CLAUSE (t))
14825 begin_else_clause (stmt);
14826 RECUR (ELSE_CLAUSE (t));
14827 finish_else_clause (stmt);
14830 finish_if_stmt (stmt);
14831 break;
14833 case BIND_EXPR:
14834 if (BIND_EXPR_BODY_BLOCK (t))
14835 stmt = begin_function_body ();
14836 else
14837 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
14838 ? BCS_TRY_BLOCK : 0);
14840 RECUR (BIND_EXPR_BODY (t));
14842 if (BIND_EXPR_BODY_BLOCK (t))
14843 finish_function_body (stmt);
14844 else
14845 finish_compound_stmt (stmt);
14846 break;
14848 case BREAK_STMT:
14849 finish_break_stmt ();
14850 break;
14852 case CONTINUE_STMT:
14853 finish_continue_stmt ();
14854 break;
14856 case SWITCH_STMT:
14857 stmt = begin_switch_stmt ();
14858 tmp = RECUR (SWITCH_STMT_COND (t));
14859 finish_switch_cond (tmp, stmt);
14860 RECUR (SWITCH_STMT_BODY (t));
14861 finish_switch_stmt (stmt);
14862 break;
14864 case CASE_LABEL_EXPR:
14866 tree low = RECUR (CASE_LOW (t));
14867 tree high = RECUR (CASE_HIGH (t));
14868 finish_case_label (EXPR_LOCATION (t), low, high);
14870 break;
14872 case LABEL_EXPR:
14874 tree decl = LABEL_EXPR_LABEL (t);
14875 tree label;
14877 label = finish_label_stmt (DECL_NAME (decl));
14878 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
14879 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
14881 break;
14883 case GOTO_EXPR:
14884 tmp = GOTO_DESTINATION (t);
14885 if (TREE_CODE (tmp) != LABEL_DECL)
14886 /* Computed goto's must be tsubst'd into. On the other hand,
14887 non-computed gotos must not be; the identifier in question
14888 will have no binding. */
14889 tmp = RECUR (tmp);
14890 else
14891 tmp = DECL_NAME (tmp);
14892 finish_goto_stmt (tmp);
14893 break;
14895 case ASM_EXPR:
14897 tree string = RECUR (ASM_STRING (t));
14898 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
14899 complain, in_decl);
14900 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
14901 complain, in_decl);
14902 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
14903 complain, in_decl);
14904 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
14905 complain, in_decl);
14906 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
14907 clobbers, labels);
14908 tree asm_expr = tmp;
14909 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
14910 asm_expr = TREE_OPERAND (asm_expr, 0);
14911 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
14913 break;
14915 case TRY_BLOCK:
14916 if (CLEANUP_P (t))
14918 stmt = begin_try_block ();
14919 RECUR (TRY_STMTS (t));
14920 finish_cleanup_try_block (stmt);
14921 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
14923 else
14925 tree compound_stmt = NULL_TREE;
14927 if (FN_TRY_BLOCK_P (t))
14928 stmt = begin_function_try_block (&compound_stmt);
14929 else
14930 stmt = begin_try_block ();
14932 RECUR (TRY_STMTS (t));
14934 if (FN_TRY_BLOCK_P (t))
14935 finish_function_try_block (stmt);
14936 else
14937 finish_try_block (stmt);
14939 RECUR (TRY_HANDLERS (t));
14940 if (FN_TRY_BLOCK_P (t))
14941 finish_function_handler_sequence (stmt, compound_stmt);
14942 else
14943 finish_handler_sequence (stmt);
14945 break;
14947 case HANDLER:
14949 tree decl = HANDLER_PARMS (t);
14951 if (decl)
14953 decl = tsubst (decl, args, complain, in_decl);
14954 /* Prevent instantiate_decl from trying to instantiate
14955 this variable. We've already done all that needs to be
14956 done. */
14957 if (decl != error_mark_node)
14958 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
14960 stmt = begin_handler ();
14961 finish_handler_parms (decl, stmt);
14962 RECUR (HANDLER_BODY (t));
14963 finish_handler (stmt);
14965 break;
14967 case TAG_DEFN:
14968 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
14969 if (CLASS_TYPE_P (tmp))
14971 /* Local classes are not independent templates; they are
14972 instantiated along with their containing function. And this
14973 way we don't have to deal with pushing out of one local class
14974 to instantiate a member of another local class. */
14975 tree fn;
14976 /* Closures are handled by the LAMBDA_EXPR. */
14977 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
14978 complete_type (tmp);
14979 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
14980 if (!DECL_ARTIFICIAL (fn))
14981 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
14983 break;
14985 case STATIC_ASSERT:
14987 tree condition;
14989 ++c_inhibit_evaluation_warnings;
14990 condition =
14991 tsubst_expr (STATIC_ASSERT_CONDITION (t),
14992 args,
14993 complain, in_decl,
14994 /*integral_constant_expression_p=*/true);
14995 --c_inhibit_evaluation_warnings;
14997 finish_static_assert (condition,
14998 STATIC_ASSERT_MESSAGE (t),
14999 STATIC_ASSERT_SOURCE_LOCATION (t),
15000 /*member_p=*/false);
15002 break;
15004 case OMP_PARALLEL:
15005 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false,
15006 args, complain, in_decl);
15007 stmt = begin_omp_parallel ();
15008 RECUR (OMP_PARALLEL_BODY (t));
15009 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15010 = OMP_PARALLEL_COMBINED (t);
15011 break;
15013 case OMP_TASK:
15014 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false,
15015 args, complain, in_decl);
15016 stmt = begin_omp_task ();
15017 RECUR (OMP_TASK_BODY (t));
15018 finish_omp_task (tmp, stmt);
15019 break;
15021 case OMP_FOR:
15022 case OMP_SIMD:
15023 case CILK_SIMD:
15024 case CILK_FOR:
15025 case OMP_DISTRIBUTE:
15027 tree clauses, body, pre_body;
15028 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15029 tree incrv = NULL_TREE;
15030 int i;
15032 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
15033 args, complain, in_decl);
15034 if (OMP_FOR_INIT (t) != NULL_TREE)
15036 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15037 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15038 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15039 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15042 stmt = begin_omp_structured_block ();
15044 pre_body = push_stmt_list ();
15045 RECUR (OMP_FOR_PRE_BODY (t));
15046 pre_body = pop_stmt_list (pre_body);
15048 if (OMP_FOR_INIT (t) != NULL_TREE)
15049 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15050 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
15051 &clauses, args, complain, in_decl,
15052 integral_constant_expression_p);
15054 body = push_stmt_list ();
15055 RECUR (OMP_FOR_BODY (t));
15056 body = pop_stmt_list (body);
15058 if (OMP_FOR_INIT (t) != NULL_TREE)
15059 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, initv,
15060 condv, incrv, body, pre_body, clauses);
15061 else
15063 t = make_node (TREE_CODE (t));
15064 TREE_TYPE (t) = void_type_node;
15065 OMP_FOR_BODY (t) = body;
15066 OMP_FOR_PRE_BODY (t) = pre_body;
15067 OMP_FOR_CLAUSES (t) = clauses;
15068 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15069 add_stmt (t);
15072 add_stmt (finish_omp_structured_block (stmt));
15074 break;
15076 case OMP_SECTIONS:
15077 case OMP_SINGLE:
15078 case OMP_TEAMS:
15079 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
15080 args, complain, in_decl);
15081 stmt = push_stmt_list ();
15082 RECUR (OMP_BODY (t));
15083 stmt = pop_stmt_list (stmt);
15085 t = copy_node (t);
15086 OMP_BODY (t) = stmt;
15087 OMP_CLAUSES (t) = tmp;
15088 add_stmt (t);
15089 break;
15091 case OMP_TARGET_DATA:
15092 case OMP_TARGET:
15093 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
15094 args, complain, in_decl);
15095 keep_next_level (true);
15096 stmt = begin_omp_structured_block ();
15098 RECUR (OMP_BODY (t));
15099 stmt = finish_omp_structured_block (stmt);
15101 t = copy_node (t);
15102 OMP_BODY (t) = stmt;
15103 OMP_CLAUSES (t) = tmp;
15104 add_stmt (t);
15105 break;
15107 case OMP_TARGET_UPDATE:
15108 tmp = tsubst_omp_clauses (OMP_TARGET_UPDATE_CLAUSES (t), false,
15109 args, complain, in_decl);
15110 t = copy_node (t);
15111 OMP_TARGET_UPDATE_CLAUSES (t) = tmp;
15112 add_stmt (t);
15113 break;
15115 case OMP_SECTION:
15116 case OMP_CRITICAL:
15117 case OMP_MASTER:
15118 case OMP_TASKGROUP:
15119 case OMP_ORDERED:
15120 stmt = push_stmt_list ();
15121 RECUR (OMP_BODY (t));
15122 stmt = pop_stmt_list (stmt);
15124 t = copy_node (t);
15125 OMP_BODY (t) = stmt;
15126 add_stmt (t);
15127 break;
15129 case OMP_ATOMIC:
15130 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15131 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15133 tree op1 = TREE_OPERAND (t, 1);
15134 tree rhs1 = NULL_TREE;
15135 tree lhs, rhs;
15136 if (TREE_CODE (op1) == COMPOUND_EXPR)
15138 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15139 op1 = TREE_OPERAND (op1, 1);
15141 lhs = RECUR (TREE_OPERAND (op1, 0));
15142 rhs = RECUR (TREE_OPERAND (op1, 1));
15143 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15144 NULL_TREE, NULL_TREE, rhs1,
15145 OMP_ATOMIC_SEQ_CST (t));
15147 else
15149 tree op1 = TREE_OPERAND (t, 1);
15150 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15151 tree rhs1 = NULL_TREE;
15152 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15153 enum tree_code opcode = NOP_EXPR;
15154 if (code == OMP_ATOMIC_READ)
15156 v = RECUR (TREE_OPERAND (op1, 0));
15157 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15159 else if (code == OMP_ATOMIC_CAPTURE_OLD
15160 || code == OMP_ATOMIC_CAPTURE_NEW)
15162 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15163 v = RECUR (TREE_OPERAND (op1, 0));
15164 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15165 if (TREE_CODE (op11) == COMPOUND_EXPR)
15167 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15168 op11 = TREE_OPERAND (op11, 1);
15170 lhs = RECUR (TREE_OPERAND (op11, 0));
15171 rhs = RECUR (TREE_OPERAND (op11, 1));
15172 opcode = TREE_CODE (op11);
15173 if (opcode == MODIFY_EXPR)
15174 opcode = NOP_EXPR;
15176 else
15178 code = OMP_ATOMIC;
15179 lhs = RECUR (TREE_OPERAND (op1, 0));
15180 rhs = RECUR (TREE_OPERAND (op1, 1));
15182 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15183 OMP_ATOMIC_SEQ_CST (t));
15185 break;
15187 case TRANSACTION_EXPR:
15189 int flags = 0;
15190 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15191 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15193 if (TRANSACTION_EXPR_IS_STMT (t))
15195 tree body = TRANSACTION_EXPR_BODY (t);
15196 tree noex = NULL_TREE;
15197 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15199 noex = MUST_NOT_THROW_COND (body);
15200 if (noex == NULL_TREE)
15201 noex = boolean_true_node;
15202 body = TREE_OPERAND (body, 0);
15204 stmt = begin_transaction_stmt (input_location, NULL, flags);
15205 RECUR (body);
15206 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15208 else
15210 stmt = build_transaction_expr (EXPR_LOCATION (t),
15211 RECUR (TRANSACTION_EXPR_BODY (t)),
15212 flags, NULL_TREE);
15213 RETURN (stmt);
15216 break;
15218 case MUST_NOT_THROW_EXPR:
15220 tree op0 = RECUR (TREE_OPERAND (t, 0));
15221 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15222 RETURN (build_must_not_throw_expr (op0, cond));
15225 case EXPR_PACK_EXPANSION:
15226 error ("invalid use of pack expansion expression");
15227 RETURN (error_mark_node);
15229 case NONTYPE_ARGUMENT_PACK:
15230 error ("use %<...%> to expand argument pack");
15231 RETURN (error_mark_node);
15233 case CILK_SPAWN_STMT:
15234 cfun->calls_cilk_spawn = 1;
15235 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15237 case CILK_SYNC_STMT:
15238 RETURN (build_cilk_sync ());
15240 case COMPOUND_EXPR:
15241 tmp = RECUR (TREE_OPERAND (t, 0));
15242 if (tmp == NULL_TREE)
15243 /* If the first operand was a statement, we're done with it. */
15244 RETURN (RECUR (TREE_OPERAND (t, 1)));
15245 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15246 RECUR (TREE_OPERAND (t, 1)),
15247 complain));
15249 case ANNOTATE_EXPR:
15250 tmp = RECUR (TREE_OPERAND (t, 0));
15251 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15252 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15254 default:
15255 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15257 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15258 /*function_p=*/false,
15259 integral_constant_expression_p));
15262 RETURN (NULL_TREE);
15263 out:
15264 input_location = loc;
15265 return r;
15266 #undef RECUR
15267 #undef RETURN
15270 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15271 function. For description of the body see comment above
15272 cp_parser_omp_declare_reduction_exprs. */
15274 static void
15275 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15277 if (t == NULL_TREE || t == error_mark_node)
15278 return;
15280 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15282 tree_stmt_iterator tsi;
15283 int i;
15284 tree stmts[7];
15285 memset (stmts, 0, sizeof stmts);
15286 for (i = 0, tsi = tsi_start (t);
15287 i < 7 && !tsi_end_p (tsi);
15288 i++, tsi_next (&tsi))
15289 stmts[i] = tsi_stmt (tsi);
15290 gcc_assert (tsi_end_p (tsi));
15292 if (i >= 3)
15294 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15295 && TREE_CODE (stmts[1]) == DECL_EXPR);
15296 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15297 args, complain, in_decl);
15298 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15299 args, complain, in_decl);
15300 DECL_CONTEXT (omp_out) = current_function_decl;
15301 DECL_CONTEXT (omp_in) = current_function_decl;
15302 keep_next_level (true);
15303 tree block = begin_omp_structured_block ();
15304 tsubst_expr (stmts[2], args, complain, in_decl, false);
15305 block = finish_omp_structured_block (block);
15306 block = maybe_cleanup_point_expr_void (block);
15307 add_decl_expr (omp_out);
15308 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15309 TREE_NO_WARNING (omp_out) = 1;
15310 add_decl_expr (omp_in);
15311 finish_expr_stmt (block);
15313 if (i >= 6)
15315 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15316 && TREE_CODE (stmts[4]) == DECL_EXPR);
15317 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15318 args, complain, in_decl);
15319 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15320 args, complain, in_decl);
15321 DECL_CONTEXT (omp_priv) = current_function_decl;
15322 DECL_CONTEXT (omp_orig) = current_function_decl;
15323 keep_next_level (true);
15324 tree block = begin_omp_structured_block ();
15325 tsubst_expr (stmts[5], args, complain, in_decl, false);
15326 block = finish_omp_structured_block (block);
15327 block = maybe_cleanup_point_expr_void (block);
15328 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
15329 add_decl_expr (omp_priv);
15330 add_decl_expr (omp_orig);
15331 finish_expr_stmt (block);
15332 if (i == 7)
15333 add_decl_expr (omp_orig);
15337 /* T is a postfix-expression that is not being used in a function
15338 call. Return the substituted version of T. */
15340 static tree
15341 tsubst_non_call_postfix_expression (tree t, tree args,
15342 tsubst_flags_t complain,
15343 tree in_decl)
15345 if (TREE_CODE (t) == SCOPE_REF)
15346 t = tsubst_qualified_id (t, args, complain, in_decl,
15347 /*done=*/false, /*address_p=*/false);
15348 else
15349 t = tsubst_copy_and_build (t, args, complain, in_decl,
15350 /*function_p=*/false,
15351 /*integral_constant_expression_p=*/false);
15353 return t;
15356 /* Like tsubst but deals with expressions and performs semantic
15357 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15359 tree
15360 tsubst_copy_and_build (tree t,
15361 tree args,
15362 tsubst_flags_t complain,
15363 tree in_decl,
15364 bool function_p,
15365 bool integral_constant_expression_p)
15367 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15368 #define RECUR(NODE) \
15369 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15370 /*function_p=*/false, \
15371 integral_constant_expression_p)
15373 tree retval, op1;
15374 location_t loc;
15376 if (t == NULL_TREE || t == error_mark_node)
15377 return t;
15379 loc = input_location;
15380 if (EXPR_HAS_LOCATION (t))
15381 input_location = EXPR_LOCATION (t);
15383 /* N3276 decltype magic only applies to calls at the top level or on the
15384 right side of a comma. */
15385 tsubst_flags_t decltype_flag = (complain & tf_decltype);
15386 complain &= ~tf_decltype;
15388 switch (TREE_CODE (t))
15390 case USING_DECL:
15391 t = DECL_NAME (t);
15392 /* Fall through. */
15393 case IDENTIFIER_NODE:
15395 tree decl;
15396 cp_id_kind idk;
15397 bool non_integral_constant_expression_p;
15398 const char *error_msg;
15400 if (IDENTIFIER_TYPENAME_P (t))
15402 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15403 t = mangle_conv_op_name_for_type (new_type);
15406 /* Look up the name. */
15407 decl = lookup_name (t);
15409 /* By convention, expressions use ERROR_MARK_NODE to indicate
15410 failure, not NULL_TREE. */
15411 if (decl == NULL_TREE)
15412 decl = error_mark_node;
15414 decl = finish_id_expression (t, decl, NULL_TREE,
15415 &idk,
15416 integral_constant_expression_p,
15417 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
15418 &non_integral_constant_expression_p,
15419 /*template_p=*/false,
15420 /*done=*/true,
15421 /*address_p=*/false,
15422 /*template_arg_p=*/false,
15423 &error_msg,
15424 input_location);
15425 if (error_msg)
15426 error (error_msg);
15427 if (!function_p && identifier_p (decl))
15429 if (complain & tf_error)
15430 unqualified_name_lookup_error (decl);
15431 decl = error_mark_node;
15433 RETURN (decl);
15436 case TEMPLATE_ID_EXPR:
15438 tree object;
15439 tree templ = RECUR (TREE_OPERAND (t, 0));
15440 tree targs = TREE_OPERAND (t, 1);
15442 if (targs)
15443 targs = tsubst_template_args (targs, args, complain, in_decl);
15444 if (targs == error_mark_node)
15445 return error_mark_node;
15447 if (variable_template_p (templ))
15449 templ = lookup_template_variable (templ, targs);
15450 if (!any_dependent_template_arguments_p (targs))
15452 templ = finish_template_variable (templ, complain);
15453 mark_used (templ);
15455 RETURN (convert_from_reference (templ));
15458 if (TREE_CODE (templ) == COMPONENT_REF)
15460 object = TREE_OPERAND (templ, 0);
15461 templ = TREE_OPERAND (templ, 1);
15463 else
15464 object = NULL_TREE;
15465 templ = lookup_template_function (templ, targs);
15467 if (object)
15468 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
15469 object, templ, NULL_TREE));
15470 else
15471 RETURN (baselink_for_fns (templ));
15474 case INDIRECT_REF:
15476 tree r = RECUR (TREE_OPERAND (t, 0));
15478 if (REFERENCE_REF_P (t))
15480 /* A type conversion to reference type will be enclosed in
15481 such an indirect ref, but the substitution of the cast
15482 will have also added such an indirect ref. */
15483 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
15484 r = convert_from_reference (r);
15486 else
15487 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
15488 complain|decltype_flag);
15489 RETURN (r);
15492 case NOP_EXPR:
15494 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15495 tree op0 = RECUR (TREE_OPERAND (t, 0));
15496 RETURN (build_nop (type, op0));
15499 case IMPLICIT_CONV_EXPR:
15501 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15502 tree expr = RECUR (TREE_OPERAND (t, 0));
15503 int flags = LOOKUP_IMPLICIT;
15504 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
15505 flags = LOOKUP_NORMAL;
15506 RETURN (perform_implicit_conversion_flags (type, expr, complain,
15507 flags));
15510 case CONVERT_EXPR:
15512 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15513 tree op0 = RECUR (TREE_OPERAND (t, 0));
15514 RETURN (build1 (CONVERT_EXPR, type, op0));
15517 case CAST_EXPR:
15518 case REINTERPRET_CAST_EXPR:
15519 case CONST_CAST_EXPR:
15520 case DYNAMIC_CAST_EXPR:
15521 case STATIC_CAST_EXPR:
15523 tree type;
15524 tree op, r = NULL_TREE;
15526 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15527 if (integral_constant_expression_p
15528 && !cast_valid_in_integral_constant_expression_p (type))
15530 if (complain & tf_error)
15531 error ("a cast to a type other than an integral or "
15532 "enumeration type cannot appear in a constant-expression");
15533 RETURN (error_mark_node);
15536 op = RECUR (TREE_OPERAND (t, 0));
15538 warning_sentinel s(warn_useless_cast);
15539 switch (TREE_CODE (t))
15541 case CAST_EXPR:
15542 r = build_functional_cast (type, op, complain);
15543 break;
15544 case REINTERPRET_CAST_EXPR:
15545 r = build_reinterpret_cast (type, op, complain);
15546 break;
15547 case CONST_CAST_EXPR:
15548 r = build_const_cast (type, op, complain);
15549 break;
15550 case DYNAMIC_CAST_EXPR:
15551 r = build_dynamic_cast (type, op, complain);
15552 break;
15553 case STATIC_CAST_EXPR:
15554 r = build_static_cast (type, op, complain);
15555 break;
15556 default:
15557 gcc_unreachable ();
15560 RETURN (r);
15563 case POSTDECREMENT_EXPR:
15564 case POSTINCREMENT_EXPR:
15565 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15566 args, complain, in_decl);
15567 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
15568 complain|decltype_flag));
15570 case PREDECREMENT_EXPR:
15571 case PREINCREMENT_EXPR:
15572 case NEGATE_EXPR:
15573 case BIT_NOT_EXPR:
15574 case ABS_EXPR:
15575 case TRUTH_NOT_EXPR:
15576 case UNARY_PLUS_EXPR: /* Unary + */
15577 case REALPART_EXPR:
15578 case IMAGPART_EXPR:
15579 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
15580 RECUR (TREE_OPERAND (t, 0)),
15581 complain|decltype_flag));
15583 case FIX_TRUNC_EXPR:
15584 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
15585 0, complain));
15587 case ADDR_EXPR:
15588 op1 = TREE_OPERAND (t, 0);
15589 if (TREE_CODE (op1) == LABEL_DECL)
15590 RETURN (finish_label_address_expr (DECL_NAME (op1),
15591 EXPR_LOCATION (op1)));
15592 if (TREE_CODE (op1) == SCOPE_REF)
15593 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
15594 /*done=*/true, /*address_p=*/true);
15595 else
15596 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
15597 in_decl);
15598 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
15599 complain|decltype_flag));
15601 case PLUS_EXPR:
15602 case MINUS_EXPR:
15603 case MULT_EXPR:
15604 case TRUNC_DIV_EXPR:
15605 case CEIL_DIV_EXPR:
15606 case FLOOR_DIV_EXPR:
15607 case ROUND_DIV_EXPR:
15608 case EXACT_DIV_EXPR:
15609 case BIT_AND_EXPR:
15610 case BIT_IOR_EXPR:
15611 case BIT_XOR_EXPR:
15612 case TRUNC_MOD_EXPR:
15613 case FLOOR_MOD_EXPR:
15614 case TRUTH_ANDIF_EXPR:
15615 case TRUTH_ORIF_EXPR:
15616 case TRUTH_AND_EXPR:
15617 case TRUTH_OR_EXPR:
15618 case RSHIFT_EXPR:
15619 case LSHIFT_EXPR:
15620 case RROTATE_EXPR:
15621 case LROTATE_EXPR:
15622 case EQ_EXPR:
15623 case NE_EXPR:
15624 case MAX_EXPR:
15625 case MIN_EXPR:
15626 case LE_EXPR:
15627 case GE_EXPR:
15628 case LT_EXPR:
15629 case GT_EXPR:
15630 case MEMBER_REF:
15631 case DOTSTAR_EXPR:
15633 warning_sentinel s1(warn_type_limits);
15634 warning_sentinel s2(warn_div_by_zero);
15635 warning_sentinel s3(warn_logical_op);
15636 warning_sentinel s4(warn_tautological_compare);
15637 tree op0 = RECUR (TREE_OPERAND (t, 0));
15638 tree op1 = RECUR (TREE_OPERAND (t, 1));
15639 tree r = build_x_binary_op
15640 (input_location, TREE_CODE (t),
15641 op0,
15642 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
15643 ? ERROR_MARK
15644 : TREE_CODE (TREE_OPERAND (t, 0))),
15645 op1,
15646 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
15647 ? ERROR_MARK
15648 : TREE_CODE (TREE_OPERAND (t, 1))),
15649 /*overload=*/NULL,
15650 complain|decltype_flag);
15651 if (EXPR_P (r) && TREE_NO_WARNING (t))
15652 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
15654 RETURN (r);
15657 case POINTER_PLUS_EXPR:
15659 tree op0 = RECUR (TREE_OPERAND (t, 0));
15660 tree op1 = RECUR (TREE_OPERAND (t, 1));
15661 return fold_build_pointer_plus (op0, op1);
15664 case SCOPE_REF:
15665 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
15666 /*address_p=*/false));
15667 case ARRAY_REF:
15668 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15669 args, complain, in_decl);
15670 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
15671 RECUR (TREE_OPERAND (t, 1)),
15672 complain|decltype_flag));
15674 case ARRAY_NOTATION_REF:
15676 tree start_index, length, stride;
15677 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
15678 args, complain, in_decl);
15679 start_index = RECUR (ARRAY_NOTATION_START (t));
15680 length = RECUR (ARRAY_NOTATION_LENGTH (t));
15681 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
15682 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
15683 length, stride, TREE_TYPE (op1)));
15685 case SIZEOF_EXPR:
15686 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
15687 RETURN (tsubst_copy (t, args, complain, in_decl));
15688 /* Fall through */
15690 case ALIGNOF_EXPR:
15692 tree r;
15694 op1 = TREE_OPERAND (t, 0);
15695 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
15696 op1 = TREE_TYPE (op1);
15697 if (!args)
15699 /* When there are no ARGS, we are trying to evaluate a
15700 non-dependent expression from the parser. Trying to do
15701 the substitutions may not work. */
15702 if (!TYPE_P (op1))
15703 op1 = TREE_TYPE (op1);
15705 else
15707 ++cp_unevaluated_operand;
15708 ++c_inhibit_evaluation_warnings;
15709 if (TYPE_P (op1))
15710 op1 = tsubst (op1, args, complain, in_decl);
15711 else
15712 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15713 /*function_p=*/false,
15714 /*integral_constant_expression_p=*/
15715 false);
15716 --cp_unevaluated_operand;
15717 --c_inhibit_evaluation_warnings;
15719 if (TYPE_P (op1))
15720 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
15721 complain & tf_error);
15722 else
15723 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
15724 complain & tf_error);
15725 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
15727 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
15729 if (!processing_template_decl && TYPE_P (op1))
15731 r = build_min (SIZEOF_EXPR, size_type_node,
15732 build1 (NOP_EXPR, op1, error_mark_node));
15733 SIZEOF_EXPR_TYPE_P (r) = 1;
15735 else
15736 r = build_min (SIZEOF_EXPR, size_type_node, op1);
15737 TREE_SIDE_EFFECTS (r) = 0;
15738 TREE_READONLY (r) = 1;
15740 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
15742 RETURN (r);
15745 case AT_ENCODE_EXPR:
15747 op1 = TREE_OPERAND (t, 0);
15748 ++cp_unevaluated_operand;
15749 ++c_inhibit_evaluation_warnings;
15750 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15751 /*function_p=*/false,
15752 /*integral_constant_expression_p=*/false);
15753 --cp_unevaluated_operand;
15754 --c_inhibit_evaluation_warnings;
15755 RETURN (objc_build_encode_expr (op1));
15758 case NOEXCEPT_EXPR:
15759 op1 = TREE_OPERAND (t, 0);
15760 ++cp_unevaluated_operand;
15761 ++c_inhibit_evaluation_warnings;
15762 ++cp_noexcept_operand;
15763 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
15764 /*function_p=*/false,
15765 /*integral_constant_expression_p=*/false);
15766 --cp_unevaluated_operand;
15767 --c_inhibit_evaluation_warnings;
15768 --cp_noexcept_operand;
15769 RETURN (finish_noexcept_expr (op1, complain));
15771 case MODOP_EXPR:
15773 warning_sentinel s(warn_div_by_zero);
15774 tree lhs = RECUR (TREE_OPERAND (t, 0));
15775 tree rhs = RECUR (TREE_OPERAND (t, 2));
15776 tree r = build_x_modify_expr
15777 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
15778 complain|decltype_flag);
15779 /* TREE_NO_WARNING must be set if either the expression was
15780 parenthesized or it uses an operator such as >>= rather
15781 than plain assignment. In the former case, it was already
15782 set and must be copied. In the latter case,
15783 build_x_modify_expr sets it and it must not be reset
15784 here. */
15785 if (TREE_NO_WARNING (t))
15786 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
15788 RETURN (r);
15791 case ARROW_EXPR:
15792 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
15793 args, complain, in_decl);
15794 /* Remember that there was a reference to this entity. */
15795 if (DECL_P (op1)
15796 && !mark_used (op1, complain) && !(complain & tf_error))
15797 RETURN (error_mark_node);
15798 RETURN (build_x_arrow (input_location, op1, complain));
15800 case NEW_EXPR:
15802 tree placement = RECUR (TREE_OPERAND (t, 0));
15803 tree init = RECUR (TREE_OPERAND (t, 3));
15804 vec<tree, va_gc> *placement_vec;
15805 vec<tree, va_gc> *init_vec;
15806 tree ret;
15808 if (placement == NULL_TREE)
15809 placement_vec = NULL;
15810 else
15812 placement_vec = make_tree_vector ();
15813 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
15814 vec_safe_push (placement_vec, TREE_VALUE (placement));
15817 /* If there was an initializer in the original tree, but it
15818 instantiated to an empty list, then we should pass a
15819 non-NULL empty vector to tell build_new that it was an
15820 empty initializer() rather than no initializer. This can
15821 only happen when the initializer is a pack expansion whose
15822 parameter packs are of length zero. */
15823 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
15824 init_vec = NULL;
15825 else
15827 init_vec = make_tree_vector ();
15828 if (init == void_node)
15829 gcc_assert (init_vec != NULL);
15830 else
15832 for (; init != NULL_TREE; init = TREE_CHAIN (init))
15833 vec_safe_push (init_vec, TREE_VALUE (init));
15837 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
15838 tree op2 = RECUR (TREE_OPERAND (t, 2));
15839 ret = build_new (&placement_vec, op1, op2, &init_vec,
15840 NEW_EXPR_USE_GLOBAL (t),
15841 complain);
15843 if (placement_vec != NULL)
15844 release_tree_vector (placement_vec);
15845 if (init_vec != NULL)
15846 release_tree_vector (init_vec);
15848 RETURN (ret);
15851 case DELETE_EXPR:
15853 tree op0 = RECUR (TREE_OPERAND (t, 0));
15854 tree op1 = RECUR (TREE_OPERAND (t, 1));
15855 RETURN (delete_sanity (op0, op1,
15856 DELETE_EXPR_USE_VEC (t),
15857 DELETE_EXPR_USE_GLOBAL (t),
15858 complain));
15861 case COMPOUND_EXPR:
15863 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
15864 complain & ~tf_decltype, in_decl,
15865 /*function_p=*/false,
15866 integral_constant_expression_p);
15867 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
15868 op0,
15869 RECUR (TREE_OPERAND (t, 1)),
15870 complain|decltype_flag));
15873 case CALL_EXPR:
15875 tree function;
15876 vec<tree, va_gc> *call_args;
15877 unsigned int nargs, i;
15878 bool qualified_p;
15879 bool koenig_p;
15880 tree ret;
15882 function = CALL_EXPR_FN (t);
15883 /* When we parsed the expression, we determined whether or
15884 not Koenig lookup should be performed. */
15885 koenig_p = KOENIG_LOOKUP_P (t);
15886 if (TREE_CODE (function) == SCOPE_REF)
15888 qualified_p = true;
15889 function = tsubst_qualified_id (function, args, complain, in_decl,
15890 /*done=*/false,
15891 /*address_p=*/false);
15893 else if (koenig_p && identifier_p (function))
15895 /* Do nothing; calling tsubst_copy_and_build on an identifier
15896 would incorrectly perform unqualified lookup again.
15898 Note that we can also have an IDENTIFIER_NODE if the earlier
15899 unqualified lookup found a member function; in that case
15900 koenig_p will be false and we do want to do the lookup
15901 again to find the instantiated member function.
15903 FIXME but doing that causes c++/15272, so we need to stop
15904 using IDENTIFIER_NODE in that situation. */
15905 qualified_p = false;
15907 else
15909 if (TREE_CODE (function) == COMPONENT_REF)
15911 tree op = TREE_OPERAND (function, 1);
15913 qualified_p = (TREE_CODE (op) == SCOPE_REF
15914 || (BASELINK_P (op)
15915 && BASELINK_QUALIFIED_P (op)));
15917 else
15918 qualified_p = false;
15920 if (TREE_CODE (function) == ADDR_EXPR
15921 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
15922 /* Avoid error about taking the address of a constructor. */
15923 function = TREE_OPERAND (function, 0);
15925 function = tsubst_copy_and_build (function, args, complain,
15926 in_decl,
15927 !qualified_p,
15928 integral_constant_expression_p);
15930 if (BASELINK_P (function))
15931 qualified_p = true;
15934 nargs = call_expr_nargs (t);
15935 call_args = make_tree_vector ();
15936 for (i = 0; i < nargs; ++i)
15938 tree arg = CALL_EXPR_ARG (t, i);
15940 if (!PACK_EXPANSION_P (arg))
15941 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
15942 else
15944 /* Expand the pack expansion and push each entry onto
15945 CALL_ARGS. */
15946 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
15947 if (TREE_CODE (arg) == TREE_VEC)
15949 unsigned int len, j;
15951 len = TREE_VEC_LENGTH (arg);
15952 for (j = 0; j < len; ++j)
15954 tree value = TREE_VEC_ELT (arg, j);
15955 if (value != NULL_TREE)
15956 value = convert_from_reference (value);
15957 vec_safe_push (call_args, value);
15960 else
15962 /* A partial substitution. Add one entry. */
15963 vec_safe_push (call_args, arg);
15968 /* We do not perform argument-dependent lookup if normal
15969 lookup finds a non-function, in accordance with the
15970 expected resolution of DR 218. */
15971 if (koenig_p
15972 && ((is_overloaded_fn (function)
15973 /* If lookup found a member function, the Koenig lookup is
15974 not appropriate, even if an unqualified-name was used
15975 to denote the function. */
15976 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
15977 || identifier_p (function))
15978 /* Only do this when substitution turns a dependent call
15979 into a non-dependent call. */
15980 && type_dependent_expression_p_push (t)
15981 && !any_type_dependent_arguments_p (call_args))
15982 function = perform_koenig_lookup (function, call_args, tf_none);
15984 if (identifier_p (function)
15985 && !any_type_dependent_arguments_p (call_args))
15987 if (koenig_p && (complain & tf_warning_or_error))
15989 /* For backwards compatibility and good diagnostics, try
15990 the unqualified lookup again if we aren't in SFINAE
15991 context. */
15992 tree unq = (tsubst_copy_and_build
15993 (function, args, complain, in_decl, true,
15994 integral_constant_expression_p));
15995 if (unq == error_mark_node)
15996 RETURN (error_mark_node);
15998 if (unq != function)
16000 tree fn = unq;
16001 if (INDIRECT_REF_P (fn))
16002 fn = TREE_OPERAND (fn, 0);
16003 if (TREE_CODE (fn) == COMPONENT_REF)
16004 fn = TREE_OPERAND (fn, 1);
16005 if (is_overloaded_fn (fn))
16006 fn = get_first_fn (fn);
16007 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16008 "%qD was not declared in this scope, "
16009 "and no declarations were found by "
16010 "argument-dependent lookup at the point "
16011 "of instantiation", function))
16013 if (!DECL_P (fn))
16014 /* Can't say anything more. */;
16015 else if (DECL_CLASS_SCOPE_P (fn))
16017 location_t loc = EXPR_LOC_OR_LOC (t,
16018 input_location);
16019 inform (loc,
16020 "declarations in dependent base %qT are "
16021 "not found by unqualified lookup",
16022 DECL_CLASS_CONTEXT (fn));
16023 if (current_class_ptr)
16024 inform (loc,
16025 "use %<this->%D%> instead", function);
16026 else
16027 inform (loc,
16028 "use %<%T::%D%> instead",
16029 current_class_name, function);
16031 else
16032 inform (DECL_SOURCE_LOCATION (fn),
16033 "%qD declared here, later in the "
16034 "translation unit", fn);
16036 function = unq;
16039 if (identifier_p (function))
16041 if (complain & tf_error)
16042 unqualified_name_lookup_error (function);
16043 release_tree_vector (call_args);
16044 RETURN (error_mark_node);
16048 /* Remember that there was a reference to this entity. */
16049 if (DECL_P (function)
16050 && !mark_used (function, complain) && !(complain & tf_error))
16051 RETURN (error_mark_node);
16053 /* Put back tf_decltype for the actual call. */
16054 complain |= decltype_flag;
16056 if (TREE_CODE (function) == OFFSET_REF)
16057 ret = build_offset_ref_call_from_tree (function, &call_args,
16058 complain);
16059 else if (TREE_CODE (function) == COMPONENT_REF)
16061 tree instance = TREE_OPERAND (function, 0);
16062 tree fn = TREE_OPERAND (function, 1);
16064 if (processing_template_decl
16065 && (type_dependent_expression_p (instance)
16066 || (!BASELINK_P (fn)
16067 && TREE_CODE (fn) != FIELD_DECL)
16068 || type_dependent_expression_p (fn)
16069 || any_type_dependent_arguments_p (call_args)))
16070 ret = build_nt_call_vec (function, call_args);
16071 else if (!BASELINK_P (fn))
16072 ret = finish_call_expr (function, &call_args,
16073 /*disallow_virtual=*/false,
16074 /*koenig_p=*/false,
16075 complain);
16076 else
16077 ret = (build_new_method_call
16078 (instance, fn,
16079 &call_args, NULL_TREE,
16080 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16081 /*fn_p=*/NULL,
16082 complain));
16084 else
16085 ret = finish_call_expr (function, &call_args,
16086 /*disallow_virtual=*/qualified_p,
16087 koenig_p,
16088 complain);
16090 release_tree_vector (call_args);
16092 RETURN (ret);
16095 case COND_EXPR:
16097 tree cond = RECUR (TREE_OPERAND (t, 0));
16098 tree folded_cond = fold_non_dependent_expr (cond);
16099 tree exp1, exp2;
16101 if (TREE_CODE (folded_cond) == INTEGER_CST)
16103 if (integer_zerop (folded_cond))
16105 ++c_inhibit_evaluation_warnings;
16106 exp1 = RECUR (TREE_OPERAND (t, 1));
16107 --c_inhibit_evaluation_warnings;
16108 exp2 = RECUR (TREE_OPERAND (t, 2));
16110 else
16112 exp1 = RECUR (TREE_OPERAND (t, 1));
16113 ++c_inhibit_evaluation_warnings;
16114 exp2 = RECUR (TREE_OPERAND (t, 2));
16115 --c_inhibit_evaluation_warnings;
16117 cond = folded_cond;
16119 else
16121 exp1 = RECUR (TREE_OPERAND (t, 1));
16122 exp2 = RECUR (TREE_OPERAND (t, 2));
16125 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16126 cond, exp1, exp2, complain));
16129 case PSEUDO_DTOR_EXPR:
16131 tree op0 = RECUR (TREE_OPERAND (t, 0));
16132 tree op1 = RECUR (TREE_OPERAND (t, 1));
16133 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16134 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16135 input_location));
16138 case TREE_LIST:
16140 tree purpose, value, chain;
16142 if (t == void_list_node)
16143 RETURN (t);
16145 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16146 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16148 /* We have pack expansions, so expand those and
16149 create a new list out of it. */
16150 tree purposevec = NULL_TREE;
16151 tree valuevec = NULL_TREE;
16152 tree chain;
16153 int i, len = -1;
16155 /* Expand the argument expressions. */
16156 if (TREE_PURPOSE (t))
16157 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16158 complain, in_decl);
16159 if (TREE_VALUE (t))
16160 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16161 complain, in_decl);
16163 /* Build the rest of the list. */
16164 chain = TREE_CHAIN (t);
16165 if (chain && chain != void_type_node)
16166 chain = RECUR (chain);
16168 /* Determine the number of arguments. */
16169 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16171 len = TREE_VEC_LENGTH (purposevec);
16172 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16174 else if (TREE_CODE (valuevec) == TREE_VEC)
16175 len = TREE_VEC_LENGTH (valuevec);
16176 else
16178 /* Since we only performed a partial substitution into
16179 the argument pack, we only RETURN (a single list
16180 node. */
16181 if (purposevec == TREE_PURPOSE (t)
16182 && valuevec == TREE_VALUE (t)
16183 && chain == TREE_CHAIN (t))
16184 RETURN (t);
16186 RETURN (tree_cons (purposevec, valuevec, chain));
16189 /* Convert the argument vectors into a TREE_LIST */
16190 i = len;
16191 while (i > 0)
16193 /* Grab the Ith values. */
16194 i--;
16195 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16196 : NULL_TREE;
16197 value
16198 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16199 : NULL_TREE;
16201 /* Build the list (backwards). */
16202 chain = tree_cons (purpose, value, chain);
16205 RETURN (chain);
16208 purpose = TREE_PURPOSE (t);
16209 if (purpose)
16210 purpose = RECUR (purpose);
16211 value = TREE_VALUE (t);
16212 if (value)
16213 value = RECUR (value);
16214 chain = TREE_CHAIN (t);
16215 if (chain && chain != void_type_node)
16216 chain = RECUR (chain);
16217 if (purpose == TREE_PURPOSE (t)
16218 && value == TREE_VALUE (t)
16219 && chain == TREE_CHAIN (t))
16220 RETURN (t);
16221 RETURN (tree_cons (purpose, value, chain));
16224 case COMPONENT_REF:
16226 tree object;
16227 tree object_type;
16228 tree member;
16229 tree r;
16231 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16232 args, complain, in_decl);
16233 /* Remember that there was a reference to this entity. */
16234 if (DECL_P (object)
16235 && !mark_used (object, complain) && !(complain & tf_error))
16236 RETURN (error_mark_node);
16237 object_type = TREE_TYPE (object);
16239 member = TREE_OPERAND (t, 1);
16240 if (BASELINK_P (member))
16241 member = tsubst_baselink (member,
16242 non_reference (TREE_TYPE (object)),
16243 args, complain, in_decl);
16244 else
16245 member = tsubst_copy (member, args, complain, in_decl);
16246 if (member == error_mark_node)
16247 RETURN (error_mark_node);
16249 if (type_dependent_expression_p (object))
16250 /* We can't do much here. */;
16251 else if (!CLASS_TYPE_P (object_type))
16253 if (scalarish_type_p (object_type))
16255 tree s = NULL_TREE;
16256 tree dtor = member;
16258 if (TREE_CODE (dtor) == SCOPE_REF)
16260 s = TREE_OPERAND (dtor, 0);
16261 dtor = TREE_OPERAND (dtor, 1);
16263 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16265 dtor = TREE_OPERAND (dtor, 0);
16266 if (TYPE_P (dtor))
16267 RETURN (finish_pseudo_destructor_expr
16268 (object, s, dtor, input_location));
16272 else if (TREE_CODE (member) == SCOPE_REF
16273 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16275 /* Lookup the template functions now that we know what the
16276 scope is. */
16277 tree scope = TREE_OPERAND (member, 0);
16278 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16279 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16280 member = lookup_qualified_name (scope, tmpl,
16281 /*is_type_p=*/false,
16282 /*complain=*/false);
16283 if (BASELINK_P (member))
16285 BASELINK_FUNCTIONS (member)
16286 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16287 args);
16288 member = (adjust_result_of_qualified_name_lookup
16289 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16290 object_type));
16292 else
16294 qualified_name_lookup_error (scope, tmpl, member,
16295 input_location);
16296 RETURN (error_mark_node);
16299 else if (TREE_CODE (member) == SCOPE_REF
16300 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16301 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
16303 if (complain & tf_error)
16305 if (TYPE_P (TREE_OPERAND (member, 0)))
16306 error ("%qT is not a class or namespace",
16307 TREE_OPERAND (member, 0));
16308 else
16309 error ("%qD is not a class or namespace",
16310 TREE_OPERAND (member, 0));
16312 RETURN (error_mark_node);
16314 else if (TREE_CODE (member) == FIELD_DECL)
16316 r = finish_non_static_data_member (member, object, NULL_TREE);
16317 if (TREE_CODE (r) == COMPONENT_REF)
16318 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16319 RETURN (r);
16322 r = finish_class_member_access_expr (object, member,
16323 /*template_p=*/false,
16324 complain);
16325 if (TREE_CODE (r) == COMPONENT_REF)
16326 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16327 RETURN (r);
16330 case THROW_EXPR:
16331 RETURN (build_throw
16332 (RECUR (TREE_OPERAND (t, 0))));
16334 case CONSTRUCTOR:
16336 vec<constructor_elt, va_gc> *n;
16337 constructor_elt *ce;
16338 unsigned HOST_WIDE_INT idx;
16339 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16340 bool process_index_p;
16341 int newlen;
16342 bool need_copy_p = false;
16343 tree r;
16345 if (type == error_mark_node)
16346 RETURN (error_mark_node);
16348 /* digest_init will do the wrong thing if we let it. */
16349 if (type && TYPE_PTRMEMFUNC_P (type))
16350 RETURN (t);
16352 /* We do not want to process the index of aggregate
16353 initializers as they are identifier nodes which will be
16354 looked up by digest_init. */
16355 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
16357 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
16358 newlen = vec_safe_length (n);
16359 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
16361 if (ce->index && process_index_p
16362 /* An identifier index is looked up in the type
16363 being initialized, not the current scope. */
16364 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
16365 ce->index = RECUR (ce->index);
16367 if (PACK_EXPANSION_P (ce->value))
16369 /* Substitute into the pack expansion. */
16370 ce->value = tsubst_pack_expansion (ce->value, args, complain,
16371 in_decl);
16373 if (ce->value == error_mark_node
16374 || PACK_EXPANSION_P (ce->value))
16376 else if (TREE_VEC_LENGTH (ce->value) == 1)
16377 /* Just move the argument into place. */
16378 ce->value = TREE_VEC_ELT (ce->value, 0);
16379 else
16381 /* Update the length of the final CONSTRUCTOR
16382 arguments vector, and note that we will need to
16383 copy.*/
16384 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
16385 need_copy_p = true;
16388 else
16389 ce->value = RECUR (ce->value);
16392 if (need_copy_p)
16394 vec<constructor_elt, va_gc> *old_n = n;
16396 vec_alloc (n, newlen);
16397 FOR_EACH_VEC_ELT (*old_n, idx, ce)
16399 if (TREE_CODE (ce->value) == TREE_VEC)
16401 int i, len = TREE_VEC_LENGTH (ce->value);
16402 for (i = 0; i < len; ++i)
16403 CONSTRUCTOR_APPEND_ELT (n, 0,
16404 TREE_VEC_ELT (ce->value, i));
16406 else
16407 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
16411 r = build_constructor (init_list_type_node, n);
16412 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
16414 if (TREE_HAS_CONSTRUCTOR (t))
16415 RETURN (finish_compound_literal (type, r, complain));
16417 TREE_TYPE (r) = type;
16418 RETURN (r);
16421 case TYPEID_EXPR:
16423 tree operand_0 = TREE_OPERAND (t, 0);
16424 if (TYPE_P (operand_0))
16426 operand_0 = tsubst (operand_0, args, complain, in_decl);
16427 RETURN (get_typeid (operand_0, complain));
16429 else
16431 operand_0 = RECUR (operand_0);
16432 RETURN (build_typeid (operand_0, complain));
16436 case VAR_DECL:
16437 if (!args)
16438 RETURN (t);
16439 else if (DECL_PACK_P (t))
16441 /* We don't build decls for an instantiation of a
16442 variadic capture proxy, we instantiate the elements
16443 when needed. */
16444 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
16445 return RECUR (DECL_VALUE_EXPR (t));
16447 /* Fall through */
16449 case PARM_DECL:
16451 tree r = tsubst_copy (t, args, complain, in_decl);
16452 /* ??? We're doing a subset of finish_id_expression here. */
16453 if (VAR_P (r)
16454 && !processing_template_decl
16455 && !cp_unevaluated_operand
16456 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
16457 && CP_DECL_THREAD_LOCAL_P (r))
16459 if (tree wrap = get_tls_wrapper_fn (r))
16460 /* Replace an evaluated use of the thread_local variable with
16461 a call to its wrapper. */
16462 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
16464 else if (outer_automatic_var_p (r))
16466 r = process_outer_var_ref (r, complain);
16467 if (is_capture_proxy (r))
16468 register_local_specialization (r, t);
16471 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
16472 /* If the original type was a reference, we'll be wrapped in
16473 the appropriate INDIRECT_REF. */
16474 r = convert_from_reference (r);
16475 RETURN (r);
16478 case VA_ARG_EXPR:
16480 tree op0 = RECUR (TREE_OPERAND (t, 0));
16481 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16482 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
16485 case OFFSETOF_EXPR:
16486 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
16487 EXPR_LOCATION (t)));
16489 case TRAIT_EXPR:
16491 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
16492 complain, in_decl);
16494 tree type2 = TRAIT_EXPR_TYPE2 (t);
16495 if (type2 && TREE_CODE (type2) == TREE_LIST)
16496 type2 = RECUR (type2);
16497 else if (type2)
16498 type2 = tsubst (type2, args, complain, in_decl);
16500 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
16503 case STMT_EXPR:
16505 tree old_stmt_expr = cur_stmt_expr;
16506 tree stmt_expr = begin_stmt_expr ();
16508 cur_stmt_expr = stmt_expr;
16509 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
16510 integral_constant_expression_p);
16511 stmt_expr = finish_stmt_expr (stmt_expr, false);
16512 cur_stmt_expr = old_stmt_expr;
16514 /* If the resulting list of expression statement is empty,
16515 fold it further into void_node. */
16516 if (empty_expr_stmt_p (stmt_expr))
16517 stmt_expr = void_node;
16519 RETURN (stmt_expr);
16522 case LAMBDA_EXPR:
16524 tree r = build_lambda_expr ();
16526 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
16527 LAMBDA_EXPR_CLOSURE (r) = type;
16528 CLASSTYPE_LAMBDA_EXPR (type) = r;
16530 LAMBDA_EXPR_LOCATION (r)
16531 = LAMBDA_EXPR_LOCATION (t);
16532 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
16533 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
16534 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
16535 LAMBDA_EXPR_DISCRIMINATOR (r)
16536 = (LAMBDA_EXPR_DISCRIMINATOR (t));
16537 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
16538 if (!scope)
16539 /* No substitution needed. */;
16540 else if (VAR_OR_FUNCTION_DECL_P (scope))
16541 /* For a function or variable scope, we want to use tsubst so that we
16542 don't complain about referring to an auto before deduction. */
16543 scope = tsubst (scope, args, complain, in_decl);
16544 else if (TREE_CODE (scope) == PARM_DECL)
16546 /* Look up the parameter we want directly, as tsubst_copy
16547 doesn't do what we need. */
16548 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
16549 tree parm = FUNCTION_FIRST_USER_PARM (fn);
16550 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
16551 parm = DECL_CHAIN (parm);
16552 scope = parm;
16553 /* FIXME Work around the parm not having DECL_CONTEXT set. */
16554 if (DECL_CONTEXT (scope) == NULL_TREE)
16555 DECL_CONTEXT (scope) = fn;
16557 else if (TREE_CODE (scope) == FIELD_DECL)
16558 /* For a field, use tsubst_copy so that we look up the existing field
16559 rather than build a new one. */
16560 scope = RECUR (scope);
16561 else
16562 gcc_unreachable ();
16563 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
16564 LAMBDA_EXPR_RETURN_TYPE (r)
16565 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
16567 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
16568 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
16570 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
16571 determine_visibility (TYPE_NAME (type));
16572 /* Now that we know visibility, instantiate the type so we have a
16573 declaration of the op() for later calls to lambda_function. */
16574 complete_type (type);
16576 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
16578 insert_pending_capture_proxies ();
16580 RETURN (build_lambda_object (r));
16583 case TARGET_EXPR:
16584 /* We can get here for a constant initializer of non-dependent type.
16585 FIXME stop folding in cp_parser_initializer_clause. */
16587 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
16588 complain);
16589 RETURN (r);
16592 case TRANSACTION_EXPR:
16593 RETURN (tsubst_expr(t, args, complain, in_decl,
16594 integral_constant_expression_p));
16596 case PAREN_EXPR:
16597 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
16599 case VEC_PERM_EXPR:
16601 tree op0 = RECUR (TREE_OPERAND (t, 0));
16602 tree op1 = RECUR (TREE_OPERAND (t, 1));
16603 tree op2 = RECUR (TREE_OPERAND (t, 2));
16604 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
16605 complain));
16608 case REQUIRES_EXPR:
16609 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
16611 default:
16612 /* Handle Objective-C++ constructs, if appropriate. */
16614 tree subst
16615 = objcp_tsubst_copy_and_build (t, args, complain,
16616 in_decl, /*function_p=*/false);
16617 if (subst)
16618 RETURN (subst);
16620 RETURN (tsubst_copy (t, args, complain, in_decl));
16623 #undef RECUR
16624 #undef RETURN
16625 out:
16626 input_location = loc;
16627 return retval;
16630 /* Verify that the instantiated ARGS are valid. For type arguments,
16631 make sure that the type's linkage is ok. For non-type arguments,
16632 make sure they are constants if they are integral or enumerations.
16633 Emit an error under control of COMPLAIN, and return TRUE on error. */
16635 static bool
16636 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
16638 if (dependent_template_arg_p (t))
16639 return false;
16640 if (ARGUMENT_PACK_P (t))
16642 tree vec = ARGUMENT_PACK_ARGS (t);
16643 int len = TREE_VEC_LENGTH (vec);
16644 bool result = false;
16645 int i;
16647 for (i = 0; i < len; ++i)
16648 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
16649 result = true;
16650 return result;
16652 else if (TYPE_P (t))
16654 /* [basic.link]: A name with no linkage (notably, the name
16655 of a class or enumeration declared in a local scope)
16656 shall not be used to declare an entity with linkage.
16657 This implies that names with no linkage cannot be used as
16658 template arguments
16660 DR 757 relaxes this restriction for C++0x. */
16661 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
16662 : no_linkage_check (t, /*relaxed_p=*/false));
16664 if (nt)
16666 /* DR 488 makes use of a type with no linkage cause
16667 type deduction to fail. */
16668 if (complain & tf_error)
16670 if (TYPE_ANONYMOUS_P (nt))
16671 error ("%qT is/uses anonymous type", t);
16672 else
16673 error ("template argument for %qD uses local type %qT",
16674 tmpl, t);
16676 return true;
16678 /* In order to avoid all sorts of complications, we do not
16679 allow variably-modified types as template arguments. */
16680 else if (variably_modified_type_p (t, NULL_TREE))
16682 if (complain & tf_error)
16683 error ("%qT is a variably modified type", t);
16684 return true;
16687 /* Class template and alias template arguments should be OK. */
16688 else if (DECL_TYPE_TEMPLATE_P (t))
16690 /* A non-type argument of integral or enumerated type must be a
16691 constant. */
16692 else if (TREE_TYPE (t)
16693 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
16694 && !REFERENCE_REF_P (t)
16695 && !TREE_CONSTANT (t))
16697 if (complain & tf_error)
16698 error ("integral expression %qE is not constant", t);
16699 return true;
16701 return false;
16704 static bool
16705 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
16707 int ix, len = DECL_NTPARMS (tmpl);
16708 bool result = false;
16710 for (ix = 0; ix != len; ix++)
16712 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
16713 result = true;
16715 if (result && (complain & tf_error))
16716 error (" trying to instantiate %qD", tmpl);
16717 return result;
16720 /* We're out of SFINAE context now, so generate diagnostics for the access
16721 errors we saw earlier when instantiating D from TMPL and ARGS. */
16723 static void
16724 recheck_decl_substitution (tree d, tree tmpl, tree args)
16726 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
16727 tree type = TREE_TYPE (pattern);
16728 location_t loc = input_location;
16730 push_access_scope (d);
16731 push_deferring_access_checks (dk_no_deferred);
16732 input_location = DECL_SOURCE_LOCATION (pattern);
16733 tsubst (type, args, tf_warning_or_error, d);
16734 input_location = loc;
16735 pop_deferring_access_checks ();
16736 pop_access_scope (d);
16739 /* Instantiate the indicated variable, function, or alias template TMPL with
16740 the template arguments in TARG_PTR. */
16742 static tree
16743 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
16745 tree targ_ptr = orig_args;
16746 tree fndecl;
16747 tree gen_tmpl;
16748 tree spec;
16749 bool access_ok = true;
16751 if (tmpl == error_mark_node)
16752 return error_mark_node;
16754 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
16756 /* If this function is a clone, handle it specially. */
16757 if (DECL_CLONED_FUNCTION_P (tmpl))
16759 tree spec;
16760 tree clone;
16762 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
16763 DECL_CLONED_FUNCTION. */
16764 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
16765 targ_ptr, complain);
16766 if (spec == error_mark_node)
16767 return error_mark_node;
16769 /* Look for the clone. */
16770 FOR_EACH_CLONE (clone, spec)
16771 if (DECL_NAME (clone) == DECL_NAME (tmpl))
16772 return clone;
16773 /* We should always have found the clone by now. */
16774 gcc_unreachable ();
16775 return NULL_TREE;
16778 if (targ_ptr == error_mark_node)
16779 return error_mark_node;
16781 /* Check to see if we already have this specialization. */
16782 gen_tmpl = most_general_template (tmpl);
16783 if (tmpl != gen_tmpl)
16784 /* The TMPL is a partial instantiation. To get a full set of
16785 arguments we must add the arguments used to perform the
16786 partial instantiation. */
16787 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
16788 targ_ptr);
16790 /* It would be nice to avoid hashing here and then again in tsubst_decl,
16791 but it doesn't seem to be on the hot path. */
16792 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
16794 gcc_assert (tmpl == gen_tmpl
16795 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
16796 == spec)
16797 || fndecl == NULL_TREE);
16799 if (spec != NULL_TREE)
16801 if (FNDECL_HAS_ACCESS_ERRORS (spec))
16803 if (complain & tf_error)
16804 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
16805 return error_mark_node;
16807 return spec;
16810 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
16811 complain))
16812 return error_mark_node;
16814 /* We are building a FUNCTION_DECL, during which the access of its
16815 parameters and return types have to be checked. However this
16816 FUNCTION_DECL which is the desired context for access checking
16817 is not built yet. We solve this chicken-and-egg problem by
16818 deferring all checks until we have the FUNCTION_DECL. */
16819 push_deferring_access_checks (dk_deferred);
16821 /* Instantiation of the function happens in the context of the function
16822 template, not the context of the overload resolution we're doing. */
16823 push_to_top_level ();
16824 /* If there are dependent arguments, e.g. because we're doing partial
16825 ordering, make sure processing_template_decl stays set. */
16826 if (uses_template_parms (targ_ptr))
16827 ++processing_template_decl;
16828 if (DECL_CLASS_SCOPE_P (gen_tmpl))
16830 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
16831 complain, gen_tmpl, true);
16832 push_nested_class (ctx);
16835 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
16837 if (VAR_P (pattern))
16839 /* We need to determine if we're using a partial or explicit
16840 specialization now, because the type of the variable could be
16841 different. */
16842 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
16843 tree elt = most_specialized_partial_spec (tid, complain);
16844 if (elt == error_mark_node)
16845 pattern = error_mark_node;
16846 else if (elt)
16848 tmpl = TREE_VALUE (elt);
16849 pattern = DECL_TEMPLATE_RESULT (tmpl);
16850 targ_ptr = TREE_PURPOSE (elt);
16854 /* Substitute template parameters to obtain the specialization. */
16855 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
16856 if (DECL_CLASS_SCOPE_P (gen_tmpl))
16857 pop_nested_class ();
16858 pop_from_top_level ();
16860 if (fndecl == error_mark_node)
16862 pop_deferring_access_checks ();
16863 return error_mark_node;
16866 /* The DECL_TI_TEMPLATE should always be the immediate parent
16867 template, not the most general template. */
16868 DECL_TI_TEMPLATE (fndecl) = tmpl;
16869 DECL_TI_ARGS (fndecl) = targ_ptr;
16871 /* Now we know the specialization, compute access previously
16872 deferred. */
16873 push_access_scope (fndecl);
16874 if (!perform_deferred_access_checks (complain))
16875 access_ok = false;
16876 pop_access_scope (fndecl);
16877 pop_deferring_access_checks ();
16879 /* If we've just instantiated the main entry point for a function,
16880 instantiate all the alternate entry points as well. We do this
16881 by cloning the instantiation of the main entry point, not by
16882 instantiating the template clones. */
16883 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
16884 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
16886 if (!access_ok)
16888 if (!(complain & tf_error))
16890 /* Remember to reinstantiate when we're out of SFINAE so the user
16891 can see the errors. */
16892 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
16894 return error_mark_node;
16896 return fndecl;
16899 /* Wrapper for instantiate_template_1. */
16901 tree
16902 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
16904 tree ret;
16905 timevar_push (TV_TEMPLATE_INST);
16906 ret = instantiate_template_1 (tmpl, orig_args, complain);
16907 timevar_pop (TV_TEMPLATE_INST);
16908 return ret;
16911 /* Instantiate the alias template TMPL with ARGS. Also push a template
16912 instantiation level, which instantiate_template doesn't do because
16913 functions and variables have sufficient context established by the
16914 callers. */
16916 static tree
16917 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
16919 struct pending_template *old_last_pend = last_pending_template;
16920 struct tinst_level *old_error_tinst = last_error_tinst_level;
16921 if (tmpl == error_mark_node || args == error_mark_node)
16922 return error_mark_node;
16923 tree tinst = build_tree_list (tmpl, args);
16924 if (!push_tinst_level (tinst))
16926 ggc_free (tinst);
16927 return error_mark_node;
16930 args =
16931 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
16932 args, tmpl, complain,
16933 /*require_all_args=*/true,
16934 /*use_default_args=*/true);
16936 tree r = instantiate_template (tmpl, args, complain);
16937 pop_tinst_level ();
16938 /* We can't free this if a pending_template entry or last_error_tinst_level
16939 is pointing at it. */
16940 if (last_pending_template == old_last_pend
16941 && last_error_tinst_level == old_error_tinst)
16942 ggc_free (tinst);
16944 return r;
16947 /* PARM is a template parameter pack for FN. Returns true iff
16948 PARM is used in a deducible way in the argument list of FN. */
16950 static bool
16951 pack_deducible_p (tree parm, tree fn)
16953 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
16954 for (; t; t = TREE_CHAIN (t))
16956 tree type = TREE_VALUE (t);
16957 tree packs;
16958 if (!PACK_EXPANSION_P (type))
16959 continue;
16960 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
16961 packs; packs = TREE_CHAIN (packs))
16962 if (template_args_equal (TREE_VALUE (packs), parm))
16964 /* The template parameter pack is used in a function parameter
16965 pack. If this is the end of the parameter list, the
16966 template parameter pack is deducible. */
16967 if (TREE_CHAIN (t) == void_list_node)
16968 return true;
16969 else
16970 /* Otherwise, not. Well, it could be deduced from
16971 a non-pack parameter, but doing so would end up with
16972 a deduction mismatch, so don't bother. */
16973 return false;
16976 /* The template parameter pack isn't used in any function parameter
16977 packs, but it might be used deeper, e.g. tuple<Args...>. */
16978 return true;
16981 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
16982 NARGS elements of the arguments that are being used when calling
16983 it. TARGS is a vector into which the deduced template arguments
16984 are placed.
16986 Returns either a FUNCTION_DECL for the matching specialization of FN or
16987 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
16988 true, diagnostics will be printed to explain why it failed.
16990 If FN is a conversion operator, or we are trying to produce a specific
16991 specialization, RETURN_TYPE is the return type desired.
16993 The EXPLICIT_TARGS are explicit template arguments provided via a
16994 template-id.
16996 The parameter STRICT is one of:
16998 DEDUCE_CALL:
16999 We are deducing arguments for a function call, as in
17000 [temp.deduct.call].
17002 DEDUCE_CONV:
17003 We are deducing arguments for a conversion function, as in
17004 [temp.deduct.conv].
17006 DEDUCE_EXACT:
17007 We are deducing arguments when doing an explicit instantiation
17008 as in [temp.explicit], when determining an explicit specialization
17009 as in [temp.expl.spec], or when taking the address of a function
17010 template, as in [temp.deduct.funcaddr]. */
17012 tree
17013 fn_type_unification (tree fn,
17014 tree explicit_targs,
17015 tree targs,
17016 const tree *args,
17017 unsigned int nargs,
17018 tree return_type,
17019 unification_kind_t strict,
17020 int flags,
17021 bool explain_p,
17022 bool decltype_p)
17024 tree parms;
17025 tree fntype;
17026 tree decl = NULL_TREE;
17027 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17028 bool ok;
17029 static int deduction_depth;
17030 struct pending_template *old_last_pend = last_pending_template;
17031 struct tinst_level *old_error_tinst = last_error_tinst_level;
17032 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17033 tree tinst;
17034 tree r = error_mark_node;
17036 if (decltype_p)
17037 complain |= tf_decltype;
17039 /* In C++0x, it's possible to have a function template whose type depends
17040 on itself recursively. This is most obvious with decltype, but can also
17041 occur with enumeration scope (c++/48969). So we need to catch infinite
17042 recursion and reject the substitution at deduction time; this function
17043 will return error_mark_node for any repeated substitution.
17045 This also catches excessive recursion such as when f<N> depends on
17046 f<N-1> across all integers, and returns error_mark_node for all the
17047 substitutions back up to the initial one.
17049 This is, of course, not reentrant. */
17050 if (excessive_deduction_depth)
17051 return error_mark_node;
17052 tinst = build_tree_list (fn, NULL_TREE);
17053 ++deduction_depth;
17055 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17057 fntype = TREE_TYPE (fn);
17058 if (explicit_targs)
17060 /* [temp.deduct]
17062 The specified template arguments must match the template
17063 parameters in kind (i.e., type, nontype, template), and there
17064 must not be more arguments than there are parameters;
17065 otherwise type deduction fails.
17067 Nontype arguments must match the types of the corresponding
17068 nontype template parameters, or must be convertible to the
17069 types of the corresponding nontype parameters as specified in
17070 _temp.arg.nontype_, otherwise type deduction fails.
17072 All references in the function type of the function template
17073 to the corresponding template parameters are replaced by the
17074 specified template argument values. If a substitution in a
17075 template parameter or in the function type of the function
17076 template results in an invalid type, type deduction fails. */
17077 int i, len = TREE_VEC_LENGTH (tparms);
17078 location_t loc = input_location;
17079 bool incomplete = false;
17081 /* Adjust any explicit template arguments before entering the
17082 substitution context. */
17083 explicit_targs
17084 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17085 complain,
17086 /*require_all_args=*/false,
17087 /*use_default_args=*/false));
17088 if (explicit_targs == error_mark_node)
17089 goto fail;
17091 /* Substitute the explicit args into the function type. This is
17092 necessary so that, for instance, explicitly declared function
17093 arguments can match null pointed constants. If we were given
17094 an incomplete set of explicit args, we must not do semantic
17095 processing during substitution as we could create partial
17096 instantiations. */
17097 for (i = 0; i < len; i++)
17099 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17100 bool parameter_pack = false;
17101 tree targ = TREE_VEC_ELT (explicit_targs, i);
17103 /* Dig out the actual parm. */
17104 if (TREE_CODE (parm) == TYPE_DECL
17105 || TREE_CODE (parm) == TEMPLATE_DECL)
17107 parm = TREE_TYPE (parm);
17108 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17110 else if (TREE_CODE (parm) == PARM_DECL)
17112 parm = DECL_INITIAL (parm);
17113 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17116 if (!parameter_pack && targ == NULL_TREE)
17117 /* No explicit argument for this template parameter. */
17118 incomplete = true;
17120 if (parameter_pack && pack_deducible_p (parm, fn))
17122 /* Mark the argument pack as "incomplete". We could
17123 still deduce more arguments during unification.
17124 We remove this mark in type_unification_real. */
17125 if (targ)
17127 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17128 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17129 = ARGUMENT_PACK_ARGS (targ);
17132 /* We have some incomplete argument packs. */
17133 incomplete = true;
17137 TREE_VALUE (tinst) = explicit_targs;
17138 if (!push_tinst_level (tinst))
17140 excessive_deduction_depth = true;
17141 goto fail;
17143 processing_template_decl += incomplete;
17144 input_location = DECL_SOURCE_LOCATION (fn);
17145 /* Ignore any access checks; we'll see them again in
17146 instantiate_template and they might have the wrong
17147 access path at this point. */
17148 push_deferring_access_checks (dk_deferred);
17149 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17150 complain | tf_partial, NULL_TREE);
17151 pop_deferring_access_checks ();
17152 input_location = loc;
17153 processing_template_decl -= incomplete;
17154 pop_tinst_level ();
17156 if (fntype == error_mark_node)
17157 goto fail;
17159 /* Place the explicitly specified arguments in TARGS. */
17160 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17161 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17164 /* Never do unification on the 'this' parameter. */
17165 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17167 if (return_type)
17169 tree *new_args;
17171 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17172 new_args = XALLOCAVEC (tree, nargs + 1);
17173 new_args[0] = return_type;
17174 memcpy (new_args + 1, args, nargs * sizeof (tree));
17175 args = new_args;
17176 ++nargs;
17179 /* We allow incomplete unification without an error message here
17180 because the standard doesn't seem to explicitly prohibit it. Our
17181 callers must be ready to deal with unification failures in any
17182 event. */
17184 TREE_VALUE (tinst) = targs;
17185 /* If we aren't explaining yet, push tinst context so we can see where
17186 any errors (e.g. from class instantiations triggered by instantiation
17187 of default template arguments) come from. If we are explaining, this
17188 context is redundant. */
17189 if (!explain_p && !push_tinst_level (tinst))
17191 excessive_deduction_depth = true;
17192 goto fail;
17195 /* type_unification_real will pass back any access checks from default
17196 template argument substitution. */
17197 vec<deferred_access_check, va_gc> *checks;
17198 checks = NULL;
17200 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17201 targs, parms, args, nargs, /*subr=*/0,
17202 strict, flags, &checks, explain_p);
17203 if (!explain_p)
17204 pop_tinst_level ();
17205 if (!ok)
17206 goto fail;
17208 /* Now that we have bindings for all of the template arguments,
17209 ensure that the arguments deduced for the template template
17210 parameters have compatible template parameter lists. We cannot
17211 check this property before we have deduced all template
17212 arguments, because the template parameter types of a template
17213 template parameter might depend on prior template parameters
17214 deduced after the template template parameter. The following
17215 ill-formed example illustrates this issue:
17217 template<typename T, template<T> class C> void f(C<5>, T);
17219 template<int N> struct X {};
17221 void g() {
17222 f(X<5>(), 5l); // error: template argument deduction fails
17225 The template parameter list of 'C' depends on the template type
17226 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17227 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17228 time that we deduce 'C'. */
17229 if (!template_template_parm_bindings_ok_p
17230 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17232 unify_inconsistent_template_template_parameters (explain_p);
17233 goto fail;
17236 /* All is well so far. Now, check:
17238 [temp.deduct]
17240 When all template arguments have been deduced, all uses of
17241 template parameters in nondeduced contexts are replaced with
17242 the corresponding deduced argument values. If the
17243 substitution results in an invalid type, as described above,
17244 type deduction fails. */
17245 TREE_VALUE (tinst) = targs;
17246 if (!push_tinst_level (tinst))
17248 excessive_deduction_depth = true;
17249 goto fail;
17252 /* Also collect access checks from the instantiation. */
17253 reopen_deferring_access_checks (checks);
17255 decl = instantiate_template (fn, targs, complain);
17257 checks = get_deferred_access_checks ();
17258 pop_deferring_access_checks ();
17260 pop_tinst_level ();
17262 if (decl == error_mark_node)
17263 goto fail;
17265 /* Now perform any access checks encountered during substitution. */
17266 push_access_scope (decl);
17267 ok = perform_access_checks (checks, complain);
17268 pop_access_scope (decl);
17269 if (!ok)
17270 goto fail;
17272 /* If we're looking for an exact match, check that what we got
17273 is indeed an exact match. It might not be if some template
17274 parameters are used in non-deduced contexts. But don't check
17275 for an exact match if we have dependent template arguments;
17276 in that case we're doing partial ordering, and we already know
17277 that we have two candidates that will provide the actual type. */
17278 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
17280 tree substed = TREE_TYPE (decl);
17281 unsigned int i;
17283 tree sarg
17284 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
17285 if (return_type)
17286 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
17287 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
17288 if (!same_type_p (args[i], TREE_VALUE (sarg)))
17290 unify_type_mismatch (explain_p, args[i],
17291 TREE_VALUE (sarg));
17292 goto fail;
17296 r = decl;
17298 fail:
17299 --deduction_depth;
17300 if (excessive_deduction_depth)
17302 if (deduction_depth == 0)
17303 /* Reset once we're all the way out. */
17304 excessive_deduction_depth = false;
17307 /* We can't free this if a pending_template entry or last_error_tinst_level
17308 is pointing at it. */
17309 if (last_pending_template == old_last_pend
17310 && last_error_tinst_level == old_error_tinst)
17311 ggc_free (tinst);
17313 return r;
17316 /* Adjust types before performing type deduction, as described in
17317 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17318 sections are symmetric. PARM is the type of a function parameter
17319 or the return type of the conversion function. ARG is the type of
17320 the argument passed to the call, or the type of the value
17321 initialized with the result of the conversion function.
17322 ARG_EXPR is the original argument expression, which may be null. */
17324 static int
17325 maybe_adjust_types_for_deduction (unification_kind_t strict,
17326 tree* parm,
17327 tree* arg,
17328 tree arg_expr)
17330 int result = 0;
17332 switch (strict)
17334 case DEDUCE_CALL:
17335 break;
17337 case DEDUCE_CONV:
17338 /* Swap PARM and ARG throughout the remainder of this
17339 function; the handling is precisely symmetric since PARM
17340 will initialize ARG rather than vice versa. */
17341 std::swap (parm, arg);
17342 break;
17344 case DEDUCE_EXACT:
17345 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17346 too, but here handle it by stripping the reference from PARM
17347 rather than by adding it to ARG. */
17348 if (TREE_CODE (*parm) == REFERENCE_TYPE
17349 && TYPE_REF_IS_RVALUE (*parm)
17350 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17351 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17352 && TREE_CODE (*arg) == REFERENCE_TYPE
17353 && !TYPE_REF_IS_RVALUE (*arg))
17354 *parm = TREE_TYPE (*parm);
17355 /* Nothing else to do in this case. */
17356 return 0;
17358 default:
17359 gcc_unreachable ();
17362 if (TREE_CODE (*parm) != REFERENCE_TYPE)
17364 /* [temp.deduct.call]
17366 If P is not a reference type:
17368 --If A is an array type, the pointer type produced by the
17369 array-to-pointer standard conversion (_conv.array_) is
17370 used in place of A for type deduction; otherwise,
17372 --If A is a function type, the pointer type produced by
17373 the function-to-pointer standard conversion
17374 (_conv.func_) is used in place of A for type deduction;
17375 otherwise,
17377 --If A is a cv-qualified type, the top level
17378 cv-qualifiers of A's type are ignored for type
17379 deduction. */
17380 if (TREE_CODE (*arg) == ARRAY_TYPE)
17381 *arg = build_pointer_type (TREE_TYPE (*arg));
17382 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
17383 *arg = build_pointer_type (*arg);
17384 else
17385 *arg = TYPE_MAIN_VARIANT (*arg);
17388 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17389 of the form T&&, where T is a template parameter, and the argument
17390 is an lvalue, T is deduced as A& */
17391 if (TREE_CODE (*parm) == REFERENCE_TYPE
17392 && TYPE_REF_IS_RVALUE (*parm)
17393 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
17394 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
17395 && (arg_expr ? real_lvalue_p (arg_expr)
17396 /* try_one_overload doesn't provide an arg_expr, but
17397 functions are always lvalues. */
17398 : TREE_CODE (*arg) == FUNCTION_TYPE))
17399 *arg = build_reference_type (*arg);
17401 /* [temp.deduct.call]
17403 If P is a cv-qualified type, the top level cv-qualifiers
17404 of P's type are ignored for type deduction. If P is a
17405 reference type, the type referred to by P is used for
17406 type deduction. */
17407 *parm = TYPE_MAIN_VARIANT (*parm);
17408 if (TREE_CODE (*parm) == REFERENCE_TYPE)
17410 *parm = TREE_TYPE (*parm);
17411 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17414 /* DR 322. For conversion deduction, remove a reference type on parm
17415 too (which has been swapped into ARG). */
17416 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
17417 *arg = TREE_TYPE (*arg);
17419 return result;
17422 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17423 template which does contain any deducible template parameters; check if
17424 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17425 unify_one_argument. */
17427 static int
17428 check_non_deducible_conversion (tree parm, tree arg, int strict,
17429 int flags, bool explain_p)
17431 tree type;
17433 if (!TYPE_P (arg))
17434 type = TREE_TYPE (arg);
17435 else
17436 type = arg;
17438 if (same_type_p (parm, type))
17439 return unify_success (explain_p);
17441 if (strict == DEDUCE_CONV)
17443 if (can_convert_arg (type, parm, NULL_TREE, flags,
17444 explain_p ? tf_warning_or_error : tf_none))
17445 return unify_success (explain_p);
17447 else if (strict != DEDUCE_EXACT)
17449 if (can_convert_arg (parm, type,
17450 TYPE_P (arg) ? NULL_TREE : arg,
17451 flags, explain_p ? tf_warning_or_error : tf_none))
17452 return unify_success (explain_p);
17455 if (strict == DEDUCE_EXACT)
17456 return unify_type_mismatch (explain_p, parm, arg);
17457 else
17458 return unify_arg_conversion (explain_p, parm, type, arg);
17461 static bool uses_deducible_template_parms (tree type);
17463 /* Returns true iff the expression EXPR is one from which a template
17464 argument can be deduced. In other words, if it's an undecorated
17465 use of a template non-type parameter. */
17467 static bool
17468 deducible_expression (tree expr)
17470 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
17473 /* Returns true iff the array domain DOMAIN uses a template parameter in a
17474 deducible way; that is, if it has a max value of <PARM> - 1. */
17476 static bool
17477 deducible_array_bound (tree domain)
17479 if (domain == NULL_TREE)
17480 return false;
17482 tree max = TYPE_MAX_VALUE (domain);
17483 if (TREE_CODE (max) != MINUS_EXPR)
17484 return false;
17486 return deducible_expression (TREE_OPERAND (max, 0));
17489 /* Returns true iff the template arguments ARGS use a template parameter
17490 in a deducible way. */
17492 static bool
17493 deducible_template_args (tree args)
17495 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
17497 bool deducible;
17498 tree elt = TREE_VEC_ELT (args, i);
17499 if (ARGUMENT_PACK_P (elt))
17500 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
17501 else
17503 if (PACK_EXPANSION_P (elt))
17504 elt = PACK_EXPANSION_PATTERN (elt);
17505 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
17506 deducible = true;
17507 else if (TYPE_P (elt))
17508 deducible = uses_deducible_template_parms (elt);
17509 else
17510 deducible = deducible_expression (elt);
17512 if (deducible)
17513 return true;
17515 return false;
17518 /* Returns true iff TYPE contains any deducible references to template
17519 parameters, as per 14.8.2.5. */
17521 static bool
17522 uses_deducible_template_parms (tree type)
17524 if (PACK_EXPANSION_P (type))
17525 type = PACK_EXPANSION_PATTERN (type);
17527 /* T
17528 cv-list T
17529 TT<T>
17530 TT<i>
17531 TT<> */
17532 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
17533 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
17534 return true;
17536 /* T*
17538 T&& */
17539 if (POINTER_TYPE_P (type))
17540 return uses_deducible_template_parms (TREE_TYPE (type));
17542 /* T[integer-constant ]
17543 type [i] */
17544 if (TREE_CODE (type) == ARRAY_TYPE)
17545 return (uses_deducible_template_parms (TREE_TYPE (type))
17546 || deducible_array_bound (TYPE_DOMAIN (type)));
17548 /* T type ::*
17549 type T::*
17550 T T::*
17551 T (type ::*)()
17552 type (T::*)()
17553 type (type ::*)(T)
17554 type (T::*)(T)
17555 T (type ::*)(T)
17556 T (T::*)()
17557 T (T::*)(T) */
17558 if (TYPE_PTRMEM_P (type))
17559 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
17560 || (uses_deducible_template_parms
17561 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
17563 /* template-name <T> (where template-name refers to a class template)
17564 template-name <i> (where template-name refers to a class template) */
17565 if (CLASS_TYPE_P (type)
17566 && CLASSTYPE_TEMPLATE_INFO (type)
17567 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
17568 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
17569 (CLASSTYPE_TI_ARGS (type)));
17571 /* type (T)
17573 T(T) */
17574 if (TREE_CODE (type) == FUNCTION_TYPE
17575 || TREE_CODE (type) == METHOD_TYPE)
17577 if (uses_deducible_template_parms (TREE_TYPE (type)))
17578 return true;
17579 tree parm = TYPE_ARG_TYPES (type);
17580 if (TREE_CODE (type) == METHOD_TYPE)
17581 parm = TREE_CHAIN (parm);
17582 for (; parm; parm = TREE_CHAIN (parm))
17583 if (uses_deducible_template_parms (TREE_VALUE (parm)))
17584 return true;
17587 return false;
17590 /* Subroutine of type_unification_real and unify_pack_expansion to
17591 handle unification of a single P/A pair. Parameters are as
17592 for those functions. */
17594 static int
17595 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
17596 int subr, unification_kind_t strict,
17597 bool explain_p)
17599 tree arg_expr = NULL_TREE;
17600 int arg_strict;
17602 if (arg == error_mark_node || parm == error_mark_node)
17603 return unify_invalid (explain_p);
17604 if (arg == unknown_type_node)
17605 /* We can't deduce anything from this, but we might get all the
17606 template args from other function args. */
17607 return unify_success (explain_p);
17609 /* Implicit conversions (Clause 4) will be performed on a function
17610 argument to convert it to the type of the corresponding function
17611 parameter if the parameter type contains no template-parameters that
17612 participate in template argument deduction. */
17613 if (strict != DEDUCE_EXACT
17614 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
17615 /* For function parameters with no deducible template parameters,
17616 just return. We'll check non-dependent conversions later. */
17617 return unify_success (explain_p);
17619 switch (strict)
17621 case DEDUCE_CALL:
17622 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
17623 | UNIFY_ALLOW_MORE_CV_QUAL
17624 | UNIFY_ALLOW_DERIVED);
17625 break;
17627 case DEDUCE_CONV:
17628 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
17629 break;
17631 case DEDUCE_EXACT:
17632 arg_strict = UNIFY_ALLOW_NONE;
17633 break;
17635 default:
17636 gcc_unreachable ();
17639 /* We only do these transformations if this is the top-level
17640 parameter_type_list in a call or declaration matching; in other
17641 situations (nested function declarators, template argument lists) we
17642 won't be comparing a type to an expression, and we don't do any type
17643 adjustments. */
17644 if (!subr)
17646 if (!TYPE_P (arg))
17648 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
17649 if (type_unknown_p (arg))
17651 /* [temp.deduct.type] A template-argument can be
17652 deduced from a pointer to function or pointer
17653 to member function argument if the set of
17654 overloaded functions does not contain function
17655 templates and at most one of a set of
17656 overloaded functions provides a unique
17657 match. */
17659 if (resolve_overloaded_unification
17660 (tparms, targs, parm, arg, strict,
17661 arg_strict, explain_p))
17662 return unify_success (explain_p);
17663 return unify_overload_resolution_failure (explain_p, arg);
17666 arg_expr = arg;
17667 arg = unlowered_expr_type (arg);
17668 if (arg == error_mark_node)
17669 return unify_invalid (explain_p);
17672 arg_strict |=
17673 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
17675 else
17676 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
17677 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
17678 return unify_template_argument_mismatch (explain_p, parm, arg);
17680 /* For deduction from an init-list we need the actual list. */
17681 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
17682 arg = arg_expr;
17683 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
17686 /* Most parms like fn_type_unification.
17688 If SUBR is 1, we're being called recursively (to unify the
17689 arguments of a function or method parameter of a function
17690 template).
17692 CHECKS is a pointer to a vector of access checks encountered while
17693 substituting default template arguments. */
17695 static int
17696 type_unification_real (tree tparms,
17697 tree targs,
17698 tree xparms,
17699 const tree *xargs,
17700 unsigned int xnargs,
17701 int subr,
17702 unification_kind_t strict,
17703 int flags,
17704 vec<deferred_access_check, va_gc> **checks,
17705 bool explain_p)
17707 tree parm, arg;
17708 int i;
17709 int ntparms = TREE_VEC_LENGTH (tparms);
17710 int saw_undeduced = 0;
17711 tree parms;
17712 const tree *args;
17713 unsigned int nargs;
17714 unsigned int ia;
17716 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
17717 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
17718 gcc_assert (ntparms > 0);
17720 /* Reset the number of non-defaulted template arguments contained
17721 in TARGS. */
17722 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
17724 again:
17725 parms = xparms;
17726 args = xargs;
17727 nargs = xnargs;
17729 ia = 0;
17730 while (parms && parms != void_list_node
17731 && ia < nargs)
17733 parm = TREE_VALUE (parms);
17735 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
17736 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
17737 /* For a function parameter pack that occurs at the end of the
17738 parameter-declaration-list, the type A of each remaining
17739 argument of the call is compared with the type P of the
17740 declarator-id of the function parameter pack. */
17741 break;
17743 parms = TREE_CHAIN (parms);
17745 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
17746 /* For a function parameter pack that does not occur at the
17747 end of the parameter-declaration-list, the type of the
17748 parameter pack is a non-deduced context. */
17749 continue;
17751 arg = args[ia];
17752 ++ia;
17754 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17755 explain_p))
17756 return 1;
17759 if (parms
17760 && parms != void_list_node
17761 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
17763 /* Unify the remaining arguments with the pack expansion type. */
17764 tree argvec;
17765 tree parmvec = make_tree_vec (1);
17767 /* Allocate a TREE_VEC and copy in all of the arguments */
17768 argvec = make_tree_vec (nargs - ia);
17769 for (i = 0; ia < nargs; ++ia, ++i)
17770 TREE_VEC_ELT (argvec, i) = args[ia];
17772 /* Copy the parameter into parmvec. */
17773 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
17774 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
17775 /*subr=*/subr, explain_p))
17776 return 1;
17778 /* Advance to the end of the list of parameters. */
17779 parms = TREE_CHAIN (parms);
17782 /* Fail if we've reached the end of the parm list, and more args
17783 are present, and the parm list isn't variadic. */
17784 if (ia < nargs && parms == void_list_node)
17785 return unify_too_many_arguments (explain_p, nargs, ia);
17786 /* Fail if parms are left and they don't have default values and
17787 they aren't all deduced as empty packs (c++/57397). This is
17788 consistent with sufficient_parms_p. */
17789 if (parms && parms != void_list_node
17790 && TREE_PURPOSE (parms) == NULL_TREE)
17792 unsigned int count = nargs;
17793 tree p = parms;
17794 bool type_pack_p;
17797 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
17798 if (!type_pack_p)
17799 count++;
17800 p = TREE_CHAIN (p);
17802 while (p && p != void_list_node);
17803 if (count != nargs)
17804 return unify_too_few_arguments (explain_p, ia, count,
17805 type_pack_p);
17808 if (!subr)
17810 tsubst_flags_t complain = (explain_p
17811 ? tf_warning_or_error
17812 : tf_none);
17814 for (i = 0; i < ntparms; i++)
17816 tree targ = TREE_VEC_ELT (targs, i);
17817 tree tparm = TREE_VEC_ELT (tparms, i);
17819 /* Clear the "incomplete" flags on all argument packs now so that
17820 substituting them into later default arguments works. */
17821 if (targ && ARGUMENT_PACK_P (targ))
17823 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
17824 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
17827 if (targ || tparm == error_mark_node)
17828 continue;
17829 tparm = TREE_VALUE (tparm);
17831 /* If this is an undeduced nontype parameter that depends on
17832 a type parameter, try another pass; its type may have been
17833 deduced from a later argument than the one from which
17834 this parameter can be deduced. */
17835 if (TREE_CODE (tparm) == PARM_DECL
17836 && uses_template_parms (TREE_TYPE (tparm))
17837 && saw_undeduced < 2)
17839 saw_undeduced = 1;
17840 continue;
17843 /* Core issue #226 (C++0x) [temp.deduct]:
17845 If a template argument has not been deduced, its
17846 default template argument, if any, is used.
17848 When we are in C++98 mode, TREE_PURPOSE will either
17849 be NULL_TREE or ERROR_MARK_NODE, so we do not need
17850 to explicitly check cxx_dialect here. */
17851 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
17852 /* OK, there is a default argument. Wait until after the
17853 conversion check to do substitution. */
17854 continue;
17856 /* If the type parameter is a parameter pack, then it will
17857 be deduced to an empty parameter pack. */
17858 if (template_parameter_pack_p (tparm))
17860 tree arg;
17862 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
17864 arg = make_node (NONTYPE_ARGUMENT_PACK);
17865 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
17866 TREE_CONSTANT (arg) = 1;
17868 else
17869 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
17871 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
17873 TREE_VEC_ELT (targs, i) = arg;
17874 continue;
17877 return unify_parameter_deduction_failure (explain_p, tparm);
17880 /* DR 1391: All parameters have args, now check non-dependent parms for
17881 convertibility. */
17882 if (saw_undeduced < 2)
17883 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
17884 parms && parms != void_list_node && ia < nargs; )
17886 parm = TREE_VALUE (parms);
17888 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
17889 && (!TREE_CHAIN (parms)
17890 || TREE_CHAIN (parms) == void_list_node))
17891 /* For a function parameter pack that occurs at the end of the
17892 parameter-declaration-list, the type A of each remaining
17893 argument of the call is compared with the type P of the
17894 declarator-id of the function parameter pack. */
17895 break;
17897 parms = TREE_CHAIN (parms);
17899 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
17900 /* For a function parameter pack that does not occur at the
17901 end of the parameter-declaration-list, the type of the
17902 parameter pack is a non-deduced context. */
17903 continue;
17905 arg = args[ia];
17906 ++ia;
17908 if (uses_template_parms (parm))
17909 continue;
17910 if (check_non_deducible_conversion (parm, arg, strict, flags,
17911 explain_p))
17912 return 1;
17915 /* Now substitute into the default template arguments. */
17916 for (i = 0; i < ntparms; i++)
17918 tree targ = TREE_VEC_ELT (targs, i);
17919 tree tparm = TREE_VEC_ELT (tparms, i);
17921 if (targ || tparm == error_mark_node)
17922 continue;
17923 tree parm = TREE_VALUE (tparm);
17925 if (TREE_CODE (parm) == PARM_DECL
17926 && uses_template_parms (TREE_TYPE (parm))
17927 && saw_undeduced < 2)
17928 continue;
17930 tree arg = TREE_PURPOSE (tparm);
17931 reopen_deferring_access_checks (*checks);
17932 location_t save_loc = input_location;
17933 if (DECL_P (parm))
17934 input_location = DECL_SOURCE_LOCATION (parm);
17935 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
17936 arg = convert_template_argument (parm, arg, targs, complain,
17937 i, NULL_TREE);
17938 input_location = save_loc;
17939 *checks = get_deferred_access_checks ();
17940 pop_deferring_access_checks ();
17941 if (arg == error_mark_node)
17942 return 1;
17943 else
17945 TREE_VEC_ELT (targs, i) = arg;
17946 /* The position of the first default template argument,
17947 is also the number of non-defaulted arguments in TARGS.
17948 Record that. */
17949 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
17950 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
17951 continue;
17955 if (saw_undeduced++ == 1)
17956 goto again;
17958 #ifdef ENABLE_CHECKING
17959 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
17960 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
17961 #endif
17963 return unify_success (explain_p);
17966 /* Subroutine of type_unification_real. Args are like the variables
17967 at the call site. ARG is an overloaded function (or template-id);
17968 we try deducing template args from each of the overloads, and if
17969 only one succeeds, we go with that. Modifies TARGS and returns
17970 true on success. */
17972 static bool
17973 resolve_overloaded_unification (tree tparms,
17974 tree targs,
17975 tree parm,
17976 tree arg,
17977 unification_kind_t strict,
17978 int sub_strict,
17979 bool explain_p)
17981 tree tempargs = copy_node (targs);
17982 int good = 0;
17983 tree goodfn = NULL_TREE;
17984 bool addr_p;
17986 if (TREE_CODE (arg) == ADDR_EXPR)
17988 arg = TREE_OPERAND (arg, 0);
17989 addr_p = true;
17991 else
17992 addr_p = false;
17994 if (TREE_CODE (arg) == COMPONENT_REF)
17995 /* Handle `&x' where `x' is some static or non-static member
17996 function name. */
17997 arg = TREE_OPERAND (arg, 1);
17999 if (TREE_CODE (arg) == OFFSET_REF)
18000 arg = TREE_OPERAND (arg, 1);
18002 /* Strip baselink information. */
18003 if (BASELINK_P (arg))
18004 arg = BASELINK_FUNCTIONS (arg);
18006 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18008 /* If we got some explicit template args, we need to plug them into
18009 the affected templates before we try to unify, in case the
18010 explicit args will completely resolve the templates in question. */
18012 int ok = 0;
18013 tree expl_subargs = TREE_OPERAND (arg, 1);
18014 arg = TREE_OPERAND (arg, 0);
18016 for (; arg; arg = OVL_NEXT (arg))
18018 tree fn = OVL_CURRENT (arg);
18019 tree subargs, elem;
18021 if (TREE_CODE (fn) != TEMPLATE_DECL)
18022 continue;
18024 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18025 expl_subargs, NULL_TREE, tf_none,
18026 /*require_all_args=*/true,
18027 /*use_default_args=*/true);
18028 if (subargs != error_mark_node
18029 && !any_dependent_template_arguments_p (subargs))
18031 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18032 if (try_one_overload (tparms, targs, tempargs, parm,
18033 elem, strict, sub_strict, addr_p, explain_p)
18034 && (!goodfn || !same_type_p (goodfn, elem)))
18036 goodfn = elem;
18037 ++good;
18040 else if (subargs)
18041 ++ok;
18043 /* If no templates (or more than one) are fully resolved by the
18044 explicit arguments, this template-id is a non-deduced context; it
18045 could still be OK if we deduce all template arguments for the
18046 enclosing call through other arguments. */
18047 if (good != 1)
18048 good = ok;
18050 else if (TREE_CODE (arg) != OVERLOAD
18051 && TREE_CODE (arg) != FUNCTION_DECL)
18052 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18053 -- but the deduction does not succeed because the expression is
18054 not just the function on its own. */
18055 return false;
18056 else
18057 for (; arg; arg = OVL_NEXT (arg))
18058 if (try_one_overload (tparms, targs, tempargs, parm,
18059 TREE_TYPE (OVL_CURRENT (arg)),
18060 strict, sub_strict, addr_p, explain_p)
18061 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18063 goodfn = OVL_CURRENT (arg);
18064 ++good;
18067 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18068 to function or pointer to member function argument if the set of
18069 overloaded functions does not contain function templates and at most
18070 one of a set of overloaded functions provides a unique match.
18072 So if we found multiple possibilities, we return success but don't
18073 deduce anything. */
18075 if (good == 1)
18077 int i = TREE_VEC_LENGTH (targs);
18078 for (; i--; )
18079 if (TREE_VEC_ELT (tempargs, i))
18081 tree old = TREE_VEC_ELT (targs, i);
18082 tree new_ = TREE_VEC_ELT (tempargs, i);
18083 if (new_ && old && ARGUMENT_PACK_P (old)
18084 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18085 /* Don't forget explicit template arguments in a pack. */
18086 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18087 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18088 TREE_VEC_ELT (targs, i) = new_;
18091 if (good)
18092 return true;
18094 return false;
18097 /* Core DR 115: In contexts where deduction is done and fails, or in
18098 contexts where deduction is not done, if a template argument list is
18099 specified and it, along with any default template arguments, identifies
18100 a single function template specialization, then the template-id is an
18101 lvalue for the function template specialization. */
18103 tree
18104 resolve_nondeduced_context (tree orig_expr)
18106 tree expr, offset, baselink;
18107 bool addr;
18109 if (!type_unknown_p (orig_expr))
18110 return orig_expr;
18112 expr = orig_expr;
18113 addr = false;
18114 offset = NULL_TREE;
18115 baselink = NULL_TREE;
18117 if (TREE_CODE (expr) == ADDR_EXPR)
18119 expr = TREE_OPERAND (expr, 0);
18120 addr = true;
18122 if (TREE_CODE (expr) == OFFSET_REF)
18124 offset = expr;
18125 expr = TREE_OPERAND (expr, 1);
18127 if (BASELINK_P (expr))
18129 baselink = expr;
18130 expr = BASELINK_FUNCTIONS (expr);
18133 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18135 int good = 0;
18136 tree goodfn = NULL_TREE;
18138 /* If we got some explicit template args, we need to plug them into
18139 the affected templates before we try to unify, in case the
18140 explicit args will completely resolve the templates in question. */
18142 tree expl_subargs = TREE_OPERAND (expr, 1);
18143 tree arg = TREE_OPERAND (expr, 0);
18144 tree badfn = NULL_TREE;
18145 tree badargs = NULL_TREE;
18147 for (; arg; arg = OVL_NEXT (arg))
18149 tree fn = OVL_CURRENT (arg);
18150 tree subargs, elem;
18152 if (TREE_CODE (fn) != TEMPLATE_DECL)
18153 continue;
18155 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18156 expl_subargs, NULL_TREE, tf_none,
18157 /*require_all_args=*/true,
18158 /*use_default_args=*/true);
18159 if (subargs != error_mark_node
18160 && !any_dependent_template_arguments_p (subargs))
18162 elem = instantiate_template (fn, subargs, tf_none);
18163 if (elem == error_mark_node)
18165 badfn = fn;
18166 badargs = subargs;
18168 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18170 goodfn = elem;
18171 ++good;
18175 if (good == 1)
18177 mark_used (goodfn);
18178 expr = goodfn;
18179 if (baselink)
18180 expr = build_baselink (BASELINK_BINFO (baselink),
18181 BASELINK_ACCESS_BINFO (baselink),
18182 expr, BASELINK_OPTYPE (baselink));
18183 if (offset)
18185 tree base
18186 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18187 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
18189 if (addr)
18190 expr = cp_build_addr_expr (expr, tf_warning_or_error);
18191 return expr;
18193 else if (good == 0 && badargs)
18194 /* There were no good options and at least one bad one, so let the
18195 user know what the problem is. */
18196 instantiate_template (badfn, badargs, tf_warning_or_error);
18198 return orig_expr;
18201 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18202 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18203 different overloads deduce different arguments for a given parm.
18204 ADDR_P is true if the expression for which deduction is being
18205 performed was of the form "& fn" rather than simply "fn".
18207 Returns 1 on success. */
18209 static int
18210 try_one_overload (tree tparms,
18211 tree orig_targs,
18212 tree targs,
18213 tree parm,
18214 tree arg,
18215 unification_kind_t strict,
18216 int sub_strict,
18217 bool addr_p,
18218 bool explain_p)
18220 int nargs;
18221 tree tempargs;
18222 int i;
18224 if (arg == error_mark_node)
18225 return 0;
18227 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18228 to function or pointer to member function argument if the set of
18229 overloaded functions does not contain function templates and at most
18230 one of a set of overloaded functions provides a unique match.
18232 So if this is a template, just return success. */
18234 if (uses_template_parms (arg))
18235 return 1;
18237 if (TREE_CODE (arg) == METHOD_TYPE)
18238 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18239 else if (addr_p)
18240 arg = build_pointer_type (arg);
18242 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18244 /* We don't copy orig_targs for this because if we have already deduced
18245 some template args from previous args, unify would complain when we
18246 try to deduce a template parameter for the same argument, even though
18247 there isn't really a conflict. */
18248 nargs = TREE_VEC_LENGTH (targs);
18249 tempargs = make_tree_vec (nargs);
18251 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18252 return 0;
18254 /* First make sure we didn't deduce anything that conflicts with
18255 explicitly specified args. */
18256 for (i = nargs; i--; )
18258 tree elt = TREE_VEC_ELT (tempargs, i);
18259 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18261 if (!elt)
18262 /*NOP*/;
18263 else if (uses_template_parms (elt))
18264 /* Since we're unifying against ourselves, we will fill in
18265 template args used in the function parm list with our own
18266 template parms. Discard them. */
18267 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18268 else if (oldelt && !template_args_equal (oldelt, elt))
18269 return 0;
18272 for (i = nargs; i--; )
18274 tree elt = TREE_VEC_ELT (tempargs, i);
18276 if (elt)
18277 TREE_VEC_ELT (targs, i) = elt;
18280 return 1;
18283 /* PARM is a template class (perhaps with unbound template
18284 parameters). ARG is a fully instantiated type. If ARG can be
18285 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18286 TARGS are as for unify. */
18288 static tree
18289 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
18290 bool explain_p)
18292 tree copy_of_targs;
18294 if (!CLASSTYPE_TEMPLATE_INFO (arg)
18295 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
18296 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
18297 return NULL_TREE;
18299 /* We need to make a new template argument vector for the call to
18300 unify. If we used TARGS, we'd clutter it up with the result of
18301 the attempted unification, even if this class didn't work out.
18302 We also don't want to commit ourselves to all the unifications
18303 we've already done, since unification is supposed to be done on
18304 an argument-by-argument basis. In other words, consider the
18305 following pathological case:
18307 template <int I, int J, int K>
18308 struct S {};
18310 template <int I, int J>
18311 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18313 template <int I, int J, int K>
18314 void f(S<I, J, K>, S<I, I, I>);
18316 void g() {
18317 S<0, 0, 0> s0;
18318 S<0, 1, 2> s2;
18320 f(s0, s2);
18323 Now, by the time we consider the unification involving `s2', we
18324 already know that we must have `f<0, 0, 0>'. But, even though
18325 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18326 because there are two ways to unify base classes of S<0, 1, 2>
18327 with S<I, I, I>. If we kept the already deduced knowledge, we
18328 would reject the possibility I=1. */
18329 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
18331 /* If unification failed, we're done. */
18332 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
18333 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
18334 return NULL_TREE;
18336 return arg;
18339 /* Given a template type PARM and a class type ARG, find the unique
18340 base type in ARG that is an instance of PARM. We do not examine
18341 ARG itself; only its base-classes. If there is not exactly one
18342 appropriate base class, return NULL_TREE. PARM may be the type of
18343 a partial specialization, as well as a plain template type. Used
18344 by unify. */
18346 static enum template_base_result
18347 get_template_base (tree tparms, tree targs, tree parm, tree arg,
18348 bool explain_p, tree *result)
18350 tree rval = NULL_TREE;
18351 tree binfo;
18353 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
18355 binfo = TYPE_BINFO (complete_type (arg));
18356 if (!binfo)
18358 /* The type could not be completed. */
18359 *result = NULL_TREE;
18360 return tbr_incomplete_type;
18363 /* Walk in inheritance graph order. The search order is not
18364 important, and this avoids multiple walks of virtual bases. */
18365 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
18367 tree r = try_class_unification (tparms, targs, parm,
18368 BINFO_TYPE (binfo), explain_p);
18370 if (r)
18372 /* If there is more than one satisfactory baseclass, then:
18374 [temp.deduct.call]
18376 If they yield more than one possible deduced A, the type
18377 deduction fails.
18379 applies. */
18380 if (rval && !same_type_p (r, rval))
18382 *result = NULL_TREE;
18383 return tbr_ambiguous_baseclass;
18386 rval = r;
18390 *result = rval;
18391 return tbr_success;
18394 /* Returns the level of DECL, which declares a template parameter. */
18396 static int
18397 template_decl_level (tree decl)
18399 switch (TREE_CODE (decl))
18401 case TYPE_DECL:
18402 case TEMPLATE_DECL:
18403 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
18405 case PARM_DECL:
18406 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
18408 default:
18409 gcc_unreachable ();
18411 return 0;
18414 /* Decide whether ARG can be unified with PARM, considering only the
18415 cv-qualifiers of each type, given STRICT as documented for unify.
18416 Returns nonzero iff the unification is OK on that basis. */
18418 static int
18419 check_cv_quals_for_unify (int strict, tree arg, tree parm)
18421 int arg_quals = cp_type_quals (arg);
18422 int parm_quals = cp_type_quals (parm);
18424 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18425 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18427 /* Although a CVR qualifier is ignored when being applied to a
18428 substituted template parameter ([8.3.2]/1 for example), that
18429 does not allow us to unify "const T" with "int&" because both
18430 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
18431 It is ok when we're allowing additional CV qualifiers
18432 at the outer level [14.8.2.1]/3,1st bullet. */
18433 if ((TREE_CODE (arg) == REFERENCE_TYPE
18434 || TREE_CODE (arg) == FUNCTION_TYPE
18435 || TREE_CODE (arg) == METHOD_TYPE)
18436 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
18437 return 0;
18439 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
18440 && (parm_quals & TYPE_QUAL_RESTRICT))
18441 return 0;
18444 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
18445 && (arg_quals & parm_quals) != parm_quals)
18446 return 0;
18448 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
18449 && (parm_quals & arg_quals) != arg_quals)
18450 return 0;
18452 return 1;
18455 /* Determines the LEVEL and INDEX for the template parameter PARM. */
18456 void
18457 template_parm_level_and_index (tree parm, int* level, int* index)
18459 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18460 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18461 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18463 *index = TEMPLATE_TYPE_IDX (parm);
18464 *level = TEMPLATE_TYPE_LEVEL (parm);
18466 else
18468 *index = TEMPLATE_PARM_IDX (parm);
18469 *level = TEMPLATE_PARM_LEVEL (parm);
18473 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
18474 do { \
18475 if (unify (TP, TA, P, A, S, EP)) \
18476 return 1; \
18477 } while (0);
18479 /* Unifies the remaining arguments in PACKED_ARGS with the pack
18480 expansion at the end of PACKED_PARMS. Returns 0 if the type
18481 deduction succeeds, 1 otherwise. STRICT is the same as in
18482 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
18483 call argument list. We'll need to adjust the arguments to make them
18484 types. SUBR tells us if this is from a recursive call to
18485 type_unification_real, or for comparing two template argument
18486 lists. */
18488 static int
18489 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
18490 tree packed_args, unification_kind_t strict,
18491 bool subr, bool explain_p)
18493 tree parm
18494 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
18495 tree pattern = PACK_EXPANSION_PATTERN (parm);
18496 tree pack, packs = NULL_TREE;
18497 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
18499 packed_args = expand_template_argument_pack (packed_args);
18501 int len = TREE_VEC_LENGTH (packed_args);
18503 /* Determine the parameter packs we will be deducing from the
18504 pattern, and record their current deductions. */
18505 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
18506 pack; pack = TREE_CHAIN (pack))
18508 tree parm_pack = TREE_VALUE (pack);
18509 int idx, level;
18511 /* Determine the index and level of this parameter pack. */
18512 template_parm_level_and_index (parm_pack, &level, &idx);
18514 /* Keep track of the parameter packs and their corresponding
18515 argument packs. */
18516 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
18517 TREE_TYPE (packs) = make_tree_vec (len - start);
18520 /* Loop through all of the arguments that have not yet been
18521 unified and unify each with the pattern. */
18522 for (i = start; i < len; i++)
18524 tree parm;
18525 bool any_explicit = false;
18526 tree arg = TREE_VEC_ELT (packed_args, i);
18528 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
18529 or the element of its argument pack at the current index if
18530 this argument was explicitly specified. */
18531 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18533 int idx, level;
18534 tree arg, pargs;
18535 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18537 arg = NULL_TREE;
18538 if (TREE_VALUE (pack)
18539 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
18540 && (i - start < TREE_VEC_LENGTH (pargs)))
18542 any_explicit = true;
18543 arg = TREE_VEC_ELT (pargs, i - start);
18545 TMPL_ARG (targs, level, idx) = arg;
18548 /* If we had explicit template arguments, substitute them into the
18549 pattern before deduction. */
18550 if (any_explicit)
18552 /* Some arguments might still be unspecified or dependent. */
18553 bool dependent;
18554 ++processing_template_decl;
18555 dependent = any_dependent_template_arguments_p (targs);
18556 if (!dependent)
18557 --processing_template_decl;
18558 parm = tsubst (pattern, targs,
18559 explain_p ? tf_warning_or_error : tf_none,
18560 NULL_TREE);
18561 if (dependent)
18562 --processing_template_decl;
18563 if (parm == error_mark_node)
18564 return 1;
18566 else
18567 parm = pattern;
18569 /* Unify the pattern with the current argument. */
18570 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
18571 explain_p))
18572 return 1;
18574 /* For each parameter pack, collect the deduced value. */
18575 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18577 int idx, level;
18578 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18580 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
18581 TMPL_ARG (targs, level, idx);
18585 /* Verify that the results of unification with the parameter packs
18586 produce results consistent with what we've seen before, and make
18587 the deduced argument packs available. */
18588 for (pack = packs; pack; pack = TREE_CHAIN (pack))
18590 tree old_pack = TREE_VALUE (pack);
18591 tree new_args = TREE_TYPE (pack);
18592 int i, len = TREE_VEC_LENGTH (new_args);
18593 int idx, level;
18594 bool nondeduced_p = false;
18596 /* By default keep the original deduced argument pack.
18597 If necessary, more specific code is going to update the
18598 resulting deduced argument later down in this function. */
18599 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
18600 TMPL_ARG (targs, level, idx) = old_pack;
18602 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
18603 actually deduce anything. */
18604 for (i = 0; i < len && !nondeduced_p; ++i)
18605 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
18606 nondeduced_p = true;
18607 if (nondeduced_p)
18608 continue;
18610 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
18612 /* If we had fewer function args than explicit template args,
18613 just use the explicits. */
18614 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
18615 int explicit_len = TREE_VEC_LENGTH (explicit_args);
18616 if (len < explicit_len)
18617 new_args = explicit_args;
18620 if (!old_pack)
18622 tree result;
18623 /* Build the deduced *_ARGUMENT_PACK. */
18624 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
18626 result = make_node (NONTYPE_ARGUMENT_PACK);
18627 TREE_TYPE (result) =
18628 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
18629 TREE_CONSTANT (result) = 1;
18631 else
18632 result = cxx_make_type (TYPE_ARGUMENT_PACK);
18634 SET_ARGUMENT_PACK_ARGS (result, new_args);
18636 /* Note the deduced argument packs for this parameter
18637 pack. */
18638 TMPL_ARG (targs, level, idx) = result;
18640 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
18641 && (ARGUMENT_PACK_ARGS (old_pack)
18642 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
18644 /* We only had the explicitly-provided arguments before, but
18645 now we have a complete set of arguments. */
18646 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
18648 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
18649 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
18650 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
18652 else
18654 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
18655 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
18657 if (!comp_template_args_with_info (old_args, new_args,
18658 &bad_old_arg, &bad_new_arg))
18659 /* Inconsistent unification of this parameter pack. */
18660 return unify_parameter_pack_inconsistent (explain_p,
18661 bad_old_arg,
18662 bad_new_arg);
18666 return unify_success (explain_p);
18669 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
18670 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
18671 parameters and return value are as for unify. */
18673 static int
18674 unify_array_domain (tree tparms, tree targs,
18675 tree parm_dom, tree arg_dom,
18676 bool explain_p)
18678 tree parm_max;
18679 tree arg_max;
18680 bool parm_cst;
18681 bool arg_cst;
18683 /* Our representation of array types uses "N - 1" as the
18684 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
18685 not an integer constant. We cannot unify arbitrarily
18686 complex expressions, so we eliminate the MINUS_EXPRs
18687 here. */
18688 parm_max = TYPE_MAX_VALUE (parm_dom);
18689 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
18690 if (!parm_cst)
18692 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
18693 parm_max = TREE_OPERAND (parm_max, 0);
18695 arg_max = TYPE_MAX_VALUE (arg_dom);
18696 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
18697 if (!arg_cst)
18699 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
18700 trying to unify the type of a variable with the type
18701 of a template parameter. For example:
18703 template <unsigned int N>
18704 void f (char (&) [N]);
18705 int g();
18706 void h(int i) {
18707 char a[g(i)];
18708 f(a);
18711 Here, the type of the ARG will be "int [g(i)]", and
18712 may be a SAVE_EXPR, etc. */
18713 if (TREE_CODE (arg_max) != MINUS_EXPR)
18714 return unify_vla_arg (explain_p, arg_dom);
18715 arg_max = TREE_OPERAND (arg_max, 0);
18718 /* If only one of the bounds used a MINUS_EXPR, compensate
18719 by adding one to the other bound. */
18720 if (parm_cst && !arg_cst)
18721 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
18722 integer_type_node,
18723 parm_max,
18724 integer_one_node);
18725 else if (arg_cst && !parm_cst)
18726 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
18727 integer_type_node,
18728 arg_max,
18729 integer_one_node);
18731 return unify (tparms, targs, parm_max, arg_max,
18732 UNIFY_ALLOW_INTEGER, explain_p);
18735 /* Deduce the value of template parameters. TPARMS is the (innermost)
18736 set of template parameters to a template. TARGS is the bindings
18737 for those template parameters, as determined thus far; TARGS may
18738 include template arguments for outer levels of template parameters
18739 as well. PARM is a parameter to a template function, or a
18740 subcomponent of that parameter; ARG is the corresponding argument.
18741 This function attempts to match PARM with ARG in a manner
18742 consistent with the existing assignments in TARGS. If more values
18743 are deduced, then TARGS is updated.
18745 Returns 0 if the type deduction succeeds, 1 otherwise. The
18746 parameter STRICT is a bitwise or of the following flags:
18748 UNIFY_ALLOW_NONE:
18749 Require an exact match between PARM and ARG.
18750 UNIFY_ALLOW_MORE_CV_QUAL:
18751 Allow the deduced ARG to be more cv-qualified (by qualification
18752 conversion) than ARG.
18753 UNIFY_ALLOW_LESS_CV_QUAL:
18754 Allow the deduced ARG to be less cv-qualified than ARG.
18755 UNIFY_ALLOW_DERIVED:
18756 Allow the deduced ARG to be a template base class of ARG,
18757 or a pointer to a template base class of the type pointed to by
18758 ARG.
18759 UNIFY_ALLOW_INTEGER:
18760 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
18761 case for more information.
18762 UNIFY_ALLOW_OUTER_LEVEL:
18763 This is the outermost level of a deduction. Used to determine validity
18764 of qualification conversions. A valid qualification conversion must
18765 have const qualified pointers leading up to the inner type which
18766 requires additional CV quals, except at the outer level, where const
18767 is not required [conv.qual]. It would be normal to set this flag in
18768 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
18769 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
18770 This is the outermost level of a deduction, and PARM can be more CV
18771 qualified at this point.
18772 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
18773 This is the outermost level of a deduction, and PARM can be less CV
18774 qualified at this point. */
18776 static int
18777 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
18778 bool explain_p)
18780 int idx;
18781 tree targ;
18782 tree tparm;
18783 int strict_in = strict;
18785 /* I don't think this will do the right thing with respect to types.
18786 But the only case I've seen it in so far has been array bounds, where
18787 signedness is the only information lost, and I think that will be
18788 okay. */
18789 while (TREE_CODE (parm) == NOP_EXPR)
18790 parm = TREE_OPERAND (parm, 0);
18792 if (arg == error_mark_node)
18793 return unify_invalid (explain_p);
18794 if (arg == unknown_type_node
18795 || arg == init_list_type_node)
18796 /* We can't deduce anything from this, but we might get all the
18797 template args from other function args. */
18798 return unify_success (explain_p);
18800 /* If PARM uses template parameters, then we can't bail out here,
18801 even if ARG == PARM, since we won't record unifications for the
18802 template parameters. We might need them if we're trying to
18803 figure out which of two things is more specialized. */
18804 if (arg == parm && !uses_template_parms (parm))
18805 return unify_success (explain_p);
18807 /* Handle init lists early, so the rest of the function can assume
18808 we're dealing with a type. */
18809 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
18811 tree elt, elttype;
18812 unsigned i;
18813 tree orig_parm = parm;
18815 /* Replace T with std::initializer_list<T> for deduction. */
18816 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18817 && flag_deduce_init_list)
18818 parm = listify (parm);
18820 if (!is_std_init_list (parm)
18821 && TREE_CODE (parm) != ARRAY_TYPE)
18822 /* We can only deduce from an initializer list argument if the
18823 parameter is std::initializer_list or an array; otherwise this
18824 is a non-deduced context. */
18825 return unify_success (explain_p);
18827 if (TREE_CODE (parm) == ARRAY_TYPE)
18828 elttype = TREE_TYPE (parm);
18829 else
18831 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
18832 /* Deduction is defined in terms of a single type, so just punt
18833 on the (bizarre) std::initializer_list<T...>. */
18834 if (PACK_EXPANSION_P (elttype))
18835 return unify_success (explain_p);
18838 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
18840 int elt_strict = strict;
18842 if (elt == error_mark_node)
18843 return unify_invalid (explain_p);
18845 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
18847 tree type = TREE_TYPE (elt);
18848 if (type == error_mark_node)
18849 return unify_invalid (explain_p);
18850 /* It should only be possible to get here for a call. */
18851 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
18852 elt_strict |= maybe_adjust_types_for_deduction
18853 (DEDUCE_CALL, &elttype, &type, elt);
18854 elt = type;
18857 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
18858 explain_p);
18861 if (TREE_CODE (parm) == ARRAY_TYPE
18862 && deducible_array_bound (TYPE_DOMAIN (parm)))
18864 /* Also deduce from the length of the initializer list. */
18865 tree max = size_int (CONSTRUCTOR_NELTS (arg));
18866 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
18867 if (idx == error_mark_node)
18868 return unify_invalid (explain_p);
18869 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
18870 idx, explain_p);
18873 /* If the std::initializer_list<T> deduction worked, replace the
18874 deduced A with std::initializer_list<A>. */
18875 if (orig_parm != parm)
18877 idx = TEMPLATE_TYPE_IDX (orig_parm);
18878 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18879 targ = listify (targ);
18880 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
18882 return unify_success (explain_p);
18885 /* Immediately reject some pairs that won't unify because of
18886 cv-qualification mismatches. */
18887 if (TREE_CODE (arg) == TREE_CODE (parm)
18888 && TYPE_P (arg)
18889 /* It is the elements of the array which hold the cv quals of an array
18890 type, and the elements might be template type parms. We'll check
18891 when we recurse. */
18892 && TREE_CODE (arg) != ARRAY_TYPE
18893 /* We check the cv-qualifiers when unifying with template type
18894 parameters below. We want to allow ARG `const T' to unify with
18895 PARM `T' for example, when computing which of two templates
18896 is more specialized, for example. */
18897 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
18898 && !check_cv_quals_for_unify (strict_in, arg, parm))
18899 return unify_cv_qual_mismatch (explain_p, parm, arg);
18901 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
18902 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
18903 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
18904 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
18905 strict &= ~UNIFY_ALLOW_DERIVED;
18906 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
18907 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
18909 switch (TREE_CODE (parm))
18911 case TYPENAME_TYPE:
18912 case SCOPE_REF:
18913 case UNBOUND_CLASS_TEMPLATE:
18914 /* In a type which contains a nested-name-specifier, template
18915 argument values cannot be deduced for template parameters used
18916 within the nested-name-specifier. */
18917 return unify_success (explain_p);
18919 case TEMPLATE_TYPE_PARM:
18920 case TEMPLATE_TEMPLATE_PARM:
18921 case BOUND_TEMPLATE_TEMPLATE_PARM:
18922 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
18923 if (error_operand_p (tparm))
18924 return unify_invalid (explain_p);
18926 if (TEMPLATE_TYPE_LEVEL (parm)
18927 != template_decl_level (tparm))
18928 /* The PARM is not one we're trying to unify. Just check
18929 to see if it matches ARG. */
18931 if (TREE_CODE (arg) == TREE_CODE (parm)
18932 && (is_auto (parm) ? is_auto (arg)
18933 : same_type_p (parm, arg)))
18934 return unify_success (explain_p);
18935 else
18936 return unify_type_mismatch (explain_p, parm, arg);
18938 idx = TEMPLATE_TYPE_IDX (parm);
18939 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
18940 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
18941 if (error_operand_p (tparm))
18942 return unify_invalid (explain_p);
18944 /* Check for mixed types and values. */
18945 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
18946 && TREE_CODE (tparm) != TYPE_DECL)
18947 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
18948 && TREE_CODE (tparm) != TEMPLATE_DECL))
18949 gcc_unreachable ();
18951 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
18953 /* ARG must be constructed from a template class or a template
18954 template parameter. */
18955 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
18956 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
18957 return unify_template_deduction_failure (explain_p, parm, arg);
18959 tree parmvec = TYPE_TI_ARGS (parm);
18960 /* An alias template name is never deduced. */
18961 if (TYPE_ALIAS_P (arg))
18962 arg = strip_typedefs (arg);
18963 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
18964 tree full_argvec = add_to_template_args (targs, argvec);
18965 tree parm_parms
18966 = DECL_INNERMOST_TEMPLATE_PARMS
18967 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
18968 int i, len;
18969 int parm_variadic_p = 0;
18971 /* The resolution to DR150 makes clear that default
18972 arguments for an N-argument may not be used to bind T
18973 to a template template parameter with fewer than N
18974 parameters. It is not safe to permit the binding of
18975 default arguments as an extension, as that may change
18976 the meaning of a conforming program. Consider:
18978 struct Dense { static const unsigned int dim = 1; };
18980 template <template <typename> class View,
18981 typename Block>
18982 void operator+(float, View<Block> const&);
18984 template <typename Block,
18985 unsigned int Dim = Block::dim>
18986 struct Lvalue_proxy { operator float() const; };
18988 void
18989 test_1d (void) {
18990 Lvalue_proxy<Dense> p;
18991 float b;
18992 b + p;
18995 Here, if Lvalue_proxy is permitted to bind to View, then
18996 the global operator+ will be used; if they are not, the
18997 Lvalue_proxy will be converted to float. */
18998 if (coerce_template_parms (parm_parms,
18999 full_argvec,
19000 TYPE_TI_TEMPLATE (parm),
19001 (explain_p
19002 ? tf_warning_or_error
19003 : tf_none),
19004 /*require_all_args=*/true,
19005 /*use_default_args=*/false)
19006 == error_mark_node)
19007 return 1;
19009 /* Deduce arguments T, i from TT<T> or TT<i>.
19010 We check each element of PARMVEC and ARGVEC individually
19011 rather than the whole TREE_VEC since they can have
19012 different number of elements. */
19014 parmvec = expand_template_argument_pack (parmvec);
19015 argvec = expand_template_argument_pack (argvec);
19017 len = TREE_VEC_LENGTH (parmvec);
19019 /* Check if the parameters end in a pack, making them
19020 variadic. */
19021 if (len > 0
19022 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19023 parm_variadic_p = 1;
19025 for (i = 0; i < len - parm_variadic_p; ++i)
19026 /* If the template argument list of P contains a pack
19027 expansion that is not the last template argument, the
19028 entire template argument list is a non-deduced
19029 context. */
19030 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19031 return unify_success (explain_p);
19033 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19034 return unify_too_few_arguments (explain_p,
19035 TREE_VEC_LENGTH (argvec), len);
19037 for (i = 0; i < len - parm_variadic_p; ++i)
19039 RECUR_AND_CHECK_FAILURE (tparms, targs,
19040 TREE_VEC_ELT (parmvec, i),
19041 TREE_VEC_ELT (argvec, i),
19042 UNIFY_ALLOW_NONE, explain_p);
19045 if (parm_variadic_p
19046 && unify_pack_expansion (tparms, targs,
19047 parmvec, argvec,
19048 DEDUCE_EXACT,
19049 /*subr=*/true, explain_p))
19050 return 1;
19052 arg = TYPE_TI_TEMPLATE (arg);
19054 /* Fall through to deduce template name. */
19057 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19058 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19060 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19062 /* Simple cases: Value already set, does match or doesn't. */
19063 if (targ != NULL_TREE && template_args_equal (targ, arg))
19064 return unify_success (explain_p);
19065 else if (targ)
19066 return unify_inconsistency (explain_p, parm, targ, arg);
19068 else
19070 /* If PARM is `const T' and ARG is only `int', we don't have
19071 a match unless we are allowing additional qualification.
19072 If ARG is `const int' and PARM is just `T' that's OK;
19073 that binds `const int' to `T'. */
19074 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19075 arg, parm))
19076 return unify_cv_qual_mismatch (explain_p, parm, arg);
19078 /* Consider the case where ARG is `const volatile int' and
19079 PARM is `const T'. Then, T should be `volatile int'. */
19080 arg = cp_build_qualified_type_real
19081 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19082 if (arg == error_mark_node)
19083 return unify_invalid (explain_p);
19085 /* Simple cases: Value already set, does match or doesn't. */
19086 if (targ != NULL_TREE && same_type_p (targ, arg))
19087 return unify_success (explain_p);
19088 else if (targ)
19089 return unify_inconsistency (explain_p, parm, targ, arg);
19091 /* Make sure that ARG is not a variable-sized array. (Note
19092 that were talking about variable-sized arrays (like
19093 `int[n]'), rather than arrays of unknown size (like
19094 `int[]').) We'll get very confused by such a type since
19095 the bound of the array is not constant, and therefore
19096 not mangleable. Besides, such types are not allowed in
19097 ISO C++, so we can do as we please here. We do allow
19098 them for 'auto' deduction, since that isn't ABI-exposed. */
19099 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19100 return unify_vla_arg (explain_p, arg);
19102 /* Strip typedefs as in convert_template_argument. */
19103 arg = canonicalize_type_argument (arg, tf_none);
19106 /* If ARG is a parameter pack or an expansion, we cannot unify
19107 against it unless PARM is also a parameter pack. */
19108 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19109 && !template_parameter_pack_p (parm))
19110 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19112 /* If the argument deduction results is a METHOD_TYPE,
19113 then there is a problem.
19114 METHOD_TYPE doesn't map to any real C++ type the result of
19115 the deduction can not be of that type. */
19116 if (TREE_CODE (arg) == METHOD_TYPE)
19117 return unify_method_type_error (explain_p, arg);
19119 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19120 return unify_success (explain_p);
19122 case TEMPLATE_PARM_INDEX:
19123 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19124 if (error_operand_p (tparm))
19125 return unify_invalid (explain_p);
19127 if (TEMPLATE_PARM_LEVEL (parm)
19128 != template_decl_level (tparm))
19130 /* The PARM is not one we're trying to unify. Just check
19131 to see if it matches ARG. */
19132 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19133 && cp_tree_equal (parm, arg));
19134 if (result)
19135 unify_expression_unequal (explain_p, parm, arg);
19136 return result;
19139 idx = TEMPLATE_PARM_IDX (parm);
19140 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19142 if (targ)
19144 int x = !cp_tree_equal (targ, arg);
19145 if (x)
19146 unify_inconsistency (explain_p, parm, targ, arg);
19147 return x;
19150 /* [temp.deduct.type] If, in the declaration of a function template
19151 with a non-type template-parameter, the non-type
19152 template-parameter is used in an expression in the function
19153 parameter-list and, if the corresponding template-argument is
19154 deduced, the template-argument type shall match the type of the
19155 template-parameter exactly, except that a template-argument
19156 deduced from an array bound may be of any integral type.
19157 The non-type parameter might use already deduced type parameters. */
19158 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19159 if (!TREE_TYPE (arg))
19160 /* Template-parameter dependent expression. Just accept it for now.
19161 It will later be processed in convert_template_argument. */
19163 else if (same_type_p (TREE_TYPE (arg), tparm))
19164 /* OK */;
19165 else if ((strict & UNIFY_ALLOW_INTEGER)
19166 && CP_INTEGRAL_TYPE_P (tparm))
19167 /* Convert the ARG to the type of PARM; the deduced non-type
19168 template argument must exactly match the types of the
19169 corresponding parameter. */
19170 arg = fold (build_nop (tparm, arg));
19171 else if (uses_template_parms (tparm))
19172 /* We haven't deduced the type of this parameter yet. Try again
19173 later. */
19174 return unify_success (explain_p);
19175 else
19176 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19178 /* If ARG is a parameter pack or an expansion, we cannot unify
19179 against it unless PARM is also a parameter pack. */
19180 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19181 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19182 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19185 bool removed_attr = false;
19186 arg = strip_typedefs_expr (arg, &removed_attr);
19188 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19189 return unify_success (explain_p);
19191 case PTRMEM_CST:
19193 /* A pointer-to-member constant can be unified only with
19194 another constant. */
19195 if (TREE_CODE (arg) != PTRMEM_CST)
19196 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19198 /* Just unify the class member. It would be useless (and possibly
19199 wrong, depending on the strict flags) to unify also
19200 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19201 arg refer to the same variable, even if through different
19202 classes. For instance:
19204 struct A { int x; };
19205 struct B : A { };
19207 Unification of &A::x and &B::x must succeed. */
19208 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19209 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19212 case POINTER_TYPE:
19214 if (!TYPE_PTR_P (arg))
19215 return unify_type_mismatch (explain_p, parm, arg);
19217 /* [temp.deduct.call]
19219 A can be another pointer or pointer to member type that can
19220 be converted to the deduced A via a qualification
19221 conversion (_conv.qual_).
19223 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19224 This will allow for additional cv-qualification of the
19225 pointed-to types if appropriate. */
19227 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19228 /* The derived-to-base conversion only persists through one
19229 level of pointers. */
19230 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19232 return unify (tparms, targs, TREE_TYPE (parm),
19233 TREE_TYPE (arg), strict, explain_p);
19236 case REFERENCE_TYPE:
19237 if (TREE_CODE (arg) != REFERENCE_TYPE)
19238 return unify_type_mismatch (explain_p, parm, arg);
19239 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19240 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19242 case ARRAY_TYPE:
19243 if (TREE_CODE (arg) != ARRAY_TYPE)
19244 return unify_type_mismatch (explain_p, parm, arg);
19245 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19246 != (TYPE_DOMAIN (arg) == NULL_TREE))
19247 return unify_type_mismatch (explain_p, parm, arg);
19248 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19249 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19250 if (TYPE_DOMAIN (parm) != NULL_TREE)
19251 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19252 TYPE_DOMAIN (arg), explain_p);
19253 return unify_success (explain_p);
19255 case REAL_TYPE:
19256 case COMPLEX_TYPE:
19257 case VECTOR_TYPE:
19258 case INTEGER_TYPE:
19259 case BOOLEAN_TYPE:
19260 case ENUMERAL_TYPE:
19261 case VOID_TYPE:
19262 case NULLPTR_TYPE:
19263 if (TREE_CODE (arg) != TREE_CODE (parm))
19264 return unify_type_mismatch (explain_p, parm, arg);
19266 /* We have already checked cv-qualification at the top of the
19267 function. */
19268 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
19269 return unify_type_mismatch (explain_p, parm, arg);
19271 /* As far as unification is concerned, this wins. Later checks
19272 will invalidate it if necessary. */
19273 return unify_success (explain_p);
19275 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19276 /* Type INTEGER_CST can come from ordinary constant template args. */
19277 case INTEGER_CST:
19278 while (TREE_CODE (arg) == NOP_EXPR)
19279 arg = TREE_OPERAND (arg, 0);
19281 if (TREE_CODE (arg) != INTEGER_CST)
19282 return unify_template_argument_mismatch (explain_p, parm, arg);
19283 return (tree_int_cst_equal (parm, arg)
19284 ? unify_success (explain_p)
19285 : unify_template_argument_mismatch (explain_p, parm, arg));
19287 case TREE_VEC:
19289 int i, len, argslen;
19290 int parm_variadic_p = 0;
19292 if (TREE_CODE (arg) != TREE_VEC)
19293 return unify_template_argument_mismatch (explain_p, parm, arg);
19295 len = TREE_VEC_LENGTH (parm);
19296 argslen = TREE_VEC_LENGTH (arg);
19298 /* Check for pack expansions in the parameters. */
19299 for (i = 0; i < len; ++i)
19301 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
19303 if (i == len - 1)
19304 /* We can unify against something with a trailing
19305 parameter pack. */
19306 parm_variadic_p = 1;
19307 else
19308 /* [temp.deduct.type]/9: If the template argument list of
19309 P contains a pack expansion that is not the last
19310 template argument, the entire template argument list
19311 is a non-deduced context. */
19312 return unify_success (explain_p);
19316 /* If we don't have enough arguments to satisfy the parameters
19317 (not counting the pack expression at the end), or we have
19318 too many arguments for a parameter list that doesn't end in
19319 a pack expression, we can't unify. */
19320 if (parm_variadic_p
19321 ? argslen < len - parm_variadic_p
19322 : argslen != len)
19323 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
19325 /* Unify all of the parameters that precede the (optional)
19326 pack expression. */
19327 for (i = 0; i < len - parm_variadic_p; ++i)
19329 RECUR_AND_CHECK_FAILURE (tparms, targs,
19330 TREE_VEC_ELT (parm, i),
19331 TREE_VEC_ELT (arg, i),
19332 UNIFY_ALLOW_NONE, explain_p);
19334 if (parm_variadic_p)
19335 return unify_pack_expansion (tparms, targs, parm, arg,
19336 DEDUCE_EXACT,
19337 /*subr=*/true, explain_p);
19338 return unify_success (explain_p);
19341 case RECORD_TYPE:
19342 case UNION_TYPE:
19343 if (TREE_CODE (arg) != TREE_CODE (parm))
19344 return unify_type_mismatch (explain_p, parm, arg);
19346 if (TYPE_PTRMEMFUNC_P (parm))
19348 if (!TYPE_PTRMEMFUNC_P (arg))
19349 return unify_type_mismatch (explain_p, parm, arg);
19351 return unify (tparms, targs,
19352 TYPE_PTRMEMFUNC_FN_TYPE (parm),
19353 TYPE_PTRMEMFUNC_FN_TYPE (arg),
19354 strict, explain_p);
19356 else if (TYPE_PTRMEMFUNC_P (arg))
19357 return unify_type_mismatch (explain_p, parm, arg);
19359 if (CLASSTYPE_TEMPLATE_INFO (parm))
19361 tree t = NULL_TREE;
19363 if (strict_in & UNIFY_ALLOW_DERIVED)
19365 /* First, we try to unify the PARM and ARG directly. */
19366 t = try_class_unification (tparms, targs,
19367 parm, arg, explain_p);
19369 if (!t)
19371 /* Fallback to the special case allowed in
19372 [temp.deduct.call]:
19374 If P is a class, and P has the form
19375 template-id, then A can be a derived class of
19376 the deduced A. Likewise, if P is a pointer to
19377 a class of the form template-id, A can be a
19378 pointer to a derived class pointed to by the
19379 deduced A. */
19380 enum template_base_result r;
19381 r = get_template_base (tparms, targs, parm, arg,
19382 explain_p, &t);
19384 if (!t)
19385 return unify_no_common_base (explain_p, r, parm, arg);
19388 else if (CLASSTYPE_TEMPLATE_INFO (arg)
19389 && (CLASSTYPE_TI_TEMPLATE (parm)
19390 == CLASSTYPE_TI_TEMPLATE (arg)))
19391 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19392 Then, we should unify `int' and `U'. */
19393 t = arg;
19394 else
19395 /* There's no chance of unification succeeding. */
19396 return unify_type_mismatch (explain_p, parm, arg);
19398 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
19399 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
19401 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
19402 return unify_type_mismatch (explain_p, parm, arg);
19403 return unify_success (explain_p);
19405 case METHOD_TYPE:
19406 case FUNCTION_TYPE:
19408 unsigned int nargs;
19409 tree *args;
19410 tree a;
19411 unsigned int i;
19413 if (TREE_CODE (arg) != TREE_CODE (parm))
19414 return unify_type_mismatch (explain_p, parm, arg);
19416 /* CV qualifications for methods can never be deduced, they must
19417 match exactly. We need to check them explicitly here,
19418 because type_unification_real treats them as any other
19419 cv-qualified parameter. */
19420 if (TREE_CODE (parm) == METHOD_TYPE
19421 && (!check_cv_quals_for_unify
19422 (UNIFY_ALLOW_NONE,
19423 class_of_this_parm (arg),
19424 class_of_this_parm (parm))))
19425 return unify_cv_qual_mismatch (explain_p, parm, arg);
19427 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
19428 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
19430 nargs = list_length (TYPE_ARG_TYPES (arg));
19431 args = XALLOCAVEC (tree, nargs);
19432 for (a = TYPE_ARG_TYPES (arg), i = 0;
19433 a != NULL_TREE && a != void_list_node;
19434 a = TREE_CHAIN (a), ++i)
19435 args[i] = TREE_VALUE (a);
19436 nargs = i;
19438 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
19439 args, nargs, 1, DEDUCE_EXACT,
19440 LOOKUP_NORMAL, NULL, explain_p);
19443 case OFFSET_TYPE:
19444 /* Unify a pointer to member with a pointer to member function, which
19445 deduces the type of the member as a function type. */
19446 if (TYPE_PTRMEMFUNC_P (arg))
19448 /* Check top-level cv qualifiers */
19449 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
19450 return unify_cv_qual_mismatch (explain_p, parm, arg);
19452 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19453 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
19454 UNIFY_ALLOW_NONE, explain_p);
19456 /* Determine the type of the function we are unifying against. */
19457 tree fntype = static_fn_type (arg);
19459 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
19462 if (TREE_CODE (arg) != OFFSET_TYPE)
19463 return unify_type_mismatch (explain_p, parm, arg);
19464 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
19465 TYPE_OFFSET_BASETYPE (arg),
19466 UNIFY_ALLOW_NONE, explain_p);
19467 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19468 strict, explain_p);
19470 case CONST_DECL:
19471 if (DECL_TEMPLATE_PARM_P (parm))
19472 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
19473 if (arg != scalar_constant_value (parm))
19474 return unify_template_argument_mismatch (explain_p, parm, arg);
19475 return unify_success (explain_p);
19477 case FIELD_DECL:
19478 case TEMPLATE_DECL:
19479 /* Matched cases are handled by the ARG == PARM test above. */
19480 return unify_template_argument_mismatch (explain_p, parm, arg);
19482 case VAR_DECL:
19483 /* A non-type template parameter that is a variable should be a
19484 an integral constant, in which case, it whould have been
19485 folded into its (constant) value. So we should not be getting
19486 a variable here. */
19487 gcc_unreachable ();
19489 case TYPE_ARGUMENT_PACK:
19490 case NONTYPE_ARGUMENT_PACK:
19491 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
19492 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
19494 case TYPEOF_TYPE:
19495 case DECLTYPE_TYPE:
19496 case UNDERLYING_TYPE:
19497 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
19498 or UNDERLYING_TYPE nodes. */
19499 return unify_success (explain_p);
19501 case ERROR_MARK:
19502 /* Unification fails if we hit an error node. */
19503 return unify_invalid (explain_p);
19505 case INDIRECT_REF:
19506 if (REFERENCE_REF_P (parm))
19508 if (REFERENCE_REF_P (arg))
19509 arg = TREE_OPERAND (arg, 0);
19510 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
19511 strict, explain_p);
19513 /* FALLTHRU */
19515 default:
19516 /* An unresolved overload is a nondeduced context. */
19517 if (is_overloaded_fn (parm) || type_unknown_p (parm))
19518 return unify_success (explain_p);
19519 gcc_assert (EXPR_P (parm));
19521 /* We must be looking at an expression. This can happen with
19522 something like:
19524 template <int I>
19525 void foo(S<I>, S<I + 2>);
19527 This is a "nondeduced context":
19529 [deduct.type]
19531 The nondeduced contexts are:
19533 --A type that is a template-id in which one or more of
19534 the template-arguments is an expression that references
19535 a template-parameter.
19537 In these cases, we assume deduction succeeded, but don't
19538 actually infer any unifications. */
19540 if (!uses_template_parms (parm)
19541 && !template_args_equal (parm, arg))
19542 return unify_expression_unequal (explain_p, parm, arg);
19543 else
19544 return unify_success (explain_p);
19547 #undef RECUR_AND_CHECK_FAILURE
19549 /* Note that DECL can be defined in this translation unit, if
19550 required. */
19552 static void
19553 mark_definable (tree decl)
19555 tree clone;
19556 DECL_NOT_REALLY_EXTERN (decl) = 1;
19557 FOR_EACH_CLONE (clone, decl)
19558 DECL_NOT_REALLY_EXTERN (clone) = 1;
19561 /* Called if RESULT is explicitly instantiated, or is a member of an
19562 explicitly instantiated class. */
19564 void
19565 mark_decl_instantiated (tree result, int extern_p)
19567 SET_DECL_EXPLICIT_INSTANTIATION (result);
19569 /* If this entity has already been written out, it's too late to
19570 make any modifications. */
19571 if (TREE_ASM_WRITTEN (result))
19572 return;
19574 /* For anonymous namespace we don't need to do anything. */
19575 if (decl_anon_ns_mem_p (result))
19577 gcc_assert (!TREE_PUBLIC (result));
19578 return;
19581 if (TREE_CODE (result) != FUNCTION_DECL)
19582 /* The TREE_PUBLIC flag for function declarations will have been
19583 set correctly by tsubst. */
19584 TREE_PUBLIC (result) = 1;
19586 /* This might have been set by an earlier implicit instantiation. */
19587 DECL_COMDAT (result) = 0;
19589 if (extern_p)
19590 DECL_NOT_REALLY_EXTERN (result) = 0;
19591 else
19593 mark_definable (result);
19594 mark_needed (result);
19595 /* Always make artificials weak. */
19596 if (DECL_ARTIFICIAL (result) && flag_weak)
19597 comdat_linkage (result);
19598 /* For WIN32 we also want to put explicit instantiations in
19599 linkonce sections. */
19600 else if (TREE_PUBLIC (result))
19601 maybe_make_one_only (result);
19604 /* If EXTERN_P, then this function will not be emitted -- unless
19605 followed by an explicit instantiation, at which point its linkage
19606 will be adjusted. If !EXTERN_P, then this function will be
19607 emitted here. In neither circumstance do we want
19608 import_export_decl to adjust the linkage. */
19609 DECL_INTERFACE_KNOWN (result) = 1;
19612 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
19613 important template arguments. If any are missing, we check whether
19614 they're important by using error_mark_node for substituting into any
19615 args that were used for partial ordering (the ones between ARGS and END)
19616 and seeing if it bubbles up. */
19618 static bool
19619 check_undeduced_parms (tree targs, tree args, tree end)
19621 bool found = false;
19622 int i;
19623 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
19624 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
19626 found = true;
19627 TREE_VEC_ELT (targs, i) = error_mark_node;
19629 if (found)
19631 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
19632 if (substed == error_mark_node)
19633 return true;
19635 return false;
19638 /* Given two function templates PAT1 and PAT2, return:
19640 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
19641 -1 if PAT2 is more specialized than PAT1.
19642 0 if neither is more specialized.
19644 LEN indicates the number of parameters we should consider
19645 (defaulted parameters should not be considered).
19647 The 1998 std underspecified function template partial ordering, and
19648 DR214 addresses the issue. We take pairs of arguments, one from
19649 each of the templates, and deduce them against each other. One of
19650 the templates will be more specialized if all the *other*
19651 template's arguments deduce against its arguments and at least one
19652 of its arguments *does* *not* deduce against the other template's
19653 corresponding argument. Deduction is done as for class templates.
19654 The arguments used in deduction have reference and top level cv
19655 qualifiers removed. Iff both arguments were originally reference
19656 types *and* deduction succeeds in both directions, an lvalue reference
19657 wins against an rvalue reference and otherwise the template
19658 with the more cv-qualified argument wins for that pairing (if
19659 neither is more cv-qualified, they both are equal). Unlike regular
19660 deduction, after all the arguments have been deduced in this way,
19661 we do *not* verify the deduced template argument values can be
19662 substituted into non-deduced contexts.
19664 The logic can be a bit confusing here, because we look at deduce1 and
19665 targs1 to see if pat2 is at least as specialized, and vice versa; if we
19666 can find template arguments for pat1 to make arg1 look like arg2, that
19667 means that arg2 is at least as specialized as arg1. */
19670 more_specialized_fn (tree pat1, tree pat2, int len)
19672 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
19673 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
19674 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
19675 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
19676 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
19677 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
19678 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
19679 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
19680 tree origs1, origs2;
19681 bool lose1 = false;
19682 bool lose2 = false;
19684 /* Remove the this parameter from non-static member functions. If
19685 one is a non-static member function and the other is not a static
19686 member function, remove the first parameter from that function
19687 also. This situation occurs for operator functions where we
19688 locate both a member function (with this pointer) and non-member
19689 operator (with explicit first operand). */
19690 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
19692 len--; /* LEN is the number of significant arguments for DECL1 */
19693 args1 = TREE_CHAIN (args1);
19694 if (!DECL_STATIC_FUNCTION_P (decl2))
19695 args2 = TREE_CHAIN (args2);
19697 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
19699 args2 = TREE_CHAIN (args2);
19700 if (!DECL_STATIC_FUNCTION_P (decl1))
19702 len--;
19703 args1 = TREE_CHAIN (args1);
19707 /* If only one is a conversion operator, they are unordered. */
19708 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
19709 return 0;
19711 /* Consider the return type for a conversion function */
19712 if (DECL_CONV_FN_P (decl1))
19714 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
19715 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
19716 len++;
19719 processing_template_decl++;
19721 origs1 = args1;
19722 origs2 = args2;
19724 while (len--
19725 /* Stop when an ellipsis is seen. */
19726 && args1 != NULL_TREE && args2 != NULL_TREE)
19728 tree arg1 = TREE_VALUE (args1);
19729 tree arg2 = TREE_VALUE (args2);
19730 int deduce1, deduce2;
19731 int quals1 = -1;
19732 int quals2 = -1;
19733 int ref1 = 0;
19734 int ref2 = 0;
19736 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
19737 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
19739 /* When both arguments are pack expansions, we need only
19740 unify the patterns themselves. */
19741 arg1 = PACK_EXPANSION_PATTERN (arg1);
19742 arg2 = PACK_EXPANSION_PATTERN (arg2);
19744 /* This is the last comparison we need to do. */
19745 len = 0;
19748 if (TREE_CODE (arg1) == REFERENCE_TYPE)
19750 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
19751 arg1 = TREE_TYPE (arg1);
19752 quals1 = cp_type_quals (arg1);
19755 if (TREE_CODE (arg2) == REFERENCE_TYPE)
19757 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
19758 arg2 = TREE_TYPE (arg2);
19759 quals2 = cp_type_quals (arg2);
19762 arg1 = TYPE_MAIN_VARIANT (arg1);
19763 arg2 = TYPE_MAIN_VARIANT (arg2);
19765 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
19767 int i, len2 = list_length (args2);
19768 tree parmvec = make_tree_vec (1);
19769 tree argvec = make_tree_vec (len2);
19770 tree ta = args2;
19772 /* Setup the parameter vector, which contains only ARG1. */
19773 TREE_VEC_ELT (parmvec, 0) = arg1;
19775 /* Setup the argument vector, which contains the remaining
19776 arguments. */
19777 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
19778 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
19780 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
19781 argvec, DEDUCE_EXACT,
19782 /*subr=*/true, /*explain_p=*/false)
19783 == 0);
19785 /* We cannot deduce in the other direction, because ARG1 is
19786 a pack expansion but ARG2 is not. */
19787 deduce2 = 0;
19789 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
19791 int i, len1 = list_length (args1);
19792 tree parmvec = make_tree_vec (1);
19793 tree argvec = make_tree_vec (len1);
19794 tree ta = args1;
19796 /* Setup the parameter vector, which contains only ARG1. */
19797 TREE_VEC_ELT (parmvec, 0) = arg2;
19799 /* Setup the argument vector, which contains the remaining
19800 arguments. */
19801 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
19802 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
19804 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
19805 argvec, DEDUCE_EXACT,
19806 /*subr=*/true, /*explain_p=*/false)
19807 == 0);
19809 /* We cannot deduce in the other direction, because ARG2 is
19810 a pack expansion but ARG1 is not.*/
19811 deduce1 = 0;
19814 else
19816 /* The normal case, where neither argument is a pack
19817 expansion. */
19818 deduce1 = (unify (tparms1, targs1, arg1, arg2,
19819 UNIFY_ALLOW_NONE, /*explain_p=*/false)
19820 == 0);
19821 deduce2 = (unify (tparms2, targs2, arg2, arg1,
19822 UNIFY_ALLOW_NONE, /*explain_p=*/false)
19823 == 0);
19826 /* If we couldn't deduce arguments for tparms1 to make arg1 match
19827 arg2, then arg2 is not as specialized as arg1. */
19828 if (!deduce1)
19829 lose2 = true;
19830 if (!deduce2)
19831 lose1 = true;
19833 /* "If, for a given type, deduction succeeds in both directions
19834 (i.e., the types are identical after the transformations above)
19835 and both P and A were reference types (before being replaced with
19836 the type referred to above):
19837 - if the type from the argument template was an lvalue reference and
19838 the type from the parameter template was not, the argument type is
19839 considered to be more specialized than the other; otherwise,
19840 - if the type from the argument template is more cv-qualified
19841 than the type from the parameter template (as described above),
19842 the argument type is considered to be more specialized than the other;
19843 otherwise,
19844 - neither type is more specialized than the other." */
19846 if (deduce1 && deduce2)
19848 if (ref1 && ref2 && ref1 != ref2)
19850 if (ref1 > ref2)
19851 lose1 = true;
19852 else
19853 lose2 = true;
19855 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
19857 if ((quals1 & quals2) == quals2)
19858 lose2 = true;
19859 if ((quals1 & quals2) == quals1)
19860 lose1 = true;
19864 if (lose1 && lose2)
19865 /* We've failed to deduce something in either direction.
19866 These must be unordered. */
19867 break;
19869 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
19870 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
19871 /* We have already processed all of the arguments in our
19872 handing of the pack expansion type. */
19873 len = 0;
19875 args1 = TREE_CHAIN (args1);
19876 args2 = TREE_CHAIN (args2);
19879 /* "In most cases, all template parameters must have values in order for
19880 deduction to succeed, but for partial ordering purposes a template
19881 parameter may remain without a value provided it is not used in the
19882 types being used for partial ordering."
19884 Thus, if we are missing any of the targs1 we need to substitute into
19885 origs1, then pat2 is not as specialized as pat1. This can happen when
19886 there is a nondeduced context. */
19887 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
19888 lose2 = true;
19889 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
19890 lose1 = true;
19892 processing_template_decl--;
19894 /* If both deductions succeed, the partial ordering selects the more
19895 constrained template. */
19896 if (!lose1 && !lose2)
19898 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
19899 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
19900 lose1 = !subsumes_constraints (c1, c2);
19901 lose2 = !subsumes_constraints (c2, c1);
19904 /* All things being equal, if the next argument is a pack expansion
19905 for one function but not for the other, prefer the
19906 non-variadic function. FIXME this is bogus; see c++/41958. */
19907 if (lose1 == lose2
19908 && args1 && TREE_VALUE (args1)
19909 && args2 && TREE_VALUE (args2))
19911 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
19912 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
19915 if (lose1 == lose2)
19916 return 0;
19917 else if (!lose1)
19918 return 1;
19919 else
19920 return -1;
19923 /* Determine which of two partial specializations of TMPL is more
19924 specialized.
19926 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
19927 to the first partial specialization. The TREE_PURPOSE is the
19928 innermost set of template parameters for the partial
19929 specialization. PAT2 is similar, but for the second template.
19931 Return 1 if the first partial specialization is more specialized;
19932 -1 if the second is more specialized; 0 if neither is more
19933 specialized.
19935 See [temp.class.order] for information about determining which of
19936 two templates is more specialized. */
19938 static int
19939 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
19941 tree targs;
19942 int winner = 0;
19943 bool any_deductions = false;
19945 tree tmpl1 = TREE_VALUE (pat1);
19946 tree tmpl2 = TREE_VALUE (pat2);
19947 tree parms1 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl1);
19948 tree parms2 = DECL_INNERMOST_TEMPLATE_PARMS (tmpl2);
19949 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
19950 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
19952 /* Just like what happens for functions, if we are ordering between
19953 different template specializations, we may encounter dependent
19954 types in the arguments, and we need our dependency check functions
19955 to behave correctly. */
19956 ++processing_template_decl;
19957 targs = get_partial_spec_bindings (tmpl, parms1, specargs1, specargs2);
19958 if (targs)
19960 --winner;
19961 any_deductions = true;
19964 targs = get_partial_spec_bindings (tmpl, parms2, specargs2, specargs1);
19965 if (targs)
19967 ++winner;
19968 any_deductions = true;
19970 --processing_template_decl;
19972 /* If both deductions succeed, the partial ordering selects the more
19973 constrained template. */
19974 if (!winner && any_deductions)
19975 return more_constrained (tmpl1, tmpl2);
19977 /* In the case of a tie where at least one of the templates
19978 has a parameter pack at the end, the template with the most
19979 non-packed parameters wins. */
19980 if (winner == 0
19981 && any_deductions
19982 && (template_args_variadic_p (TREE_PURPOSE (pat1))
19983 || template_args_variadic_p (TREE_PURPOSE (pat2))))
19985 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
19986 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
19987 int len1 = TREE_VEC_LENGTH (args1);
19988 int len2 = TREE_VEC_LENGTH (args2);
19990 /* We don't count the pack expansion at the end. */
19991 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
19992 --len1;
19993 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
19994 --len2;
19996 if (len1 > len2)
19997 return 1;
19998 else if (len1 < len2)
19999 return -1;
20002 return winner;
20005 /* Return the template arguments that will produce the function signature
20006 DECL from the function template FN, with the explicit template
20007 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20008 also match. Return NULL_TREE if no satisfactory arguments could be
20009 found. */
20011 static tree
20012 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20014 int ntparms = DECL_NTPARMS (fn);
20015 tree targs = make_tree_vec (ntparms);
20016 tree decl_type = TREE_TYPE (decl);
20017 tree decl_arg_types;
20018 tree *args;
20019 unsigned int nargs, ix;
20020 tree arg;
20022 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20024 /* Never do unification on the 'this' parameter. */
20025 decl_arg_types = skip_artificial_parms_for (decl,
20026 TYPE_ARG_TYPES (decl_type));
20028 nargs = list_length (decl_arg_types);
20029 args = XALLOCAVEC (tree, nargs);
20030 for (arg = decl_arg_types, ix = 0;
20031 arg != NULL_TREE && arg != void_list_node;
20032 arg = TREE_CHAIN (arg), ++ix)
20033 args[ix] = TREE_VALUE (arg);
20035 if (fn_type_unification (fn, explicit_args, targs,
20036 args, ix,
20037 (check_rettype || DECL_CONV_FN_P (fn)
20038 ? TREE_TYPE (decl_type) : NULL_TREE),
20039 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20040 /*decltype*/false)
20041 == error_mark_node)
20042 return NULL_TREE;
20044 return targs;
20047 /* Return the innermost template arguments that, when applied to a partial
20048 specialization of TMPL whose innermost template parameters are
20049 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20050 ARGS.
20052 For example, suppose we have:
20054 template <class T, class U> struct S {};
20055 template <class T> struct S<T*, int> {};
20057 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20058 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20059 int}. The resulting vector will be {double}, indicating that `T'
20060 is bound to `double'. */
20062 static tree
20063 get_partial_spec_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
20065 int i, ntparms = TREE_VEC_LENGTH (tparms);
20066 tree deduced_args;
20067 tree innermost_deduced_args;
20069 innermost_deduced_args = make_tree_vec (ntparms);
20070 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20072 deduced_args = copy_node (args);
20073 SET_TMPL_ARGS_LEVEL (deduced_args,
20074 TMPL_ARGS_DEPTH (deduced_args),
20075 innermost_deduced_args);
20077 else
20078 deduced_args = innermost_deduced_args;
20080 if (unify (tparms, deduced_args,
20081 INNERMOST_TEMPLATE_ARGS (spec_args),
20082 INNERMOST_TEMPLATE_ARGS (args),
20083 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20084 return NULL_TREE;
20086 for (i = 0; i < ntparms; ++i)
20087 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20088 return NULL_TREE;
20090 /* Verify that nondeduced template arguments agree with the type
20091 obtained from argument deduction.
20093 For example:
20095 struct A { typedef int X; };
20096 template <class T, class U> struct C {};
20097 template <class T> struct C<T, typename T::X> {};
20099 Then with the instantiation `C<A, int>', we can deduce that
20100 `T' is `A' but unify () does not check whether `typename T::X'
20101 is `int'. */
20102 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20103 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20104 spec_args, tmpl,
20105 tf_none, false, false);
20106 if (spec_args == error_mark_node
20107 /* We only need to check the innermost arguments; the other
20108 arguments will always agree. */
20109 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20110 INNERMOST_TEMPLATE_ARGS (args)))
20111 return NULL_TREE;
20113 /* Now that we have bindings for all of the template arguments,
20114 ensure that the arguments deduced for the template template
20115 parameters have compatible template parameter lists. See the use
20116 of template_template_parm_bindings_ok_p in fn_type_unification
20117 for more information. */
20118 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20119 return NULL_TREE;
20121 return deduced_args;
20124 // Compare two function templates T1 and T2 by deducing bindings
20125 // from one against the other. If both deductions succeed, compare
20126 // constraints to see which is more constrained.
20127 static int
20128 more_specialized_inst (tree t1, tree t2)
20130 int fate = 0;
20131 int count = 0;
20133 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20135 --fate;
20136 ++count;
20139 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20141 ++fate;
20142 ++count;
20145 // If both deductions succeed, then one may be more constrained.
20146 if (count == 2 && fate == 0)
20147 fate = more_constrained (t1, t2);
20149 return fate;
20152 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20153 Return the TREE_LIST node with the most specialized template, if
20154 any. If there is no most specialized template, the error_mark_node
20155 is returned.
20157 Note that this function does not look at, or modify, the
20158 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20159 returned is one of the elements of INSTANTIATIONS, callers may
20160 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20161 and retrieve it from the value returned. */
20163 tree
20164 most_specialized_instantiation (tree templates)
20166 tree fn, champ;
20168 ++processing_template_decl;
20170 champ = templates;
20171 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20173 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20174 if (fate == -1)
20175 champ = fn;
20176 else if (!fate)
20178 /* Equally specialized, move to next function. If there
20179 is no next function, nothing's most specialized. */
20180 fn = TREE_CHAIN (fn);
20181 champ = fn;
20182 if (!fn)
20183 break;
20187 if (champ)
20188 /* Now verify that champ is better than everything earlier in the
20189 instantiation list. */
20190 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20191 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20193 champ = NULL_TREE;
20194 break;
20198 processing_template_decl--;
20200 if (!champ)
20201 return error_mark_node;
20203 return champ;
20206 /* If DECL is a specialization of some template, return the most
20207 general such template. Otherwise, returns NULL_TREE.
20209 For example, given:
20211 template <class T> struct S { template <class U> void f(U); };
20213 if TMPL is `template <class U> void S<int>::f(U)' this will return
20214 the full template. This function will not trace past partial
20215 specializations, however. For example, given in addition:
20217 template <class T> struct S<T*> { template <class U> void f(U); };
20219 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20220 `template <class T> template <class U> S<T*>::f(U)'. */
20222 tree
20223 most_general_template (tree decl)
20225 if (TREE_CODE (decl) != TEMPLATE_DECL)
20227 if (tree tinfo = get_template_info (decl))
20228 decl = TI_TEMPLATE (tinfo);
20229 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20230 template friend, or a FIELD_DECL for a capture pack. */
20231 if (TREE_CODE (decl) != TEMPLATE_DECL)
20232 return NULL_TREE;
20235 /* Look for more and more general templates. */
20236 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
20238 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20239 (See cp-tree.h for details.) */
20240 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
20241 break;
20243 if (CLASS_TYPE_P (TREE_TYPE (decl))
20244 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
20245 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
20246 break;
20248 /* Stop if we run into an explicitly specialized class template. */
20249 if (!DECL_NAMESPACE_SCOPE_P (decl)
20250 && DECL_CONTEXT (decl)
20251 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
20252 break;
20254 decl = DECL_TI_TEMPLATE (decl);
20257 return decl;
20260 /* Return the most specialized of the template partial specializations
20261 which can produce TARGET, a specialization of some class or variable
20262 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20263 a TEMPLATE_DECL node corresponding to the partial specialization, while
20264 the TREE_PURPOSE is the set of template arguments that must be
20265 substituted into the template pattern in order to generate TARGET.
20267 If the choice of partial specialization is ambiguous, a diagnostic
20268 is issued, and the error_mark_node is returned. If there are no
20269 partial specializations matching TARGET, then NULL_TREE is
20270 returned, indicating that the primary template should be used. */
20272 static tree
20273 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
20275 tree list = NULL_TREE;
20276 tree t;
20277 tree champ;
20278 int fate;
20279 bool ambiguous_p;
20280 tree outer_args = NULL_TREE;
20281 tree tmpl, args;
20283 if (TYPE_P (target))
20285 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
20286 tmpl = TI_TEMPLATE (tinfo);
20287 args = TI_ARGS (tinfo);
20289 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
20291 tmpl = TREE_OPERAND (target, 0);
20292 args = TREE_OPERAND (target, 1);
20294 else if (VAR_P (target))
20296 tree tinfo = DECL_TEMPLATE_INFO (target);
20297 tmpl = TI_TEMPLATE (tinfo);
20298 args = TI_ARGS (tinfo);
20300 else
20301 gcc_unreachable ();
20303 tree main_tmpl = most_general_template (tmpl);
20305 /* For determining which partial specialization to use, only the
20306 innermost args are interesting. */
20307 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20309 outer_args = strip_innermost_template_args (args, 1);
20310 args = INNERMOST_TEMPLATE_ARGS (args);
20313 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
20315 tree partial_spec_args;
20316 tree spec_args;
20317 tree spec_tmpl = TREE_VALUE (t);
20319 partial_spec_args = TREE_PURPOSE (t);
20321 ++processing_template_decl;
20323 if (outer_args)
20325 /* Discard the outer levels of args, and then substitute in the
20326 template args from the enclosing class. */
20327 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
20328 partial_spec_args = tsubst_template_args
20329 (partial_spec_args, outer_args, tf_none, NULL_TREE);
20331 /* And the same for the partial specialization TEMPLATE_DECL. */
20332 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
20335 partial_spec_args =
20336 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20337 partial_spec_args,
20338 tmpl, tf_none,
20339 /*require_all_args=*/true,
20340 /*use_default_args=*/true);
20342 --processing_template_decl;
20344 if (partial_spec_args == error_mark_node)
20345 return error_mark_node;
20346 if (spec_tmpl == error_mark_node)
20347 return error_mark_node;
20349 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20350 spec_args = get_partial_spec_bindings (tmpl, parms,
20351 partial_spec_args,
20352 args);
20353 if (spec_args)
20355 if (outer_args)
20356 spec_args = add_to_template_args (outer_args, spec_args);
20358 /* Keep the candidate only if the constraints are satisfied,
20359 or if we're not compiling with concepts. */
20360 if (!flag_concepts
20361 || constraints_satisfied_p (spec_tmpl, spec_args))
20363 list = tree_cons (spec_args, TREE_VALUE (t), list);
20364 TREE_TYPE (list) = TREE_TYPE (t);
20369 if (! list)
20370 return NULL_TREE;
20372 ambiguous_p = false;
20373 t = list;
20374 champ = t;
20375 t = TREE_CHAIN (t);
20376 for (; t; t = TREE_CHAIN (t))
20378 fate = more_specialized_partial_spec (tmpl, champ, t);
20379 if (fate == 1)
20381 else
20383 if (fate == 0)
20385 t = TREE_CHAIN (t);
20386 if (! t)
20388 ambiguous_p = true;
20389 break;
20392 champ = t;
20396 if (!ambiguous_p)
20397 for (t = list; t && t != champ; t = TREE_CHAIN (t))
20399 fate = more_specialized_partial_spec (tmpl, champ, t);
20400 if (fate != 1)
20402 ambiguous_p = true;
20403 break;
20407 if (ambiguous_p)
20409 const char *str;
20410 char *spaces = NULL;
20411 if (!(complain & tf_error))
20412 return error_mark_node;
20413 if (TYPE_P (target))
20414 error ("ambiguous template instantiation for %q#T", target);
20415 else
20416 error ("ambiguous template instantiation for %q#D", target);
20417 str = ngettext ("candidate is:", "candidates are:", list_length (list));
20418 for (t = list; t; t = TREE_CHAIN (t))
20420 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
20421 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
20422 "%s %#S", spaces ? spaces : str, subst);
20423 spaces = spaces ? spaces : get_spaces (str);
20425 free (spaces);
20426 return error_mark_node;
20429 return champ;
20432 /* Explicitly instantiate DECL. */
20434 void
20435 do_decl_instantiation (tree decl, tree storage)
20437 tree result = NULL_TREE;
20438 int extern_p = 0;
20440 if (!decl || decl == error_mark_node)
20441 /* An error occurred, for which grokdeclarator has already issued
20442 an appropriate message. */
20443 return;
20444 else if (! DECL_LANG_SPECIFIC (decl))
20446 error ("explicit instantiation of non-template %q#D", decl);
20447 return;
20450 bool var_templ = (DECL_TEMPLATE_INFO (decl)
20451 && variable_template_p (DECL_TI_TEMPLATE (decl)));
20453 if (VAR_P (decl) && !var_templ)
20455 /* There is an asymmetry here in the way VAR_DECLs and
20456 FUNCTION_DECLs are handled by grokdeclarator. In the case of
20457 the latter, the DECL we get back will be marked as a
20458 template instantiation, and the appropriate
20459 DECL_TEMPLATE_INFO will be set up. This does not happen for
20460 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
20461 should handle VAR_DECLs as it currently handles
20462 FUNCTION_DECLs. */
20463 if (!DECL_CLASS_SCOPE_P (decl))
20465 error ("%qD is not a static data member of a class template", decl);
20466 return;
20468 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
20469 if (!result || !VAR_P (result))
20471 error ("no matching template for %qD found", decl);
20472 return;
20474 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
20476 error ("type %qT for explicit instantiation %qD does not match "
20477 "declared type %qT", TREE_TYPE (result), decl,
20478 TREE_TYPE (decl));
20479 return;
20482 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
20484 error ("explicit instantiation of %q#D", decl);
20485 return;
20487 else
20488 result = decl;
20490 /* Check for various error cases. Note that if the explicit
20491 instantiation is valid the RESULT will currently be marked as an
20492 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
20493 until we get here. */
20495 if (DECL_TEMPLATE_SPECIALIZATION (result))
20497 /* DR 259 [temp.spec].
20499 Both an explicit instantiation and a declaration of an explicit
20500 specialization shall not appear in a program unless the explicit
20501 instantiation follows a declaration of the explicit specialization.
20503 For a given set of template parameters, if an explicit
20504 instantiation of a template appears after a declaration of an
20505 explicit specialization for that template, the explicit
20506 instantiation has no effect. */
20507 return;
20509 else if (DECL_EXPLICIT_INSTANTIATION (result))
20511 /* [temp.spec]
20513 No program shall explicitly instantiate any template more
20514 than once.
20516 We check DECL_NOT_REALLY_EXTERN so as not to complain when
20517 the first instantiation was `extern' and the second is not,
20518 and EXTERN_P for the opposite case. */
20519 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
20520 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
20521 /* If an "extern" explicit instantiation follows an ordinary
20522 explicit instantiation, the template is instantiated. */
20523 if (extern_p)
20524 return;
20526 else if (!DECL_IMPLICIT_INSTANTIATION (result))
20528 error ("no matching template for %qD found", result);
20529 return;
20531 else if (!DECL_TEMPLATE_INFO (result))
20533 permerror (input_location, "explicit instantiation of non-template %q#D", result);
20534 return;
20537 if (storage == NULL_TREE)
20539 else if (storage == ridpointers[(int) RID_EXTERN])
20541 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
20542 pedwarn (input_location, OPT_Wpedantic,
20543 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
20544 "instantiations");
20545 extern_p = 1;
20547 else
20548 error ("storage class %qD applied to template instantiation", storage);
20550 check_explicit_instantiation_namespace (result);
20551 mark_decl_instantiated (result, extern_p);
20552 if (! extern_p)
20553 instantiate_decl (result, /*defer_ok=*/1,
20554 /*expl_inst_class_mem_p=*/false);
20557 static void
20558 mark_class_instantiated (tree t, int extern_p)
20560 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
20561 SET_CLASSTYPE_INTERFACE_KNOWN (t);
20562 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
20563 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
20564 if (! extern_p)
20566 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
20567 rest_of_type_compilation (t, 1);
20571 /* Called from do_type_instantiation through binding_table_foreach to
20572 do recursive instantiation for the type bound in ENTRY. */
20573 static void
20574 bt_instantiate_type_proc (binding_entry entry, void *data)
20576 tree storage = *(tree *) data;
20578 if (MAYBE_CLASS_TYPE_P (entry->type)
20579 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
20580 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
20583 /* Called from do_type_instantiation to instantiate a member
20584 (a member function or a static member variable) of an
20585 explicitly instantiated class template. */
20586 static void
20587 instantiate_class_member (tree decl, int extern_p)
20589 mark_decl_instantiated (decl, extern_p);
20590 if (! extern_p)
20591 instantiate_decl (decl, /*defer_ok=*/1,
20592 /*expl_inst_class_mem_p=*/true);
20595 /* Perform an explicit instantiation of template class T. STORAGE, if
20596 non-null, is the RID for extern, inline or static. COMPLAIN is
20597 nonzero if this is called from the parser, zero if called recursively,
20598 since the standard is unclear (as detailed below). */
20600 void
20601 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
20603 int extern_p = 0;
20604 int nomem_p = 0;
20605 int static_p = 0;
20606 int previous_instantiation_extern_p = 0;
20608 if (TREE_CODE (t) == TYPE_DECL)
20609 t = TREE_TYPE (t);
20611 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
20613 tree tmpl =
20614 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
20615 if (tmpl)
20616 error ("explicit instantiation of non-class template %qD", tmpl);
20617 else
20618 error ("explicit instantiation of non-template type %qT", t);
20619 return;
20622 complete_type (t);
20624 if (!COMPLETE_TYPE_P (t))
20626 if (complain & tf_error)
20627 error ("explicit instantiation of %q#T before definition of template",
20629 return;
20632 if (storage != NULL_TREE)
20634 if (!in_system_header_at (input_location))
20636 if (storage == ridpointers[(int) RID_EXTERN])
20638 if (cxx_dialect == cxx98)
20639 pedwarn (input_location, OPT_Wpedantic,
20640 "ISO C++ 1998 forbids the use of %<extern%> on "
20641 "explicit instantiations");
20643 else
20644 pedwarn (input_location, OPT_Wpedantic,
20645 "ISO C++ forbids the use of %qE"
20646 " on explicit instantiations", storage);
20649 if (storage == ridpointers[(int) RID_INLINE])
20650 nomem_p = 1;
20651 else if (storage == ridpointers[(int) RID_EXTERN])
20652 extern_p = 1;
20653 else if (storage == ridpointers[(int) RID_STATIC])
20654 static_p = 1;
20655 else
20657 error ("storage class %qD applied to template instantiation",
20658 storage);
20659 extern_p = 0;
20663 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
20665 /* DR 259 [temp.spec].
20667 Both an explicit instantiation and a declaration of an explicit
20668 specialization shall not appear in a program unless the explicit
20669 instantiation follows a declaration of the explicit specialization.
20671 For a given set of template parameters, if an explicit
20672 instantiation of a template appears after a declaration of an
20673 explicit specialization for that template, the explicit
20674 instantiation has no effect. */
20675 return;
20677 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
20679 /* [temp.spec]
20681 No program shall explicitly instantiate any template more
20682 than once.
20684 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
20685 instantiation was `extern'. If EXTERN_P then the second is.
20686 These cases are OK. */
20687 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
20689 if (!previous_instantiation_extern_p && !extern_p
20690 && (complain & tf_error))
20691 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
20693 /* If we've already instantiated the template, just return now. */
20694 if (!CLASSTYPE_INTERFACE_ONLY (t))
20695 return;
20698 check_explicit_instantiation_namespace (TYPE_NAME (t));
20699 mark_class_instantiated (t, extern_p);
20701 if (nomem_p)
20702 return;
20705 tree tmp;
20707 /* In contrast to implicit instantiation, where only the
20708 declarations, and not the definitions, of members are
20709 instantiated, we have here:
20711 [temp.explicit]
20713 The explicit instantiation of a class template specialization
20714 implies the instantiation of all of its members not
20715 previously explicitly specialized in the translation unit
20716 containing the explicit instantiation.
20718 Of course, we can't instantiate member template classes, since
20719 we don't have any arguments for them. Note that the standard
20720 is unclear on whether the instantiation of the members are
20721 *explicit* instantiations or not. However, the most natural
20722 interpretation is that it should be an explicit instantiation. */
20724 if (! static_p)
20725 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
20726 if (TREE_CODE (tmp) == FUNCTION_DECL
20727 && DECL_TEMPLATE_INSTANTIATION (tmp))
20728 instantiate_class_member (tmp, extern_p);
20730 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
20731 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
20732 instantiate_class_member (tmp, extern_p);
20734 if (CLASSTYPE_NESTED_UTDS (t))
20735 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
20736 bt_instantiate_type_proc, &storage);
20740 /* Given a function DECL, which is a specialization of TMPL, modify
20741 DECL to be a re-instantiation of TMPL with the same template
20742 arguments. TMPL should be the template into which tsubst'ing
20743 should occur for DECL, not the most general template.
20745 One reason for doing this is a scenario like this:
20747 template <class T>
20748 void f(const T&, int i);
20750 void g() { f(3, 7); }
20752 template <class T>
20753 void f(const T& t, const int i) { }
20755 Note that when the template is first instantiated, with
20756 instantiate_template, the resulting DECL will have no name for the
20757 first parameter, and the wrong type for the second. So, when we go
20758 to instantiate the DECL, we regenerate it. */
20760 static void
20761 regenerate_decl_from_template (tree decl, tree tmpl)
20763 /* The arguments used to instantiate DECL, from the most general
20764 template. */
20765 tree args;
20766 tree code_pattern;
20768 args = DECL_TI_ARGS (decl);
20769 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
20771 /* Make sure that we can see identifiers, and compute access
20772 correctly. */
20773 push_access_scope (decl);
20775 if (TREE_CODE (decl) == FUNCTION_DECL)
20777 tree decl_parm;
20778 tree pattern_parm;
20779 tree specs;
20780 int args_depth;
20781 int parms_depth;
20783 args_depth = TMPL_ARGS_DEPTH (args);
20784 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
20785 if (args_depth > parms_depth)
20786 args = get_innermost_template_args (args, parms_depth);
20788 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
20789 args, tf_error, NULL_TREE,
20790 /*defer_ok*/false);
20791 if (specs && specs != error_mark_node)
20792 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
20793 specs);
20795 /* Merge parameter declarations. */
20796 decl_parm = skip_artificial_parms_for (decl,
20797 DECL_ARGUMENTS (decl));
20798 pattern_parm
20799 = skip_artificial_parms_for (code_pattern,
20800 DECL_ARGUMENTS (code_pattern));
20801 while (decl_parm && !DECL_PACK_P (pattern_parm))
20803 tree parm_type;
20804 tree attributes;
20806 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
20807 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
20808 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
20809 NULL_TREE);
20810 parm_type = type_decays_to (parm_type);
20811 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
20812 TREE_TYPE (decl_parm) = parm_type;
20813 attributes = DECL_ATTRIBUTES (pattern_parm);
20814 if (DECL_ATTRIBUTES (decl_parm) != attributes)
20816 DECL_ATTRIBUTES (decl_parm) = attributes;
20817 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
20819 decl_parm = DECL_CHAIN (decl_parm);
20820 pattern_parm = DECL_CHAIN (pattern_parm);
20822 /* Merge any parameters that match with the function parameter
20823 pack. */
20824 if (pattern_parm && DECL_PACK_P (pattern_parm))
20826 int i, len;
20827 tree expanded_types;
20828 /* Expand the TYPE_PACK_EXPANSION that provides the types for
20829 the parameters in this function parameter pack. */
20830 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
20831 args, tf_error, NULL_TREE);
20832 len = TREE_VEC_LENGTH (expanded_types);
20833 for (i = 0; i < len; i++)
20835 tree parm_type;
20836 tree attributes;
20838 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
20839 /* Rename the parameter to include the index. */
20840 DECL_NAME (decl_parm) =
20841 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
20842 parm_type = TREE_VEC_ELT (expanded_types, i);
20843 parm_type = type_decays_to (parm_type);
20844 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
20845 TREE_TYPE (decl_parm) = parm_type;
20846 attributes = DECL_ATTRIBUTES (pattern_parm);
20847 if (DECL_ATTRIBUTES (decl_parm) != attributes)
20849 DECL_ATTRIBUTES (decl_parm) = attributes;
20850 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
20852 decl_parm = DECL_CHAIN (decl_parm);
20855 /* Merge additional specifiers from the CODE_PATTERN. */
20856 if (DECL_DECLARED_INLINE_P (code_pattern)
20857 && !DECL_DECLARED_INLINE_P (decl))
20858 DECL_DECLARED_INLINE_P (decl) = 1;
20860 else if (VAR_P (decl))
20862 DECL_INITIAL (decl) =
20863 tsubst_expr (DECL_INITIAL (code_pattern), args,
20864 tf_error, DECL_TI_TEMPLATE (decl),
20865 /*integral_constant_expression_p=*/false);
20866 if (VAR_HAD_UNKNOWN_BOUND (decl))
20867 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
20868 tf_error, DECL_TI_TEMPLATE (decl));
20870 else
20871 gcc_unreachable ();
20873 pop_access_scope (decl);
20876 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
20877 substituted to get DECL. */
20879 tree
20880 template_for_substitution (tree decl)
20882 tree tmpl = DECL_TI_TEMPLATE (decl);
20884 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
20885 for the instantiation. This is not always the most general
20886 template. Consider, for example:
20888 template <class T>
20889 struct S { template <class U> void f();
20890 template <> void f<int>(); };
20892 and an instantiation of S<double>::f<int>. We want TD to be the
20893 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
20894 while (/* An instantiation cannot have a definition, so we need a
20895 more general template. */
20896 DECL_TEMPLATE_INSTANTIATION (tmpl)
20897 /* We must also deal with friend templates. Given:
20899 template <class T> struct S {
20900 template <class U> friend void f() {};
20903 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
20904 so far as the language is concerned, but that's still
20905 where we get the pattern for the instantiation from. On
20906 other hand, if the definition comes outside the class, say:
20908 template <class T> struct S {
20909 template <class U> friend void f();
20911 template <class U> friend void f() {}
20913 we don't need to look any further. That's what the check for
20914 DECL_INITIAL is for. */
20915 || (TREE_CODE (decl) == FUNCTION_DECL
20916 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
20917 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
20919 /* The present template, TD, should not be a definition. If it
20920 were a definition, we should be using it! Note that we
20921 cannot restructure the loop to just keep going until we find
20922 a template with a definition, since that might go too far if
20923 a specialization was declared, but not defined. */
20925 /* Fetch the more general template. */
20926 tmpl = DECL_TI_TEMPLATE (tmpl);
20929 return tmpl;
20932 /* Returns true if we need to instantiate this template instance even if we
20933 know we aren't going to emit it. */
20935 bool
20936 always_instantiate_p (tree decl)
20938 /* We always instantiate inline functions so that we can inline them. An
20939 explicit instantiation declaration prohibits implicit instantiation of
20940 non-inline functions. With high levels of optimization, we would
20941 normally inline non-inline functions -- but we're not allowed to do
20942 that for "extern template" functions. Therefore, we check
20943 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
20944 return ((TREE_CODE (decl) == FUNCTION_DECL
20945 && (DECL_DECLARED_INLINE_P (decl)
20946 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
20947 /* And we need to instantiate static data members so that
20948 their initializers are available in integral constant
20949 expressions. */
20950 || (VAR_P (decl)
20951 && decl_maybe_constant_var_p (decl)));
20954 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
20955 instantiate it now, modifying TREE_TYPE (fn). */
20957 void
20958 maybe_instantiate_noexcept (tree fn)
20960 tree fntype, spec, noex, clone;
20962 /* Don't instantiate a noexcept-specification from template context. */
20963 if (processing_template_decl)
20964 return;
20966 if (DECL_CLONED_FUNCTION_P (fn))
20967 fn = DECL_CLONED_FUNCTION (fn);
20968 fntype = TREE_TYPE (fn);
20969 spec = TYPE_RAISES_EXCEPTIONS (fntype);
20971 if (!spec || !TREE_PURPOSE (spec))
20972 return;
20974 noex = TREE_PURPOSE (spec);
20976 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
20978 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
20979 spec = get_defaulted_eh_spec (fn);
20980 else if (push_tinst_level (fn))
20982 push_access_scope (fn);
20983 push_deferring_access_checks (dk_no_deferred);
20984 input_location = DECL_SOURCE_LOCATION (fn);
20985 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
20986 DEFERRED_NOEXCEPT_ARGS (noex),
20987 tf_warning_or_error, fn,
20988 /*function_p=*/false,
20989 /*integral_constant_expression_p=*/true);
20990 pop_deferring_access_checks ();
20991 pop_access_scope (fn);
20992 pop_tinst_level ();
20993 spec = build_noexcept_spec (noex, tf_warning_or_error);
20994 if (spec == error_mark_node)
20995 spec = noexcept_false_spec;
20997 else
20998 spec = noexcept_false_spec;
21000 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21003 FOR_EACH_CLONE (clone, fn)
21005 if (TREE_TYPE (clone) == fntype)
21006 TREE_TYPE (clone) = TREE_TYPE (fn);
21007 else
21008 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21012 /* Produce the definition of D, a _DECL generated from a template. If
21013 DEFER_OK is nonzero, then we don't have to actually do the
21014 instantiation now; we just have to do it sometime. Normally it is
21015 an error if this is an explicit instantiation but D is undefined.
21016 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21017 explicitly instantiated class template. */
21019 tree
21020 instantiate_decl (tree d, int defer_ok,
21021 bool expl_inst_class_mem_p)
21023 tree tmpl = DECL_TI_TEMPLATE (d);
21024 tree gen_args;
21025 tree args;
21026 tree td;
21027 tree code_pattern;
21028 tree spec;
21029 tree gen_tmpl;
21030 bool pattern_defined;
21031 location_t saved_loc = input_location;
21032 int saved_unevaluated_operand = cp_unevaluated_operand;
21033 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21034 bool external_p;
21035 bool deleted_p;
21036 tree fn_context;
21037 bool nested;
21039 /* This function should only be used to instantiate templates for
21040 functions and static member variables. */
21041 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21043 /* A concept is never instantiated. */
21044 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21046 /* Variables are never deferred; if instantiation is required, they
21047 are instantiated right away. That allows for better code in the
21048 case that an expression refers to the value of the variable --
21049 if the variable has a constant value the referring expression can
21050 take advantage of that fact. */
21051 if (VAR_P (d)
21052 || DECL_DECLARED_CONSTEXPR_P (d))
21053 defer_ok = 0;
21055 /* Don't instantiate cloned functions. Instead, instantiate the
21056 functions they cloned. */
21057 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21058 d = DECL_CLONED_FUNCTION (d);
21060 if (DECL_TEMPLATE_INSTANTIATED (d)
21061 || (TREE_CODE (d) == FUNCTION_DECL
21062 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21063 || DECL_TEMPLATE_SPECIALIZATION (d))
21064 /* D has already been instantiated or explicitly specialized, so
21065 there's nothing for us to do here.
21067 It might seem reasonable to check whether or not D is an explicit
21068 instantiation, and, if so, stop here. But when an explicit
21069 instantiation is deferred until the end of the compilation,
21070 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21071 the instantiation. */
21072 return d;
21074 /* Check to see whether we know that this template will be
21075 instantiated in some other file, as with "extern template"
21076 extension. */
21077 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21079 /* In general, we do not instantiate such templates. */
21080 if (external_p && !always_instantiate_p (d))
21081 return d;
21083 gen_tmpl = most_general_template (tmpl);
21084 gen_args = DECL_TI_ARGS (d);
21086 if (tmpl != gen_tmpl)
21087 /* We should already have the extra args. */
21088 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21089 == TMPL_ARGS_DEPTH (gen_args));
21090 /* And what's in the hash table should match D. */
21091 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21092 || spec == NULL_TREE);
21094 /* This needs to happen before any tsubsting. */
21095 if (! push_tinst_level (d))
21096 return d;
21098 timevar_push (TV_TEMPLATE_INST);
21100 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21101 for the instantiation. */
21102 td = template_for_substitution (d);
21103 code_pattern = DECL_TEMPLATE_RESULT (td);
21105 /* We should never be trying to instantiate a member of a class
21106 template or partial specialization. */
21107 gcc_assert (d != code_pattern);
21109 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21110 || DECL_TEMPLATE_SPECIALIZATION (td))
21111 /* In the case of a friend template whose definition is provided
21112 outside the class, we may have too many arguments. Drop the
21113 ones we don't need. The same is true for specializations. */
21114 args = get_innermost_template_args
21115 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21116 else
21117 args = gen_args;
21119 if (TREE_CODE (d) == FUNCTION_DECL)
21121 deleted_p = DECL_DELETED_FN (code_pattern);
21122 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
21123 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21124 || deleted_p);
21126 else
21128 deleted_p = false;
21129 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21132 /* We may be in the middle of deferred access check. Disable it now. */
21133 push_deferring_access_checks (dk_no_deferred);
21135 /* Unless an explicit instantiation directive has already determined
21136 the linkage of D, remember that a definition is available for
21137 this entity. */
21138 if (pattern_defined
21139 && !DECL_INTERFACE_KNOWN (d)
21140 && !DECL_NOT_REALLY_EXTERN (d))
21141 mark_definable (d);
21143 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21144 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21145 input_location = DECL_SOURCE_LOCATION (d);
21147 /* If D is a member of an explicitly instantiated class template,
21148 and no definition is available, treat it like an implicit
21149 instantiation. */
21150 if (!pattern_defined && expl_inst_class_mem_p
21151 && DECL_EXPLICIT_INSTANTIATION (d))
21153 /* Leave linkage flags alone on instantiations with anonymous
21154 visibility. */
21155 if (TREE_PUBLIC (d))
21157 DECL_NOT_REALLY_EXTERN (d) = 0;
21158 DECL_INTERFACE_KNOWN (d) = 0;
21160 SET_DECL_IMPLICIT_INSTANTIATION (d);
21163 /* Defer all other templates, unless we have been explicitly
21164 forbidden from doing so. */
21165 if (/* If there is no definition, we cannot instantiate the
21166 template. */
21167 ! pattern_defined
21168 /* If it's OK to postpone instantiation, do so. */
21169 || defer_ok
21170 /* If this is a static data member that will be defined
21171 elsewhere, we don't want to instantiate the entire data
21172 member, but we do want to instantiate the initializer so that
21173 we can substitute that elsewhere. */
21174 || (external_p && VAR_P (d))
21175 /* Handle here a deleted function too, avoid generating
21176 its body (c++/61080). */
21177 || deleted_p)
21179 /* The definition of the static data member is now required so
21180 we must substitute the initializer. */
21181 if (VAR_P (d)
21182 && !DECL_INITIAL (d)
21183 && DECL_INITIAL (code_pattern))
21185 tree ns;
21186 tree init;
21187 bool const_init = false;
21188 bool enter_context = DECL_CLASS_SCOPE_P (d);
21190 ns = decl_namespace_context (d);
21191 push_nested_namespace (ns);
21192 if (enter_context)
21193 push_nested_class (DECL_CONTEXT (d));
21194 init = tsubst_expr (DECL_INITIAL (code_pattern),
21195 args,
21196 tf_warning_or_error, NULL_TREE,
21197 /*integral_constant_expression_p=*/false);
21198 /* If instantiating the initializer involved instantiating this
21199 again, don't call cp_finish_decl twice. */
21200 if (!DECL_INITIAL (d))
21202 /* Make sure the initializer is still constant, in case of
21203 circular dependency (template/instantiate6.C). */
21204 const_init
21205 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21206 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21207 /*asmspec_tree=*/NULL_TREE,
21208 LOOKUP_ONLYCONVERTING);
21210 if (enter_context)
21211 pop_nested_class ();
21212 pop_nested_namespace (ns);
21215 /* We restore the source position here because it's used by
21216 add_pending_template. */
21217 input_location = saved_loc;
21219 if (at_eof && !pattern_defined
21220 && DECL_EXPLICIT_INSTANTIATION (d)
21221 && DECL_NOT_REALLY_EXTERN (d))
21222 /* [temp.explicit]
21224 The definition of a non-exported function template, a
21225 non-exported member function template, or a non-exported
21226 member function or static data member of a class template
21227 shall be present in every translation unit in which it is
21228 explicitly instantiated. */
21229 permerror (input_location, "explicit instantiation of %qD "
21230 "but no definition available", d);
21232 /* If we're in unevaluated context, we just wanted to get the
21233 constant value; this isn't an odr use, so don't queue
21234 a full instantiation. */
21235 if (cp_unevaluated_operand != 0)
21236 goto out;
21237 /* ??? Historically, we have instantiated inline functions, even
21238 when marked as "extern template". */
21239 if (!(external_p && VAR_P (d)))
21240 add_pending_template (d);
21241 goto out;
21243 /* Tell the repository that D is available in this translation unit
21244 -- and see if it is supposed to be instantiated here. */
21245 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
21247 /* In a PCH file, despite the fact that the repository hasn't
21248 requested instantiation in the PCH it is still possible that
21249 an instantiation will be required in a file that includes the
21250 PCH. */
21251 if (pch_file)
21252 add_pending_template (d);
21253 /* Instantiate inline functions so that the inliner can do its
21254 job, even though we'll not be emitting a copy of this
21255 function. */
21256 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
21257 goto out;
21260 fn_context = decl_function_context (d);
21261 nested = (current_function_decl != NULL_TREE);
21262 if (!fn_context)
21263 push_to_top_level ();
21264 else
21266 if (nested)
21267 push_function_context ();
21268 cp_unevaluated_operand = 0;
21269 c_inhibit_evaluation_warnings = 0;
21272 /* Mark D as instantiated so that recursive calls to
21273 instantiate_decl do not try to instantiate it again. */
21274 DECL_TEMPLATE_INSTANTIATED (d) = 1;
21276 /* Regenerate the declaration in case the template has been modified
21277 by a subsequent redeclaration. */
21278 regenerate_decl_from_template (d, td);
21280 /* We already set the file and line above. Reset them now in case
21281 they changed as a result of calling regenerate_decl_from_template. */
21282 input_location = DECL_SOURCE_LOCATION (d);
21284 if (VAR_P (d))
21286 tree init;
21287 bool const_init = false;
21289 /* Clear out DECL_RTL; whatever was there before may not be right
21290 since we've reset the type of the declaration. */
21291 SET_DECL_RTL (d, NULL);
21292 DECL_IN_AGGR_P (d) = 0;
21294 /* The initializer is placed in DECL_INITIAL by
21295 regenerate_decl_from_template so we don't need to
21296 push/pop_access_scope again here. Pull it out so that
21297 cp_finish_decl can process it. */
21298 init = DECL_INITIAL (d);
21299 DECL_INITIAL (d) = NULL_TREE;
21300 DECL_INITIALIZED_P (d) = 0;
21302 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21303 initializer. That function will defer actual emission until
21304 we have a chance to determine linkage. */
21305 DECL_EXTERNAL (d) = 0;
21307 /* Enter the scope of D so that access-checking works correctly. */
21308 bool enter_context = DECL_CLASS_SCOPE_P (d);
21309 if (enter_context)
21310 push_nested_class (DECL_CONTEXT (d));
21312 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21313 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
21315 if (enter_context)
21316 pop_nested_class ();
21318 if (variable_template_p (td))
21319 note_variable_template_instantiation (d);
21321 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
21322 synthesize_method (d);
21323 else if (TREE_CODE (d) == FUNCTION_DECL)
21325 hash_map<tree, tree> *saved_local_specializations;
21326 tree subst_decl;
21327 tree tmpl_parm;
21328 tree spec_parm;
21329 tree block = NULL_TREE;
21331 /* Save away the current list, in case we are instantiating one
21332 template from within the body of another. */
21333 saved_local_specializations = local_specializations;
21335 /* Set up the list of local specializations. */
21336 local_specializations = new hash_map<tree, tree>;
21338 /* Set up context. */
21339 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21340 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21341 block = push_stmt_list ();
21342 else
21343 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
21345 /* Some typedefs referenced from within the template code need to be
21346 access checked at template instantiation time, i.e now. These
21347 types were added to the template at parsing time. Let's get those
21348 and perform the access checks then. */
21349 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
21350 gen_args);
21352 /* Create substitution entries for the parameters. */
21353 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
21354 tmpl_parm = DECL_ARGUMENTS (subst_decl);
21355 spec_parm = DECL_ARGUMENTS (d);
21356 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
21358 register_local_specialization (spec_parm, tmpl_parm);
21359 spec_parm = skip_artificial_parms_for (d, spec_parm);
21360 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
21362 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
21364 if (!DECL_PACK_P (tmpl_parm))
21366 register_local_specialization (spec_parm, tmpl_parm);
21367 spec_parm = DECL_CHAIN (spec_parm);
21369 else
21371 /* Register the (value) argument pack as a specialization of
21372 TMPL_PARM, then move on. */
21373 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
21374 register_local_specialization (argpack, tmpl_parm);
21377 gcc_assert (!spec_parm);
21379 /* Substitute into the body of the function. */
21380 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21381 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
21382 tf_warning_or_error, tmpl);
21383 else
21385 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
21386 tf_warning_or_error, tmpl,
21387 /*integral_constant_expression_p=*/false);
21389 /* Set the current input_location to the end of the function
21390 so that finish_function knows where we are. */
21391 input_location
21392 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
21394 /* Remember if we saw an infinite loop in the template. */
21395 current_function_infinite_loop
21396 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
21399 /* We don't need the local specializations any more. */
21400 delete local_specializations;
21401 local_specializations = saved_local_specializations;
21403 /* Finish the function. */
21404 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
21405 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
21406 DECL_SAVED_TREE (d) = pop_stmt_list (block);
21407 else
21409 d = finish_function (0);
21410 expand_or_defer_fn (d);
21413 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
21414 cp_check_omp_declare_reduction (d);
21417 /* We're not deferring instantiation any more. */
21418 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
21420 if (!fn_context)
21421 pop_from_top_level ();
21422 else if (nested)
21423 pop_function_context ();
21425 out:
21426 input_location = saved_loc;
21427 cp_unevaluated_operand = saved_unevaluated_operand;
21428 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
21429 pop_deferring_access_checks ();
21430 pop_tinst_level ();
21432 timevar_pop (TV_TEMPLATE_INST);
21434 return d;
21437 /* Run through the list of templates that we wish we could
21438 instantiate, and instantiate any we can. RETRIES is the
21439 number of times we retry pending template instantiation. */
21441 void
21442 instantiate_pending_templates (int retries)
21444 int reconsider;
21445 location_t saved_loc = input_location;
21447 /* Instantiating templates may trigger vtable generation. This in turn
21448 may require further template instantiations. We place a limit here
21449 to avoid infinite loop. */
21450 if (pending_templates && retries >= max_tinst_depth)
21452 tree decl = pending_templates->tinst->decl;
21454 fatal_error (input_location,
21455 "template instantiation depth exceeds maximum of %d"
21456 " instantiating %q+D, possibly from virtual table generation"
21457 " (use -ftemplate-depth= to increase the maximum)",
21458 max_tinst_depth, decl);
21459 if (TREE_CODE (decl) == FUNCTION_DECL)
21460 /* Pretend that we defined it. */
21461 DECL_INITIAL (decl) = error_mark_node;
21462 return;
21467 struct pending_template **t = &pending_templates;
21468 struct pending_template *last = NULL;
21469 reconsider = 0;
21470 while (*t)
21472 tree instantiation = reopen_tinst_level ((*t)->tinst);
21473 bool complete = false;
21475 if (TYPE_P (instantiation))
21477 tree fn;
21479 if (!COMPLETE_TYPE_P (instantiation))
21481 instantiate_class_template (instantiation);
21482 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
21483 for (fn = TYPE_METHODS (instantiation);
21485 fn = TREE_CHAIN (fn))
21486 if (! DECL_ARTIFICIAL (fn))
21487 instantiate_decl (fn,
21488 /*defer_ok=*/0,
21489 /*expl_inst_class_mem_p=*/false);
21490 if (COMPLETE_TYPE_P (instantiation))
21491 reconsider = 1;
21494 complete = COMPLETE_TYPE_P (instantiation);
21496 else
21498 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
21499 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
21501 instantiation
21502 = instantiate_decl (instantiation,
21503 /*defer_ok=*/0,
21504 /*expl_inst_class_mem_p=*/false);
21505 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
21506 reconsider = 1;
21509 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
21510 || DECL_TEMPLATE_INSTANTIATED (instantiation));
21513 if (complete)
21514 /* If INSTANTIATION has been instantiated, then we don't
21515 need to consider it again in the future. */
21516 *t = (*t)->next;
21517 else
21519 last = *t;
21520 t = &(*t)->next;
21522 tinst_depth = 0;
21523 current_tinst_level = NULL;
21525 last_pending_template = last;
21527 while (reconsider);
21529 input_location = saved_loc;
21532 /* Substitute ARGVEC into T, which is a list of initializers for
21533 either base class or a non-static data member. The TREE_PURPOSEs
21534 are DECLs, and the TREE_VALUEs are the initializer values. Used by
21535 instantiate_decl. */
21537 static tree
21538 tsubst_initializer_list (tree t, tree argvec)
21540 tree inits = NULL_TREE;
21542 for (; t; t = TREE_CHAIN (t))
21544 tree decl;
21545 tree init;
21546 tree expanded_bases = NULL_TREE;
21547 tree expanded_arguments = NULL_TREE;
21548 int i, len = 1;
21550 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
21552 tree expr;
21553 tree arg;
21555 /* Expand the base class expansion type into separate base
21556 classes. */
21557 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
21558 tf_warning_or_error,
21559 NULL_TREE);
21560 if (expanded_bases == error_mark_node)
21561 continue;
21563 /* We'll be building separate TREE_LISTs of arguments for
21564 each base. */
21565 len = TREE_VEC_LENGTH (expanded_bases);
21566 expanded_arguments = make_tree_vec (len);
21567 for (i = 0; i < len; i++)
21568 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
21570 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
21571 expand each argument in the TREE_VALUE of t. */
21572 expr = make_node (EXPR_PACK_EXPANSION);
21573 PACK_EXPANSION_LOCAL_P (expr) = true;
21574 PACK_EXPANSION_PARAMETER_PACKS (expr) =
21575 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
21577 if (TREE_VALUE (t) == void_type_node)
21578 /* VOID_TYPE_NODE is used to indicate
21579 value-initialization. */
21581 for (i = 0; i < len; i++)
21582 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
21584 else
21586 /* Substitute parameter packs into each argument in the
21587 TREE_LIST. */
21588 in_base_initializer = 1;
21589 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
21591 tree expanded_exprs;
21593 /* Expand the argument. */
21594 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
21595 expanded_exprs
21596 = tsubst_pack_expansion (expr, argvec,
21597 tf_warning_or_error,
21598 NULL_TREE);
21599 if (expanded_exprs == error_mark_node)
21600 continue;
21602 /* Prepend each of the expanded expressions to the
21603 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
21604 for (i = 0; i < len; i++)
21606 TREE_VEC_ELT (expanded_arguments, i) =
21607 tree_cons (NULL_TREE,
21608 TREE_VEC_ELT (expanded_exprs, i),
21609 TREE_VEC_ELT (expanded_arguments, i));
21612 in_base_initializer = 0;
21614 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
21615 since we built them backwards. */
21616 for (i = 0; i < len; i++)
21618 TREE_VEC_ELT (expanded_arguments, i) =
21619 nreverse (TREE_VEC_ELT (expanded_arguments, i));
21624 for (i = 0; i < len; ++i)
21626 if (expanded_bases)
21628 decl = TREE_VEC_ELT (expanded_bases, i);
21629 decl = expand_member_init (decl);
21630 init = TREE_VEC_ELT (expanded_arguments, i);
21632 else
21634 tree tmp;
21635 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
21636 tf_warning_or_error, NULL_TREE);
21638 decl = expand_member_init (decl);
21639 if (decl && !DECL_P (decl))
21640 in_base_initializer = 1;
21642 init = TREE_VALUE (t);
21643 tmp = init;
21644 if (init != void_type_node)
21645 init = tsubst_expr (init, argvec,
21646 tf_warning_or_error, NULL_TREE,
21647 /*integral_constant_expression_p=*/false);
21648 if (init == NULL_TREE && tmp != NULL_TREE)
21649 /* If we had an initializer but it instantiated to nothing,
21650 value-initialize the object. This will only occur when
21651 the initializer was a pack expansion where the parameter
21652 packs used in that expansion were of length zero. */
21653 init = void_type_node;
21654 in_base_initializer = 0;
21657 if (decl)
21659 init = build_tree_list (decl, init);
21660 TREE_CHAIN (init) = inits;
21661 inits = init;
21665 return inits;
21668 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
21670 static void
21671 set_current_access_from_decl (tree decl)
21673 if (TREE_PRIVATE (decl))
21674 current_access_specifier = access_private_node;
21675 else if (TREE_PROTECTED (decl))
21676 current_access_specifier = access_protected_node;
21677 else
21678 current_access_specifier = access_public_node;
21681 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
21682 is the instantiation (which should have been created with
21683 start_enum) and ARGS are the template arguments to use. */
21685 static void
21686 tsubst_enum (tree tag, tree newtag, tree args)
21688 tree e;
21690 if (SCOPED_ENUM_P (newtag))
21691 begin_scope (sk_scoped_enum, newtag);
21693 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
21695 tree value;
21696 tree decl;
21698 decl = TREE_VALUE (e);
21699 /* Note that in a template enum, the TREE_VALUE is the
21700 CONST_DECL, not the corresponding INTEGER_CST. */
21701 value = tsubst_expr (DECL_INITIAL (decl),
21702 args, tf_warning_or_error, NULL_TREE,
21703 /*integral_constant_expression_p=*/true);
21705 /* Give this enumeration constant the correct access. */
21706 set_current_access_from_decl (decl);
21708 /* Actually build the enumerator itself. Here we're assuming that
21709 enumerators can't have dependent attributes. */
21710 build_enumerator (DECL_NAME (decl), value, newtag,
21711 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
21714 if (SCOPED_ENUM_P (newtag))
21715 finish_scope ();
21717 finish_enum_value_list (newtag);
21718 finish_enum (newtag);
21720 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
21721 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
21724 /* DECL is a FUNCTION_DECL that is a template specialization. Return
21725 its type -- but without substituting the innermost set of template
21726 arguments. So, innermost set of template parameters will appear in
21727 the type. */
21729 tree
21730 get_mostly_instantiated_function_type (tree decl)
21732 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
21733 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
21736 /* Return truthvalue if we're processing a template different from
21737 the last one involved in diagnostics. */
21738 bool
21739 problematic_instantiation_changed (void)
21741 return current_tinst_level != last_error_tinst_level;
21744 /* Remember current template involved in diagnostics. */
21745 void
21746 record_last_problematic_instantiation (void)
21748 last_error_tinst_level = current_tinst_level;
21751 struct tinst_level *
21752 current_instantiation (void)
21754 return current_tinst_level;
21757 /* Return TRUE if current_function_decl is being instantiated, false
21758 otherwise. */
21760 bool
21761 instantiating_current_function_p (void)
21763 return (current_instantiation ()
21764 && current_instantiation ()->decl == current_function_decl);
21767 /* [temp.param] Check that template non-type parm TYPE is of an allowable
21768 type. Return zero for ok, nonzero for disallowed. Issue error and
21769 warning messages under control of COMPLAIN. */
21771 static int
21772 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
21774 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
21775 return 0;
21776 else if (POINTER_TYPE_P (type))
21777 return 0;
21778 else if (TYPE_PTRMEM_P (type))
21779 return 0;
21780 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
21781 return 0;
21782 else if (TREE_CODE (type) == TYPENAME_TYPE)
21783 return 0;
21784 else if (TREE_CODE (type) == DECLTYPE_TYPE)
21785 return 0;
21786 else if (TREE_CODE (type) == NULLPTR_TYPE)
21787 return 0;
21788 /* A bound template template parm could later be instantiated to have a valid
21789 nontype parm type via an alias template. */
21790 else if (cxx_dialect >= cxx11
21791 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
21792 return 0;
21794 if (complain & tf_error)
21796 if (type == error_mark_node)
21797 inform (input_location, "invalid template non-type parameter");
21798 else
21799 error ("%q#T is not a valid type for a template non-type parameter",
21800 type);
21802 return 1;
21805 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
21806 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
21808 static bool
21809 dependent_type_p_r (tree type)
21811 tree scope;
21813 /* [temp.dep.type]
21815 A type is dependent if it is:
21817 -- a template parameter. Template template parameters are types
21818 for us (since TYPE_P holds true for them) so we handle
21819 them here. */
21820 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
21821 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
21822 return true;
21823 /* -- a qualified-id with a nested-name-specifier which contains a
21824 class-name that names a dependent type or whose unqualified-id
21825 names a dependent type. */
21826 if (TREE_CODE (type) == TYPENAME_TYPE)
21827 return true;
21829 /* An alias template specialization can be dependent even if the
21830 resulting type is not. */
21831 if (dependent_alias_template_spec_p (type))
21832 return true;
21834 /* -- a cv-qualified type where the cv-unqualified type is
21835 dependent.
21836 No code is necessary for this bullet; the code below handles
21837 cv-qualified types, and we don't want to strip aliases with
21838 TYPE_MAIN_VARIANT because of DR 1558. */
21839 /* -- a compound type constructed from any dependent type. */
21840 if (TYPE_PTRMEM_P (type))
21841 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
21842 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
21843 (type)));
21844 else if (TYPE_PTR_P (type)
21845 || TREE_CODE (type) == REFERENCE_TYPE)
21846 return dependent_type_p (TREE_TYPE (type));
21847 else if (TREE_CODE (type) == FUNCTION_TYPE
21848 || TREE_CODE (type) == METHOD_TYPE)
21850 tree arg_type;
21852 if (dependent_type_p (TREE_TYPE (type)))
21853 return true;
21854 for (arg_type = TYPE_ARG_TYPES (type);
21855 arg_type;
21856 arg_type = TREE_CHAIN (arg_type))
21857 if (dependent_type_p (TREE_VALUE (arg_type)))
21858 return true;
21859 return false;
21861 /* -- an array type constructed from any dependent type or whose
21862 size is specified by a constant expression that is
21863 value-dependent.
21865 We checked for type- and value-dependence of the bounds in
21866 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
21867 if (TREE_CODE (type) == ARRAY_TYPE)
21869 if (TYPE_DOMAIN (type)
21870 && dependent_type_p (TYPE_DOMAIN (type)))
21871 return true;
21872 return dependent_type_p (TREE_TYPE (type));
21875 /* -- a template-id in which either the template name is a template
21876 parameter ... */
21877 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
21878 return true;
21879 /* ... or any of the template arguments is a dependent type or
21880 an expression that is type-dependent or value-dependent. */
21881 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
21882 && (any_dependent_template_arguments_p
21883 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
21884 return true;
21886 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
21887 dependent; if the argument of the `typeof' expression is not
21888 type-dependent, then it should already been have resolved. */
21889 if (TREE_CODE (type) == TYPEOF_TYPE
21890 || TREE_CODE (type) == DECLTYPE_TYPE
21891 || TREE_CODE (type) == UNDERLYING_TYPE)
21892 return true;
21894 /* A template argument pack is dependent if any of its packed
21895 arguments are. */
21896 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
21898 tree args = ARGUMENT_PACK_ARGS (type);
21899 int i, len = TREE_VEC_LENGTH (args);
21900 for (i = 0; i < len; ++i)
21901 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21902 return true;
21905 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
21906 be template parameters. */
21907 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
21908 return true;
21910 /* The standard does not specifically mention types that are local
21911 to template functions or local classes, but they should be
21912 considered dependent too. For example:
21914 template <int I> void f() {
21915 enum E { a = I };
21916 S<sizeof (E)> s;
21919 The size of `E' cannot be known until the value of `I' has been
21920 determined. Therefore, `E' must be considered dependent. */
21921 scope = TYPE_CONTEXT (type);
21922 if (scope && TYPE_P (scope))
21923 return dependent_type_p (scope);
21924 /* Don't use type_dependent_expression_p here, as it can lead
21925 to infinite recursion trying to determine whether a lambda
21926 nested in a lambda is dependent (c++/47687). */
21927 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
21928 && DECL_LANG_SPECIFIC (scope)
21929 && DECL_TEMPLATE_INFO (scope)
21930 && (any_dependent_template_arguments_p
21931 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
21932 return true;
21934 /* Other types are non-dependent. */
21935 return false;
21938 /* Returns TRUE if TYPE is dependent, in the sense of
21939 [temp.dep.type]. Note that a NULL type is considered dependent. */
21941 bool
21942 dependent_type_p (tree type)
21944 /* If there are no template parameters in scope, then there can't be
21945 any dependent types. */
21946 if (!processing_template_decl)
21948 /* If we are not processing a template, then nobody should be
21949 providing us with a dependent type. */
21950 gcc_assert (type);
21951 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
21952 return false;
21955 /* If the type is NULL, we have not computed a type for the entity
21956 in question; in that case, the type is dependent. */
21957 if (!type)
21958 return true;
21960 /* Erroneous types can be considered non-dependent. */
21961 if (type == error_mark_node)
21962 return false;
21964 /* If we have not already computed the appropriate value for TYPE,
21965 do so now. */
21966 if (!TYPE_DEPENDENT_P_VALID (type))
21968 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
21969 TYPE_DEPENDENT_P_VALID (type) = 1;
21972 return TYPE_DEPENDENT_P (type);
21975 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
21976 lookup. In other words, a dependent type that is not the current
21977 instantiation. */
21979 bool
21980 dependent_scope_p (tree scope)
21982 return (scope && TYPE_P (scope) && dependent_type_p (scope)
21983 && !currently_open_class (scope));
21986 /* T is a SCOPE_REF; return whether we need to consider it
21987 instantiation-dependent so that we can check access at instantiation
21988 time even though we know which member it resolves to. */
21990 static bool
21991 instantiation_dependent_scope_ref_p (tree t)
21993 if (DECL_P (TREE_OPERAND (t, 1))
21994 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
21995 && accessible_in_template_p (TREE_OPERAND (t, 0),
21996 TREE_OPERAND (t, 1)))
21997 return false;
21998 else
21999 return true;
22002 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22003 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22004 expression. */
22006 /* Note that this predicate is not appropriate for general expressions;
22007 only constant expressions (that satisfy potential_constant_expression)
22008 can be tested for value dependence. */
22010 bool
22011 value_dependent_expression_p (tree expression)
22013 if (!processing_template_decl)
22014 return false;
22016 /* A name declared with a dependent type. */
22017 if (DECL_P (expression) && type_dependent_expression_p (expression))
22018 return true;
22020 switch (TREE_CODE (expression))
22022 case IDENTIFIER_NODE:
22023 /* A name that has not been looked up -- must be dependent. */
22024 return true;
22026 case TEMPLATE_PARM_INDEX:
22027 /* A non-type template parm. */
22028 return true;
22030 case CONST_DECL:
22031 /* A non-type template parm. */
22032 if (DECL_TEMPLATE_PARM_P (expression))
22033 return true;
22034 return value_dependent_expression_p (DECL_INITIAL (expression));
22036 case VAR_DECL:
22037 /* A constant with literal type and is initialized
22038 with an expression that is value-dependent.
22040 Note that a non-dependent parenthesized initializer will have
22041 already been replaced with its constant value, so if we see
22042 a TREE_LIST it must be dependent. */
22043 if (DECL_INITIAL (expression)
22044 && decl_constant_var_p (expression)
22045 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22046 /* cp_finish_decl doesn't fold reference initializers. */
22047 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22048 || value_dependent_expression_p (DECL_INITIAL (expression))))
22049 return true;
22050 return false;
22052 case DYNAMIC_CAST_EXPR:
22053 case STATIC_CAST_EXPR:
22054 case CONST_CAST_EXPR:
22055 case REINTERPRET_CAST_EXPR:
22056 case CAST_EXPR:
22057 /* These expressions are value-dependent if the type to which
22058 the cast occurs is dependent or the expression being casted
22059 is value-dependent. */
22061 tree type = TREE_TYPE (expression);
22063 if (dependent_type_p (type))
22064 return true;
22066 /* A functional cast has a list of operands. */
22067 expression = TREE_OPERAND (expression, 0);
22068 if (!expression)
22070 /* If there are no operands, it must be an expression such
22071 as "int()". This should not happen for aggregate types
22072 because it would form non-constant expressions. */
22073 gcc_assert (cxx_dialect >= cxx11
22074 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22076 return false;
22079 if (TREE_CODE (expression) == TREE_LIST)
22080 return any_value_dependent_elements_p (expression);
22082 return value_dependent_expression_p (expression);
22085 case SIZEOF_EXPR:
22086 if (SIZEOF_EXPR_TYPE_P (expression))
22087 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22088 /* FALLTHRU */
22089 case ALIGNOF_EXPR:
22090 case TYPEID_EXPR:
22091 /* A `sizeof' expression is value-dependent if the operand is
22092 type-dependent or is a pack expansion. */
22093 expression = TREE_OPERAND (expression, 0);
22094 if (PACK_EXPANSION_P (expression))
22095 return true;
22096 else if (TYPE_P (expression))
22097 return dependent_type_p (expression);
22098 return instantiation_dependent_expression_p (expression);
22100 case AT_ENCODE_EXPR:
22101 /* An 'encode' expression is value-dependent if the operand is
22102 type-dependent. */
22103 expression = TREE_OPERAND (expression, 0);
22104 return dependent_type_p (expression);
22106 case NOEXCEPT_EXPR:
22107 expression = TREE_OPERAND (expression, 0);
22108 return instantiation_dependent_expression_p (expression);
22110 case SCOPE_REF:
22111 /* All instantiation-dependent expressions should also be considered
22112 value-dependent. */
22113 return instantiation_dependent_scope_ref_p (expression);
22115 case COMPONENT_REF:
22116 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22117 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22119 case NONTYPE_ARGUMENT_PACK:
22120 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22121 is value-dependent. */
22123 tree values = ARGUMENT_PACK_ARGS (expression);
22124 int i, len = TREE_VEC_LENGTH (values);
22126 for (i = 0; i < len; ++i)
22127 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22128 return true;
22130 return false;
22133 case TRAIT_EXPR:
22135 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22136 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22137 || (type2 ? dependent_type_p (type2) : false));
22140 case MODOP_EXPR:
22141 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22142 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22144 case ARRAY_REF:
22145 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22146 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22148 case ADDR_EXPR:
22150 tree op = TREE_OPERAND (expression, 0);
22151 return (value_dependent_expression_p (op)
22152 || has_value_dependent_address (op));
22155 case REQUIRES_EXPR:
22156 /* Treat all requires-expressions as value-dependent so
22157 we don't try to fold them. */
22158 return true;
22160 case TYPE_REQ:
22161 return dependent_type_p (TREE_OPERAND (expression, 0));
22163 case CALL_EXPR:
22165 tree fn = get_callee_fndecl (expression);
22166 int i, nargs;
22167 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
22168 return true;
22169 nargs = call_expr_nargs (expression);
22170 for (i = 0; i < nargs; ++i)
22172 tree op = CALL_EXPR_ARG (expression, i);
22173 /* In a call to a constexpr member function, look through the
22174 implicit ADDR_EXPR on the object argument so that it doesn't
22175 cause the call to be considered value-dependent. We also
22176 look through it in potential_constant_expression. */
22177 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22178 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22179 && TREE_CODE (op) == ADDR_EXPR)
22180 op = TREE_OPERAND (op, 0);
22181 if (value_dependent_expression_p (op))
22182 return true;
22184 return false;
22187 case TEMPLATE_ID_EXPR:
22188 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22189 type-dependent. */
22190 return type_dependent_expression_p (expression)
22191 || variable_concept_p (TREE_OPERAND (expression, 0));
22193 case CONSTRUCTOR:
22195 unsigned ix;
22196 tree val;
22197 if (dependent_type_p (TREE_TYPE (expression)))
22198 return true;
22199 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22200 if (value_dependent_expression_p (val))
22201 return true;
22202 return false;
22205 case STMT_EXPR:
22206 /* Treat a GNU statement expression as dependent to avoid crashing
22207 under instantiate_non_dependent_expr; it can't be constant. */
22208 return true;
22210 default:
22211 /* A constant expression is value-dependent if any subexpression is
22212 value-dependent. */
22213 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
22215 case tcc_reference:
22216 case tcc_unary:
22217 case tcc_comparison:
22218 case tcc_binary:
22219 case tcc_expression:
22220 case tcc_vl_exp:
22222 int i, len = cp_tree_operand_length (expression);
22224 for (i = 0; i < len; i++)
22226 tree t = TREE_OPERAND (expression, i);
22228 /* In some cases, some of the operands may be missing.l
22229 (For example, in the case of PREDECREMENT_EXPR, the
22230 amount to increment by may be missing.) That doesn't
22231 make the expression dependent. */
22232 if (t && value_dependent_expression_p (t))
22233 return true;
22236 break;
22237 default:
22238 break;
22240 break;
22243 /* The expression is not value-dependent. */
22244 return false;
22247 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22248 [temp.dep.expr]. Note that an expression with no type is
22249 considered dependent. Other parts of the compiler arrange for an
22250 expression with type-dependent subexpressions to have no type, so
22251 this function doesn't have to be fully recursive. */
22253 bool
22254 type_dependent_expression_p (tree expression)
22256 if (!processing_template_decl)
22257 return false;
22259 if (expression == NULL_TREE || expression == error_mark_node)
22260 return false;
22262 /* An unresolved name is always dependent. */
22263 if (identifier_p (expression)
22264 || TREE_CODE (expression) == USING_DECL
22265 || TREE_CODE (expression) == WILDCARD_DECL)
22266 return true;
22268 /* A fold expression is type-dependent. */
22269 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
22270 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
22271 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
22272 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
22273 return true;
22275 /* Some expression forms are never type-dependent. */
22276 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
22277 || TREE_CODE (expression) == SIZEOF_EXPR
22278 || TREE_CODE (expression) == ALIGNOF_EXPR
22279 || TREE_CODE (expression) == AT_ENCODE_EXPR
22280 || TREE_CODE (expression) == NOEXCEPT_EXPR
22281 || TREE_CODE (expression) == TRAIT_EXPR
22282 || TREE_CODE (expression) == TYPEID_EXPR
22283 || TREE_CODE (expression) == DELETE_EXPR
22284 || TREE_CODE (expression) == VEC_DELETE_EXPR
22285 || TREE_CODE (expression) == THROW_EXPR
22286 || TREE_CODE (expression) == REQUIRES_EXPR)
22287 return false;
22289 /* The types of these expressions depends only on the type to which
22290 the cast occurs. */
22291 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
22292 || TREE_CODE (expression) == STATIC_CAST_EXPR
22293 || TREE_CODE (expression) == CONST_CAST_EXPR
22294 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
22295 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
22296 || TREE_CODE (expression) == CAST_EXPR)
22297 return dependent_type_p (TREE_TYPE (expression));
22299 /* The types of these expressions depends only on the type created
22300 by the expression. */
22301 if (TREE_CODE (expression) == NEW_EXPR
22302 || TREE_CODE (expression) == VEC_NEW_EXPR)
22304 /* For NEW_EXPR tree nodes created inside a template, either
22305 the object type itself or a TREE_LIST may appear as the
22306 operand 1. */
22307 tree type = TREE_OPERAND (expression, 1);
22308 if (TREE_CODE (type) == TREE_LIST)
22309 /* This is an array type. We need to check array dimensions
22310 as well. */
22311 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
22312 || value_dependent_expression_p
22313 (TREE_OPERAND (TREE_VALUE (type), 1));
22314 else
22315 return dependent_type_p (type);
22318 if (TREE_CODE (expression) == SCOPE_REF)
22320 tree scope = TREE_OPERAND (expression, 0);
22321 tree name = TREE_OPERAND (expression, 1);
22323 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22324 contains an identifier associated by name lookup with one or more
22325 declarations declared with a dependent type, or...a
22326 nested-name-specifier or qualified-id that names a member of an
22327 unknown specialization. */
22328 return (type_dependent_expression_p (name)
22329 || dependent_scope_p (scope));
22332 if (TREE_CODE (expression) == FUNCTION_DECL
22333 && DECL_LANG_SPECIFIC (expression)
22334 && DECL_TEMPLATE_INFO (expression)
22335 && (any_dependent_template_arguments_p
22336 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
22337 return true;
22339 if (TREE_CODE (expression) == TEMPLATE_DECL
22340 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
22341 return false;
22343 if (TREE_CODE (expression) == STMT_EXPR)
22344 expression = stmt_expr_value_expr (expression);
22346 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
22348 tree elt;
22349 unsigned i;
22351 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
22353 if (type_dependent_expression_p (elt))
22354 return true;
22356 return false;
22359 /* A static data member of the current instantiation with incomplete
22360 array type is type-dependent, as the definition and specializations
22361 can have different bounds. */
22362 if (VAR_P (expression)
22363 && DECL_CLASS_SCOPE_P (expression)
22364 && dependent_type_p (DECL_CONTEXT (expression))
22365 && VAR_HAD_UNKNOWN_BOUND (expression))
22366 return true;
22368 /* An array of unknown bound depending on a variadic parameter, eg:
22370 template<typename... Args>
22371 void foo (Args... args)
22373 int arr[] = { args... };
22376 template<int... vals>
22377 void bar ()
22379 int arr[] = { vals... };
22382 If the array has no length and has an initializer, it must be that
22383 we couldn't determine its length in cp_complete_array_type because
22384 it is dependent. */
22385 if (VAR_P (expression)
22386 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
22387 && !TYPE_DOMAIN (TREE_TYPE (expression))
22388 && DECL_INITIAL (expression))
22389 return true;
22391 /* A variable template specialization is type-dependent if it has any
22392 dependent template arguments. */
22393 if (VAR_P (expression)
22394 && DECL_LANG_SPECIFIC (expression)
22395 && DECL_TEMPLATE_INFO (expression)
22396 && variable_template_p (DECL_TI_TEMPLATE (expression)))
22397 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression));
22399 /* Always dependent, on the number of arguments if nothing else. */
22400 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
22401 return true;
22403 if (TREE_TYPE (expression) == unknown_type_node)
22405 if (TREE_CODE (expression) == ADDR_EXPR)
22406 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
22407 if (TREE_CODE (expression) == COMPONENT_REF
22408 || TREE_CODE (expression) == OFFSET_REF)
22410 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
22411 return true;
22412 expression = TREE_OPERAND (expression, 1);
22413 if (identifier_p (expression))
22414 return false;
22416 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
22417 if (TREE_CODE (expression) == SCOPE_REF)
22418 return false;
22420 if (BASELINK_P (expression))
22422 if (BASELINK_OPTYPE (expression)
22423 && dependent_type_p (BASELINK_OPTYPE (expression)))
22424 return true;
22425 expression = BASELINK_FUNCTIONS (expression);
22428 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
22430 if (any_dependent_template_arguments_p
22431 (TREE_OPERAND (expression, 1)))
22432 return true;
22433 expression = TREE_OPERAND (expression, 0);
22434 if (identifier_p (expression))
22435 return true;
22438 gcc_assert (TREE_CODE (expression) == OVERLOAD
22439 || TREE_CODE (expression) == FUNCTION_DECL);
22441 while (expression)
22443 if (type_dependent_expression_p (OVL_CURRENT (expression)))
22444 return true;
22445 expression = OVL_NEXT (expression);
22447 return false;
22450 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
22452 return (dependent_type_p (TREE_TYPE (expression)));
22455 /* walk_tree callback function for instantiation_dependent_expression_p,
22456 below. Returns non-zero if a dependent subexpression is found. */
22458 static tree
22459 instantiation_dependent_r (tree *tp, int *walk_subtrees,
22460 void * /*data*/)
22462 if (TYPE_P (*tp))
22464 /* We don't have to worry about decltype currently because decltype
22465 of an instantiation-dependent expr is a dependent type. This
22466 might change depending on the resolution of DR 1172. */
22467 *walk_subtrees = false;
22468 return NULL_TREE;
22470 enum tree_code code = TREE_CODE (*tp);
22471 switch (code)
22473 /* Don't treat an argument list as dependent just because it has no
22474 TREE_TYPE. */
22475 case TREE_LIST:
22476 case TREE_VEC:
22477 return NULL_TREE;
22479 case VAR_DECL:
22480 case CONST_DECL:
22481 /* A constant with a dependent initializer is dependent. */
22482 if (value_dependent_expression_p (*tp))
22483 return *tp;
22484 break;
22486 case TEMPLATE_PARM_INDEX:
22487 return *tp;
22489 /* Handle expressions with type operands. */
22490 case SIZEOF_EXPR:
22491 case ALIGNOF_EXPR:
22492 case TYPEID_EXPR:
22493 case AT_ENCODE_EXPR:
22495 tree op = TREE_OPERAND (*tp, 0);
22496 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
22497 op = TREE_TYPE (op);
22498 if (TYPE_P (op))
22500 if (dependent_type_p (op))
22501 return *tp;
22502 else
22504 *walk_subtrees = false;
22505 return NULL_TREE;
22508 break;
22511 case TRAIT_EXPR:
22512 if (value_dependent_expression_p (*tp))
22513 return *tp;
22514 *walk_subtrees = false;
22515 return NULL_TREE;
22517 case COMPONENT_REF:
22518 if (identifier_p (TREE_OPERAND (*tp, 1)))
22519 /* In a template, finish_class_member_access_expr creates a
22520 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
22521 type-dependent, so that we can check access control at
22522 instantiation time (PR 42277). See also Core issue 1273. */
22523 return *tp;
22524 break;
22526 case SCOPE_REF:
22527 if (instantiation_dependent_scope_ref_p (*tp))
22528 return *tp;
22529 else
22530 break;
22532 /* Treat statement-expressions as dependent. */
22533 case BIND_EXPR:
22534 return *tp;
22536 /* Treat requires-expressions as dependent. */
22537 case REQUIRES_EXPR:
22538 return *tp;
22540 case CALL_EXPR:
22541 /* Treat calls to function concepts as dependent. */
22542 if (function_concept_check_p (*tp))
22543 return *tp;
22544 break;
22546 case TEMPLATE_ID_EXPR:
22547 /* And variable concepts. */
22548 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
22549 return *tp;
22550 break;
22552 default:
22553 break;
22556 if (type_dependent_expression_p (*tp))
22557 return *tp;
22558 else
22559 return NULL_TREE;
22562 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
22563 sense defined by the ABI:
22565 "An expression is instantiation-dependent if it is type-dependent
22566 or value-dependent, or it has a subexpression that is type-dependent
22567 or value-dependent." */
22569 bool
22570 instantiation_dependent_expression_p (tree expression)
22572 tree result;
22574 if (!processing_template_decl)
22575 return false;
22577 if (expression == error_mark_node)
22578 return false;
22580 result = cp_walk_tree_without_duplicates (&expression,
22581 instantiation_dependent_r, NULL);
22582 return result != NULL_TREE;
22585 /* Like type_dependent_expression_p, but it also works while not processing
22586 a template definition, i.e. during substitution or mangling. */
22588 bool
22589 type_dependent_expression_p_push (tree expr)
22591 bool b;
22592 ++processing_template_decl;
22593 b = type_dependent_expression_p (expr);
22594 --processing_template_decl;
22595 return b;
22598 /* Returns TRUE if ARGS contains a type-dependent expression. */
22600 bool
22601 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
22603 unsigned int i;
22604 tree arg;
22606 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
22608 if (type_dependent_expression_p (arg))
22609 return true;
22611 return false;
22614 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
22615 expressions) contains any type-dependent expressions. */
22617 bool
22618 any_type_dependent_elements_p (const_tree list)
22620 for (; list; list = TREE_CHAIN (list))
22621 if (type_dependent_expression_p (TREE_VALUE (list)))
22622 return true;
22624 return false;
22627 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
22628 expressions) contains any value-dependent expressions. */
22630 bool
22631 any_value_dependent_elements_p (const_tree list)
22633 for (; list; list = TREE_CHAIN (list))
22634 if (value_dependent_expression_p (TREE_VALUE (list)))
22635 return true;
22637 return false;
22640 /* Returns TRUE if the ARG (a template argument) is dependent. */
22642 bool
22643 dependent_template_arg_p (tree arg)
22645 if (!processing_template_decl)
22646 return false;
22648 /* Assume a template argument that was wrongly written by the user
22649 is dependent. This is consistent with what
22650 any_dependent_template_arguments_p [that calls this function]
22651 does. */
22652 if (!arg || arg == error_mark_node)
22653 return true;
22655 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
22656 arg = ARGUMENT_PACK_SELECT_ARG (arg);
22658 if (TREE_CODE (arg) == TEMPLATE_DECL
22659 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
22660 return dependent_template_p (arg);
22661 else if (ARGUMENT_PACK_P (arg))
22663 tree args = ARGUMENT_PACK_ARGS (arg);
22664 int i, len = TREE_VEC_LENGTH (args);
22665 for (i = 0; i < len; ++i)
22667 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22668 return true;
22671 return false;
22673 else if (TYPE_P (arg))
22674 return dependent_type_p (arg);
22675 else
22676 return (type_dependent_expression_p (arg)
22677 || value_dependent_expression_p (arg));
22680 /* Returns true if ARGS (a collection of template arguments) contains
22681 any types that require structural equality testing. */
22683 bool
22684 any_template_arguments_need_structural_equality_p (tree args)
22686 int i;
22687 int j;
22689 if (!args)
22690 return false;
22691 if (args == error_mark_node)
22692 return true;
22694 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
22696 tree level = TMPL_ARGS_LEVEL (args, i + 1);
22697 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
22699 tree arg = TREE_VEC_ELT (level, j);
22700 tree packed_args = NULL_TREE;
22701 int k, len = 1;
22703 if (ARGUMENT_PACK_P (arg))
22705 /* Look inside the argument pack. */
22706 packed_args = ARGUMENT_PACK_ARGS (arg);
22707 len = TREE_VEC_LENGTH (packed_args);
22710 for (k = 0; k < len; ++k)
22712 if (packed_args)
22713 arg = TREE_VEC_ELT (packed_args, k);
22715 if (error_operand_p (arg))
22716 return true;
22717 else if (TREE_CODE (arg) == TEMPLATE_DECL)
22718 continue;
22719 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
22720 return true;
22721 else if (!TYPE_P (arg) && TREE_TYPE (arg)
22722 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
22723 return true;
22728 return false;
22731 /* Returns true if ARGS (a collection of template arguments) contains
22732 any dependent arguments. */
22734 bool
22735 any_dependent_template_arguments_p (const_tree args)
22737 int i;
22738 int j;
22740 if (!args)
22741 return false;
22742 if (args == error_mark_node)
22743 return true;
22745 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
22747 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
22748 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
22749 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
22750 return true;
22753 return false;
22756 /* Returns TRUE if the template TMPL is dependent. */
22758 bool
22759 dependent_template_p (tree tmpl)
22761 if (TREE_CODE (tmpl) == OVERLOAD)
22763 while (tmpl)
22765 if (dependent_template_p (OVL_CURRENT (tmpl)))
22766 return true;
22767 tmpl = OVL_NEXT (tmpl);
22769 return false;
22772 /* Template template parameters are dependent. */
22773 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
22774 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
22775 return true;
22776 /* So are names that have not been looked up. */
22777 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
22778 return true;
22779 /* So are member templates of dependent classes. */
22780 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
22781 return dependent_type_p (DECL_CONTEXT (tmpl));
22782 return false;
22785 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
22787 bool
22788 dependent_template_id_p (tree tmpl, tree args)
22790 return (dependent_template_p (tmpl)
22791 || any_dependent_template_arguments_p (args));
22794 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
22795 is dependent. */
22797 bool
22798 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
22800 int i;
22802 if (!processing_template_decl)
22803 return false;
22805 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
22807 tree decl = TREE_VEC_ELT (declv, i);
22808 tree init = TREE_VEC_ELT (initv, i);
22809 tree cond = TREE_VEC_ELT (condv, i);
22810 tree incr = TREE_VEC_ELT (incrv, i);
22812 if (type_dependent_expression_p (decl))
22813 return true;
22815 if (init && type_dependent_expression_p (init))
22816 return true;
22818 if (type_dependent_expression_p (cond))
22819 return true;
22821 if (COMPARISON_CLASS_P (cond)
22822 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
22823 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
22824 return true;
22826 if (TREE_CODE (incr) == MODOP_EXPR)
22828 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
22829 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
22830 return true;
22832 else if (type_dependent_expression_p (incr))
22833 return true;
22834 else if (TREE_CODE (incr) == MODIFY_EXPR)
22836 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
22837 return true;
22838 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
22840 tree t = TREE_OPERAND (incr, 1);
22841 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
22842 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
22843 return true;
22848 return false;
22851 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
22852 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
22853 no such TYPE can be found. Note that this function peers inside
22854 uninstantiated templates and therefore should be used only in
22855 extremely limited situations. ONLY_CURRENT_P restricts this
22856 peering to the currently open classes hierarchy (which is required
22857 when comparing types). */
22859 tree
22860 resolve_typename_type (tree type, bool only_current_p)
22862 tree scope;
22863 tree name;
22864 tree decl;
22865 int quals;
22866 tree pushed_scope;
22867 tree result;
22869 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
22871 scope = TYPE_CONTEXT (type);
22872 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
22873 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
22874 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
22875 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
22876 identifier of the TYPENAME_TYPE anymore.
22877 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
22878 TYPENAME_TYPE instead, we avoid messing up with a possible
22879 typedef variant case. */
22880 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
22882 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
22883 it first before we can figure out what NAME refers to. */
22884 if (TREE_CODE (scope) == TYPENAME_TYPE)
22886 if (TYPENAME_IS_RESOLVING_P (scope))
22887 /* Given a class template A with a dependent base with nested type C,
22888 typedef typename A::C::C C will land us here, as trying to resolve
22889 the initial A::C leads to the local C typedef, which leads back to
22890 A::C::C. So we break the recursion now. */
22891 return type;
22892 else
22893 scope = resolve_typename_type (scope, only_current_p);
22895 /* If we don't know what SCOPE refers to, then we cannot resolve the
22896 TYPENAME_TYPE. */
22897 if (TREE_CODE (scope) == TYPENAME_TYPE)
22898 return type;
22899 /* If the SCOPE is a template type parameter, we have no way of
22900 resolving the name. */
22901 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
22902 return type;
22903 /* If the SCOPE is not the current instantiation, there's no reason
22904 to look inside it. */
22905 if (only_current_p && !currently_open_class (scope))
22906 return type;
22907 /* If this is a typedef, we don't want to look inside (c++/11987). */
22908 if (typedef_variant_p (type))
22909 return type;
22910 /* If SCOPE isn't the template itself, it will not have a valid
22911 TYPE_FIELDS list. */
22912 if (CLASS_TYPE_P (scope)
22913 && same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
22914 /* scope is either the template itself or a compatible instantiation
22915 like X<T>, so look up the name in the original template. */
22916 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
22917 else
22918 /* scope is a partial instantiation, so we can't do the lookup or we
22919 will lose the template arguments. */
22920 return type;
22921 /* Enter the SCOPE so that name lookup will be resolved as if we
22922 were in the class definition. In particular, SCOPE will no
22923 longer be considered a dependent type. */
22924 pushed_scope = push_scope (scope);
22925 /* Look up the declaration. */
22926 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
22927 tf_warning_or_error);
22929 result = NULL_TREE;
22931 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
22932 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
22933 if (!decl)
22934 /*nop*/;
22935 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
22936 && TREE_CODE (decl) == TYPE_DECL)
22938 result = TREE_TYPE (decl);
22939 if (result == error_mark_node)
22940 result = NULL_TREE;
22942 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
22943 && DECL_CLASS_TEMPLATE_P (decl))
22945 tree tmpl;
22946 tree args;
22947 /* Obtain the template and the arguments. */
22948 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
22949 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
22950 /* Instantiate the template. */
22951 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
22952 /*entering_scope=*/0,
22953 tf_error | tf_user);
22954 if (result == error_mark_node)
22955 result = NULL_TREE;
22958 /* Leave the SCOPE. */
22959 if (pushed_scope)
22960 pop_scope (pushed_scope);
22962 /* If we failed to resolve it, return the original typename. */
22963 if (!result)
22964 return type;
22966 /* If lookup found a typename type, resolve that too. */
22967 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
22969 /* Ill-formed programs can cause infinite recursion here, so we
22970 must catch that. */
22971 TYPENAME_IS_RESOLVING_P (type) = 1;
22972 result = resolve_typename_type (result, only_current_p);
22973 TYPENAME_IS_RESOLVING_P (type) = 0;
22976 /* Qualify the resulting type. */
22977 quals = cp_type_quals (type);
22978 if (quals)
22979 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
22981 return result;
22984 /* EXPR is an expression which is not type-dependent. Return a proxy
22985 for EXPR that can be used to compute the types of larger
22986 expressions containing EXPR. */
22988 tree
22989 build_non_dependent_expr (tree expr)
22991 tree inner_expr;
22993 #ifdef ENABLE_CHECKING
22994 /* Try to get a constant value for all non-dependent expressions in
22995 order to expose bugs in *_dependent_expression_p and constexpr. */
22996 if (cxx_dialect >= cxx11)
22997 fold_non_dependent_expr (expr);
22998 #endif
23000 /* Preserve OVERLOADs; the functions must be available to resolve
23001 types. */
23002 inner_expr = expr;
23003 if (TREE_CODE (inner_expr) == STMT_EXPR)
23004 inner_expr = stmt_expr_value_expr (inner_expr);
23005 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23006 inner_expr = TREE_OPERAND (inner_expr, 0);
23007 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23008 inner_expr = TREE_OPERAND (inner_expr, 1);
23009 if (is_overloaded_fn (inner_expr)
23010 || TREE_CODE (inner_expr) == OFFSET_REF)
23011 return expr;
23012 /* There is no need to return a proxy for a variable. */
23013 if (VAR_P (expr))
23014 return expr;
23015 /* Preserve string constants; conversions from string constants to
23016 "char *" are allowed, even though normally a "const char *"
23017 cannot be used to initialize a "char *". */
23018 if (TREE_CODE (expr) == STRING_CST)
23019 return expr;
23020 /* Preserve void and arithmetic constants, as an optimization -- there is no
23021 reason to create a new node. */
23022 if (TREE_CODE (expr) == VOID_CST
23023 || TREE_CODE (expr) == INTEGER_CST
23024 || TREE_CODE (expr) == REAL_CST)
23025 return expr;
23026 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23027 There is at least one place where we want to know that a
23028 particular expression is a throw-expression: when checking a ?:
23029 expression, there are special rules if the second or third
23030 argument is a throw-expression. */
23031 if (TREE_CODE (expr) == THROW_EXPR)
23032 return expr;
23034 /* Don't wrap an initializer list, we need to be able to look inside. */
23035 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23036 return expr;
23038 /* Don't wrap a dummy object, we need to be able to test for it. */
23039 if (is_dummy_object (expr))
23040 return expr;
23042 if (TREE_CODE (expr) == COND_EXPR)
23043 return build3 (COND_EXPR,
23044 TREE_TYPE (expr),
23045 TREE_OPERAND (expr, 0),
23046 (TREE_OPERAND (expr, 1)
23047 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23048 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23049 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23050 if (TREE_CODE (expr) == COMPOUND_EXPR
23051 && !COMPOUND_EXPR_OVERLOADED (expr))
23052 return build2 (COMPOUND_EXPR,
23053 TREE_TYPE (expr),
23054 TREE_OPERAND (expr, 0),
23055 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23057 /* If the type is unknown, it can't really be non-dependent */
23058 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23060 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23061 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23064 /* ARGS is a vector of expressions as arguments to a function call.
23065 Replace the arguments with equivalent non-dependent expressions.
23066 This modifies ARGS in place. */
23068 void
23069 make_args_non_dependent (vec<tree, va_gc> *args)
23071 unsigned int ix;
23072 tree arg;
23074 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23076 tree newarg = build_non_dependent_expr (arg);
23077 if (newarg != arg)
23078 (*args)[ix] = newarg;
23082 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23083 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23084 parms. */
23086 static tree
23087 make_auto_1 (tree name)
23089 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23090 TYPE_NAME (au) = build_decl (input_location,
23091 TYPE_DECL, name, au);
23092 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23093 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23094 (0, processing_template_decl + 1, processing_template_decl + 1,
23095 TYPE_NAME (au), NULL_TREE);
23096 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23097 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23098 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23100 return au;
23103 tree
23104 make_decltype_auto (void)
23106 return make_auto_1 (get_identifier ("decltype(auto)"));
23109 tree
23110 make_auto (void)
23112 return make_auto_1 (get_identifier ("auto"));
23115 /* Given type ARG, return std::initializer_list<ARG>. */
23117 static tree
23118 listify (tree arg)
23120 tree std_init_list = namespace_binding
23121 (get_identifier ("initializer_list"), std_node);
23122 tree argvec;
23123 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23125 error ("deducing from brace-enclosed initializer list requires "
23126 "#include <initializer_list>");
23127 return error_mark_node;
23129 argvec = make_tree_vec (1);
23130 TREE_VEC_ELT (argvec, 0) = arg;
23131 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23132 NULL_TREE, 0, tf_warning_or_error);
23135 /* Replace auto in TYPE with std::initializer_list<auto>. */
23137 static tree
23138 listify_autos (tree type, tree auto_node)
23140 tree init_auto = listify (auto_node);
23141 tree argvec = make_tree_vec (1);
23142 TREE_VEC_ELT (argvec, 0) = init_auto;
23143 if (processing_template_decl)
23144 argvec = add_to_template_args (current_template_args (), argvec);
23145 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23148 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23149 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23151 tree
23152 do_auto_deduction (tree type, tree init, tree auto_node)
23154 return do_auto_deduction (type, init, auto_node,
23155 tf_warning_or_error,
23156 adc_unspecified);
23159 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23160 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23161 The CONTEXT determines the context in which auto deduction is performed
23162 and is used to control error diagnostics. */
23164 tree
23165 do_auto_deduction (tree type, tree init, tree auto_node,
23166 tsubst_flags_t complain, auto_deduction_context context)
23168 tree targs;
23170 if (init == error_mark_node)
23171 return error_mark_node;
23173 if (type_dependent_expression_p (init))
23174 /* Defining a subset of type-dependent expressions that we can deduce
23175 from ahead of time isn't worth the trouble. */
23176 return type;
23178 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23179 with either a new invented type template parameter U or, if the
23180 initializer is a braced-init-list (8.5.4), with
23181 std::initializer_list<U>. */
23182 if (BRACE_ENCLOSED_INITIALIZER_P (init))
23184 if (!DIRECT_LIST_INIT_P (init))
23185 type = listify_autos (type, auto_node);
23186 else if (CONSTRUCTOR_NELTS (init) == 1)
23187 init = CONSTRUCTOR_ELT (init, 0)->value;
23188 else
23190 if (complain & tf_warning_or_error)
23192 if (permerror (input_location, "direct-list-initialization of "
23193 "%<auto%> requires exactly one element"))
23194 inform (input_location,
23195 "for deduction to %<std::initializer_list%>, use copy-"
23196 "list-initialization (i.e. add %<=%> before the %<{%>)");
23198 type = listify_autos (type, auto_node);
23202 init = resolve_nondeduced_context (init);
23204 targs = make_tree_vec (1);
23205 if (AUTO_IS_DECLTYPE (auto_node))
23207 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
23208 && !REF_PARENTHESIZED_P (init)));
23209 TREE_VEC_ELT (targs, 0)
23210 = finish_decltype_type (init, id, tf_warning_or_error);
23211 if (type != auto_node)
23213 if (complain & tf_error)
23214 error ("%qT as type rather than plain %<decltype(auto)%>", type);
23215 return error_mark_node;
23218 else
23220 tree parms = build_tree_list (NULL_TREE, type);
23221 tree tparms = make_tree_vec (1);
23222 int val;
23224 TREE_VEC_ELT (tparms, 0)
23225 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
23226 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
23227 DEDUCE_CALL, LOOKUP_NORMAL,
23228 NULL, /*explain_p=*/false);
23229 if (val > 0)
23231 if (processing_template_decl)
23232 /* Try again at instantiation time. */
23233 return type;
23234 if (type && type != error_mark_node
23235 && (complain & tf_error))
23236 /* If type is error_mark_node a diagnostic must have been
23237 emitted by now. Also, having a mention to '<type error>'
23238 in the diagnostic is not really useful to the user. */
23240 if (cfun && auto_node == current_function_auto_return_pattern
23241 && LAMBDA_FUNCTION_P (current_function_decl))
23242 error ("unable to deduce lambda return type from %qE", init);
23243 else
23244 error ("unable to deduce %qT from %qE", type, init);
23246 return error_mark_node;
23250 /* If the list of declarators contains more than one declarator, the type
23251 of each declared variable is determined as described above. If the
23252 type deduced for the template parameter U is not the same in each
23253 deduction, the program is ill-formed. */
23254 if (TREE_TYPE (auto_node)
23255 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
23257 if (cfun && auto_node == current_function_auto_return_pattern
23258 && LAMBDA_FUNCTION_P (current_function_decl))
23259 error ("inconsistent types %qT and %qT deduced for "
23260 "lambda return type", TREE_TYPE (auto_node),
23261 TREE_VEC_ELT (targs, 0));
23262 else
23263 error ("inconsistent deduction for %qT: %qT and then %qT",
23264 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
23265 return error_mark_node;
23267 if (context != adc_requirement)
23268 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
23270 /* Check any placeholder constraints against the deduced type. */
23271 if (flag_concepts && !processing_template_decl)
23272 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
23274 /* Use the deduced type to check the associated constraints. */
23275 if (!constraints_satisfied_p (constr, targs))
23277 if (complain & tf_warning_or_error)
23279 switch (context)
23281 case adc_unspecified:
23282 error("placeholder constraints not satisfied");
23283 break;
23284 case adc_variable_type:
23285 error ("deduced initializer does not satisfy "
23286 "placeholder constraints");
23287 break;
23288 case adc_return_type:
23289 error ("deduced return type does not satisfy "
23290 "placeholder constraints");
23291 break;
23292 case adc_requirement:
23293 error ("deduced expression type does not saatisy "
23294 "placeholder constraints");
23295 break;
23297 diagnose_constraints (input_location, constr, targs);
23299 return error_mark_node;
23303 if (processing_template_decl)
23304 targs = add_to_template_args (current_template_args (), targs);
23305 return tsubst (type, targs, complain, NULL_TREE);
23308 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
23309 result. */
23311 tree
23312 splice_late_return_type (tree type, tree late_return_type)
23314 if (is_auto (type))
23316 if (late_return_type)
23317 return late_return_type;
23319 tree idx = get_template_parm_index (type);
23320 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
23321 /* In an abbreviated function template we didn't know we were dealing
23322 with a function template when we saw the auto return type, so update
23323 it to have the correct level. */
23324 return make_auto_1 (TYPE_IDENTIFIER (type));
23326 return type;
23329 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
23330 'decltype(auto)'. */
23332 bool
23333 is_auto (const_tree type)
23335 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
23336 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
23337 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
23338 return true;
23339 else
23340 return false;
23343 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
23344 a use of `auto'. Returns NULL_TREE otherwise. */
23346 tree
23347 type_uses_auto (tree type)
23349 return find_type_usage (type, is_auto);
23352 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
23353 'decltype(auto)' or a concept. */
23355 bool
23356 is_auto_or_concept (const_tree type)
23358 return is_auto (type); // or concept
23361 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
23362 a concept identifier) iff TYPE contains a use of a generic type. Returns
23363 NULL_TREE otherwise. */
23365 tree
23366 type_uses_auto_or_concept (tree type)
23368 return find_type_usage (type, is_auto_or_concept);
23372 /* For a given template T, return the vector of typedefs referenced
23373 in T for which access check is needed at T instantiation time.
23374 T is either a FUNCTION_DECL or a RECORD_TYPE.
23375 Those typedefs were added to T by the function
23376 append_type_to_template_for_access_check. */
23378 vec<qualified_typedef_usage_t, va_gc> *
23379 get_types_needing_access_check (tree t)
23381 tree ti;
23382 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
23384 if (!t || t == error_mark_node)
23385 return NULL;
23387 if (!(ti = get_template_info (t)))
23388 return NULL;
23390 if (CLASS_TYPE_P (t)
23391 || TREE_CODE (t) == FUNCTION_DECL)
23393 if (!TI_TEMPLATE (ti))
23394 return NULL;
23396 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
23399 return result;
23402 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
23403 tied to T. That list of typedefs will be access checked at
23404 T instantiation time.
23405 T is either a FUNCTION_DECL or a RECORD_TYPE.
23406 TYPE_DECL is a TYPE_DECL node representing a typedef.
23407 SCOPE is the scope through which TYPE_DECL is accessed.
23408 LOCATION is the location of the usage point of TYPE_DECL.
23410 This function is a subroutine of
23411 append_type_to_template_for_access_check. */
23413 static void
23414 append_type_to_template_for_access_check_1 (tree t,
23415 tree type_decl,
23416 tree scope,
23417 location_t location)
23419 qualified_typedef_usage_t typedef_usage;
23420 tree ti;
23422 if (!t || t == error_mark_node)
23423 return;
23425 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
23426 || CLASS_TYPE_P (t))
23427 && type_decl
23428 && TREE_CODE (type_decl) == TYPE_DECL
23429 && scope);
23431 if (!(ti = get_template_info (t)))
23432 return;
23434 gcc_assert (TI_TEMPLATE (ti));
23436 typedef_usage.typedef_decl = type_decl;
23437 typedef_usage.context = scope;
23438 typedef_usage.locus = location;
23440 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
23443 /* Append TYPE_DECL to the template TEMPL.
23444 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
23445 At TEMPL instanciation time, TYPE_DECL will be checked to see
23446 if it can be accessed through SCOPE.
23447 LOCATION is the location of the usage point of TYPE_DECL.
23449 e.g. consider the following code snippet:
23451 class C
23453 typedef int myint;
23456 template<class U> struct S
23458 C::myint mi; // <-- usage point of the typedef C::myint
23461 S<char> s;
23463 At S<char> instantiation time, we need to check the access of C::myint
23464 In other words, we need to check the access of the myint typedef through
23465 the C scope. For that purpose, this function will add the myint typedef
23466 and the scope C through which its being accessed to a list of typedefs
23467 tied to the template S. That list will be walked at template instantiation
23468 time and access check performed on each typedefs it contains.
23469 Note that this particular code snippet should yield an error because
23470 myint is private to C. */
23472 void
23473 append_type_to_template_for_access_check (tree templ,
23474 tree type_decl,
23475 tree scope,
23476 location_t location)
23478 qualified_typedef_usage_t *iter;
23479 unsigned i;
23481 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
23483 /* Make sure we don't append the type to the template twice. */
23484 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
23485 if (iter->typedef_decl == type_decl && scope == iter->context)
23486 return;
23488 append_type_to_template_for_access_check_1 (templ, type_decl,
23489 scope, location);
23492 /* Convert the generic type parameters in PARM that match the types given in the
23493 range [START_IDX, END_IDX) from the current_template_parms into generic type
23494 packs. */
23496 tree
23497 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
23499 tree current = current_template_parms;
23500 int depth = TMPL_PARMS_DEPTH (current);
23501 current = INNERMOST_TEMPLATE_PARMS (current);
23502 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
23504 for (int i = 0; i < start_idx; ++i)
23505 TREE_VEC_ELT (replacement, i)
23506 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
23508 for (int i = start_idx; i < end_idx; ++i)
23510 /* Create a distinct parameter pack type from the current parm and add it
23511 to the replacement args to tsubst below into the generic function
23512 parameter. */
23514 tree o = TREE_TYPE (TREE_VALUE
23515 (TREE_VEC_ELT (current, i)));
23516 tree t = copy_type (o);
23517 TEMPLATE_TYPE_PARM_INDEX (t)
23518 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
23519 o, 0, 0, tf_none);
23520 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
23521 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
23522 TYPE_MAIN_VARIANT (t) = t;
23523 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
23524 TYPE_CANONICAL (t) = canonical_type_parameter (t);
23525 TREE_VEC_ELT (replacement, i) = t;
23526 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
23529 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
23530 TREE_VEC_ELT (replacement, i)
23531 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
23533 /* If there are more levels then build up the replacement with the outer
23534 template parms. */
23535 if (depth > 1)
23536 replacement = add_to_template_args (template_parms_to_args
23537 (TREE_CHAIN (current_template_parms)),
23538 replacement);
23540 return tsubst (parm, replacement, tf_none, NULL_TREE);
23543 /* Entries in the decl_constraint hash table. */
23544 struct GTY((for_user)) constr_entry
23546 tree decl;
23547 tree ci;
23550 /* Hashing function and equality for constraint entries. */
23551 struct constr_hasher : ggc_ptr_hash<constr_entry>
23553 static hashval_t hash (constr_entry *e)
23555 return (hashval_t)DECL_UID (e->decl);
23558 static bool equal (constr_entry *e1, constr_entry *e2)
23560 return e1->decl == e2->decl;
23564 /* A mapping from declarations to constraint information. Note that
23565 both templates and their underlying declarations are mapped to the
23566 same constraint information.
23568 FIXME: This is defined in pt.c because garbage collection
23569 code is not being generated for constraint.cc. */
23571 static GTY (()) hash_table<constr_hasher> *decl_constraints;
23573 /* Returns true iff cinfo contains a valid set of constraints.
23574 This is the case when the associated requirements have been
23575 successfully decomposed into lists of atomic constraints.
23576 That is, when the saved assumptions are not error_mark_node. */
23578 bool
23579 valid_constraints_p (tree cinfo)
23581 gcc_assert (cinfo);
23582 return CI_ASSUMPTIONS (cinfo) != error_mark_node;
23585 /* Returns the template constraints of declaration T. If T is not
23586 constrained, return NULL_TREE. Note that T must be non-null. */
23588 tree
23589 get_constraints (tree t)
23591 gcc_assert (DECL_P (t));
23592 if (TREE_CODE (t) == TEMPLATE_DECL)
23593 t = DECL_TEMPLATE_RESULT (t);
23594 constr_entry elt = { t, NULL_TREE };
23595 constr_entry* found = decl_constraints->find (&elt);
23596 if (found)
23597 return found->ci;
23598 else
23599 return NULL_TREE;
23602 /* Associate the given constraint information CI with the declaration
23603 T. If T is a template, then the constraints are associated with
23604 its underlying declaration. Don't build associations if CI is
23605 NULL_TREE. */
23607 void
23608 set_constraints (tree t, tree ci)
23610 if (!ci)
23611 return;
23612 gcc_assert (t);
23613 if (TREE_CODE (t) == TEMPLATE_DECL)
23614 t = DECL_TEMPLATE_RESULT (t);
23615 gcc_assert (!get_constraints (t));
23616 constr_entry elt = {t, ci};
23617 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
23618 constr_entry* entry = ggc_alloc<constr_entry> ();
23619 *entry = elt;
23620 *slot = entry;
23623 /* Remove the associated constraints of the declaration T. */
23625 void
23626 remove_constraints (tree t)
23628 gcc_assert (DECL_P (t));
23629 if (TREE_CODE (t) == TEMPLATE_DECL)
23630 t = DECL_TEMPLATE_RESULT (t);
23632 constr_entry elt = {t, NULL_TREE};
23633 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
23634 if (slot)
23635 decl_constraints->clear_slot (slot);
23638 /* Set up the hash table for constraint association. */
23640 void
23641 init_constraint_processing (void)
23643 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
23646 /* Set up the hash tables for template instantiations. */
23648 void
23649 init_template_processing (void)
23651 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
23652 type_specializations = hash_table<spec_hasher>::create_ggc (37);
23655 /* Print stats about the template hash tables for -fstats. */
23657 void
23658 print_template_statistics (void)
23660 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
23661 "%f collisions\n", (long) decl_specializations->size (),
23662 (long) decl_specializations->elements (),
23663 decl_specializations->collisions ());
23664 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
23665 "%f collisions\n", (long) type_specializations->size (),
23666 (long) type_specializations->elements (),
23667 type_specializations->collisions ());
23670 #include "gt-cp-pt.h"