* g++.dg/cpp0x/constexpr-53094-2.C: Ignore non-standard ABI
[official-gcc.git] / gcc / cp / pt.c
blob743028942ed2935a162ab98dc00414c094dfe7f0
1 /* Handle parameterized types (templates) for GNU C++.
2 Copyright (C) 1992-2013 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Known bugs or deficiencies include:
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "intl.h"
33 #include "pointer-set.h"
34 #include "flags.h"
35 #include "cp-tree.h"
36 #include "c-family/c-common.h"
37 #include "c-family/c-objc.h"
38 #include "cp-objcp-common.h"
39 #include "tree-inline.h"
40 #include "decl.h"
41 #include "toplev.h"
42 #include "timevar.h"
43 #include "tree-iterator.h"
45 /* The type of functions taking a tree, and some additional data, and
46 returning an int. */
47 typedef int (*tree_fn_t) (tree, void*);
49 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
50 instantiations have been deferred, either because their definitions
51 were not yet available, or because we were putting off doing the work. */
52 struct GTY ((chain_next ("%h.next"))) pending_template {
53 struct pending_template *next;
54 struct tinst_level *tinst;
57 static GTY(()) struct pending_template *pending_templates;
58 static GTY(()) struct pending_template *last_pending_template;
60 int processing_template_parmlist;
61 static int template_header_count;
63 static GTY(()) tree saved_trees;
64 static vec<int> inline_parm_levels;
66 static GTY(()) struct tinst_level *current_tinst_level;
68 static GTY(()) tree saved_access_scope;
70 /* Live only within one (recursive) call to tsubst_expr. We use
71 this to pass the statement expression node from the STMT_EXPR
72 to the EXPR_STMT that is its result. */
73 static tree cur_stmt_expr;
75 /* A map from local variable declarations in the body of the template
76 presently being instantiated to the corresponding instantiated
77 local variables. */
78 static struct pointer_map_t *local_specializations;
80 /* True if we've recursed into fn_type_unification too many times. */
81 static bool excessive_deduction_depth;
83 typedef struct GTY(()) spec_entry
85 tree tmpl;
86 tree args;
87 tree spec;
88 } spec_entry;
90 static GTY ((param_is (spec_entry)))
91 htab_t decl_specializations;
93 static GTY ((param_is (spec_entry)))
94 htab_t type_specializations;
96 /* Contains canonical template parameter types. The vector is indexed by
97 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
98 TREE_LIST, whose TREE_VALUEs contain the canonical template
99 parameters of various types and levels. */
100 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
102 #define UNIFY_ALLOW_NONE 0
103 #define UNIFY_ALLOW_MORE_CV_QUAL 1
104 #define UNIFY_ALLOW_LESS_CV_QUAL 2
105 #define UNIFY_ALLOW_DERIVED 4
106 #define UNIFY_ALLOW_INTEGER 8
107 #define UNIFY_ALLOW_OUTER_LEVEL 16
108 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
109 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
111 enum template_base_result {
112 tbr_incomplete_type,
113 tbr_ambiguous_baseclass,
114 tbr_success
117 static void push_access_scope (tree);
118 static void pop_access_scope (tree);
119 static bool resolve_overloaded_unification (tree, tree, tree, tree,
120 unification_kind_t, int,
121 bool);
122 static int try_one_overload (tree, tree, tree, tree, tree,
123 unification_kind_t, int, bool, bool);
124 static int unify (tree, tree, tree, tree, int, bool);
125 static void add_pending_template (tree);
126 static tree reopen_tinst_level (struct tinst_level *);
127 static tree tsubst_initializer_list (tree, tree);
128 static tree get_class_bindings (tree, tree, tree, tree);
129 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
130 bool, bool);
131 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
132 bool, bool);
133 static void tsubst_enum (tree, tree, tree);
134 static tree add_to_template_args (tree, tree);
135 static tree add_outermost_template_args (tree, tree);
136 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
137 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
138 tree);
139 static int type_unification_real (tree, tree, tree, const tree *,
140 unsigned int, int, unification_kind_t, int,
141 bool);
142 static void note_template_header (int);
143 static tree convert_nontype_argument_function (tree, tree);
144 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
145 static tree convert_template_argument (tree, tree, tree,
146 tsubst_flags_t, int, tree);
147 static int for_each_template_parm (tree, tree_fn_t, void*,
148 struct pointer_set_t*, bool);
149 static tree expand_template_argument_pack (tree);
150 static tree build_template_parm_index (int, int, int, tree, tree);
151 static bool inline_needs_template_parms (tree);
152 static void push_inline_template_parms_recursive (tree, int);
153 static tree retrieve_local_specialization (tree);
154 static void register_local_specialization (tree, tree);
155 static hashval_t hash_specialization (const void *p);
156 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
157 static int mark_template_parm (tree, void *);
158 static int template_parm_this_level_p (tree, void *);
159 static tree tsubst_friend_function (tree, tree);
160 static tree tsubst_friend_class (tree, tree);
161 static int can_complete_type_without_circularity (tree);
162 static tree get_bindings (tree, tree, tree, bool);
163 static int template_decl_level (tree);
164 static int check_cv_quals_for_unify (int, tree, tree);
165 static void template_parm_level_and_index (tree, int*, int*);
166 static int unify_pack_expansion (tree, tree, tree,
167 tree, unification_kind_t, bool, bool);
168 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
169 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
170 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
171 static void regenerate_decl_from_template (tree, tree);
172 static tree most_specialized_class (tree, tree, tsubst_flags_t);
173 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
174 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
175 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
176 static bool check_specialization_scope (void);
177 static tree process_partial_specialization (tree);
178 static void set_current_access_from_decl (tree);
179 static enum template_base_result get_template_base (tree, tree, tree, tree,
180 bool , tree *);
181 static tree try_class_unification (tree, tree, tree, tree, bool);
182 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
183 tree, tree);
184 static bool template_template_parm_bindings_ok_p (tree, tree);
185 static int template_args_equal (tree, tree);
186 static void tsubst_default_arguments (tree);
187 static tree for_each_template_parm_r (tree *, int *, void *);
188 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
189 static void copy_default_args_to_explicit_spec (tree);
190 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
191 static bool dependent_template_arg_p (tree);
192 static bool any_template_arguments_need_structural_equality_p (tree);
193 static bool dependent_type_p_r (tree);
194 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
195 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
196 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
197 static tree tsubst_decl (tree, tree, tsubst_flags_t);
198 static void perform_typedefs_access_check (tree tmpl, tree targs);
199 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
200 location_t);
201 static tree listify (tree);
202 static tree listify_autos (tree, tree);
203 static tree template_parm_to_arg (tree t);
204 static tree current_template_args (void);
205 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
206 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
208 /* Make the current scope suitable for access checking when we are
209 processing T. T can be FUNCTION_DECL for instantiated function
210 template, VAR_DECL for static member variable, or TYPE_DECL for
211 alias template (needed by instantiate_decl). */
213 static void
214 push_access_scope (tree t)
216 gcc_assert (TREE_CODE (t) == FUNCTION_DECL
217 || TREE_CODE (t) == TYPE_DECL
218 || TREE_CODE (t) == VAR_DECL);
220 if (DECL_FRIEND_CONTEXT (t))
221 push_nested_class (DECL_FRIEND_CONTEXT (t));
222 else if (DECL_CLASS_SCOPE_P (t))
223 push_nested_class (DECL_CONTEXT (t));
224 else
225 push_to_top_level ();
227 if (TREE_CODE (t) == FUNCTION_DECL)
229 saved_access_scope = tree_cons
230 (NULL_TREE, current_function_decl, saved_access_scope);
231 current_function_decl = t;
235 /* Restore the scope set up by push_access_scope. T is the node we
236 are processing. */
238 static void
239 pop_access_scope (tree t)
241 if (TREE_CODE (t) == FUNCTION_DECL)
243 current_function_decl = TREE_VALUE (saved_access_scope);
244 saved_access_scope = TREE_CHAIN (saved_access_scope);
247 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
248 pop_nested_class ();
249 else
250 pop_from_top_level ();
253 /* Do any processing required when DECL (a member template
254 declaration) is finished. Returns the TEMPLATE_DECL corresponding
255 to DECL, unless it is a specialization, in which case the DECL
256 itself is returned. */
258 tree
259 finish_member_template_decl (tree decl)
261 if (decl == error_mark_node)
262 return error_mark_node;
264 gcc_assert (DECL_P (decl));
266 if (TREE_CODE (decl) == TYPE_DECL)
268 tree type;
270 type = TREE_TYPE (decl);
271 if (type == error_mark_node)
272 return error_mark_node;
273 if (MAYBE_CLASS_TYPE_P (type)
274 && CLASSTYPE_TEMPLATE_INFO (type)
275 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
277 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
278 check_member_template (tmpl);
279 return tmpl;
281 return NULL_TREE;
283 else if (TREE_CODE (decl) == FIELD_DECL)
284 error ("data member %qD cannot be a member template", decl);
285 else if (DECL_TEMPLATE_INFO (decl))
287 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
289 check_member_template (DECL_TI_TEMPLATE (decl));
290 return DECL_TI_TEMPLATE (decl);
292 else
293 return decl;
295 else
296 error ("invalid member template declaration %qD", decl);
298 return error_mark_node;
301 /* Create a template info node. */
303 tree
304 build_template_info (tree template_decl, tree template_args)
306 tree result = make_node (TEMPLATE_INFO);
307 TI_TEMPLATE (result) = template_decl;
308 TI_ARGS (result) = template_args;
309 return result;
312 /* Return the template info node corresponding to T, whatever T is. */
314 tree
315 get_template_info (const_tree t)
317 tree tinfo = NULL_TREE;
319 if (!t || t == error_mark_node)
320 return NULL;
322 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
323 tinfo = DECL_TEMPLATE_INFO (t);
325 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
326 t = TREE_TYPE (t);
328 if (TAGGED_TYPE_P (t))
329 tinfo = TYPE_TEMPLATE_INFO (t);
330 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
331 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
333 return tinfo;
336 /* Returns the template nesting level of the indicated class TYPE.
338 For example, in:
339 template <class T>
340 struct A
342 template <class U>
343 struct B {};
346 A<T>::B<U> has depth two, while A<T> has depth one.
347 Both A<T>::B<int> and A<int>::B<U> have depth one, if
348 they are instantiations, not specializations.
350 This function is guaranteed to return 0 if passed NULL_TREE so
351 that, for example, `template_class_depth (current_class_type)' is
352 always safe. */
355 template_class_depth (tree type)
357 int depth;
359 for (depth = 0;
360 type && TREE_CODE (type) != NAMESPACE_DECL;
361 type = (TREE_CODE (type) == FUNCTION_DECL)
362 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
364 tree tinfo = get_template_info (type);
366 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
367 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
368 ++depth;
371 return depth;
374 /* Subroutine of maybe_begin_member_template_processing.
375 Returns true if processing DECL needs us to push template parms. */
377 static bool
378 inline_needs_template_parms (tree decl)
380 if (! DECL_TEMPLATE_INFO (decl))
381 return false;
383 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
384 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
387 /* Subroutine of maybe_begin_member_template_processing.
388 Push the template parms in PARMS, starting from LEVELS steps into the
389 chain, and ending at the beginning, since template parms are listed
390 innermost first. */
392 static void
393 push_inline_template_parms_recursive (tree parmlist, int levels)
395 tree parms = TREE_VALUE (parmlist);
396 int i;
398 if (levels > 1)
399 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
401 ++processing_template_decl;
402 current_template_parms
403 = tree_cons (size_int (processing_template_decl),
404 parms, current_template_parms);
405 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
407 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
408 NULL);
409 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
411 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
413 if (parm == error_mark_node)
414 continue;
416 gcc_assert (DECL_P (parm));
418 switch (TREE_CODE (parm))
420 case TYPE_DECL:
421 case TEMPLATE_DECL:
422 pushdecl (parm);
423 break;
425 case PARM_DECL:
427 /* Make a CONST_DECL as is done in process_template_parm.
428 It is ugly that we recreate this here; the original
429 version built in process_template_parm is no longer
430 available. */
431 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
432 CONST_DECL, DECL_NAME (parm),
433 TREE_TYPE (parm));
434 DECL_ARTIFICIAL (decl) = 1;
435 TREE_CONSTANT (decl) = 1;
436 TREE_READONLY (decl) = 1;
437 DECL_INITIAL (decl) = DECL_INITIAL (parm);
438 SET_DECL_TEMPLATE_PARM_P (decl);
439 pushdecl (decl);
441 break;
443 default:
444 gcc_unreachable ();
449 /* Restore the template parameter context for a member template or
450 a friend template defined in a class definition. */
452 void
453 maybe_begin_member_template_processing (tree decl)
455 tree parms;
456 int levels = 0;
458 if (inline_needs_template_parms (decl))
460 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
461 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
463 if (DECL_TEMPLATE_SPECIALIZATION (decl))
465 --levels;
466 parms = TREE_CHAIN (parms);
469 push_inline_template_parms_recursive (parms, levels);
472 /* Remember how many levels of template parameters we pushed so that
473 we can pop them later. */
474 inline_parm_levels.safe_push (levels);
477 /* Undo the effects of maybe_begin_member_template_processing. */
479 void
480 maybe_end_member_template_processing (void)
482 int i;
483 int last;
485 if (inline_parm_levels.length () == 0)
486 return;
488 last = inline_parm_levels.pop ();
489 for (i = 0; i < last; ++i)
491 --processing_template_decl;
492 current_template_parms = TREE_CHAIN (current_template_parms);
493 poplevel (0, 0, 0);
497 /* Return a new template argument vector which contains all of ARGS,
498 but has as its innermost set of arguments the EXTRA_ARGS. */
500 static tree
501 add_to_template_args (tree args, tree extra_args)
503 tree new_args;
504 int extra_depth;
505 int i;
506 int j;
508 if (args == NULL_TREE || extra_args == error_mark_node)
509 return extra_args;
511 extra_depth = TMPL_ARGS_DEPTH (extra_args);
512 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
514 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
515 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
517 for (j = 1; j <= extra_depth; ++j, ++i)
518 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
520 return new_args;
523 /* Like add_to_template_args, but only the outermost ARGS are added to
524 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
525 (EXTRA_ARGS) levels are added. This function is used to combine
526 the template arguments from a partial instantiation with the
527 template arguments used to attain the full instantiation from the
528 partial instantiation. */
530 static tree
531 add_outermost_template_args (tree args, tree extra_args)
533 tree new_args;
535 /* If there are more levels of EXTRA_ARGS than there are ARGS,
536 something very fishy is going on. */
537 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
539 /* If *all* the new arguments will be the EXTRA_ARGS, just return
540 them. */
541 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
542 return extra_args;
544 /* For the moment, we make ARGS look like it contains fewer levels. */
545 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
547 new_args = add_to_template_args (args, extra_args);
549 /* Now, we restore ARGS to its full dimensions. */
550 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
552 return new_args;
555 /* Return the N levels of innermost template arguments from the ARGS. */
557 tree
558 get_innermost_template_args (tree args, int n)
560 tree new_args;
561 int extra_levels;
562 int i;
564 gcc_assert (n >= 0);
566 /* If N is 1, just return the innermost set of template arguments. */
567 if (n == 1)
568 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
570 /* If we're not removing anything, just return the arguments we were
571 given. */
572 extra_levels = TMPL_ARGS_DEPTH (args) - n;
573 gcc_assert (extra_levels >= 0);
574 if (extra_levels == 0)
575 return args;
577 /* Make a new set of arguments, not containing the outer arguments. */
578 new_args = make_tree_vec (n);
579 for (i = 1; i <= n; ++i)
580 SET_TMPL_ARGS_LEVEL (new_args, i,
581 TMPL_ARGS_LEVEL (args, i + extra_levels));
583 return new_args;
586 /* The inverse of get_innermost_template_args: Return all but the innermost
587 EXTRA_LEVELS levels of template arguments from the ARGS. */
589 static tree
590 strip_innermost_template_args (tree args, int extra_levels)
592 tree new_args;
593 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
594 int i;
596 gcc_assert (n >= 0);
598 /* If N is 1, just return the outermost set of template arguments. */
599 if (n == 1)
600 return TMPL_ARGS_LEVEL (args, 1);
602 /* If we're not removing anything, just return the arguments we were
603 given. */
604 gcc_assert (extra_levels >= 0);
605 if (extra_levels == 0)
606 return args;
608 /* Make a new set of arguments, not containing the inner arguments. */
609 new_args = make_tree_vec (n);
610 for (i = 1; i <= n; ++i)
611 SET_TMPL_ARGS_LEVEL (new_args, i,
612 TMPL_ARGS_LEVEL (args, i));
614 return new_args;
617 /* We've got a template header coming up; push to a new level for storing
618 the parms. */
620 void
621 begin_template_parm_list (void)
623 /* We use a non-tag-transparent scope here, which causes pushtag to
624 put tags in this scope, rather than in the enclosing class or
625 namespace scope. This is the right thing, since we want
626 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
627 global template class, push_template_decl handles putting the
628 TEMPLATE_DECL into top-level scope. For a nested template class,
629 e.g.:
631 template <class T> struct S1 {
632 template <class T> struct S2 {};
635 pushtag contains special code to call pushdecl_with_scope on the
636 TEMPLATE_DECL for S2. */
637 begin_scope (sk_template_parms, NULL);
638 ++processing_template_decl;
639 ++processing_template_parmlist;
640 note_template_header (0);
643 /* This routine is called when a specialization is declared. If it is
644 invalid to declare a specialization here, an error is reported and
645 false is returned, otherwise this routine will return true. */
647 static bool
648 check_specialization_scope (void)
650 tree scope = current_scope ();
652 /* [temp.expl.spec]
654 An explicit specialization shall be declared in the namespace of
655 which the template is a member, or, for member templates, in the
656 namespace of which the enclosing class or enclosing class
657 template is a member. An explicit specialization of a member
658 function, member class or static data member of a class template
659 shall be declared in the namespace of which the class template
660 is a member. */
661 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
663 error ("explicit specialization in non-namespace scope %qD", scope);
664 return false;
667 /* [temp.expl.spec]
669 In an explicit specialization declaration for a member of a class
670 template or a member template that appears in namespace scope,
671 the member template and some of its enclosing class templates may
672 remain unspecialized, except that the declaration shall not
673 explicitly specialize a class member template if its enclosing
674 class templates are not explicitly specialized as well. */
675 if (current_template_parms)
677 error ("enclosing class templates are not explicitly specialized");
678 return false;
681 return true;
684 /* We've just seen template <>. */
686 bool
687 begin_specialization (void)
689 begin_scope (sk_template_spec, NULL);
690 note_template_header (1);
691 return check_specialization_scope ();
694 /* Called at then end of processing a declaration preceded by
695 template<>. */
697 void
698 end_specialization (void)
700 finish_scope ();
701 reset_specialization ();
704 /* Any template <>'s that we have seen thus far are not referring to a
705 function specialization. */
707 void
708 reset_specialization (void)
710 processing_specialization = 0;
711 template_header_count = 0;
714 /* We've just seen a template header. If SPECIALIZATION is nonzero,
715 it was of the form template <>. */
717 static void
718 note_template_header (int specialization)
720 processing_specialization = specialization;
721 template_header_count++;
724 /* We're beginning an explicit instantiation. */
726 void
727 begin_explicit_instantiation (void)
729 gcc_assert (!processing_explicit_instantiation);
730 processing_explicit_instantiation = true;
734 void
735 end_explicit_instantiation (void)
737 gcc_assert (processing_explicit_instantiation);
738 processing_explicit_instantiation = false;
741 /* An explicit specialization or partial specialization of TMPL is being
742 declared. Check that the namespace in which the specialization is
743 occurring is permissible. Returns false iff it is invalid to
744 specialize TMPL in the current namespace. */
746 static bool
747 check_specialization_namespace (tree tmpl)
749 tree tpl_ns = decl_namespace_context (tmpl);
751 /* [tmpl.expl.spec]
753 An explicit specialization shall be declared in the namespace of
754 which the template is a member, or, for member templates, in the
755 namespace of which the enclosing class or enclosing class
756 template is a member. An explicit specialization of a member
757 function, member class or static data member of a class template
758 shall be declared in the namespace of which the class template is
759 a member. */
760 if (current_scope() != DECL_CONTEXT (tmpl)
761 && !at_namespace_scope_p ())
763 error ("specialization of %qD must appear at namespace scope", tmpl);
764 return false;
766 if (is_associated_namespace (current_namespace, tpl_ns))
767 /* Same or super-using namespace. */
768 return true;
769 else
771 permerror (input_location, "specialization of %qD in different namespace", tmpl);
772 permerror (input_location, " from definition of %q+#D", tmpl);
773 return false;
777 /* SPEC is an explicit instantiation. Check that it is valid to
778 perform this explicit instantiation in the current namespace. */
780 static void
781 check_explicit_instantiation_namespace (tree spec)
783 tree ns;
785 /* DR 275: An explicit instantiation shall appear in an enclosing
786 namespace of its template. */
787 ns = decl_namespace_context (spec);
788 if (!is_ancestor (current_namespace, ns))
789 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
790 "(which does not enclose namespace %qD)",
791 spec, current_namespace, ns);
794 /* The TYPE is being declared. If it is a template type, that means it
795 is a partial specialization. Do appropriate error-checking. */
797 tree
798 maybe_process_partial_specialization (tree type)
800 tree context;
802 if (type == error_mark_node)
803 return error_mark_node;
805 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
807 error ("name of class shadows template template parameter %qD",
808 TYPE_NAME (type));
809 return error_mark_node;
812 context = TYPE_CONTEXT (type);
814 if (TYPE_ALIAS_P (type))
816 if (TYPE_TEMPLATE_INFO (type)
817 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
818 error ("specialization of alias template %qD",
819 TYPE_TI_TEMPLATE (type));
820 else
821 error ("explicit specialization of non-template %qT", type);
822 return error_mark_node;
824 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
826 /* This is for ordinary explicit specialization and partial
827 specialization of a template class such as:
829 template <> class C<int>;
833 template <class T> class C<T*>;
835 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
837 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
838 && !COMPLETE_TYPE_P (type))
840 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
841 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
842 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
843 if (processing_template_decl)
845 if (push_template_decl (TYPE_MAIN_DECL (type))
846 == error_mark_node)
847 return error_mark_node;
850 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
851 error ("specialization of %qT after instantiation", type);
852 else if (errorcount && !processing_specialization
853 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
854 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
855 /* Trying to define a specialization either without a template<> header
856 or in an inappropriate place. We've already given an error, so just
857 bail now so we don't actually define the specialization. */
858 return error_mark_node;
860 else if (CLASS_TYPE_P (type)
861 && !CLASSTYPE_USE_TEMPLATE (type)
862 && CLASSTYPE_TEMPLATE_INFO (type)
863 && context && CLASS_TYPE_P (context)
864 && CLASSTYPE_TEMPLATE_INFO (context))
866 /* This is for an explicit specialization of member class
867 template according to [temp.expl.spec/18]:
869 template <> template <class U> class C<int>::D;
871 The context `C<int>' must be an implicit instantiation.
872 Otherwise this is just a member class template declared
873 earlier like:
875 template <> class C<int> { template <class U> class D; };
876 template <> template <class U> class C<int>::D;
878 In the first case, `C<int>::D' is a specialization of `C<T>::D'
879 while in the second case, `C<int>::D' is a primary template
880 and `C<T>::D' may not exist. */
882 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
883 && !COMPLETE_TYPE_P (type))
885 tree t;
886 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
888 if (current_namespace
889 != decl_namespace_context (tmpl))
891 permerror (input_location, "specializing %q#T in different namespace", type);
892 permerror (input_location, " from definition of %q+#D", tmpl);
895 /* Check for invalid specialization after instantiation:
897 template <> template <> class C<int>::D<int>;
898 template <> template <class U> class C<int>::D; */
900 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
901 t; t = TREE_CHAIN (t))
903 tree inst = TREE_VALUE (t);
904 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst))
906 /* We already have a full specialization of this partial
907 instantiation. Reassign it to the new member
908 specialization template. */
909 spec_entry elt;
910 spec_entry *entry;
911 void **slot;
913 elt.tmpl = most_general_template (tmpl);
914 elt.args = CLASSTYPE_TI_ARGS (inst);
915 elt.spec = inst;
917 htab_remove_elt (type_specializations, &elt);
919 elt.tmpl = tmpl;
920 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
922 slot = htab_find_slot (type_specializations, &elt, INSERT);
923 entry = ggc_alloc_spec_entry ();
924 *entry = elt;
925 *slot = entry;
927 else if (COMPLETE_OR_OPEN_TYPE_P (inst))
928 /* But if we've had an implicit instantiation, that's a
929 problem ([temp.expl.spec]/6). */
930 error ("specialization %qT after instantiation %qT",
931 type, inst);
934 /* Mark TYPE as a specialization. And as a result, we only
935 have one level of template argument for the innermost
936 class template. */
937 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
938 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
939 CLASSTYPE_TI_ARGS (type)
940 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
943 else if (processing_specialization)
945 /* Someday C++0x may allow for enum template specialization. */
946 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
947 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
948 pedwarn (input_location, OPT_Wpedantic, "template specialization "
949 "of %qD not allowed by ISO C++", type);
950 else
952 error ("explicit specialization of non-template %qT", type);
953 return error_mark_node;
957 return type;
960 /* Returns nonzero if we can optimize the retrieval of specializations
961 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
962 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
964 static inline bool
965 optimize_specialization_lookup_p (tree tmpl)
967 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
968 && DECL_CLASS_SCOPE_P (tmpl)
969 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
970 parameter. */
971 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
972 /* The optimized lookup depends on the fact that the
973 template arguments for the member function template apply
974 purely to the containing class, which is not true if the
975 containing class is an explicit or partial
976 specialization. */
977 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
978 && !DECL_MEMBER_TEMPLATE_P (tmpl)
979 && !DECL_CONV_FN_P (tmpl)
980 /* It is possible to have a template that is not a member
981 template and is not a member of a template class:
983 template <typename T>
984 struct S { friend A::f(); };
986 Here, the friend function is a template, but the context does
987 not have template information. The optimized lookup relies
988 on having ARGS be the template arguments for both the class
989 and the function template. */
990 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
993 /* Retrieve the specialization (in the sense of [temp.spec] - a
994 specialization is either an instantiation or an explicit
995 specialization) of TMPL for the given template ARGS. If there is
996 no such specialization, return NULL_TREE. The ARGS are a vector of
997 arguments, or a vector of vectors of arguments, in the case of
998 templates with more than one level of parameters.
1000 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1001 then we search for a partial specialization matching ARGS. This
1002 parameter is ignored if TMPL is not a class template. */
1004 static tree
1005 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1007 if (args == error_mark_node)
1008 return NULL_TREE;
1010 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1012 /* There should be as many levels of arguments as there are
1013 levels of parameters. */
1014 gcc_assert (TMPL_ARGS_DEPTH (args)
1015 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
1017 if (optimize_specialization_lookup_p (tmpl))
1019 tree class_template;
1020 tree class_specialization;
1021 vec<tree, va_gc> *methods;
1022 tree fns;
1023 int idx;
1025 /* The template arguments actually apply to the containing
1026 class. Find the class specialization with those
1027 arguments. */
1028 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1029 class_specialization
1030 = retrieve_specialization (class_template, args, 0);
1031 if (!class_specialization)
1032 return NULL_TREE;
1033 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1034 for the specialization. */
1035 idx = class_method_index_for_fn (class_specialization, tmpl);
1036 if (idx == -1)
1037 return NULL_TREE;
1038 /* Iterate through the methods with the indicated name, looking
1039 for the one that has an instance of TMPL. */
1040 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1041 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1043 tree fn = OVL_CURRENT (fns);
1044 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1045 /* using-declarations can add base methods to the method vec,
1046 and we don't want those here. */
1047 && DECL_CONTEXT (fn) == class_specialization)
1048 return fn;
1050 return NULL_TREE;
1052 else
1054 spec_entry *found;
1055 spec_entry elt;
1056 htab_t specializations;
1058 elt.tmpl = tmpl;
1059 elt.args = args;
1060 elt.spec = NULL_TREE;
1062 if (DECL_CLASS_TEMPLATE_P (tmpl))
1063 specializations = type_specializations;
1064 else
1065 specializations = decl_specializations;
1067 if (hash == 0)
1068 hash = hash_specialization (&elt);
1069 found = (spec_entry *) htab_find_with_hash (specializations, &elt, hash);
1070 if (found)
1071 return found->spec;
1074 return NULL_TREE;
1077 /* Like retrieve_specialization, but for local declarations. */
1079 static tree
1080 retrieve_local_specialization (tree tmpl)
1082 void **slot;
1084 if (local_specializations == NULL)
1085 return NULL_TREE;
1087 slot = pointer_map_contains (local_specializations, tmpl);
1088 return slot ? (tree) *slot : NULL_TREE;
1091 /* Returns nonzero iff DECL is a specialization of TMPL. */
1094 is_specialization_of (tree decl, tree tmpl)
1096 tree t;
1098 if (TREE_CODE (decl) == FUNCTION_DECL)
1100 for (t = decl;
1101 t != NULL_TREE;
1102 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1103 if (t == tmpl)
1104 return 1;
1106 else
1108 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1110 for (t = TREE_TYPE (decl);
1111 t != NULL_TREE;
1112 t = CLASSTYPE_USE_TEMPLATE (t)
1113 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1114 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1115 return 1;
1118 return 0;
1121 /* Returns nonzero iff DECL is a specialization of friend declaration
1122 FRIEND_DECL according to [temp.friend]. */
1124 bool
1125 is_specialization_of_friend (tree decl, tree friend_decl)
1127 bool need_template = true;
1128 int template_depth;
1130 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1131 || TREE_CODE (decl) == TYPE_DECL);
1133 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1134 of a template class, we want to check if DECL is a specialization
1135 if this. */
1136 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1137 && DECL_TEMPLATE_INFO (friend_decl)
1138 && !DECL_USE_TEMPLATE (friend_decl))
1140 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1141 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1142 need_template = false;
1144 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1145 && !PRIMARY_TEMPLATE_P (friend_decl))
1146 need_template = false;
1148 /* There is nothing to do if this is not a template friend. */
1149 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1150 return false;
1152 if (is_specialization_of (decl, friend_decl))
1153 return true;
1155 /* [temp.friend/6]
1156 A member of a class template may be declared to be a friend of a
1157 non-template class. In this case, the corresponding member of
1158 every specialization of the class template is a friend of the
1159 class granting friendship.
1161 For example, given a template friend declaration
1163 template <class T> friend void A<T>::f();
1165 the member function below is considered a friend
1167 template <> struct A<int> {
1168 void f();
1171 For this type of template friend, TEMPLATE_DEPTH below will be
1172 nonzero. To determine if DECL is a friend of FRIEND, we first
1173 check if the enclosing class is a specialization of another. */
1175 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1176 if (template_depth
1177 && DECL_CLASS_SCOPE_P (decl)
1178 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1179 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1181 /* Next, we check the members themselves. In order to handle
1182 a few tricky cases, such as when FRIEND_DECL's are
1184 template <class T> friend void A<T>::g(T t);
1185 template <class T> template <T t> friend void A<T>::h();
1187 and DECL's are
1189 void A<int>::g(int);
1190 template <int> void A<int>::h();
1192 we need to figure out ARGS, the template arguments from
1193 the context of DECL. This is required for template substitution
1194 of `T' in the function parameter of `g' and template parameter
1195 of `h' in the above examples. Here ARGS corresponds to `int'. */
1197 tree context = DECL_CONTEXT (decl);
1198 tree args = NULL_TREE;
1199 int current_depth = 0;
1201 while (current_depth < template_depth)
1203 if (CLASSTYPE_TEMPLATE_INFO (context))
1205 if (current_depth == 0)
1206 args = TYPE_TI_ARGS (context);
1207 else
1208 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1209 current_depth++;
1211 context = TYPE_CONTEXT (context);
1214 if (TREE_CODE (decl) == FUNCTION_DECL)
1216 bool is_template;
1217 tree friend_type;
1218 tree decl_type;
1219 tree friend_args_type;
1220 tree decl_args_type;
1222 /* Make sure that both DECL and FRIEND_DECL are templates or
1223 non-templates. */
1224 is_template = DECL_TEMPLATE_INFO (decl)
1225 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1226 if (need_template ^ is_template)
1227 return false;
1228 else if (is_template)
1230 /* If both are templates, check template parameter list. */
1231 tree friend_parms
1232 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1233 args, tf_none);
1234 if (!comp_template_parms
1235 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1236 friend_parms))
1237 return false;
1239 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1241 else
1242 decl_type = TREE_TYPE (decl);
1244 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1245 tf_none, NULL_TREE);
1246 if (friend_type == error_mark_node)
1247 return false;
1249 /* Check if return types match. */
1250 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1251 return false;
1253 /* Check if function parameter types match, ignoring the
1254 `this' parameter. */
1255 friend_args_type = TYPE_ARG_TYPES (friend_type);
1256 decl_args_type = TYPE_ARG_TYPES (decl_type);
1257 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1258 friend_args_type = TREE_CHAIN (friend_args_type);
1259 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1260 decl_args_type = TREE_CHAIN (decl_args_type);
1262 return compparms (decl_args_type, friend_args_type);
1264 else
1266 /* DECL is a TYPE_DECL */
1267 bool is_template;
1268 tree decl_type = TREE_TYPE (decl);
1270 /* Make sure that both DECL and FRIEND_DECL are templates or
1271 non-templates. */
1272 is_template
1273 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1274 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1276 if (need_template ^ is_template)
1277 return false;
1278 else if (is_template)
1280 tree friend_parms;
1281 /* If both are templates, check the name of the two
1282 TEMPLATE_DECL's first because is_friend didn't. */
1283 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1284 != DECL_NAME (friend_decl))
1285 return false;
1287 /* Now check template parameter list. */
1288 friend_parms
1289 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1290 args, tf_none);
1291 return comp_template_parms
1292 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1293 friend_parms);
1295 else
1296 return (DECL_NAME (decl)
1297 == DECL_NAME (friend_decl));
1300 return false;
1303 /* Register the specialization SPEC as a specialization of TMPL with
1304 the indicated ARGS. IS_FRIEND indicates whether the specialization
1305 is actually just a friend declaration. Returns SPEC, or an
1306 equivalent prior declaration, if available. */
1308 static tree
1309 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1310 hashval_t hash)
1312 tree fn;
1313 void **slot = NULL;
1314 spec_entry elt;
1316 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec));
1318 if (TREE_CODE (spec) == FUNCTION_DECL
1319 && uses_template_parms (DECL_TI_ARGS (spec)))
1320 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1321 register it; we want the corresponding TEMPLATE_DECL instead.
1322 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1323 the more obvious `uses_template_parms (spec)' to avoid problems
1324 with default function arguments. In particular, given
1325 something like this:
1327 template <class T> void f(T t1, T t = T())
1329 the default argument expression is not substituted for in an
1330 instantiation unless and until it is actually needed. */
1331 return spec;
1333 if (optimize_specialization_lookup_p (tmpl))
1334 /* We don't put these specializations in the hash table, but we might
1335 want to give an error about a mismatch. */
1336 fn = retrieve_specialization (tmpl, args, 0);
1337 else
1339 elt.tmpl = tmpl;
1340 elt.args = args;
1341 elt.spec = spec;
1343 if (hash == 0)
1344 hash = hash_specialization (&elt);
1346 slot =
1347 htab_find_slot_with_hash (decl_specializations, &elt, hash, INSERT);
1348 if (*slot)
1349 fn = ((spec_entry *) *slot)->spec;
1350 else
1351 fn = NULL_TREE;
1354 /* We can sometimes try to re-register a specialization that we've
1355 already got. In particular, regenerate_decl_from_template calls
1356 duplicate_decls which will update the specialization list. But,
1357 we'll still get called again here anyhow. It's more convenient
1358 to simply allow this than to try to prevent it. */
1359 if (fn == spec)
1360 return spec;
1361 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1363 if (DECL_TEMPLATE_INSTANTIATION (fn))
1365 if (DECL_ODR_USED (fn)
1366 || DECL_EXPLICIT_INSTANTIATION (fn))
1368 error ("specialization of %qD after instantiation",
1369 fn);
1370 return error_mark_node;
1372 else
1374 tree clone;
1375 /* This situation should occur only if the first
1376 specialization is an implicit instantiation, the
1377 second is an explicit specialization, and the
1378 implicit instantiation has not yet been used. That
1379 situation can occur if we have implicitly
1380 instantiated a member function and then specialized
1381 it later.
1383 We can also wind up here if a friend declaration that
1384 looked like an instantiation turns out to be a
1385 specialization:
1387 template <class T> void foo(T);
1388 class S { friend void foo<>(int) };
1389 template <> void foo(int);
1391 We transform the existing DECL in place so that any
1392 pointers to it become pointers to the updated
1393 declaration.
1395 If there was a definition for the template, but not
1396 for the specialization, we want this to look as if
1397 there were no definition, and vice versa. */
1398 DECL_INITIAL (fn) = NULL_TREE;
1399 duplicate_decls (spec, fn, is_friend);
1400 /* The call to duplicate_decls will have applied
1401 [temp.expl.spec]:
1403 An explicit specialization of a function template
1404 is inline only if it is explicitly declared to be,
1405 and independently of whether its function template
1408 to the primary function; now copy the inline bits to
1409 the various clones. */
1410 FOR_EACH_CLONE (clone, fn)
1412 DECL_DECLARED_INLINE_P (clone)
1413 = DECL_DECLARED_INLINE_P (fn);
1414 DECL_SOURCE_LOCATION (clone)
1415 = DECL_SOURCE_LOCATION (fn);
1417 check_specialization_namespace (tmpl);
1419 return fn;
1422 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1424 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1425 /* Dup decl failed, but this is a new definition. Set the
1426 line number so any errors match this new
1427 definition. */
1428 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1430 return fn;
1433 else if (fn)
1434 return duplicate_decls (spec, fn, is_friend);
1436 /* A specialization must be declared in the same namespace as the
1437 template it is specializing. */
1438 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1439 && !check_specialization_namespace (tmpl))
1440 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1442 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1444 spec_entry *entry = ggc_alloc_spec_entry ();
1445 gcc_assert (tmpl && args && spec);
1446 *entry = elt;
1447 *slot = entry;
1448 if (TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1449 && PRIMARY_TEMPLATE_P (tmpl)
1450 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1451 /* TMPL is a forward declaration of a template function; keep a list
1452 of all specializations in case we need to reassign them to a friend
1453 template later in tsubst_friend_function. */
1454 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1455 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1458 return spec;
1461 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1462 TMPL and ARGS members, ignores SPEC. */
1464 static int
1465 eq_specializations (const void *p1, const void *p2)
1467 const spec_entry *e1 = (const spec_entry *)p1;
1468 const spec_entry *e2 = (const spec_entry *)p2;
1470 return (e1->tmpl == e2->tmpl
1471 && comp_template_args (e1->args, e2->args));
1474 /* Returns a hash for a template TMPL and template arguments ARGS. */
1476 static hashval_t
1477 hash_tmpl_and_args (tree tmpl, tree args)
1479 hashval_t val = DECL_UID (tmpl);
1480 return iterative_hash_template_arg (args, val);
1483 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1484 ignoring SPEC. */
1486 static hashval_t
1487 hash_specialization (const void *p)
1489 const spec_entry *e = (const spec_entry *)p;
1490 return hash_tmpl_and_args (e->tmpl, e->args);
1493 /* Recursively calculate a hash value for a template argument ARG, for use
1494 in the hash tables of template specializations. */
1496 hashval_t
1497 iterative_hash_template_arg (tree arg, hashval_t val)
1499 unsigned HOST_WIDE_INT i;
1500 enum tree_code code;
1501 char tclass;
1503 if (arg == NULL_TREE)
1504 return iterative_hash_object (arg, val);
1506 if (!TYPE_P (arg))
1507 STRIP_NOPS (arg);
1509 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1510 /* We can get one of these when re-hashing a previous entry in the middle
1511 of substituting into a pack expansion. Just look through it. */
1512 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1514 code = TREE_CODE (arg);
1515 tclass = TREE_CODE_CLASS (code);
1517 val = iterative_hash_object (code, val);
1519 switch (code)
1521 case ERROR_MARK:
1522 return val;
1524 case IDENTIFIER_NODE:
1525 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1527 case TREE_VEC:
1529 int i, len = TREE_VEC_LENGTH (arg);
1530 for (i = 0; i < len; ++i)
1531 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1532 return val;
1535 case TYPE_PACK_EXPANSION:
1536 case EXPR_PACK_EXPANSION:
1537 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1538 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1540 case TYPE_ARGUMENT_PACK:
1541 case NONTYPE_ARGUMENT_PACK:
1542 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1544 case TREE_LIST:
1545 for (; arg; arg = TREE_CHAIN (arg))
1546 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1547 return val;
1549 case OVERLOAD:
1550 for (; arg; arg = OVL_NEXT (arg))
1551 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1552 return val;
1554 case CONSTRUCTOR:
1556 tree field, value;
1557 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1559 val = iterative_hash_template_arg (field, val);
1560 val = iterative_hash_template_arg (value, val);
1562 return val;
1565 case PARM_DECL:
1566 if (!DECL_ARTIFICIAL (arg))
1568 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1569 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1571 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1573 case TARGET_EXPR:
1574 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1576 case PTRMEM_CST:
1577 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1578 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1580 case TEMPLATE_PARM_INDEX:
1581 val = iterative_hash_template_arg
1582 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1583 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1584 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1586 case TRAIT_EXPR:
1587 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1588 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1589 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1591 case BASELINK:
1592 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1593 val);
1594 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1595 val);
1597 case MODOP_EXPR:
1598 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1599 code = TREE_CODE (TREE_OPERAND (arg, 1));
1600 val = iterative_hash_object (code, val);
1601 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1603 case LAMBDA_EXPR:
1604 /* A lambda can't appear in a template arg, but don't crash on
1605 erroneous input. */
1606 gcc_assert (seen_error ());
1607 return val;
1609 case CAST_EXPR:
1610 case IMPLICIT_CONV_EXPR:
1611 case STATIC_CAST_EXPR:
1612 case REINTERPRET_CAST_EXPR:
1613 case CONST_CAST_EXPR:
1614 case DYNAMIC_CAST_EXPR:
1615 case NEW_EXPR:
1616 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1617 /* Now hash operands as usual. */
1618 break;
1620 default:
1621 break;
1624 switch (tclass)
1626 case tcc_type:
1627 if (TYPE_CANONICAL (arg))
1628 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1629 val);
1630 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1631 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1632 /* Otherwise just compare the types during lookup. */
1633 return val;
1635 case tcc_declaration:
1636 case tcc_constant:
1637 return iterative_hash_expr (arg, val);
1639 default:
1640 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1642 unsigned n = cp_tree_operand_length (arg);
1643 for (i = 0; i < n; ++i)
1644 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1645 return val;
1648 gcc_unreachable ();
1649 return 0;
1652 /* Unregister the specialization SPEC as a specialization of TMPL.
1653 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1654 if the SPEC was listed as a specialization of TMPL.
1656 Note that SPEC has been ggc_freed, so we can't look inside it. */
1658 bool
1659 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1661 spec_entry *entry;
1662 spec_entry elt;
1664 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1665 elt.args = TI_ARGS (tinfo);
1666 elt.spec = NULL_TREE;
1668 entry = (spec_entry *) htab_find (decl_specializations, &elt);
1669 if (entry != NULL)
1671 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1672 gcc_assert (new_spec != NULL_TREE);
1673 entry->spec = new_spec;
1674 return 1;
1677 return 0;
1680 /* Like register_specialization, but for local declarations. We are
1681 registering SPEC, an instantiation of TMPL. */
1683 static void
1684 register_local_specialization (tree spec, tree tmpl)
1686 void **slot;
1688 slot = pointer_map_insert (local_specializations, tmpl);
1689 *slot = spec;
1692 /* TYPE is a class type. Returns true if TYPE is an explicitly
1693 specialized class. */
1695 bool
1696 explicit_class_specialization_p (tree type)
1698 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1699 return false;
1700 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1703 /* Print the list of functions at FNS, going through all the overloads
1704 for each element of the list. Alternatively, FNS can not be a
1705 TREE_LIST, in which case it will be printed together with all the
1706 overloads.
1708 MORE and *STR should respectively be FALSE and NULL when the function
1709 is called from the outside. They are used internally on recursive
1710 calls. print_candidates manages the two parameters and leaves NULL
1711 in *STR when it ends. */
1713 static void
1714 print_candidates_1 (tree fns, bool more, const char **str)
1716 tree fn, fn2;
1717 char *spaces = NULL;
1719 for (fn = fns; fn; fn = OVL_NEXT (fn))
1720 if (TREE_CODE (fn) == TREE_LIST)
1722 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1723 print_candidates_1 (TREE_VALUE (fn2),
1724 TREE_CHAIN (fn2) || more, str);
1726 else
1728 tree cand = OVL_CURRENT (fn);
1729 if (!*str)
1731 /* Pick the prefix string. */
1732 if (!more && !OVL_NEXT (fns))
1734 inform (DECL_SOURCE_LOCATION (cand),
1735 "candidate is: %#D", cand);
1736 continue;
1739 *str = _("candidates are:");
1740 spaces = get_spaces (*str);
1742 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1743 *str = spaces ? spaces : *str;
1746 if (!more)
1748 free (spaces);
1749 *str = NULL;
1753 /* Print the list of candidate FNS in an error message. FNS can also
1754 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1756 void
1757 print_candidates (tree fns)
1759 const char *str = NULL;
1760 print_candidates_1 (fns, false, &str);
1761 gcc_assert (str == NULL);
1764 /* Returns the template (one of the functions given by TEMPLATE_ID)
1765 which can be specialized to match the indicated DECL with the
1766 explicit template args given in TEMPLATE_ID. The DECL may be
1767 NULL_TREE if none is available. In that case, the functions in
1768 TEMPLATE_ID are non-members.
1770 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1771 specialization of a member template.
1773 The TEMPLATE_COUNT is the number of references to qualifying
1774 template classes that appeared in the name of the function. See
1775 check_explicit_specialization for a more accurate description.
1777 TSK indicates what kind of template declaration (if any) is being
1778 declared. TSK_TEMPLATE indicates that the declaration given by
1779 DECL, though a FUNCTION_DECL, has template parameters, and is
1780 therefore a template function.
1782 The template args (those explicitly specified and those deduced)
1783 are output in a newly created vector *TARGS_OUT.
1785 If it is impossible to determine the result, an error message is
1786 issued. The error_mark_node is returned to indicate failure. */
1788 static tree
1789 determine_specialization (tree template_id,
1790 tree decl,
1791 tree* targs_out,
1792 int need_member_template,
1793 int template_count,
1794 tmpl_spec_kind tsk)
1796 tree fns;
1797 tree targs;
1798 tree explicit_targs;
1799 tree candidates = NULL_TREE;
1800 /* A TREE_LIST of templates of which DECL may be a specialization.
1801 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1802 corresponding TREE_PURPOSE is the set of template arguments that,
1803 when used to instantiate the template, would produce a function
1804 with the signature of DECL. */
1805 tree templates = NULL_TREE;
1806 int header_count;
1807 cp_binding_level *b;
1809 *targs_out = NULL_TREE;
1811 if (template_id == error_mark_node || decl == error_mark_node)
1812 return error_mark_node;
1814 /* We shouldn't be specializing a member template of an
1815 unspecialized class template; we already gave an error in
1816 check_specialization_scope, now avoid crashing. */
1817 if (template_count && DECL_CLASS_SCOPE_P (decl)
1818 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1820 gcc_assert (errorcount);
1821 return error_mark_node;
1824 fns = TREE_OPERAND (template_id, 0);
1825 explicit_targs = TREE_OPERAND (template_id, 1);
1827 if (fns == error_mark_node)
1828 return error_mark_node;
1830 /* Check for baselinks. */
1831 if (BASELINK_P (fns))
1832 fns = BASELINK_FUNCTIONS (fns);
1834 if (!is_overloaded_fn (fns))
1836 error ("%qD is not a function template", fns);
1837 return error_mark_node;
1840 /* Count the number of template headers specified for this
1841 specialization. */
1842 header_count = 0;
1843 for (b = current_binding_level;
1844 b->kind == sk_template_parms;
1845 b = b->level_chain)
1846 ++header_count;
1848 for (; fns; fns = OVL_NEXT (fns))
1850 tree fn = OVL_CURRENT (fns);
1852 if (TREE_CODE (fn) == TEMPLATE_DECL)
1854 tree decl_arg_types;
1855 tree fn_arg_types;
1856 tree insttype;
1858 /* In case of explicit specialization, we need to check if
1859 the number of template headers appearing in the specialization
1860 is correct. This is usually done in check_explicit_specialization,
1861 but the check done there cannot be exhaustive when specializing
1862 member functions. Consider the following code:
1864 template <> void A<int>::f(int);
1865 template <> template <> void A<int>::f(int);
1867 Assuming that A<int> is not itself an explicit specialization
1868 already, the first line specializes "f" which is a non-template
1869 member function, whilst the second line specializes "f" which
1870 is a template member function. So both lines are syntactically
1871 correct, and check_explicit_specialization does not reject
1872 them.
1874 Here, we can do better, as we are matching the specialization
1875 against the declarations. We count the number of template
1876 headers, and we check if they match TEMPLATE_COUNT + 1
1877 (TEMPLATE_COUNT is the number of qualifying template classes,
1878 plus there must be another header for the member template
1879 itself).
1881 Notice that if header_count is zero, this is not a
1882 specialization but rather a template instantiation, so there
1883 is no check we can perform here. */
1884 if (header_count && header_count != template_count + 1)
1885 continue;
1887 /* Check that the number of template arguments at the
1888 innermost level for DECL is the same as for FN. */
1889 if (current_binding_level->kind == sk_template_parms
1890 && !current_binding_level->explicit_spec_p
1891 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1892 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1893 (current_template_parms))))
1894 continue;
1896 /* DECL might be a specialization of FN. */
1897 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1898 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1900 /* For a non-static member function, we need to make sure
1901 that the const qualification is the same. Since
1902 get_bindings does not try to merge the "this" parameter,
1903 we must do the comparison explicitly. */
1904 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1905 && !same_type_p (TREE_VALUE (fn_arg_types),
1906 TREE_VALUE (decl_arg_types)))
1907 continue;
1909 /* Skip the "this" parameter and, for constructors of
1910 classes with virtual bases, the VTT parameter. A
1911 full specialization of a constructor will have a VTT
1912 parameter, but a template never will. */
1913 decl_arg_types
1914 = skip_artificial_parms_for (decl, decl_arg_types);
1915 fn_arg_types
1916 = skip_artificial_parms_for (fn, fn_arg_types);
1918 /* Function templates cannot be specializations; there are
1919 no partial specializations of functions. Therefore, if
1920 the type of DECL does not match FN, there is no
1921 match. */
1922 if (tsk == tsk_template)
1924 if (compparms (fn_arg_types, decl_arg_types))
1925 candidates = tree_cons (NULL_TREE, fn, candidates);
1926 continue;
1929 /* See whether this function might be a specialization of this
1930 template. Suppress access control because we might be trying
1931 to make this specialization a friend, and we have already done
1932 access control for the declaration of the specialization. */
1933 push_deferring_access_checks (dk_no_check);
1934 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1935 pop_deferring_access_checks ();
1937 if (!targs)
1938 /* We cannot deduce template arguments that when used to
1939 specialize TMPL will produce DECL. */
1940 continue;
1942 /* Make sure that the deduced arguments actually work. */
1943 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
1944 if (insttype == error_mark_node)
1945 continue;
1946 fn_arg_types
1947 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
1948 if (!compparms (fn_arg_types, decl_arg_types))
1949 continue;
1951 /* Save this template, and the arguments deduced. */
1952 templates = tree_cons (targs, fn, templates);
1954 else if (need_member_template)
1955 /* FN is an ordinary member function, and we need a
1956 specialization of a member template. */
1958 else if (TREE_CODE (fn) != FUNCTION_DECL)
1959 /* We can get IDENTIFIER_NODEs here in certain erroneous
1960 cases. */
1962 else if (!DECL_FUNCTION_MEMBER_P (fn))
1963 /* This is just an ordinary non-member function. Nothing can
1964 be a specialization of that. */
1966 else if (DECL_ARTIFICIAL (fn))
1967 /* Cannot specialize functions that are created implicitly. */
1969 else
1971 tree decl_arg_types;
1973 /* This is an ordinary member function. However, since
1974 we're here, we can assume it's enclosing class is a
1975 template class. For example,
1977 template <typename T> struct S { void f(); };
1978 template <> void S<int>::f() {}
1980 Here, S<int>::f is a non-template, but S<int> is a
1981 template class. If FN has the same type as DECL, we
1982 might be in business. */
1984 if (!DECL_TEMPLATE_INFO (fn))
1985 /* Its enclosing class is an explicit specialization
1986 of a template class. This is not a candidate. */
1987 continue;
1989 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1990 TREE_TYPE (TREE_TYPE (fn))))
1991 /* The return types differ. */
1992 continue;
1994 /* Adjust the type of DECL in case FN is a static member. */
1995 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1996 if (DECL_STATIC_FUNCTION_P (fn)
1997 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1998 decl_arg_types = TREE_CHAIN (decl_arg_types);
2000 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2001 decl_arg_types))
2002 /* They match! */
2003 candidates = tree_cons (NULL_TREE, fn, candidates);
2007 if (templates && TREE_CHAIN (templates))
2009 /* We have:
2011 [temp.expl.spec]
2013 It is possible for a specialization with a given function
2014 signature to be instantiated from more than one function
2015 template. In such cases, explicit specification of the
2016 template arguments must be used to uniquely identify the
2017 function template specialization being specialized.
2019 Note that here, there's no suggestion that we're supposed to
2020 determine which of the candidate templates is most
2021 specialized. However, we, also have:
2023 [temp.func.order]
2025 Partial ordering of overloaded function template
2026 declarations is used in the following contexts to select
2027 the function template to which a function template
2028 specialization refers:
2030 -- when an explicit specialization refers to a function
2031 template.
2033 So, we do use the partial ordering rules, at least for now.
2034 This extension can only serve to make invalid programs valid,
2035 so it's safe. And, there is strong anecdotal evidence that
2036 the committee intended the partial ordering rules to apply;
2037 the EDG front end has that behavior, and John Spicer claims
2038 that the committee simply forgot to delete the wording in
2039 [temp.expl.spec]. */
2040 tree tmpl = most_specialized_instantiation (templates);
2041 if (tmpl != error_mark_node)
2043 templates = tmpl;
2044 TREE_CHAIN (templates) = NULL_TREE;
2048 if (templates == NULL_TREE && candidates == NULL_TREE)
2050 error ("template-id %qD for %q+D does not match any template "
2051 "declaration", template_id, decl);
2052 if (header_count && header_count != template_count + 1)
2053 inform (input_location, "saw %d %<template<>%>, need %d for "
2054 "specializing a member function template",
2055 header_count, template_count + 1);
2056 return error_mark_node;
2058 else if ((templates && TREE_CHAIN (templates))
2059 || (candidates && TREE_CHAIN (candidates))
2060 || (templates && candidates))
2062 error ("ambiguous template specialization %qD for %q+D",
2063 template_id, decl);
2064 candidates = chainon (candidates, templates);
2065 print_candidates (candidates);
2066 return error_mark_node;
2069 /* We have one, and exactly one, match. */
2070 if (candidates)
2072 tree fn = TREE_VALUE (candidates);
2073 *targs_out = copy_node (DECL_TI_ARGS (fn));
2074 /* DECL is a re-declaration or partial instantiation of a template
2075 function. */
2076 if (TREE_CODE (fn) == TEMPLATE_DECL)
2077 return fn;
2078 /* It was a specialization of an ordinary member function in a
2079 template class. */
2080 return DECL_TI_TEMPLATE (fn);
2083 /* It was a specialization of a template. */
2084 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2085 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2087 *targs_out = copy_node (targs);
2088 SET_TMPL_ARGS_LEVEL (*targs_out,
2089 TMPL_ARGS_DEPTH (*targs_out),
2090 TREE_PURPOSE (templates));
2092 else
2093 *targs_out = TREE_PURPOSE (templates);
2094 return TREE_VALUE (templates);
2097 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2098 but with the default argument values filled in from those in the
2099 TMPL_TYPES. */
2101 static tree
2102 copy_default_args_to_explicit_spec_1 (tree spec_types,
2103 tree tmpl_types)
2105 tree new_spec_types;
2107 if (!spec_types)
2108 return NULL_TREE;
2110 if (spec_types == void_list_node)
2111 return void_list_node;
2113 /* Substitute into the rest of the list. */
2114 new_spec_types =
2115 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2116 TREE_CHAIN (tmpl_types));
2118 /* Add the default argument for this parameter. */
2119 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2120 TREE_VALUE (spec_types),
2121 new_spec_types);
2124 /* DECL is an explicit specialization. Replicate default arguments
2125 from the template it specializes. (That way, code like:
2127 template <class T> void f(T = 3);
2128 template <> void f(double);
2129 void g () { f (); }
2131 works, as required.) An alternative approach would be to look up
2132 the correct default arguments at the call-site, but this approach
2133 is consistent with how implicit instantiations are handled. */
2135 static void
2136 copy_default_args_to_explicit_spec (tree decl)
2138 tree tmpl;
2139 tree spec_types;
2140 tree tmpl_types;
2141 tree new_spec_types;
2142 tree old_type;
2143 tree new_type;
2144 tree t;
2145 tree object_type = NULL_TREE;
2146 tree in_charge = NULL_TREE;
2147 tree vtt = NULL_TREE;
2149 /* See if there's anything we need to do. */
2150 tmpl = DECL_TI_TEMPLATE (decl);
2151 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2152 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2153 if (TREE_PURPOSE (t))
2154 break;
2155 if (!t)
2156 return;
2158 old_type = TREE_TYPE (decl);
2159 spec_types = TYPE_ARG_TYPES (old_type);
2161 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2163 /* Remove the this pointer, but remember the object's type for
2164 CV quals. */
2165 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2166 spec_types = TREE_CHAIN (spec_types);
2167 tmpl_types = TREE_CHAIN (tmpl_types);
2169 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2171 /* DECL may contain more parameters than TMPL due to the extra
2172 in-charge parameter in constructors and destructors. */
2173 in_charge = spec_types;
2174 spec_types = TREE_CHAIN (spec_types);
2176 if (DECL_HAS_VTT_PARM_P (decl))
2178 vtt = spec_types;
2179 spec_types = TREE_CHAIN (spec_types);
2183 /* Compute the merged default arguments. */
2184 new_spec_types =
2185 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2187 /* Compute the new FUNCTION_TYPE. */
2188 if (object_type)
2190 if (vtt)
2191 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2192 TREE_VALUE (vtt),
2193 new_spec_types);
2195 if (in_charge)
2196 /* Put the in-charge parameter back. */
2197 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2198 TREE_VALUE (in_charge),
2199 new_spec_types);
2201 new_type = build_method_type_directly (object_type,
2202 TREE_TYPE (old_type),
2203 new_spec_types);
2205 else
2206 new_type = build_function_type (TREE_TYPE (old_type),
2207 new_spec_types);
2208 new_type = cp_build_type_attribute_variant (new_type,
2209 TYPE_ATTRIBUTES (old_type));
2210 new_type = build_exception_variant (new_type,
2211 TYPE_RAISES_EXCEPTIONS (old_type));
2212 TREE_TYPE (decl) = new_type;
2215 /* Return the number of template headers we expect to see for a definition
2216 or specialization of CTYPE or one of its non-template members. */
2219 num_template_headers_for_class (tree ctype)
2221 int num_templates = 0;
2223 while (ctype && CLASS_TYPE_P (ctype))
2225 /* You're supposed to have one `template <...>' for every
2226 template class, but you don't need one for a full
2227 specialization. For example:
2229 template <class T> struct S{};
2230 template <> struct S<int> { void f(); };
2231 void S<int>::f () {}
2233 is correct; there shouldn't be a `template <>' for the
2234 definition of `S<int>::f'. */
2235 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2236 /* If CTYPE does not have template information of any
2237 kind, then it is not a template, nor is it nested
2238 within a template. */
2239 break;
2240 if (explicit_class_specialization_p (ctype))
2241 break;
2242 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2243 ++num_templates;
2245 ctype = TYPE_CONTEXT (ctype);
2248 return num_templates;
2251 /* Do a simple sanity check on the template headers that precede the
2252 variable declaration DECL. */
2254 void
2255 check_template_variable (tree decl)
2257 tree ctx = CP_DECL_CONTEXT (decl);
2258 int wanted = num_template_headers_for_class (ctx);
2259 if (!TYPE_P (ctx) || !CLASSTYPE_TEMPLATE_INFO (ctx))
2260 permerror (DECL_SOURCE_LOCATION (decl),
2261 "%qD is not a static data member of a class template", decl);
2262 else if (template_header_count > wanted)
2264 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2265 "too many template headers for %D (should be %d)",
2266 decl, wanted);
2267 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2268 inform (DECL_SOURCE_LOCATION (decl),
2269 "members of an explicitly specialized class are defined "
2270 "without a template header");
2274 /* Check to see if the function just declared, as indicated in
2275 DECLARATOR, and in DECL, is a specialization of a function
2276 template. We may also discover that the declaration is an explicit
2277 instantiation at this point.
2279 Returns DECL, or an equivalent declaration that should be used
2280 instead if all goes well. Issues an error message if something is
2281 amiss. Returns error_mark_node if the error is not easily
2282 recoverable.
2284 FLAGS is a bitmask consisting of the following flags:
2286 2: The function has a definition.
2287 4: The function is a friend.
2289 The TEMPLATE_COUNT is the number of references to qualifying
2290 template classes that appeared in the name of the function. For
2291 example, in
2293 template <class T> struct S { void f(); };
2294 void S<int>::f();
2296 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2297 classes are not counted in the TEMPLATE_COUNT, so that in
2299 template <class T> struct S {};
2300 template <> struct S<int> { void f(); }
2301 template <> void S<int>::f();
2303 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2304 invalid; there should be no template <>.)
2306 If the function is a specialization, it is marked as such via
2307 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2308 is set up correctly, and it is added to the list of specializations
2309 for that template. */
2311 tree
2312 check_explicit_specialization (tree declarator,
2313 tree decl,
2314 int template_count,
2315 int flags)
2317 int have_def = flags & 2;
2318 int is_friend = flags & 4;
2319 int specialization = 0;
2320 int explicit_instantiation = 0;
2321 int member_specialization = 0;
2322 tree ctype = DECL_CLASS_CONTEXT (decl);
2323 tree dname = DECL_NAME (decl);
2324 tmpl_spec_kind tsk;
2326 if (is_friend)
2328 if (!processing_specialization)
2329 tsk = tsk_none;
2330 else
2331 tsk = tsk_excessive_parms;
2333 else
2334 tsk = current_tmpl_spec_kind (template_count);
2336 switch (tsk)
2338 case tsk_none:
2339 if (processing_specialization)
2341 specialization = 1;
2342 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2344 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2346 if (is_friend)
2347 /* This could be something like:
2349 template <class T> void f(T);
2350 class S { friend void f<>(int); } */
2351 specialization = 1;
2352 else
2354 /* This case handles bogus declarations like template <>
2355 template <class T> void f<int>(); */
2357 error ("template-id %qD in declaration of primary template",
2358 declarator);
2359 return decl;
2362 break;
2364 case tsk_invalid_member_spec:
2365 /* The error has already been reported in
2366 check_specialization_scope. */
2367 return error_mark_node;
2369 case tsk_invalid_expl_inst:
2370 error ("template parameter list used in explicit instantiation");
2372 /* Fall through. */
2374 case tsk_expl_inst:
2375 if (have_def)
2376 error ("definition provided for explicit instantiation");
2378 explicit_instantiation = 1;
2379 break;
2381 case tsk_excessive_parms:
2382 case tsk_insufficient_parms:
2383 if (tsk == tsk_excessive_parms)
2384 error ("too many template parameter lists in declaration of %qD",
2385 decl);
2386 else if (template_header_count)
2387 error("too few template parameter lists in declaration of %qD", decl);
2388 else
2389 error("explicit specialization of %qD must be introduced by "
2390 "%<template <>%>", decl);
2392 /* Fall through. */
2393 case tsk_expl_spec:
2394 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2395 if (ctype)
2396 member_specialization = 1;
2397 else
2398 specialization = 1;
2399 break;
2401 case tsk_template:
2402 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2404 /* This case handles bogus declarations like template <>
2405 template <class T> void f<int>(); */
2407 if (uses_template_parms (declarator))
2408 error ("function template partial specialization %qD "
2409 "is not allowed", declarator);
2410 else
2411 error ("template-id %qD in declaration of primary template",
2412 declarator);
2413 return decl;
2416 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2417 /* This is a specialization of a member template, without
2418 specialization the containing class. Something like:
2420 template <class T> struct S {
2421 template <class U> void f (U);
2423 template <> template <class U> void S<int>::f(U) {}
2425 That's a specialization -- but of the entire template. */
2426 specialization = 1;
2427 break;
2429 default:
2430 gcc_unreachable ();
2433 if (specialization || member_specialization)
2435 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2436 for (; t; t = TREE_CHAIN (t))
2437 if (TREE_PURPOSE (t))
2439 permerror (input_location,
2440 "default argument specified in explicit specialization");
2441 break;
2445 if (specialization || member_specialization || explicit_instantiation)
2447 tree tmpl = NULL_TREE;
2448 tree targs = NULL_TREE;
2450 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2451 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2453 tree fns;
2455 gcc_assert (TREE_CODE (declarator) == IDENTIFIER_NODE);
2456 if (ctype)
2457 fns = dname;
2458 else
2460 /* If there is no class context, the explicit instantiation
2461 must be at namespace scope. */
2462 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2464 /* Find the namespace binding, using the declaration
2465 context. */
2466 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2467 false, true);
2468 if (fns == error_mark_node || !is_overloaded_fn (fns))
2470 error ("%qD is not a template function", dname);
2471 fns = error_mark_node;
2473 else
2475 tree fn = OVL_CURRENT (fns);
2476 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2477 CP_DECL_CONTEXT (fn)))
2478 error ("%qD is not declared in %qD",
2479 decl, current_namespace);
2483 declarator = lookup_template_function (fns, NULL_TREE);
2486 if (declarator == error_mark_node)
2487 return error_mark_node;
2489 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2491 if (!explicit_instantiation)
2492 /* A specialization in class scope. This is invalid,
2493 but the error will already have been flagged by
2494 check_specialization_scope. */
2495 return error_mark_node;
2496 else
2498 /* It's not valid to write an explicit instantiation in
2499 class scope, e.g.:
2501 class C { template void f(); }
2503 This case is caught by the parser. However, on
2504 something like:
2506 template class C { void f(); };
2508 (which is invalid) we can get here. The error will be
2509 issued later. */
2513 return decl;
2515 else if (ctype != NULL_TREE
2516 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
2517 IDENTIFIER_NODE))
2519 /* Find the list of functions in ctype that have the same
2520 name as the declared function. */
2521 tree name = TREE_OPERAND (declarator, 0);
2522 tree fns = NULL_TREE;
2523 int idx;
2525 if (constructor_name_p (name, ctype))
2527 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2529 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2530 : !CLASSTYPE_DESTRUCTORS (ctype))
2532 /* From [temp.expl.spec]:
2534 If such an explicit specialization for the member
2535 of a class template names an implicitly-declared
2536 special member function (clause _special_), the
2537 program is ill-formed.
2539 Similar language is found in [temp.explicit]. */
2540 error ("specialization of implicitly-declared special member function");
2541 return error_mark_node;
2544 name = is_constructor ? ctor_identifier : dtor_identifier;
2547 if (!DECL_CONV_FN_P (decl))
2549 idx = lookup_fnfields_1 (ctype, name);
2550 if (idx >= 0)
2551 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2553 else
2555 vec<tree, va_gc> *methods;
2556 tree ovl;
2558 /* For a type-conversion operator, we cannot do a
2559 name-based lookup. We might be looking for `operator
2560 int' which will be a specialization of `operator T'.
2561 So, we find *all* the conversion operators, and then
2562 select from them. */
2563 fns = NULL_TREE;
2565 methods = CLASSTYPE_METHOD_VEC (ctype);
2566 if (methods)
2567 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2568 methods->iterate (idx, &ovl);
2569 ++idx)
2571 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2572 /* There are no more conversion functions. */
2573 break;
2575 /* Glue all these conversion functions together
2576 with those we already have. */
2577 for (; ovl; ovl = OVL_NEXT (ovl))
2578 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2582 if (fns == NULL_TREE)
2584 error ("no member function %qD declared in %qT", name, ctype);
2585 return error_mark_node;
2587 else
2588 TREE_OPERAND (declarator, 0) = fns;
2591 /* Figure out what exactly is being specialized at this point.
2592 Note that for an explicit instantiation, even one for a
2593 member function, we cannot tell apriori whether the
2594 instantiation is for a member template, or just a member
2595 function of a template class. Even if a member template is
2596 being instantiated, the member template arguments may be
2597 elided if they can be deduced from the rest of the
2598 declaration. */
2599 tmpl = determine_specialization (declarator, decl,
2600 &targs,
2601 member_specialization,
2602 template_count,
2603 tsk);
2605 if (!tmpl || tmpl == error_mark_node)
2606 /* We couldn't figure out what this declaration was
2607 specializing. */
2608 return error_mark_node;
2609 else
2611 tree gen_tmpl = most_general_template (tmpl);
2613 if (explicit_instantiation)
2615 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2616 is done by do_decl_instantiation later. */
2618 int arg_depth = TMPL_ARGS_DEPTH (targs);
2619 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2621 if (arg_depth > parm_depth)
2623 /* If TMPL is not the most general template (for
2624 example, if TMPL is a friend template that is
2625 injected into namespace scope), then there will
2626 be too many levels of TARGS. Remove some of them
2627 here. */
2628 int i;
2629 tree new_targs;
2631 new_targs = make_tree_vec (parm_depth);
2632 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2633 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2634 = TREE_VEC_ELT (targs, i);
2635 targs = new_targs;
2638 return instantiate_template (tmpl, targs, tf_error);
2641 /* If we thought that the DECL was a member function, but it
2642 turns out to be specializing a static member function,
2643 make DECL a static member function as well. */
2644 if (DECL_STATIC_FUNCTION_P (tmpl)
2645 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2646 revert_static_member_fn (decl);
2648 /* If this is a specialization of a member template of a
2649 template class, we want to return the TEMPLATE_DECL, not
2650 the specialization of it. */
2651 if (tsk == tsk_template)
2653 tree result = DECL_TEMPLATE_RESULT (tmpl);
2654 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2655 DECL_INITIAL (result) = NULL_TREE;
2656 if (have_def)
2658 tree parm;
2659 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2660 DECL_SOURCE_LOCATION (result)
2661 = DECL_SOURCE_LOCATION (decl);
2662 /* We want to use the argument list specified in the
2663 definition, not in the original declaration. */
2664 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2665 for (parm = DECL_ARGUMENTS (result); parm;
2666 parm = DECL_CHAIN (parm))
2667 DECL_CONTEXT (parm) = result;
2669 return register_specialization (tmpl, gen_tmpl, targs,
2670 is_friend, 0);
2673 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2674 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2676 /* Inherit default function arguments from the template
2677 DECL is specializing. */
2678 copy_default_args_to_explicit_spec (decl);
2680 /* This specialization has the same protection as the
2681 template it specializes. */
2682 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2683 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2685 /* 7.1.1-1 [dcl.stc]
2687 A storage-class-specifier shall not be specified in an
2688 explicit specialization...
2690 The parser rejects these, so unless action is taken here,
2691 explicit function specializations will always appear with
2692 global linkage.
2694 The action recommended by the C++ CWG in response to C++
2695 defect report 605 is to make the storage class and linkage
2696 of the explicit specialization match the templated function:
2698 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2700 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2702 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2703 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2705 /* This specialization has the same linkage and visibility as
2706 the function template it specializes. */
2707 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2708 if (! TREE_PUBLIC (decl))
2710 DECL_INTERFACE_KNOWN (decl) = 1;
2711 DECL_NOT_REALLY_EXTERN (decl) = 1;
2713 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2714 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2716 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2717 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2721 /* If DECL is a friend declaration, declared using an
2722 unqualified name, the namespace associated with DECL may
2723 have been set incorrectly. For example, in:
2725 template <typename T> void f(T);
2726 namespace N {
2727 struct S { friend void f<int>(int); }
2730 we will have set the DECL_CONTEXT for the friend
2731 declaration to N, rather than to the global namespace. */
2732 if (DECL_NAMESPACE_SCOPE_P (decl))
2733 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2735 if (is_friend && !have_def)
2736 /* This is not really a declaration of a specialization.
2737 It's just the name of an instantiation. But, it's not
2738 a request for an instantiation, either. */
2739 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2740 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2741 /* This is indeed a specialization. In case of constructors
2742 and destructors, we need in-charge and not-in-charge
2743 versions in V3 ABI. */
2744 clone_function_decl (decl, /*update_method_vec_p=*/0);
2746 /* Register this specialization so that we can find it
2747 again. */
2748 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2752 return decl;
2755 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2756 parameters. These are represented in the same format used for
2757 DECL_TEMPLATE_PARMS. */
2760 comp_template_parms (const_tree parms1, const_tree parms2)
2762 const_tree p1;
2763 const_tree p2;
2765 if (parms1 == parms2)
2766 return 1;
2768 for (p1 = parms1, p2 = parms2;
2769 p1 != NULL_TREE && p2 != NULL_TREE;
2770 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2772 tree t1 = TREE_VALUE (p1);
2773 tree t2 = TREE_VALUE (p2);
2774 int i;
2776 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2777 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2779 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2780 return 0;
2782 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2784 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2785 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2787 /* If either of the template parameters are invalid, assume
2788 they match for the sake of error recovery. */
2789 if (parm1 == error_mark_node || parm2 == error_mark_node)
2790 return 1;
2792 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2793 return 0;
2795 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2796 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2797 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2798 continue;
2799 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2800 return 0;
2804 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2805 /* One set of parameters has more parameters lists than the
2806 other. */
2807 return 0;
2809 return 1;
2812 /* Determine whether PARM is a parameter pack. */
2814 bool
2815 template_parameter_pack_p (const_tree parm)
2817 /* Determine if we have a non-type template parameter pack. */
2818 if (TREE_CODE (parm) == PARM_DECL)
2819 return (DECL_TEMPLATE_PARM_P (parm)
2820 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2821 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2822 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2824 /* If this is a list of template parameters, we could get a
2825 TYPE_DECL or a TEMPLATE_DECL. */
2826 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2827 parm = TREE_TYPE (parm);
2829 /* Otherwise it must be a type template parameter. */
2830 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2831 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2832 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2835 /* Determine if T is a function parameter pack. */
2837 bool
2838 function_parameter_pack_p (const_tree t)
2840 if (t && TREE_CODE (t) == PARM_DECL)
2841 return FUNCTION_PARAMETER_PACK_P (t);
2842 return false;
2845 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2846 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2848 tree
2849 get_function_template_decl (const_tree primary_func_tmpl_inst)
2851 if (! primary_func_tmpl_inst
2852 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2853 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2854 return NULL;
2856 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2859 /* Return true iff the function parameter PARAM_DECL was expanded
2860 from the function parameter pack PACK. */
2862 bool
2863 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2865 if (DECL_ARTIFICIAL (param_decl)
2866 || !function_parameter_pack_p (pack))
2867 return false;
2869 /* The parameter pack and its pack arguments have the same
2870 DECL_PARM_INDEX. */
2871 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2874 /* Determine whether ARGS describes a variadic template args list,
2875 i.e., one that is terminated by a template argument pack. */
2877 static bool
2878 template_args_variadic_p (tree args)
2880 int nargs;
2881 tree last_parm;
2883 if (args == NULL_TREE)
2884 return false;
2886 args = INNERMOST_TEMPLATE_ARGS (args);
2887 nargs = TREE_VEC_LENGTH (args);
2889 if (nargs == 0)
2890 return false;
2892 last_parm = TREE_VEC_ELT (args, nargs - 1);
2894 return ARGUMENT_PACK_P (last_parm);
2897 /* Generate a new name for the parameter pack name NAME (an
2898 IDENTIFIER_NODE) that incorporates its */
2900 static tree
2901 make_ith_pack_parameter_name (tree name, int i)
2903 /* Munge the name to include the parameter index. */
2904 #define NUMBUF_LEN 128
2905 char numbuf[NUMBUF_LEN];
2906 char* newname;
2907 int newname_len;
2909 if (name == NULL_TREE)
2910 return name;
2911 snprintf (numbuf, NUMBUF_LEN, "%i", i);
2912 newname_len = IDENTIFIER_LENGTH (name)
2913 + strlen (numbuf) + 2;
2914 newname = (char*)alloca (newname_len);
2915 snprintf (newname, newname_len,
2916 "%s#%i", IDENTIFIER_POINTER (name), i);
2917 return get_identifier (newname);
2920 /* Return true if T is a primary function, class or alias template
2921 instantiation. */
2923 bool
2924 primary_template_instantiation_p (const_tree t)
2926 if (!t)
2927 return false;
2929 if (TREE_CODE (t) == FUNCTION_DECL)
2930 return DECL_LANG_SPECIFIC (t)
2931 && DECL_TEMPLATE_INSTANTIATION (t)
2932 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
2933 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
2934 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
2935 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
2936 else if (alias_template_specialization_p (t))
2937 return true;
2938 return false;
2941 /* Return true if PARM is a template template parameter. */
2943 bool
2944 template_template_parameter_p (const_tree parm)
2946 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
2949 /* Return true iff PARM is a DECL representing a type template
2950 parameter. */
2952 bool
2953 template_type_parameter_p (const_tree parm)
2955 return (parm
2956 && (TREE_CODE (parm) == TYPE_DECL
2957 || TREE_CODE (parm) == TEMPLATE_DECL)
2958 && DECL_TEMPLATE_PARM_P (parm));
2961 /* Return the template parameters of T if T is a
2962 primary template instantiation, NULL otherwise. */
2964 tree
2965 get_primary_template_innermost_parameters (const_tree t)
2967 tree parms = NULL, template_info = NULL;
2969 if ((template_info = get_template_info (t))
2970 && primary_template_instantiation_p (t))
2971 parms = INNERMOST_TEMPLATE_PARMS
2972 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
2974 return parms;
2977 /* Return the template parameters of the LEVELth level from the full list
2978 of template parameters PARMS. */
2980 tree
2981 get_template_parms_at_level (tree parms, int level)
2983 tree p;
2984 if (!parms
2985 || TREE_CODE (parms) != TREE_LIST
2986 || level > TMPL_PARMS_DEPTH (parms))
2987 return NULL_TREE;
2989 for (p = parms; p; p = TREE_CHAIN (p))
2990 if (TMPL_PARMS_DEPTH (p) == level)
2991 return p;
2993 return NULL_TREE;
2996 /* Returns the template arguments of T if T is a template instantiation,
2997 NULL otherwise. */
2999 tree
3000 get_template_innermost_arguments (const_tree t)
3002 tree args = NULL, template_info = NULL;
3004 if ((template_info = get_template_info (t))
3005 && TI_ARGS (template_info))
3006 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3008 return args;
3011 /* Return the argument pack elements of T if T is a template argument pack,
3012 NULL otherwise. */
3014 tree
3015 get_template_argument_pack_elems (const_tree t)
3017 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3018 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3019 return NULL;
3021 return ARGUMENT_PACK_ARGS (t);
3024 /* Structure used to track the progress of find_parameter_packs_r. */
3025 struct find_parameter_pack_data
3027 /* TREE_LIST that will contain all of the parameter packs found by
3028 the traversal. */
3029 tree* parameter_packs;
3031 /* Set of AST nodes that have been visited by the traversal. */
3032 struct pointer_set_t *visited;
3035 /* Identifies all of the argument packs that occur in a template
3036 argument and appends them to the TREE_LIST inside DATA, which is a
3037 find_parameter_pack_data structure. This is a subroutine of
3038 make_pack_expansion and uses_parameter_packs. */
3039 static tree
3040 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3042 tree t = *tp;
3043 struct find_parameter_pack_data* ppd =
3044 (struct find_parameter_pack_data*)data;
3045 bool parameter_pack_p = false;
3047 /* Handle type aliases/typedefs. */
3048 if (TYPE_P (t)
3049 && TYPE_NAME (t)
3050 && TREE_CODE (TYPE_NAME (t)) == TYPE_DECL
3051 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3053 if (TYPE_TEMPLATE_INFO (t))
3054 cp_walk_tree (&TYPE_TI_ARGS (t),
3055 &find_parameter_packs_r,
3056 ppd, ppd->visited);
3057 *walk_subtrees = 0;
3058 return NULL_TREE;
3061 /* Identify whether this is a parameter pack or not. */
3062 switch (TREE_CODE (t))
3064 case TEMPLATE_PARM_INDEX:
3065 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3066 parameter_pack_p = true;
3067 break;
3069 case TEMPLATE_TYPE_PARM:
3070 t = TYPE_MAIN_VARIANT (t);
3071 case TEMPLATE_TEMPLATE_PARM:
3072 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3073 parameter_pack_p = true;
3074 break;
3076 case PARM_DECL:
3077 if (FUNCTION_PARAMETER_PACK_P (t))
3079 /* We don't want to walk into the type of a PARM_DECL,
3080 because we don't want to see the type parameter pack. */
3081 *walk_subtrees = 0;
3082 parameter_pack_p = true;
3084 break;
3086 case BASES:
3087 parameter_pack_p = true;
3088 break;
3089 default:
3090 /* Not a parameter pack. */
3091 break;
3094 if (parameter_pack_p)
3096 /* Add this parameter pack to the list. */
3097 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3100 if (TYPE_P (t))
3101 cp_walk_tree (&TYPE_CONTEXT (t),
3102 &find_parameter_packs_r, ppd, ppd->visited);
3104 /* This switch statement will return immediately if we don't find a
3105 parameter pack. */
3106 switch (TREE_CODE (t))
3108 case TEMPLATE_PARM_INDEX:
3109 return NULL_TREE;
3111 case BOUND_TEMPLATE_TEMPLATE_PARM:
3112 /* Check the template itself. */
3113 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3114 &find_parameter_packs_r, ppd, ppd->visited);
3115 /* Check the template arguments. */
3116 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3117 ppd->visited);
3118 *walk_subtrees = 0;
3119 return NULL_TREE;
3121 case TEMPLATE_TYPE_PARM:
3122 case TEMPLATE_TEMPLATE_PARM:
3123 return NULL_TREE;
3125 case PARM_DECL:
3126 return NULL_TREE;
3128 case RECORD_TYPE:
3129 if (TYPE_PTRMEMFUNC_P (t))
3130 return NULL_TREE;
3131 /* Fall through. */
3133 case UNION_TYPE:
3134 case ENUMERAL_TYPE:
3135 if (TYPE_TEMPLATE_INFO (t))
3136 cp_walk_tree (&TI_ARGS (TYPE_TEMPLATE_INFO (t)),
3137 &find_parameter_packs_r, ppd, ppd->visited);
3139 *walk_subtrees = 0;
3140 return NULL_TREE;
3142 case CONSTRUCTOR:
3143 case TEMPLATE_DECL:
3144 cp_walk_tree (&TREE_TYPE (t),
3145 &find_parameter_packs_r, ppd, ppd->visited);
3146 return NULL_TREE;
3148 case TYPENAME_TYPE:
3149 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3150 ppd, ppd->visited);
3151 *walk_subtrees = 0;
3152 return NULL_TREE;
3154 case TYPE_PACK_EXPANSION:
3155 case EXPR_PACK_EXPANSION:
3156 *walk_subtrees = 0;
3157 return NULL_TREE;
3159 case INTEGER_TYPE:
3160 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3161 ppd, ppd->visited);
3162 *walk_subtrees = 0;
3163 return NULL_TREE;
3165 case IDENTIFIER_NODE:
3166 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3167 ppd->visited);
3168 *walk_subtrees = 0;
3169 return NULL_TREE;
3171 default:
3172 return NULL_TREE;
3175 return NULL_TREE;
3178 /* Determines if the expression or type T uses any parameter packs. */
3179 bool
3180 uses_parameter_packs (tree t)
3182 tree parameter_packs = NULL_TREE;
3183 struct find_parameter_pack_data ppd;
3184 ppd.parameter_packs = &parameter_packs;
3185 ppd.visited = pointer_set_create ();
3186 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3187 pointer_set_destroy (ppd.visited);
3188 return parameter_packs != NULL_TREE;
3191 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3192 representation a base-class initializer into a parameter pack
3193 expansion. If all goes well, the resulting node will be an
3194 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3195 respectively. */
3196 tree
3197 make_pack_expansion (tree arg)
3199 tree result;
3200 tree parameter_packs = NULL_TREE;
3201 bool for_types = false;
3202 struct find_parameter_pack_data ppd;
3204 if (!arg || arg == error_mark_node)
3205 return arg;
3207 if (TREE_CODE (arg) == TREE_LIST)
3209 /* The only time we will see a TREE_LIST here is for a base
3210 class initializer. In this case, the TREE_PURPOSE will be a
3211 _TYPE node (representing the base class expansion we're
3212 initializing) and the TREE_VALUE will be a TREE_LIST
3213 containing the initialization arguments.
3215 The resulting expansion looks somewhat different from most
3216 expansions. Rather than returning just one _EXPANSION, we
3217 return a TREE_LIST whose TREE_PURPOSE is a
3218 TYPE_PACK_EXPANSION containing the bases that will be
3219 initialized. The TREE_VALUE will be identical to the
3220 original TREE_VALUE, which is a list of arguments that will
3221 be passed to each base. We do not introduce any new pack
3222 expansion nodes into the TREE_VALUE (although it is possible
3223 that some already exist), because the TREE_PURPOSE and
3224 TREE_VALUE all need to be expanded together with the same
3225 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3226 resulting TREE_PURPOSE will mention the parameter packs in
3227 both the bases and the arguments to the bases. */
3228 tree purpose;
3229 tree value;
3230 tree parameter_packs = NULL_TREE;
3232 /* Determine which parameter packs will be used by the base
3233 class expansion. */
3234 ppd.visited = pointer_set_create ();
3235 ppd.parameter_packs = &parameter_packs;
3236 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3237 &ppd, ppd.visited);
3239 if (parameter_packs == NULL_TREE)
3241 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3242 pointer_set_destroy (ppd.visited);
3243 return error_mark_node;
3246 if (TREE_VALUE (arg) != void_type_node)
3248 /* Collect the sets of parameter packs used in each of the
3249 initialization arguments. */
3250 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3252 /* Determine which parameter packs will be expanded in this
3253 argument. */
3254 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3255 &ppd, ppd.visited);
3259 pointer_set_destroy (ppd.visited);
3261 /* Create the pack expansion type for the base type. */
3262 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3263 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3264 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3266 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3267 they will rarely be compared to anything. */
3268 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3270 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3273 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3274 for_types = true;
3276 /* Build the PACK_EXPANSION_* node. */
3277 result = for_types
3278 ? cxx_make_type (TYPE_PACK_EXPANSION)
3279 : make_node (EXPR_PACK_EXPANSION);
3280 SET_PACK_EXPANSION_PATTERN (result, arg);
3281 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3283 /* Propagate type and const-expression information. */
3284 TREE_TYPE (result) = TREE_TYPE (arg);
3285 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3287 else
3288 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3289 they will rarely be compared to anything. */
3290 SET_TYPE_STRUCTURAL_EQUALITY (result);
3292 /* Determine which parameter packs will be expanded. */
3293 ppd.parameter_packs = &parameter_packs;
3294 ppd.visited = pointer_set_create ();
3295 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3296 pointer_set_destroy (ppd.visited);
3298 /* Make sure we found some parameter packs. */
3299 if (parameter_packs == NULL_TREE)
3301 if (TYPE_P (arg))
3302 error ("expansion pattern %<%T%> contains no argument packs", arg);
3303 else
3304 error ("expansion pattern %<%E%> contains no argument packs", arg);
3305 return error_mark_node;
3307 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3309 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3311 return result;
3314 /* Checks T for any "bare" parameter packs, which have not yet been
3315 expanded, and issues an error if any are found. This operation can
3316 only be done on full expressions or types (e.g., an expression
3317 statement, "if" condition, etc.), because we could have expressions like:
3319 foo(f(g(h(args)))...)
3321 where "args" is a parameter pack. check_for_bare_parameter_packs
3322 should not be called for the subexpressions args, h(args),
3323 g(h(args)), or f(g(h(args))), because we would produce erroneous
3324 error messages.
3326 Returns TRUE and emits an error if there were bare parameter packs,
3327 returns FALSE otherwise. */
3328 bool
3329 check_for_bare_parameter_packs (tree t)
3331 tree parameter_packs = NULL_TREE;
3332 struct find_parameter_pack_data ppd;
3334 if (!processing_template_decl || !t || t == error_mark_node)
3335 return false;
3337 if (TREE_CODE (t) == TYPE_DECL)
3338 t = TREE_TYPE (t);
3340 ppd.parameter_packs = &parameter_packs;
3341 ppd.visited = pointer_set_create ();
3342 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3343 pointer_set_destroy (ppd.visited);
3345 if (parameter_packs)
3347 error ("parameter packs not expanded with %<...%>:");
3348 while (parameter_packs)
3350 tree pack = TREE_VALUE (parameter_packs);
3351 tree name = NULL_TREE;
3353 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3354 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3355 name = TYPE_NAME (pack);
3356 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3357 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3358 else
3359 name = DECL_NAME (pack);
3361 if (name)
3362 inform (input_location, " %qD", name);
3363 else
3364 inform (input_location, " <anonymous>");
3366 parameter_packs = TREE_CHAIN (parameter_packs);
3369 return true;
3372 return false;
3375 /* Expand any parameter packs that occur in the template arguments in
3376 ARGS. */
3377 tree
3378 expand_template_argument_pack (tree args)
3380 tree result_args = NULL_TREE;
3381 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3382 int num_result_args = -1;
3383 int non_default_args_count = -1;
3385 /* First, determine if we need to expand anything, and the number of
3386 slots we'll need. */
3387 for (in_arg = 0; in_arg < nargs; ++in_arg)
3389 tree arg = TREE_VEC_ELT (args, in_arg);
3390 if (arg == NULL_TREE)
3391 return args;
3392 if (ARGUMENT_PACK_P (arg))
3394 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3395 if (num_result_args < 0)
3396 num_result_args = in_arg + num_packed;
3397 else
3398 num_result_args += num_packed;
3400 else
3402 if (num_result_args >= 0)
3403 num_result_args++;
3407 /* If no expansion is necessary, we're done. */
3408 if (num_result_args < 0)
3409 return args;
3411 /* Expand arguments. */
3412 result_args = make_tree_vec (num_result_args);
3413 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3414 non_default_args_count =
3415 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3416 for (in_arg = 0; in_arg < nargs; ++in_arg)
3418 tree arg = TREE_VEC_ELT (args, in_arg);
3419 if (ARGUMENT_PACK_P (arg))
3421 tree packed = ARGUMENT_PACK_ARGS (arg);
3422 int i, num_packed = TREE_VEC_LENGTH (packed);
3423 for (i = 0; i < num_packed; ++i, ++out_arg)
3424 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3425 if (non_default_args_count > 0)
3426 non_default_args_count += num_packed;
3428 else
3430 TREE_VEC_ELT (result_args, out_arg) = arg;
3431 ++out_arg;
3434 if (non_default_args_count >= 0)
3435 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3436 return result_args;
3439 /* Checks if DECL shadows a template parameter.
3441 [temp.local]: A template-parameter shall not be redeclared within its
3442 scope (including nested scopes).
3444 Emits an error and returns TRUE if the DECL shadows a parameter,
3445 returns FALSE otherwise. */
3447 bool
3448 check_template_shadow (tree decl)
3450 tree olddecl;
3452 /* If we're not in a template, we can't possibly shadow a template
3453 parameter. */
3454 if (!current_template_parms)
3455 return true;
3457 /* Figure out what we're shadowing. */
3458 if (TREE_CODE (decl) == OVERLOAD)
3459 decl = OVL_CURRENT (decl);
3460 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3462 /* If there's no previous binding for this name, we're not shadowing
3463 anything, let alone a template parameter. */
3464 if (!olddecl)
3465 return true;
3467 /* If we're not shadowing a template parameter, we're done. Note
3468 that OLDDECL might be an OVERLOAD (or perhaps even an
3469 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3470 node. */
3471 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3472 return true;
3474 /* We check for decl != olddecl to avoid bogus errors for using a
3475 name inside a class. We check TPFI to avoid duplicate errors for
3476 inline member templates. */
3477 if (decl == olddecl
3478 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
3479 return true;
3481 error ("declaration of %q+#D", decl);
3482 error (" shadows template parm %q+#D", olddecl);
3483 return false;
3486 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3487 ORIG_LEVEL, DECL, and TYPE. */
3489 static tree
3490 build_template_parm_index (int index,
3491 int level,
3492 int orig_level,
3493 tree decl,
3494 tree type)
3496 tree t = make_node (TEMPLATE_PARM_INDEX);
3497 TEMPLATE_PARM_IDX (t) = index;
3498 TEMPLATE_PARM_LEVEL (t) = level;
3499 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3500 TEMPLATE_PARM_DECL (t) = decl;
3501 TREE_TYPE (t) = type;
3502 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3503 TREE_READONLY (t) = TREE_READONLY (decl);
3505 return t;
3508 /* Find the canonical type parameter for the given template type
3509 parameter. Returns the canonical type parameter, which may be TYPE
3510 if no such parameter existed. */
3512 static tree
3513 canonical_type_parameter (tree type)
3515 tree list;
3516 int idx = TEMPLATE_TYPE_IDX (type);
3517 if (!canonical_template_parms)
3518 vec_alloc (canonical_template_parms, idx+1);
3520 while (canonical_template_parms->length () <= (unsigned)idx)
3521 vec_safe_push (canonical_template_parms, NULL_TREE);
3523 list = (*canonical_template_parms)[idx];
3524 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3525 list = TREE_CHAIN (list);
3527 if (list)
3528 return TREE_VALUE (list);
3529 else
3531 (*canonical_template_parms)[idx]
3532 = tree_cons (NULL_TREE, type,
3533 (*canonical_template_parms)[idx]);
3534 return type;
3538 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3539 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3540 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3541 new one is created. */
3543 static tree
3544 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3545 tsubst_flags_t complain)
3547 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3548 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3549 != TEMPLATE_PARM_LEVEL (index) - levels)
3550 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3552 tree orig_decl = TEMPLATE_PARM_DECL (index);
3553 tree decl, t;
3555 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3556 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3557 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3558 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3559 DECL_ARTIFICIAL (decl) = 1;
3560 SET_DECL_TEMPLATE_PARM_P (decl);
3562 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3563 TEMPLATE_PARM_LEVEL (index) - levels,
3564 TEMPLATE_PARM_ORIG_LEVEL (index),
3565 decl, type);
3566 TEMPLATE_PARM_DESCENDANTS (index) = t;
3567 TEMPLATE_PARM_PARAMETER_PACK (t)
3568 = TEMPLATE_PARM_PARAMETER_PACK (index);
3570 /* Template template parameters need this. */
3571 if (TREE_CODE (decl) == TEMPLATE_DECL)
3572 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3573 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3574 args, complain);
3577 return TEMPLATE_PARM_DESCENDANTS (index);
3580 /* Process information from new template parameter PARM and append it
3581 to the LIST being built. This new parameter is a non-type
3582 parameter iff IS_NON_TYPE is true. This new parameter is a
3583 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3584 is in PARM_LOC. NUM_TEMPLATE_PARMS is the size of the template
3585 parameter list PARM belongs to. This is used used to create a
3586 proper canonical type for the type of PARM that is to be created,
3587 iff PARM is a type. If the size is not known, this parameter shall
3588 be set to 0. */
3590 tree
3591 process_template_parm (tree list, location_t parm_loc, tree parm,
3592 bool is_non_type, bool is_parameter_pack)
3594 tree decl = 0;
3595 tree defval;
3596 tree err_parm_list;
3597 int idx = 0;
3599 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3600 defval = TREE_PURPOSE (parm);
3602 if (list)
3604 tree p = tree_last (list);
3606 if (p && TREE_VALUE (p) != error_mark_node)
3608 p = TREE_VALUE (p);
3609 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3610 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3611 else
3612 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3615 ++idx;
3617 else
3618 idx = 0;
3620 if (is_non_type)
3622 parm = TREE_VALUE (parm);
3624 SET_DECL_TEMPLATE_PARM_P (parm);
3626 if (TREE_TYPE (parm) == error_mark_node)
3628 err_parm_list = build_tree_list (defval, parm);
3629 TREE_VALUE (err_parm_list) = error_mark_node;
3630 return chainon (list, err_parm_list);
3632 else
3634 /* [temp.param]
3636 The top-level cv-qualifiers on the template-parameter are
3637 ignored when determining its type. */
3638 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3639 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3641 err_parm_list = build_tree_list (defval, parm);
3642 TREE_VALUE (err_parm_list) = error_mark_node;
3643 return chainon (list, err_parm_list);
3646 if (uses_parameter_packs (TREE_TYPE (parm)) && !is_parameter_pack)
3648 /* This template parameter is not a parameter pack, but it
3649 should be. Complain about "bare" parameter packs. */
3650 check_for_bare_parameter_packs (TREE_TYPE (parm));
3652 /* Recover by calling this a parameter pack. */
3653 is_parameter_pack = true;
3657 /* A template parameter is not modifiable. */
3658 TREE_CONSTANT (parm) = 1;
3659 TREE_READONLY (parm) = 1;
3660 decl = build_decl (parm_loc,
3661 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3662 TREE_CONSTANT (decl) = 1;
3663 TREE_READONLY (decl) = 1;
3664 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3665 = build_template_parm_index (idx, processing_template_decl,
3666 processing_template_decl,
3667 decl, TREE_TYPE (parm));
3669 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3670 = is_parameter_pack;
3672 else
3674 tree t;
3675 parm = TREE_VALUE (TREE_VALUE (parm));
3677 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3679 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3680 /* This is for distinguishing between real templates and template
3681 template parameters */
3682 TREE_TYPE (parm) = t;
3683 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3684 decl = parm;
3686 else
3688 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3689 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3690 decl = build_decl (parm_loc,
3691 TYPE_DECL, parm, t);
3694 TYPE_NAME (t) = decl;
3695 TYPE_STUB_DECL (t) = decl;
3696 parm = decl;
3697 TEMPLATE_TYPE_PARM_INDEX (t)
3698 = build_template_parm_index (idx, processing_template_decl,
3699 processing_template_decl,
3700 decl, TREE_TYPE (parm));
3701 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3702 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3704 DECL_ARTIFICIAL (decl) = 1;
3705 SET_DECL_TEMPLATE_PARM_P (decl);
3706 pushdecl (decl);
3707 parm = build_tree_list (defval, parm);
3708 return chainon (list, parm);
3711 /* The end of a template parameter list has been reached. Process the
3712 tree list into a parameter vector, converting each parameter into a more
3713 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3714 as PARM_DECLs. */
3716 tree
3717 end_template_parm_list (tree parms)
3719 int nparms;
3720 tree parm, next;
3721 tree saved_parmlist = make_tree_vec (list_length (parms));
3723 current_template_parms
3724 = tree_cons (size_int (processing_template_decl),
3725 saved_parmlist, current_template_parms);
3727 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3729 next = TREE_CHAIN (parm);
3730 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3731 TREE_CHAIN (parm) = NULL_TREE;
3734 --processing_template_parmlist;
3736 return saved_parmlist;
3739 /* end_template_decl is called after a template declaration is seen. */
3741 void
3742 end_template_decl (void)
3744 reset_specialization ();
3746 if (! processing_template_decl)
3747 return;
3749 /* This matches the pushlevel in begin_template_parm_list. */
3750 finish_scope ();
3752 --processing_template_decl;
3753 current_template_parms = TREE_CHAIN (current_template_parms);
3756 /* Takes a TREE_LIST representing a template parameter and convert it
3757 into an argument suitable to be passed to the type substitution
3758 functions. Note that If the TREE_LIST contains an error_mark
3759 node, the returned argument is error_mark_node. */
3761 static tree
3762 template_parm_to_arg (tree t)
3765 if (t == NULL_TREE
3766 || TREE_CODE (t) != TREE_LIST)
3767 return t;
3769 if (error_operand_p (TREE_VALUE (t)))
3770 return error_mark_node;
3772 t = TREE_VALUE (t);
3774 if (TREE_CODE (t) == TYPE_DECL
3775 || TREE_CODE (t) == TEMPLATE_DECL)
3777 t = TREE_TYPE (t);
3779 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3781 /* Turn this argument into a TYPE_ARGUMENT_PACK
3782 with a single element, which expands T. */
3783 tree vec = make_tree_vec (1);
3784 #ifdef ENABLE_CHECKING
3785 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3786 (vec, TREE_VEC_LENGTH (vec));
3787 #endif
3788 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3790 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3791 SET_ARGUMENT_PACK_ARGS (t, vec);
3794 else
3796 t = DECL_INITIAL (t);
3798 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3800 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3801 with a single element, which expands T. */
3802 tree vec = make_tree_vec (1);
3803 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3804 #ifdef ENABLE_CHECKING
3805 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3806 (vec, TREE_VEC_LENGTH (vec));
3807 #endif
3808 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3810 t = make_node (NONTYPE_ARGUMENT_PACK);
3811 SET_ARGUMENT_PACK_ARGS (t, vec);
3812 TREE_TYPE (t) = type;
3815 return t;
3818 /* Given a set of template parameters, return them as a set of template
3819 arguments. The template parameters are represented as a TREE_VEC, in
3820 the form documented in cp-tree.h for template arguments. */
3822 static tree
3823 template_parms_to_args (tree parms)
3825 tree header;
3826 tree args = NULL_TREE;
3827 int length = TMPL_PARMS_DEPTH (parms);
3828 int l = length;
3830 /* If there is only one level of template parameters, we do not
3831 create a TREE_VEC of TREE_VECs. Instead, we return a single
3832 TREE_VEC containing the arguments. */
3833 if (length > 1)
3834 args = make_tree_vec (length);
3836 for (header = parms; header; header = TREE_CHAIN (header))
3838 tree a = copy_node (TREE_VALUE (header));
3839 int i;
3841 TREE_TYPE (a) = NULL_TREE;
3842 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3843 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3845 #ifdef ENABLE_CHECKING
3846 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3847 #endif
3849 if (length > 1)
3850 TREE_VEC_ELT (args, --l) = a;
3851 else
3852 args = a;
3855 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3856 /* This can happen for template parms of a template template
3857 parameter, e.g:
3859 template<template<class T, class U> class TT> struct S;
3861 Consider the level of the parms of TT; T and U both have
3862 level 2; TT has no template parm of level 1. So in this case
3863 the first element of full_template_args is NULL_TREE. If we
3864 leave it like this TMPL_ARG_DEPTH on args returns 1 instead
3865 of 2. This will make tsubst wrongly consider that T and U
3866 have level 1. Instead, let's create a dummy vector as the
3867 first element of full_template_args so that TMPL_ARG_DEPTH
3868 returns the correct depth for args. */
3869 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3870 return args;
3873 /* Within the declaration of a template, return the currently active
3874 template parameters as an argument TREE_VEC. */
3876 static tree
3877 current_template_args (void)
3879 return template_parms_to_args (current_template_parms);
3882 /* Update the declared TYPE by doing any lookups which were thought to be
3883 dependent, but are not now that we know the SCOPE of the declarator. */
3885 tree
3886 maybe_update_decl_type (tree orig_type, tree scope)
3888 tree type = orig_type;
3890 if (type == NULL_TREE)
3891 return type;
3893 if (TREE_CODE (orig_type) == TYPE_DECL)
3894 type = TREE_TYPE (type);
3896 if (scope && TYPE_P (scope) && dependent_type_p (scope)
3897 && dependent_type_p (type)
3898 /* Don't bother building up the args in this case. */
3899 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
3901 /* tsubst in the args corresponding to the template parameters,
3902 including auto if present. Most things will be unchanged, but
3903 make_typename_type and tsubst_qualified_id will resolve
3904 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
3905 tree args = current_template_args ();
3906 tree auto_node = type_uses_auto (type);
3907 tree pushed;
3908 if (auto_node)
3910 tree auto_vec = make_tree_vec (1);
3911 TREE_VEC_ELT (auto_vec, 0) = auto_node;
3912 args = add_to_template_args (args, auto_vec);
3914 pushed = push_scope (scope);
3915 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
3916 if (pushed)
3917 pop_scope (scope);
3920 if (type == error_mark_node)
3921 return orig_type;
3923 if (TREE_CODE (orig_type) == TYPE_DECL)
3925 if (same_type_p (type, TREE_TYPE (orig_type)))
3926 type = orig_type;
3927 else
3928 type = TYPE_NAME (type);
3930 return type;
3933 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
3934 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
3935 a member template. Used by push_template_decl below. */
3937 static tree
3938 build_template_decl (tree decl, tree parms, bool member_template_p)
3940 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
3941 DECL_TEMPLATE_PARMS (tmpl) = parms;
3942 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
3943 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3944 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
3946 return tmpl;
3949 struct template_parm_data
3951 /* The level of the template parameters we are currently
3952 processing. */
3953 int level;
3955 /* The index of the specialization argument we are currently
3956 processing. */
3957 int current_arg;
3959 /* An array whose size is the number of template parameters. The
3960 elements are nonzero if the parameter has been used in any one
3961 of the arguments processed so far. */
3962 int* parms;
3964 /* An array whose size is the number of template arguments. The
3965 elements are nonzero if the argument makes use of template
3966 parameters of this level. */
3967 int* arg_uses_template_parms;
3970 /* Subroutine of push_template_decl used to see if each template
3971 parameter in a partial specialization is used in the explicit
3972 argument list. If T is of the LEVEL given in DATA (which is
3973 treated as a template_parm_data*), then DATA->PARMS is marked
3974 appropriately. */
3976 static int
3977 mark_template_parm (tree t, void* data)
3979 int level;
3980 int idx;
3981 struct template_parm_data* tpd = (struct template_parm_data*) data;
3983 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
3985 level = TEMPLATE_PARM_LEVEL (t);
3986 idx = TEMPLATE_PARM_IDX (t);
3988 else
3990 level = TEMPLATE_TYPE_LEVEL (t);
3991 idx = TEMPLATE_TYPE_IDX (t);
3994 if (level == tpd->level)
3996 tpd->parms[idx] = 1;
3997 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4000 /* Return zero so that for_each_template_parm will continue the
4001 traversal of the tree; we want to mark *every* template parm. */
4002 return 0;
4005 /* Process the partial specialization DECL. */
4007 static tree
4008 process_partial_specialization (tree decl)
4010 tree type = TREE_TYPE (decl);
4011 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
4012 tree specargs = CLASSTYPE_TI_ARGS (type);
4013 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4014 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4015 tree inner_parms;
4016 tree inst;
4017 int nargs = TREE_VEC_LENGTH (inner_args);
4018 int ntparms;
4019 int i;
4020 bool did_error_intro = false;
4021 struct template_parm_data tpd;
4022 struct template_parm_data tpd2;
4024 gcc_assert (current_template_parms);
4026 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4027 ntparms = TREE_VEC_LENGTH (inner_parms);
4029 /* We check that each of the template parameters given in the
4030 partial specialization is used in the argument list to the
4031 specialization. For example:
4033 template <class T> struct S;
4034 template <class T> struct S<T*>;
4036 The second declaration is OK because `T*' uses the template
4037 parameter T, whereas
4039 template <class T> struct S<int>;
4041 is no good. Even trickier is:
4043 template <class T>
4044 struct S1
4046 template <class U>
4047 struct S2;
4048 template <class U>
4049 struct S2<T>;
4052 The S2<T> declaration is actually invalid; it is a
4053 full-specialization. Of course,
4055 template <class U>
4056 struct S2<T (*)(U)>;
4058 or some such would have been OK. */
4059 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4060 tpd.parms = XALLOCAVEC (int, ntparms);
4061 memset (tpd.parms, 0, sizeof (int) * ntparms);
4063 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4064 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4065 for (i = 0; i < nargs; ++i)
4067 tpd.current_arg = i;
4068 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4069 &mark_template_parm,
4070 &tpd,
4071 NULL,
4072 /*include_nondeduced_p=*/false);
4074 for (i = 0; i < ntparms; ++i)
4075 if (tpd.parms[i] == 0)
4077 /* One of the template parms was not used in the
4078 specialization. */
4079 if (!did_error_intro)
4081 error ("template parameters not used in partial specialization:");
4082 did_error_intro = true;
4085 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4088 if (did_error_intro)
4089 return error_mark_node;
4091 /* [temp.class.spec]
4093 The argument list of the specialization shall not be identical to
4094 the implicit argument list of the primary template. */
4095 if (comp_template_args
4096 (inner_args,
4097 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
4098 (maintmpl)))))
4099 error ("partial specialization %qT does not specialize any template arguments", type);
4101 /* A partial specialization that replaces multiple parameters of the
4102 primary template with a pack expansion is less specialized for those
4103 parameters. */
4104 if (nargs < DECL_NTPARMS (maintmpl))
4106 error ("partial specialization is not more specialized than the "
4107 "primary template because it replaces multiple parameters "
4108 "with a pack expansion");
4109 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4110 return decl;
4113 /* [temp.class.spec]
4115 A partially specialized non-type argument expression shall not
4116 involve template parameters of the partial specialization except
4117 when the argument expression is a simple identifier.
4119 The type of a template parameter corresponding to a specialized
4120 non-type argument shall not be dependent on a parameter of the
4121 specialization.
4123 Also, we verify that pack expansions only occur at the
4124 end of the argument list. */
4125 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4126 tpd2.parms = 0;
4127 for (i = 0; i < nargs; ++i)
4129 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4130 tree arg = TREE_VEC_ELT (inner_args, i);
4131 tree packed_args = NULL_TREE;
4132 int j, len = 1;
4134 if (ARGUMENT_PACK_P (arg))
4136 /* Extract the arguments from the argument pack. We'll be
4137 iterating over these in the following loop. */
4138 packed_args = ARGUMENT_PACK_ARGS (arg);
4139 len = TREE_VEC_LENGTH (packed_args);
4142 for (j = 0; j < len; j++)
4144 if (packed_args)
4145 /* Get the Jth argument in the parameter pack. */
4146 arg = TREE_VEC_ELT (packed_args, j);
4148 if (PACK_EXPANSION_P (arg))
4150 /* Pack expansions must come at the end of the
4151 argument list. */
4152 if ((packed_args && j < len - 1)
4153 || (!packed_args && i < nargs - 1))
4155 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4156 error ("parameter pack argument %qE must be at the "
4157 "end of the template argument list", arg);
4158 else
4159 error ("parameter pack argument %qT must be at the "
4160 "end of the template argument list", arg);
4164 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4165 /* We only care about the pattern. */
4166 arg = PACK_EXPANSION_PATTERN (arg);
4168 if (/* These first two lines are the `non-type' bit. */
4169 !TYPE_P (arg)
4170 && TREE_CODE (arg) != TEMPLATE_DECL
4171 /* This next line is the `argument expression is not just a
4172 simple identifier' condition and also the `specialized
4173 non-type argument' bit. */
4174 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
4176 if ((!packed_args && tpd.arg_uses_template_parms[i])
4177 || (packed_args && uses_template_parms (arg)))
4178 error ("template argument %qE involves template parameter(s)",
4179 arg);
4180 else
4182 /* Look at the corresponding template parameter,
4183 marking which template parameters its type depends
4184 upon. */
4185 tree type = TREE_TYPE (parm);
4187 if (!tpd2.parms)
4189 /* We haven't yet initialized TPD2. Do so now. */
4190 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4191 /* The number of parameters here is the number in the
4192 main template, which, as checked in the assertion
4193 above, is NARGS. */
4194 tpd2.parms = XALLOCAVEC (int, nargs);
4195 tpd2.level =
4196 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4199 /* Mark the template parameters. But this time, we're
4200 looking for the template parameters of the main
4201 template, not in the specialization. */
4202 tpd2.current_arg = i;
4203 tpd2.arg_uses_template_parms[i] = 0;
4204 memset (tpd2.parms, 0, sizeof (int) * nargs);
4205 for_each_template_parm (type,
4206 &mark_template_parm,
4207 &tpd2,
4208 NULL,
4209 /*include_nondeduced_p=*/false);
4211 if (tpd2.arg_uses_template_parms [i])
4213 /* The type depended on some template parameters.
4214 If they are fully specialized in the
4215 specialization, that's OK. */
4216 int j;
4217 int count = 0;
4218 for (j = 0; j < nargs; ++j)
4219 if (tpd2.parms[j] != 0
4220 && tpd.arg_uses_template_parms [j])
4221 ++count;
4222 if (count != 0)
4223 error_n (input_location, count,
4224 "type %qT of template argument %qE depends "
4225 "on a template parameter",
4226 "type %qT of template argument %qE depends "
4227 "on template parameters",
4228 type,
4229 arg);
4236 /* We should only get here once. */
4237 gcc_assert (!COMPLETE_TYPE_P (type));
4239 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4240 = tree_cons (specargs, inner_parms,
4241 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4242 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4244 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4245 inst = TREE_CHAIN (inst))
4247 tree inst_type = TREE_VALUE (inst);
4248 if (COMPLETE_TYPE_P (inst_type)
4249 && CLASSTYPE_IMPLICIT_INSTANTIATION (inst_type))
4251 tree spec = most_specialized_class (inst_type, maintmpl, tf_none);
4252 if (spec && TREE_TYPE (spec) == type)
4253 permerror (input_location,
4254 "partial specialization of %qT after instantiation "
4255 "of %qT", type, inst_type);
4259 return decl;
4262 /* Check that a template declaration's use of default arguments and
4263 parameter packs is not invalid. Here, PARMS are the template
4264 parameters. IS_PRIMARY is true if DECL is the thing declared by
4265 a primary template. IS_PARTIAL is true if DECL is a partial
4266 specialization.
4268 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4269 declaration (but not a definition); 1 indicates a declaration, 2
4270 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4271 emitted for extraneous default arguments.
4273 Returns TRUE if there were no errors found, FALSE otherwise. */
4275 bool
4276 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4277 bool is_partial, int is_friend_decl)
4279 const char *msg;
4280 int last_level_to_check;
4281 tree parm_level;
4282 bool no_errors = true;
4284 /* [temp.param]
4286 A default template-argument shall not be specified in a
4287 function template declaration or a function template definition, nor
4288 in the template-parameter-list of the definition of a member of a
4289 class template. */
4291 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
4292 /* You can't have a function template declaration in a local
4293 scope, nor you can you define a member of a class template in a
4294 local scope. */
4295 return true;
4297 if (current_class_type
4298 && !TYPE_BEING_DEFINED (current_class_type)
4299 && DECL_LANG_SPECIFIC (decl)
4300 && DECL_DECLARES_FUNCTION_P (decl)
4301 /* If this is either a friend defined in the scope of the class
4302 or a member function. */
4303 && (DECL_FUNCTION_MEMBER_P (decl)
4304 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4305 : DECL_FRIEND_CONTEXT (decl)
4306 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4307 : false)
4308 /* And, if it was a member function, it really was defined in
4309 the scope of the class. */
4310 && (!DECL_FUNCTION_MEMBER_P (decl)
4311 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4312 /* We already checked these parameters when the template was
4313 declared, so there's no need to do it again now. This function
4314 was defined in class scope, but we're processing it's body now
4315 that the class is complete. */
4316 return true;
4318 /* Core issue 226 (C++0x only): the following only applies to class
4319 templates. */
4320 if (is_primary
4321 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4323 /* [temp.param]
4325 If a template-parameter has a default template-argument, all
4326 subsequent template-parameters shall have a default
4327 template-argument supplied. */
4328 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4330 tree inner_parms = TREE_VALUE (parm_level);
4331 int ntparms = TREE_VEC_LENGTH (inner_parms);
4332 int seen_def_arg_p = 0;
4333 int i;
4335 for (i = 0; i < ntparms; ++i)
4337 tree parm = TREE_VEC_ELT (inner_parms, i);
4339 if (parm == error_mark_node)
4340 continue;
4342 if (TREE_PURPOSE (parm))
4343 seen_def_arg_p = 1;
4344 else if (seen_def_arg_p
4345 && !template_parameter_pack_p (TREE_VALUE (parm)))
4347 error ("no default argument for %qD", TREE_VALUE (parm));
4348 /* For better subsequent error-recovery, we indicate that
4349 there should have been a default argument. */
4350 TREE_PURPOSE (parm) = error_mark_node;
4351 no_errors = false;
4353 else if (!is_partial
4354 && !is_friend_decl
4355 /* Don't complain about an enclosing partial
4356 specialization. */
4357 && parm_level == parms
4358 && TREE_CODE (decl) == TYPE_DECL
4359 && i < ntparms - 1
4360 && template_parameter_pack_p (TREE_VALUE (parm)))
4362 /* A primary class template can only have one
4363 parameter pack, at the end of the template
4364 parameter list. */
4366 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4367 error ("parameter pack %qE must be at the end of the"
4368 " template parameter list", TREE_VALUE (parm));
4369 else
4370 error ("parameter pack %qT must be at the end of the"
4371 " template parameter list",
4372 TREE_TYPE (TREE_VALUE (parm)));
4374 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4375 = error_mark_node;
4376 no_errors = false;
4382 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4383 || is_partial
4384 || !is_primary
4385 || is_friend_decl)
4386 /* For an ordinary class template, default template arguments are
4387 allowed at the innermost level, e.g.:
4388 template <class T = int>
4389 struct S {};
4390 but, in a partial specialization, they're not allowed even
4391 there, as we have in [temp.class.spec]:
4393 The template parameter list of a specialization shall not
4394 contain default template argument values.
4396 So, for a partial specialization, or for a function template
4397 (in C++98/C++03), we look at all of them. */
4399 else
4400 /* But, for a primary class template that is not a partial
4401 specialization we look at all template parameters except the
4402 innermost ones. */
4403 parms = TREE_CHAIN (parms);
4405 /* Figure out what error message to issue. */
4406 if (is_friend_decl == 2)
4407 msg = G_("default template arguments may not be used in function template "
4408 "friend re-declaration");
4409 else if (is_friend_decl)
4410 msg = G_("default template arguments may not be used in function template "
4411 "friend declarations");
4412 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4413 msg = G_("default template arguments may not be used in function templates "
4414 "without -std=c++11 or -std=gnu++11");
4415 else if (is_partial)
4416 msg = G_("default template arguments may not be used in "
4417 "partial specializations");
4418 else
4419 msg = G_("default argument for template parameter for class enclosing %qD");
4421 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4422 /* If we're inside a class definition, there's no need to
4423 examine the parameters to the class itself. On the one
4424 hand, they will be checked when the class is defined, and,
4425 on the other, default arguments are valid in things like:
4426 template <class T = double>
4427 struct S { template <class U> void f(U); };
4428 Here the default argument for `S' has no bearing on the
4429 declaration of `f'. */
4430 last_level_to_check = template_class_depth (current_class_type) + 1;
4431 else
4432 /* Check everything. */
4433 last_level_to_check = 0;
4435 for (parm_level = parms;
4436 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4437 parm_level = TREE_CHAIN (parm_level))
4439 tree inner_parms = TREE_VALUE (parm_level);
4440 int i;
4441 int ntparms;
4443 ntparms = TREE_VEC_LENGTH (inner_parms);
4444 for (i = 0; i < ntparms; ++i)
4446 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4447 continue;
4449 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4451 if (msg)
4453 no_errors = false;
4454 if (is_friend_decl == 2)
4455 return no_errors;
4457 error (msg, decl);
4458 msg = 0;
4461 /* Clear out the default argument so that we are not
4462 confused later. */
4463 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4467 /* At this point, if we're still interested in issuing messages,
4468 they must apply to classes surrounding the object declared. */
4469 if (msg)
4470 msg = G_("default argument for template parameter for class "
4471 "enclosing %qD");
4474 return no_errors;
4477 /* Worker for push_template_decl_real, called via
4478 for_each_template_parm. DATA is really an int, indicating the
4479 level of the parameters we are interested in. If T is a template
4480 parameter of that level, return nonzero. */
4482 static int
4483 template_parm_this_level_p (tree t, void* data)
4485 int this_level = *(int *)data;
4486 int level;
4488 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4489 level = TEMPLATE_PARM_LEVEL (t);
4490 else
4491 level = TEMPLATE_TYPE_LEVEL (t);
4492 return level == this_level;
4495 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4496 parameters given by current_template_args, or reuses a
4497 previously existing one, if appropriate. Returns the DECL, or an
4498 equivalent one, if it is replaced via a call to duplicate_decls.
4500 If IS_FRIEND is true, DECL is a friend declaration. */
4502 tree
4503 push_template_decl_real (tree decl, bool is_friend)
4505 tree tmpl;
4506 tree args;
4507 tree info;
4508 tree ctx;
4509 bool is_primary;
4510 bool is_partial;
4511 int new_template_p = 0;
4512 /* True if the template is a member template, in the sense of
4513 [temp.mem]. */
4514 bool member_template_p = false;
4516 if (decl == error_mark_node || !current_template_parms)
4517 return error_mark_node;
4519 /* See if this is a partial specialization. */
4520 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
4521 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4522 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
4524 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4525 is_friend = true;
4527 if (is_friend)
4528 /* For a friend, we want the context of the friend function, not
4529 the type of which it is a friend. */
4530 ctx = CP_DECL_CONTEXT (decl);
4531 else if (CP_DECL_CONTEXT (decl)
4532 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4533 /* In the case of a virtual function, we want the class in which
4534 it is defined. */
4535 ctx = CP_DECL_CONTEXT (decl);
4536 else
4537 /* Otherwise, if we're currently defining some class, the DECL
4538 is assumed to be a member of the class. */
4539 ctx = current_scope ();
4541 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4542 ctx = NULL_TREE;
4544 if (!DECL_CONTEXT (decl))
4545 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4547 /* See if this is a primary template. */
4548 if (is_friend && ctx)
4549 /* A friend template that specifies a class context, i.e.
4550 template <typename T> friend void A<T>::f();
4551 is not primary. */
4552 is_primary = false;
4553 else
4554 is_primary = template_parm_scope_p ();
4556 if (is_primary)
4558 if (DECL_CLASS_SCOPE_P (decl))
4559 member_template_p = true;
4560 if (TREE_CODE (decl) == TYPE_DECL
4561 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4563 error ("template class without a name");
4564 return error_mark_node;
4566 else if (TREE_CODE (decl) == FUNCTION_DECL)
4568 if (DECL_DESTRUCTOR_P (decl))
4570 /* [temp.mem]
4572 A destructor shall not be a member template. */
4573 error ("destructor %qD declared as member template", decl);
4574 return error_mark_node;
4576 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4577 && (!prototype_p (TREE_TYPE (decl))
4578 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4579 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4580 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4581 == void_list_node)))
4583 /* [basic.stc.dynamic.allocation]
4585 An allocation function can be a function
4586 template. ... Template allocation functions shall
4587 have two or more parameters. */
4588 error ("invalid template declaration of %qD", decl);
4589 return error_mark_node;
4592 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4593 && CLASS_TYPE_P (TREE_TYPE (decl)))
4594 /* OK */;
4595 else if (TREE_CODE (decl) == TYPE_DECL
4596 && TYPE_DECL_ALIAS_P (decl))
4597 /* alias-declaration */
4598 gcc_assert (!DECL_ARTIFICIAL (decl));
4599 else
4601 error ("template declaration of %q#D", decl);
4602 return error_mark_node;
4606 /* Check to see that the rules regarding the use of default
4607 arguments are not being violated. */
4608 check_default_tmpl_args (decl, current_template_parms,
4609 is_primary, is_partial, /*is_friend_decl=*/0);
4611 /* Ensure that there are no parameter packs in the type of this
4612 declaration that have not been expanded. */
4613 if (TREE_CODE (decl) == FUNCTION_DECL)
4615 /* Check each of the arguments individually to see if there are
4616 any bare parameter packs. */
4617 tree type = TREE_TYPE (decl);
4618 tree arg = DECL_ARGUMENTS (decl);
4619 tree argtype = TYPE_ARG_TYPES (type);
4621 while (arg && argtype)
4623 if (!FUNCTION_PARAMETER_PACK_P (arg)
4624 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4626 /* This is a PARM_DECL that contains unexpanded parameter
4627 packs. We have already complained about this in the
4628 check_for_bare_parameter_packs call, so just replace
4629 these types with ERROR_MARK_NODE. */
4630 TREE_TYPE (arg) = error_mark_node;
4631 TREE_VALUE (argtype) = error_mark_node;
4634 arg = DECL_CHAIN (arg);
4635 argtype = TREE_CHAIN (argtype);
4638 /* Check for bare parameter packs in the return type and the
4639 exception specifiers. */
4640 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4641 /* Errors were already issued, set return type to int
4642 as the frontend doesn't expect error_mark_node as
4643 the return type. */
4644 TREE_TYPE (type) = integer_type_node;
4645 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4646 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4648 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4649 && TYPE_DECL_ALIAS_P (decl))
4650 ? DECL_ORIGINAL_TYPE (decl)
4651 : TREE_TYPE (decl)))
4653 TREE_TYPE (decl) = error_mark_node;
4654 return error_mark_node;
4657 if (is_partial)
4658 return process_partial_specialization (decl);
4660 args = current_template_args ();
4662 if (!ctx
4663 || TREE_CODE (ctx) == FUNCTION_DECL
4664 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4665 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4667 if (DECL_LANG_SPECIFIC (decl)
4668 && DECL_TEMPLATE_INFO (decl)
4669 && DECL_TI_TEMPLATE (decl))
4670 tmpl = DECL_TI_TEMPLATE (decl);
4671 /* If DECL is a TYPE_DECL for a class-template, then there won't
4672 be DECL_LANG_SPECIFIC. The information equivalent to
4673 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4674 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4675 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4676 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4678 /* Since a template declaration already existed for this
4679 class-type, we must be redeclaring it here. Make sure
4680 that the redeclaration is valid. */
4681 redeclare_class_template (TREE_TYPE (decl),
4682 current_template_parms);
4683 /* We don't need to create a new TEMPLATE_DECL; just use the
4684 one we already had. */
4685 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4687 else
4689 tmpl = build_template_decl (decl, current_template_parms,
4690 member_template_p);
4691 new_template_p = 1;
4693 if (DECL_LANG_SPECIFIC (decl)
4694 && DECL_TEMPLATE_SPECIALIZATION (decl))
4696 /* A specialization of a member template of a template
4697 class. */
4698 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4699 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4700 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4704 else
4706 tree a, t, current, parms;
4707 int i;
4708 tree tinfo = get_template_info (decl);
4710 if (!tinfo)
4712 error ("template definition of non-template %q#D", decl);
4713 return error_mark_node;
4716 tmpl = TI_TEMPLATE (tinfo);
4718 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4719 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4720 && DECL_TEMPLATE_SPECIALIZATION (decl)
4721 && DECL_MEMBER_TEMPLATE_P (tmpl))
4723 tree new_tmpl;
4725 /* The declaration is a specialization of a member
4726 template, declared outside the class. Therefore, the
4727 innermost template arguments will be NULL, so we
4728 replace them with the arguments determined by the
4729 earlier call to check_explicit_specialization. */
4730 args = DECL_TI_ARGS (decl);
4732 new_tmpl
4733 = build_template_decl (decl, current_template_parms,
4734 member_template_p);
4735 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4736 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4737 DECL_TI_TEMPLATE (decl) = new_tmpl;
4738 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4739 DECL_TEMPLATE_INFO (new_tmpl)
4740 = build_template_info (tmpl, args);
4742 register_specialization (new_tmpl,
4743 most_general_template (tmpl),
4744 args,
4745 is_friend, 0);
4746 return decl;
4749 /* Make sure the template headers we got make sense. */
4751 parms = DECL_TEMPLATE_PARMS (tmpl);
4752 i = TMPL_PARMS_DEPTH (parms);
4753 if (TMPL_ARGS_DEPTH (args) != i)
4755 error ("expected %d levels of template parms for %q#D, got %d",
4756 i, decl, TMPL_ARGS_DEPTH (args));
4758 else
4759 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4761 a = TMPL_ARGS_LEVEL (args, i);
4762 t = INNERMOST_TEMPLATE_PARMS (parms);
4764 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
4766 if (current == decl)
4767 error ("got %d template parameters for %q#D",
4768 TREE_VEC_LENGTH (a), decl);
4769 else
4770 error ("got %d template parameters for %q#T",
4771 TREE_VEC_LENGTH (a), current);
4772 error (" but %d required", TREE_VEC_LENGTH (t));
4773 return error_mark_node;
4776 if (current == decl)
4777 current = ctx;
4778 else if (current == NULL_TREE)
4779 /* Can happen in erroneous input. */
4780 break;
4781 else
4782 current = (TYPE_P (current)
4783 ? TYPE_CONTEXT (current)
4784 : DECL_CONTEXT (current));
4787 /* Check that the parms are used in the appropriate qualifying scopes
4788 in the declarator. */
4789 if (!comp_template_args
4790 (TI_ARGS (tinfo),
4791 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
4793 error ("\
4794 template arguments to %qD do not match original template %qD",
4795 decl, DECL_TEMPLATE_RESULT (tmpl));
4796 if (!uses_template_parms (TI_ARGS (tinfo)))
4797 inform (input_location, "use template<> for an explicit specialization");
4798 /* Avoid crash in import_export_decl. */
4799 DECL_INTERFACE_KNOWN (decl) = 1;
4800 return error_mark_node;
4804 DECL_TEMPLATE_RESULT (tmpl) = decl;
4805 TREE_TYPE (tmpl) = TREE_TYPE (decl);
4807 /* Push template declarations for global functions and types. Note
4808 that we do not try to push a global template friend declared in a
4809 template class; such a thing may well depend on the template
4810 parameters of the class. */
4811 if (new_template_p && !ctx
4812 && !(is_friend && template_class_depth (current_class_type) > 0))
4814 tmpl = pushdecl_namespace_level (tmpl, is_friend);
4815 if (tmpl == error_mark_node)
4816 return error_mark_node;
4818 /* Hide template friend classes that haven't been declared yet. */
4819 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
4821 DECL_ANTICIPATED (tmpl) = 1;
4822 DECL_FRIEND_P (tmpl) = 1;
4826 if (is_primary)
4828 tree parms = DECL_TEMPLATE_PARMS (tmpl);
4829 int i;
4831 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4832 if (DECL_CONV_FN_P (tmpl))
4834 int depth = TMPL_PARMS_DEPTH (parms);
4836 /* It is a conversion operator. See if the type converted to
4837 depends on innermost template operands. */
4839 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
4840 depth))
4841 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
4844 /* Give template template parms a DECL_CONTEXT of the template
4845 for which they are a parameter. */
4846 parms = INNERMOST_TEMPLATE_PARMS (parms);
4847 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
4849 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4850 if (TREE_CODE (parm) == TEMPLATE_DECL)
4851 DECL_CONTEXT (parm) = tmpl;
4855 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
4856 back to its most general template. If TMPL is a specialization,
4857 ARGS may only have the innermost set of arguments. Add the missing
4858 argument levels if necessary. */
4859 if (DECL_TEMPLATE_INFO (tmpl))
4860 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
4862 info = build_template_info (tmpl, args);
4864 if (DECL_IMPLICIT_TYPEDEF_P (decl))
4865 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
4866 else
4868 if (is_primary && !DECL_LANG_SPECIFIC (decl))
4869 retrofit_lang_decl (decl);
4870 if (DECL_LANG_SPECIFIC (decl))
4871 DECL_TEMPLATE_INFO (decl) = info;
4874 return DECL_TEMPLATE_RESULT (tmpl);
4877 tree
4878 push_template_decl (tree decl)
4880 return push_template_decl_real (decl, false);
4883 /* FN is an inheriting constructor that inherits from the constructor
4884 template INHERITED; turn FN into a constructor template with a matching
4885 template header. */
4887 tree
4888 add_inherited_template_parms (tree fn, tree inherited)
4890 tree inner_parms
4891 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
4892 inner_parms = copy_node (inner_parms);
4893 tree parms
4894 = tree_cons (size_int (processing_template_decl + 1),
4895 inner_parms, current_template_parms);
4896 tree tmpl = build_template_decl (fn, parms, /*member*/true);
4897 tree args = template_parms_to_args (parms);
4898 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
4899 TREE_TYPE (tmpl) = TREE_TYPE (fn);
4900 DECL_TEMPLATE_RESULT (tmpl) = fn;
4901 DECL_ARTIFICIAL (tmpl) = true;
4902 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4903 return tmpl;
4906 /* Called when a class template TYPE is redeclared with the indicated
4907 template PARMS, e.g.:
4909 template <class T> struct S;
4910 template <class T> struct S {}; */
4912 bool
4913 redeclare_class_template (tree type, tree parms)
4915 tree tmpl;
4916 tree tmpl_parms;
4917 int i;
4919 if (!TYPE_TEMPLATE_INFO (type))
4921 error ("%qT is not a template type", type);
4922 return false;
4925 tmpl = TYPE_TI_TEMPLATE (type);
4926 if (!PRIMARY_TEMPLATE_P (tmpl))
4927 /* The type is nested in some template class. Nothing to worry
4928 about here; there are no new template parameters for the nested
4929 type. */
4930 return true;
4932 if (!parms)
4934 error ("template specifiers not specified in declaration of %qD",
4935 tmpl);
4936 return false;
4939 parms = INNERMOST_TEMPLATE_PARMS (parms);
4940 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
4942 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
4944 error_n (input_location, TREE_VEC_LENGTH (parms),
4945 "redeclared with %d template parameter",
4946 "redeclared with %d template parameters",
4947 TREE_VEC_LENGTH (parms));
4948 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
4949 "previous declaration %q+D used %d template parameter",
4950 "previous declaration %q+D used %d template parameters",
4951 tmpl, TREE_VEC_LENGTH (tmpl_parms));
4952 return false;
4955 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
4957 tree tmpl_parm;
4958 tree parm;
4959 tree tmpl_default;
4960 tree parm_default;
4962 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
4963 || TREE_VEC_ELT (parms, i) == error_mark_node)
4964 continue;
4966 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
4967 if (tmpl_parm == error_mark_node)
4968 return false;
4970 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4971 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
4972 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
4974 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
4975 TEMPLATE_DECL. */
4976 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
4977 || (TREE_CODE (tmpl_parm) != TYPE_DECL
4978 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
4979 || (TREE_CODE (tmpl_parm) != PARM_DECL
4980 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
4981 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
4982 || (TREE_CODE (tmpl_parm) == PARM_DECL
4983 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
4984 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
4986 error ("template parameter %q+#D", tmpl_parm);
4987 error ("redeclared here as %q#D", parm);
4988 return false;
4991 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
4993 /* We have in [temp.param]:
4995 A template-parameter may not be given default arguments
4996 by two different declarations in the same scope. */
4997 error_at (input_location, "redefinition of default argument for %q#D", parm);
4998 inform (DECL_SOURCE_LOCATION (tmpl_parm),
4999 "original definition appeared here");
5000 return false;
5003 if (parm_default != NULL_TREE)
5004 /* Update the previous template parameters (which are the ones
5005 that will really count) with the new default value. */
5006 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5007 else if (tmpl_default != NULL_TREE)
5008 /* Update the new parameters, too; they'll be used as the
5009 parameters for any members. */
5010 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5013 return true;
5016 /* Simplify EXPR if it is a non-dependent expression. Returns the
5017 (possibly simplified) expression. */
5019 tree
5020 fold_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5022 if (expr == NULL_TREE)
5023 return NULL_TREE;
5025 /* If we're in a template, but EXPR isn't value dependent, simplify
5026 it. We're supposed to treat:
5028 template <typename T> void f(T[1 + 1]);
5029 template <typename T> void f(T[2]);
5031 as two declarations of the same function, for example. */
5032 if (processing_template_decl
5033 && !type_dependent_expression_p (expr)
5034 && potential_constant_expression (expr)
5035 && !value_dependent_expression_p (expr))
5037 HOST_WIDE_INT saved_processing_template_decl;
5039 saved_processing_template_decl = processing_template_decl;
5040 processing_template_decl = 0;
5041 expr = tsubst_copy_and_build (expr,
5042 /*args=*/NULL_TREE,
5043 complain,
5044 /*in_decl=*/NULL_TREE,
5045 /*function_p=*/false,
5046 /*integral_constant_expression_p=*/true);
5047 processing_template_decl = saved_processing_template_decl;
5049 return expr;
5052 tree
5053 fold_non_dependent_expr (tree expr)
5055 return fold_non_dependent_expr_sfinae (expr, tf_error);
5058 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5059 template declaration, or a TYPE_DECL for an alias declaration. */
5061 bool
5062 alias_type_or_template_p (tree t)
5064 if (t == NULL_TREE)
5065 return false;
5066 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5067 || (TYPE_P (t)
5068 && TYPE_NAME (t)
5069 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5070 || DECL_ALIAS_TEMPLATE_P (t));
5073 /* Return TRUE iff is a specialization of an alias template. */
5075 bool
5076 alias_template_specialization_p (const_tree t)
5078 if (t == NULL_TREE)
5079 return false;
5081 return (TYPE_P (t)
5082 && TYPE_TEMPLATE_INFO (t)
5083 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
5084 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5087 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5088 must be a function or a pointer-to-function type, as specified
5089 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5090 and check that the resulting function has external linkage. */
5092 static tree
5093 convert_nontype_argument_function (tree type, tree expr)
5095 tree fns = expr;
5096 tree fn, fn_no_ptr;
5097 linkage_kind linkage;
5099 fn = instantiate_type (type, fns, tf_none);
5100 if (fn == error_mark_node)
5101 return error_mark_node;
5103 fn_no_ptr = fn;
5104 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5105 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5106 if (BASELINK_P (fn_no_ptr))
5107 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5109 /* [temp.arg.nontype]/1
5111 A template-argument for a non-type, non-template template-parameter
5112 shall be one of:
5113 [...]
5114 -- the address of an object or function with external [C++11: or
5115 internal] linkage. */
5117 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5119 error ("%qE is not a valid template argument for type %qT", expr, type);
5120 if (TREE_CODE (type) == POINTER_TYPE)
5121 error ("it must be the address of a function with external linkage");
5122 else
5123 error ("it must be the name of a function with external linkage");
5124 return NULL_TREE;
5127 linkage = decl_linkage (fn_no_ptr);
5128 if (cxx_dialect >= cxx0x ? linkage == lk_none : linkage != lk_external)
5130 if (cxx_dialect >= cxx0x)
5131 error ("%qE is not a valid template argument for type %qT "
5132 "because %qD has no linkage",
5133 expr, type, fn_no_ptr);
5134 else
5135 error ("%qE is not a valid template argument for type %qT "
5136 "because %qD does not have external linkage",
5137 expr, type, fn_no_ptr);
5138 return NULL_TREE;
5141 return fn;
5144 /* Subroutine of convert_nontype_argument.
5145 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5146 Emit an error otherwise. */
5148 static bool
5149 check_valid_ptrmem_cst_expr (tree type, tree expr,
5150 tsubst_flags_t complain)
5152 STRIP_NOPS (expr);
5153 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5154 return true;
5155 if (cxx_dialect >= cxx0x && null_member_pointer_value_p (expr))
5156 return true;
5157 if (complain & tf_error)
5159 error ("%qE is not a valid template argument for type %qT",
5160 expr, type);
5161 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5163 return false;
5166 /* Returns TRUE iff the address of OP is value-dependent.
5168 14.6.2.4 [temp.dep.temp]:
5169 A non-integral non-type template-argument is dependent if its type is
5170 dependent or it has either of the following forms
5171 qualified-id
5172 & qualified-id
5173 and contains a nested-name-specifier which specifies a class-name that
5174 names a dependent type.
5176 We generalize this to just say that the address of a member of a
5177 dependent class is value-dependent; the above doesn't cover the
5178 address of a static data member named with an unqualified-id. */
5180 static bool
5181 has_value_dependent_address (tree op)
5183 /* We could use get_inner_reference here, but there's no need;
5184 this is only relevant for template non-type arguments, which
5185 can only be expressed as &id-expression. */
5186 if (DECL_P (op))
5188 tree ctx = CP_DECL_CONTEXT (op);
5189 if (TYPE_P (ctx) && dependent_type_p (ctx))
5190 return true;
5193 return false;
5196 /* The next set of functions are used for providing helpful explanatory
5197 diagnostics for failed overload resolution. Their messages should be
5198 indented by two spaces for consistency with the messages in
5199 call.c */
5201 static int
5202 unify_success (bool /*explain_p*/)
5204 return 0;
5207 static int
5208 unify_parameter_deduction_failure (bool explain_p, tree parm)
5210 if (explain_p)
5211 inform (input_location,
5212 " couldn't deduce template parameter %qD", parm);
5213 return 1;
5216 static int
5217 unify_invalid (bool /*explain_p*/)
5219 return 1;
5222 static int
5223 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5225 if (explain_p)
5226 inform (input_location,
5227 " types %qT and %qT have incompatible cv-qualifiers",
5228 parm, arg);
5229 return 1;
5232 static int
5233 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5235 if (explain_p)
5236 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5237 return 1;
5240 static int
5241 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5243 if (explain_p)
5244 inform (input_location,
5245 " template parameter %qD is not a parameter pack, but "
5246 "argument %qD is",
5247 parm, arg);
5248 return 1;
5251 static int
5252 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5254 if (explain_p)
5255 inform (input_location,
5256 " template argument %qE does not match "
5257 "pointer-to-member constant %qE",
5258 arg, parm);
5259 return 1;
5262 static int
5263 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5265 if (explain_p)
5266 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5267 return 1;
5270 static int
5271 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5273 if (explain_p)
5274 inform (input_location,
5275 " inconsistent parameter pack deduction with %qT and %qT",
5276 old_arg, new_arg);
5277 return 1;
5280 static int
5281 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5283 if (explain_p)
5285 if (TYPE_P (parm))
5286 inform (input_location,
5287 " deduced conflicting types for parameter %qT (%qT and %qT)",
5288 parm, first, second);
5289 else
5290 inform (input_location,
5291 " deduced conflicting values for non-type parameter "
5292 "%qE (%qE and %qE)", parm, first, second);
5294 return 1;
5297 static int
5298 unify_vla_arg (bool explain_p, tree arg)
5300 if (explain_p)
5301 inform (input_location,
5302 " variable-sized array type %qT is not "
5303 "a valid template argument",
5304 arg);
5305 return 1;
5308 static int
5309 unify_method_type_error (bool explain_p, tree arg)
5311 if (explain_p)
5312 inform (input_location,
5313 " member function type %qT is not a valid template argument",
5314 arg);
5315 return 1;
5318 static int
5319 unify_arity (bool explain_p, int have, int wanted)
5321 if (explain_p)
5322 inform_n (input_location, wanted,
5323 " candidate expects %d argument, %d provided",
5324 " candidate expects %d arguments, %d provided",
5325 wanted, have);
5326 return 1;
5329 static int
5330 unify_too_many_arguments (bool explain_p, int have, int wanted)
5332 return unify_arity (explain_p, have, wanted);
5335 static int
5336 unify_too_few_arguments (bool explain_p, int have, int wanted)
5338 return unify_arity (explain_p, have, wanted);
5341 static int
5342 unify_arg_conversion (bool explain_p, tree to_type,
5343 tree from_type, tree arg)
5345 if (explain_p)
5346 inform (input_location, " cannot convert %qE (type %qT) to type %qT",
5347 arg, from_type, to_type);
5348 return 1;
5351 static int
5352 unify_no_common_base (bool explain_p, enum template_base_result r,
5353 tree parm, tree arg)
5355 if (explain_p)
5356 switch (r)
5358 case tbr_ambiguous_baseclass:
5359 inform (input_location, " %qT is an ambiguous base class of %qT",
5360 arg, parm);
5361 break;
5362 default:
5363 inform (input_location, " %qT is not derived from %qT", arg, parm);
5364 break;
5366 return 1;
5369 static int
5370 unify_inconsistent_template_template_parameters (bool explain_p)
5372 if (explain_p)
5373 inform (input_location,
5374 " template parameters of a template template argument are "
5375 "inconsistent with other deduced template arguments");
5376 return 1;
5379 static int
5380 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5382 if (explain_p)
5383 inform (input_location,
5384 " can't deduce a template for %qT from non-template type %qT",
5385 parm, arg);
5386 return 1;
5389 static int
5390 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5392 if (explain_p)
5393 inform (input_location,
5394 " template argument %qE does not match %qD", arg, parm);
5395 return 1;
5398 static int
5399 unify_overload_resolution_failure (bool explain_p, tree arg)
5401 if (explain_p)
5402 inform (input_location,
5403 " could not resolve address from overloaded function %qE",
5404 arg);
5405 return 1;
5408 /* Attempt to convert the non-type template parameter EXPR to the
5409 indicated TYPE. If the conversion is successful, return the
5410 converted value. If the conversion is unsuccessful, return
5411 NULL_TREE if we issued an error message, or error_mark_node if we
5412 did not. We issue error messages for out-and-out bad template
5413 parameters, but not simply because the conversion failed, since we
5414 might be just trying to do argument deduction. Both TYPE and EXPR
5415 must be non-dependent.
5417 The conversion follows the special rules described in
5418 [temp.arg.nontype], and it is much more strict than an implicit
5419 conversion.
5421 This function is called twice for each template argument (see
5422 lookup_template_class for a more accurate description of this
5423 problem). This means that we need to handle expressions which
5424 are not valid in a C++ source, but can be created from the
5425 first call (for instance, casts to perform conversions). These
5426 hacks can go away after we fix the double coercion problem. */
5428 static tree
5429 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5431 tree expr_type;
5433 /* Detect immediately string literals as invalid non-type argument.
5434 This special-case is not needed for correctness (we would easily
5435 catch this later), but only to provide better diagnostic for this
5436 common user mistake. As suggested by DR 100, we do not mention
5437 linkage issues in the diagnostic as this is not the point. */
5438 /* FIXME we're making this OK. */
5439 if (TREE_CODE (expr) == STRING_CST)
5441 if (complain & tf_error)
5442 error ("%qE is not a valid template argument for type %qT "
5443 "because string literals can never be used in this context",
5444 expr, type);
5445 return NULL_TREE;
5448 /* Add the ADDR_EXPR now for the benefit of
5449 value_dependent_expression_p. */
5450 if (TYPE_PTROBV_P (type)
5451 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5453 expr = decay_conversion (expr, complain);
5454 if (expr == error_mark_node)
5455 return error_mark_node;
5458 /* If we are in a template, EXPR may be non-dependent, but still
5459 have a syntactic, rather than semantic, form. For example, EXPR
5460 might be a SCOPE_REF, rather than the VAR_DECL to which the
5461 SCOPE_REF refers. Preserving the qualifying scope is necessary
5462 so that access checking can be performed when the template is
5463 instantiated -- but here we need the resolved form so that we can
5464 convert the argument. */
5465 if (TYPE_REF_OBJ_P (type)
5466 && has_value_dependent_address (expr))
5467 /* If we want the address and it's value-dependent, don't fold. */;
5468 else if (!type_unknown_p (expr))
5469 expr = fold_non_dependent_expr_sfinae (expr, complain);
5470 if (error_operand_p (expr))
5471 return error_mark_node;
5472 expr_type = TREE_TYPE (expr);
5473 if (TREE_CODE (type) == REFERENCE_TYPE)
5474 expr = mark_lvalue_use (expr);
5475 else
5476 expr = mark_rvalue_use (expr);
5478 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5479 to a non-type argument of "nullptr". */
5480 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5481 expr = convert (type, expr);
5483 /* In C++11, integral or enumeration non-type template arguments can be
5484 arbitrary constant expressions. Pointer and pointer to
5485 member arguments can be general constant expressions that evaluate
5486 to a null value, but otherwise still need to be of a specific form. */
5487 if (cxx_dialect >= cxx0x)
5489 if (TREE_CODE (expr) == PTRMEM_CST)
5490 /* A PTRMEM_CST is already constant, and a valid template
5491 argument for a parameter of pointer to member type, we just want
5492 to leave it in that form rather than lower it to a
5493 CONSTRUCTOR. */;
5494 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5495 expr = maybe_constant_value (expr);
5496 else if (TYPE_PTR_OR_PTRMEM_P (type))
5498 tree folded = maybe_constant_value (expr);
5499 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5500 : null_member_pointer_value_p (folded))
5501 expr = folded;
5505 /* HACK: Due to double coercion, we can get a
5506 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5507 which is the tree that we built on the first call (see
5508 below when coercing to reference to object or to reference to
5509 function). We just strip everything and get to the arg.
5510 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5511 for examples. */
5512 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5514 tree probe_type, probe = expr;
5515 if (REFERENCE_REF_P (probe))
5516 probe = TREE_OPERAND (probe, 0);
5517 probe_type = TREE_TYPE (probe);
5518 if (TREE_CODE (probe) == NOP_EXPR)
5520 /* ??? Maybe we could use convert_from_reference here, but we
5521 would need to relax its constraints because the NOP_EXPR
5522 could actually change the type to something more cv-qualified,
5523 and this is not folded by convert_from_reference. */
5524 tree addr = TREE_OPERAND (probe, 0);
5525 if (TREE_CODE (probe_type) == REFERENCE_TYPE
5526 && TREE_CODE (addr) == ADDR_EXPR
5527 && TREE_CODE (TREE_TYPE (addr)) == POINTER_TYPE
5528 && (same_type_ignoring_top_level_qualifiers_p
5529 (TREE_TYPE (probe_type),
5530 TREE_TYPE (TREE_TYPE (addr)))))
5532 expr = TREE_OPERAND (addr, 0);
5533 expr_type = TREE_TYPE (expr);
5538 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5539 parameter is a pointer to object, through decay and
5540 qualification conversion. Let's strip everything. */
5541 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5543 STRIP_NOPS (expr);
5544 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
5545 gcc_assert (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE);
5546 /* Skip the ADDR_EXPR only if it is part of the decay for
5547 an array. Otherwise, it is part of the original argument
5548 in the source code. */
5549 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == ARRAY_TYPE)
5550 expr = TREE_OPERAND (expr, 0);
5551 expr_type = TREE_TYPE (expr);
5554 /* [temp.arg.nontype]/5, bullet 1
5556 For a non-type template-parameter of integral or enumeration type,
5557 integral promotions (_conv.prom_) and integral conversions
5558 (_conv.integral_) are applied. */
5559 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5561 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5562 t = maybe_constant_value (t);
5563 if (t != error_mark_node)
5564 expr = t;
5566 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5567 return error_mark_node;
5569 /* Notice that there are constant expressions like '4 % 0' which
5570 do not fold into integer constants. */
5571 if (TREE_CODE (expr) != INTEGER_CST)
5573 if (complain & tf_error)
5575 int errs = errorcount, warns = warningcount;
5576 if (processing_template_decl
5577 && !require_potential_constant_expression (expr))
5578 return NULL_TREE;
5579 expr = cxx_constant_value (expr);
5580 if (errorcount > errs || warningcount > warns)
5581 inform (EXPR_LOC_OR_HERE (expr),
5582 "in template argument for type %qT ", type);
5583 if (expr == error_mark_node)
5584 return NULL_TREE;
5585 /* else cxx_constant_value complained but gave us
5586 a real constant, so go ahead. */
5587 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5589 else
5590 return NULL_TREE;
5593 /* [temp.arg.nontype]/5, bullet 2
5595 For a non-type template-parameter of type pointer to object,
5596 qualification conversions (_conv.qual_) and the array-to-pointer
5597 conversion (_conv.array_) are applied. */
5598 else if (TYPE_PTROBV_P (type))
5600 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5602 A template-argument for a non-type, non-template template-parameter
5603 shall be one of: [...]
5605 -- the name of a non-type template-parameter;
5606 -- the address of an object or function with external linkage, [...]
5607 expressed as "& id-expression" where the & is optional if the name
5608 refers to a function or array, or if the corresponding
5609 template-parameter is a reference.
5611 Here, we do not care about functions, as they are invalid anyway
5612 for a parameter of type pointer-to-object. */
5614 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5615 /* Non-type template parameters are OK. */
5617 else if (cxx_dialect >= cxx0x && integer_zerop (expr))
5618 /* Null pointer values are OK in C++11. */;
5619 else if (TREE_CODE (expr) != ADDR_EXPR
5620 && TREE_CODE (expr_type) != ARRAY_TYPE)
5622 if (TREE_CODE (expr) == VAR_DECL)
5624 error ("%qD is not a valid template argument "
5625 "because %qD is a variable, not the address of "
5626 "a variable",
5627 expr, expr);
5628 return NULL_TREE;
5630 /* Other values, like integer constants, might be valid
5631 non-type arguments of some other type. */
5632 return error_mark_node;
5634 else
5636 tree decl;
5638 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5639 ? TREE_OPERAND (expr, 0) : expr);
5640 if (TREE_CODE (decl) != VAR_DECL)
5642 error ("%qE is not a valid template argument of type %qT "
5643 "because %qE is not a variable",
5644 expr, type, decl);
5645 return NULL_TREE;
5647 else if (cxx_dialect < cxx0x && !DECL_EXTERNAL_LINKAGE_P (decl))
5649 error ("%qE is not a valid template argument of type %qT "
5650 "because %qD does not have external linkage",
5651 expr, type, decl);
5652 return NULL_TREE;
5654 else if (cxx_dialect >= cxx0x && decl_linkage (decl) == lk_none)
5656 error ("%qE is not a valid template argument of type %qT "
5657 "because %qD has no linkage",
5658 expr, type, decl);
5659 return NULL_TREE;
5663 expr = decay_conversion (expr, complain);
5664 if (expr == error_mark_node)
5665 return error_mark_node;
5667 expr = perform_qualification_conversions (type, expr);
5668 if (expr == error_mark_node)
5669 return error_mark_node;
5671 /* [temp.arg.nontype]/5, bullet 3
5673 For a non-type template-parameter of type reference to object, no
5674 conversions apply. The type referred to by the reference may be more
5675 cv-qualified than the (otherwise identical) type of the
5676 template-argument. The template-parameter is bound directly to the
5677 template-argument, which must be an lvalue. */
5678 else if (TYPE_REF_OBJ_P (type))
5680 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
5681 expr_type))
5682 return error_mark_node;
5684 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
5686 error ("%qE is not a valid template argument for type %qT "
5687 "because of conflicts in cv-qualification", expr, type);
5688 return NULL_TREE;
5691 if (!real_lvalue_p (expr))
5693 error ("%qE is not a valid template argument for type %qT "
5694 "because it is not an lvalue", expr, type);
5695 return NULL_TREE;
5698 /* [temp.arg.nontype]/1
5700 A template-argument for a non-type, non-template template-parameter
5701 shall be one of: [...]
5703 -- the address of an object or function with external linkage. */
5704 if (TREE_CODE (expr) == INDIRECT_REF
5705 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
5707 expr = TREE_OPERAND (expr, 0);
5708 if (DECL_P (expr))
5710 error ("%q#D is not a valid template argument for type %qT "
5711 "because a reference variable does not have a constant "
5712 "address", expr, type);
5713 return NULL_TREE;
5717 if (!DECL_P (expr))
5719 error ("%qE is not a valid template argument for type %qT "
5720 "because it is not an object with external linkage",
5721 expr, type);
5722 return NULL_TREE;
5725 if (!DECL_EXTERNAL_LINKAGE_P (expr))
5727 error ("%qE is not a valid template argument for type %qT "
5728 "because object %qD has not external linkage",
5729 expr, type, expr);
5730 return NULL_TREE;
5733 expr = build_nop (type, build_address (expr));
5735 /* [temp.arg.nontype]/5, bullet 4
5737 For a non-type template-parameter of type pointer to function, only
5738 the function-to-pointer conversion (_conv.func_) is applied. If the
5739 template-argument represents a set of overloaded functions (or a
5740 pointer to such), the matching function is selected from the set
5741 (_over.over_). */
5742 else if (TYPE_PTRFN_P (type))
5744 /* If the argument is a template-id, we might not have enough
5745 context information to decay the pointer. */
5746 if (!type_unknown_p (expr_type))
5748 expr = decay_conversion (expr, complain);
5749 if (expr == error_mark_node)
5750 return error_mark_node;
5753 if (cxx_dialect >= cxx0x && integer_zerop (expr))
5754 /* Null pointer values are OK in C++11. */
5755 return perform_qualification_conversions (type, expr);
5757 expr = convert_nontype_argument_function (type, expr);
5758 if (!expr || expr == error_mark_node)
5759 return expr;
5761 /* [temp.arg.nontype]/5, bullet 5
5763 For a non-type template-parameter of type reference to function, no
5764 conversions apply. If the template-argument represents a set of
5765 overloaded functions, the matching function is selected from the set
5766 (_over.over_). */
5767 else if (TYPE_REFFN_P (type))
5769 if (TREE_CODE (expr) == ADDR_EXPR)
5771 error ("%qE is not a valid template argument for type %qT "
5772 "because it is a pointer", expr, type);
5773 inform (input_location, "try using %qE instead", TREE_OPERAND (expr, 0));
5774 return NULL_TREE;
5777 expr = convert_nontype_argument_function (TREE_TYPE (type), expr);
5778 if (!expr || expr == error_mark_node)
5779 return expr;
5781 expr = build_nop (type, build_address (expr));
5783 /* [temp.arg.nontype]/5, bullet 6
5785 For a non-type template-parameter of type pointer to member function,
5786 no conversions apply. If the template-argument represents a set of
5787 overloaded member functions, the matching member function is selected
5788 from the set (_over.over_). */
5789 else if (TYPE_PTRMEMFUNC_P (type))
5791 expr = instantiate_type (type, expr, tf_none);
5792 if (expr == error_mark_node)
5793 return error_mark_node;
5795 /* [temp.arg.nontype] bullet 1 says the pointer to member
5796 expression must be a pointer-to-member constant. */
5797 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5798 return error_mark_node;
5800 /* There is no way to disable standard conversions in
5801 resolve_address_of_overloaded_function (called by
5802 instantiate_type). It is possible that the call succeeded by
5803 converting &B::I to &D::I (where B is a base of D), so we need
5804 to reject this conversion here.
5806 Actually, even if there was a way to disable standard conversions,
5807 it would still be better to reject them here so that we can
5808 provide a superior diagnostic. */
5809 if (!same_type_p (TREE_TYPE (expr), type))
5811 error ("%qE is not a valid template argument for type %qT "
5812 "because it is of type %qT", expr, type,
5813 TREE_TYPE (expr));
5814 /* If we are just one standard conversion off, explain. */
5815 if (can_convert (type, TREE_TYPE (expr), complain))
5816 inform (input_location,
5817 "standard conversions are not allowed in this context");
5818 return NULL_TREE;
5821 /* [temp.arg.nontype]/5, bullet 7
5823 For a non-type template-parameter of type pointer to data member,
5824 qualification conversions (_conv.qual_) are applied. */
5825 else if (TYPE_PTRDATAMEM_P (type))
5827 /* [temp.arg.nontype] bullet 1 says the pointer to member
5828 expression must be a pointer-to-member constant. */
5829 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5830 return error_mark_node;
5832 expr = perform_qualification_conversions (type, expr);
5833 if (expr == error_mark_node)
5834 return expr;
5836 else if (NULLPTR_TYPE_P (type))
5838 if (expr != nullptr_node)
5840 error ("%qE is not a valid template argument for type %qT "
5841 "because it is of type %qT", expr, type, TREE_TYPE (expr));
5842 return NULL_TREE;
5844 return expr;
5846 /* A template non-type parameter must be one of the above. */
5847 else
5848 gcc_unreachable ();
5850 /* Sanity check: did we actually convert the argument to the
5851 right type? */
5852 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5853 (type, TREE_TYPE (expr)));
5854 return expr;
5857 /* Subroutine of coerce_template_template_parms, which returns 1 if
5858 PARM_PARM and ARG_PARM match using the rule for the template
5859 parameters of template template parameters. Both PARM and ARG are
5860 template parameters; the rest of the arguments are the same as for
5861 coerce_template_template_parms.
5863 static int
5864 coerce_template_template_parm (tree parm,
5865 tree arg,
5866 tsubst_flags_t complain,
5867 tree in_decl,
5868 tree outer_args)
5870 if (arg == NULL_TREE || arg == error_mark_node
5871 || parm == NULL_TREE || parm == error_mark_node)
5872 return 0;
5874 if (TREE_CODE (arg) != TREE_CODE (parm))
5875 return 0;
5877 switch (TREE_CODE (parm))
5879 case TEMPLATE_DECL:
5880 /* We encounter instantiations of templates like
5881 template <template <template <class> class> class TT>
5882 class C; */
5884 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
5885 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
5887 if (!coerce_template_template_parms
5888 (parmparm, argparm, complain, in_decl, outer_args))
5889 return 0;
5891 /* Fall through. */
5893 case TYPE_DECL:
5894 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
5895 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
5896 /* Argument is a parameter pack but parameter is not. */
5897 return 0;
5898 break;
5900 case PARM_DECL:
5901 /* The tsubst call is used to handle cases such as
5903 template <int> class C {};
5904 template <class T, template <T> class TT> class D {};
5905 D<int, C> d;
5907 i.e. the parameter list of TT depends on earlier parameters. */
5908 if (!uses_template_parms (TREE_TYPE (arg))
5909 && !same_type_p
5910 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
5911 TREE_TYPE (arg)))
5912 return 0;
5914 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
5915 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
5916 /* Argument is a parameter pack but parameter is not. */
5917 return 0;
5919 break;
5921 default:
5922 gcc_unreachable ();
5925 return 1;
5929 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
5930 template template parameters. Both PARM_PARMS and ARG_PARMS are
5931 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
5932 or PARM_DECL.
5934 Consider the example:
5935 template <class T> class A;
5936 template<template <class U> class TT> class B;
5938 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
5939 the parameters to A, and OUTER_ARGS contains A. */
5941 static int
5942 coerce_template_template_parms (tree parm_parms,
5943 tree arg_parms,
5944 tsubst_flags_t complain,
5945 tree in_decl,
5946 tree outer_args)
5948 int nparms, nargs, i;
5949 tree parm, arg;
5950 int variadic_p = 0;
5952 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
5953 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
5955 nparms = TREE_VEC_LENGTH (parm_parms);
5956 nargs = TREE_VEC_LENGTH (arg_parms);
5958 /* Determine whether we have a parameter pack at the end of the
5959 template template parameter's template parameter list. */
5960 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
5962 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
5964 if (parm == error_mark_node)
5965 return 0;
5967 switch (TREE_CODE (parm))
5969 case TEMPLATE_DECL:
5970 case TYPE_DECL:
5971 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
5972 variadic_p = 1;
5973 break;
5975 case PARM_DECL:
5976 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
5977 variadic_p = 1;
5978 break;
5980 default:
5981 gcc_unreachable ();
5985 if (nargs != nparms
5986 && !(variadic_p && nargs >= nparms - 1))
5987 return 0;
5989 /* Check all of the template parameters except the parameter pack at
5990 the end (if any). */
5991 for (i = 0; i < nparms - variadic_p; ++i)
5993 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
5994 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
5995 continue;
5997 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
5998 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6000 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6001 outer_args))
6002 return 0;
6006 if (variadic_p)
6008 /* Check each of the template parameters in the template
6009 argument against the template parameter pack at the end of
6010 the template template parameter. */
6011 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6012 return 0;
6014 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6016 for (; i < nargs; ++i)
6018 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6019 continue;
6021 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6023 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6024 outer_args))
6025 return 0;
6029 return 1;
6032 /* Verifies that the deduced template arguments (in TARGS) for the
6033 template template parameters (in TPARMS) represent valid bindings,
6034 by comparing the template parameter list of each template argument
6035 to the template parameter list of its corresponding template
6036 template parameter, in accordance with DR150. This
6037 routine can only be called after all template arguments have been
6038 deduced. It will return TRUE if all of the template template
6039 parameter bindings are okay, FALSE otherwise. */
6040 bool
6041 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6043 int i, ntparms = TREE_VEC_LENGTH (tparms);
6044 bool ret = true;
6046 /* We're dealing with template parms in this process. */
6047 ++processing_template_decl;
6049 targs = INNERMOST_TEMPLATE_ARGS (targs);
6051 for (i = 0; i < ntparms; ++i)
6053 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6054 tree targ = TREE_VEC_ELT (targs, i);
6056 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6058 tree packed_args = NULL_TREE;
6059 int idx, len = 1;
6061 if (ARGUMENT_PACK_P (targ))
6063 /* Look inside the argument pack. */
6064 packed_args = ARGUMENT_PACK_ARGS (targ);
6065 len = TREE_VEC_LENGTH (packed_args);
6068 for (idx = 0; idx < len; ++idx)
6070 tree targ_parms = NULL_TREE;
6072 if (packed_args)
6073 /* Extract the next argument from the argument
6074 pack. */
6075 targ = TREE_VEC_ELT (packed_args, idx);
6077 if (PACK_EXPANSION_P (targ))
6078 /* Look at the pattern of the pack expansion. */
6079 targ = PACK_EXPANSION_PATTERN (targ);
6081 /* Extract the template parameters from the template
6082 argument. */
6083 if (TREE_CODE (targ) == TEMPLATE_DECL)
6084 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6085 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6086 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6088 /* Verify that we can coerce the template template
6089 parameters from the template argument to the template
6090 parameter. This requires an exact match. */
6091 if (targ_parms
6092 && !coerce_template_template_parms
6093 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6094 targ_parms,
6095 tf_none,
6096 tparm,
6097 targs))
6099 ret = false;
6100 goto out;
6106 out:
6108 --processing_template_decl;
6109 return ret;
6112 /* Since type attributes aren't mangled, we need to strip them from
6113 template type arguments. */
6115 static tree
6116 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6118 tree mv;
6119 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6120 return arg;
6121 mv = TYPE_MAIN_VARIANT (arg);
6122 arg = strip_typedefs (arg);
6123 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6124 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6126 if (complain & tf_warning)
6127 warning (0, "ignoring attributes on template argument %qT", arg);
6128 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6129 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6131 return arg;
6134 /* Convert the indicated template ARG as necessary to match the
6135 indicated template PARM. Returns the converted ARG, or
6136 error_mark_node if the conversion was unsuccessful. Error and
6137 warning messages are issued under control of COMPLAIN. This
6138 conversion is for the Ith parameter in the parameter list. ARGS is
6139 the full set of template arguments deduced so far. */
6141 static tree
6142 convert_template_argument (tree parm,
6143 tree arg,
6144 tree args,
6145 tsubst_flags_t complain,
6146 int i,
6147 tree in_decl)
6149 tree orig_arg;
6150 tree val;
6151 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6153 if (TREE_CODE (arg) == TREE_LIST
6154 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6156 /* The template argument was the name of some
6157 member function. That's usually
6158 invalid, but static members are OK. In any
6159 case, grab the underlying fields/functions
6160 and issue an error later if required. */
6161 orig_arg = TREE_VALUE (arg);
6162 TREE_TYPE (arg) = unknown_type_node;
6165 orig_arg = arg;
6167 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6168 requires_type = (TREE_CODE (parm) == TYPE_DECL
6169 || requires_tmpl_type);
6171 /* When determining whether an argument pack expansion is a template,
6172 look at the pattern. */
6173 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6174 arg = PACK_EXPANSION_PATTERN (arg);
6176 /* Deal with an injected-class-name used as a template template arg. */
6177 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6179 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6180 if (TREE_CODE (t) == TEMPLATE_DECL)
6182 if (cxx_dialect >= cxx0x)
6183 /* OK under DR 1004. */;
6184 else if (complain & tf_warning_or_error)
6185 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6186 " used as template template argument", TYPE_NAME (arg));
6187 else if (flag_pedantic_errors)
6188 t = arg;
6190 arg = t;
6194 is_tmpl_type =
6195 ((TREE_CODE (arg) == TEMPLATE_DECL
6196 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6197 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6198 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6199 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6201 if (is_tmpl_type
6202 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6203 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6204 arg = TYPE_STUB_DECL (arg);
6206 is_type = TYPE_P (arg) || is_tmpl_type;
6208 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6209 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6211 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6213 if (complain & tf_error)
6214 error ("invalid use of destructor %qE as a type", orig_arg);
6215 return error_mark_node;
6218 permerror (input_location,
6219 "to refer to a type member of a template parameter, "
6220 "use %<typename %E%>", orig_arg);
6222 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6223 TREE_OPERAND (arg, 1),
6224 typename_type,
6225 complain);
6226 arg = orig_arg;
6227 is_type = 1;
6229 if (is_type != requires_type)
6231 if (in_decl)
6233 if (complain & tf_error)
6235 error ("type/value mismatch at argument %d in template "
6236 "parameter list for %qD",
6237 i + 1, in_decl);
6238 if (is_type)
6239 error (" expected a constant of type %qT, got %qT",
6240 TREE_TYPE (parm),
6241 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6242 else if (requires_tmpl_type)
6243 error (" expected a class template, got %qE", orig_arg);
6244 else
6245 error (" expected a type, got %qE", orig_arg);
6248 return error_mark_node;
6250 if (is_tmpl_type ^ requires_tmpl_type)
6252 if (in_decl && (complain & tf_error))
6254 error ("type/value mismatch at argument %d in template "
6255 "parameter list for %qD",
6256 i + 1, in_decl);
6257 if (is_tmpl_type)
6258 error (" expected a type, got %qT", DECL_NAME (arg));
6259 else
6260 error (" expected a class template, got %qT", orig_arg);
6262 return error_mark_node;
6265 if (is_type)
6267 if (requires_tmpl_type)
6269 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6270 val = orig_arg;
6271 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6272 /* The number of argument required is not known yet.
6273 Just accept it for now. */
6274 val = TREE_TYPE (arg);
6275 else
6277 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6278 tree argparm;
6280 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6282 if (coerce_template_template_parms (parmparm, argparm,
6283 complain, in_decl,
6284 args))
6286 val = arg;
6288 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6289 TEMPLATE_DECL. */
6290 if (val != error_mark_node)
6292 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6293 val = TREE_TYPE (val);
6294 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6295 val = make_pack_expansion (val);
6298 else
6300 if (in_decl && (complain & tf_error))
6302 error ("type/value mismatch at argument %d in "
6303 "template parameter list for %qD",
6304 i + 1, in_decl);
6305 error (" expected a template of type %qD, got %qT",
6306 parm, orig_arg);
6309 val = error_mark_node;
6313 else
6314 val = orig_arg;
6315 /* We only form one instance of each template specialization.
6316 Therefore, if we use a non-canonical variant (i.e., a
6317 typedef), any future messages referring to the type will use
6318 the typedef, which is confusing if those future uses do not
6319 themselves also use the typedef. */
6320 if (TYPE_P (val))
6321 val = canonicalize_type_argument (val, complain);
6323 else
6325 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6327 if (invalid_nontype_parm_type_p (t, complain))
6328 return error_mark_node;
6330 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6332 if (same_type_p (t, TREE_TYPE (orig_arg)))
6333 val = orig_arg;
6334 else
6336 /* Not sure if this is reachable, but it doesn't hurt
6337 to be robust. */
6338 error ("type mismatch in nontype parameter pack");
6339 val = error_mark_node;
6342 else if (!uses_template_parms (orig_arg) && !uses_template_parms (t))
6343 /* We used to call digest_init here. However, digest_init
6344 will report errors, which we don't want when complain
6345 is zero. More importantly, digest_init will try too
6346 hard to convert things: for example, `0' should not be
6347 converted to pointer type at this point according to
6348 the standard. Accepting this is not merely an
6349 extension, since deciding whether or not these
6350 conversions can occur is part of determining which
6351 function template to call, or whether a given explicit
6352 argument specification is valid. */
6353 val = convert_nontype_argument (t, orig_arg, complain);
6354 else
6355 val = strip_typedefs_expr (orig_arg);
6357 if (val == NULL_TREE)
6358 val = error_mark_node;
6359 else if (val == error_mark_node && (complain & tf_error))
6360 error ("could not convert template argument %qE to %qT", orig_arg, t);
6362 if (TREE_CODE (val) == SCOPE_REF)
6364 /* Strip typedefs from the SCOPE_REF. */
6365 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6366 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6367 complain);
6368 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6369 QUALIFIED_NAME_IS_TEMPLATE (val));
6373 return val;
6376 /* Coerces the remaining template arguments in INNER_ARGS (from
6377 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6378 Returns the coerced argument pack. PARM_IDX is the position of this
6379 parameter in the template parameter list. ARGS is the original
6380 template argument list. */
6381 static tree
6382 coerce_template_parameter_pack (tree parms,
6383 int parm_idx,
6384 tree args,
6385 tree inner_args,
6386 int arg_idx,
6387 tree new_args,
6388 int* lost,
6389 tree in_decl,
6390 tsubst_flags_t complain)
6392 tree parm = TREE_VEC_ELT (parms, parm_idx);
6393 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6394 tree packed_args;
6395 tree argument_pack;
6396 tree packed_types = NULL_TREE;
6398 if (arg_idx > nargs)
6399 arg_idx = nargs;
6401 packed_args = make_tree_vec (nargs - arg_idx);
6403 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL
6404 && uses_parameter_packs (TREE_TYPE (TREE_VALUE (parm))))
6406 /* When the template parameter is a non-type template
6407 parameter pack whose type uses parameter packs, we need
6408 to look at each of the template arguments
6409 separately. Build a vector of the types for these
6410 non-type template parameters in PACKED_TYPES. */
6411 tree expansion
6412 = make_pack_expansion (TREE_TYPE (TREE_VALUE (parm)));
6413 packed_types = tsubst_pack_expansion (expansion, args,
6414 complain, in_decl);
6416 if (packed_types == error_mark_node)
6417 return error_mark_node;
6419 /* Check that we have the right number of arguments. */
6420 if (arg_idx < nargs
6421 && !PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx))
6422 && nargs - arg_idx != TREE_VEC_LENGTH (packed_types))
6424 int needed_parms
6425 = TREE_VEC_LENGTH (parms) - 1 + TREE_VEC_LENGTH (packed_types);
6426 error ("wrong number of template arguments (%d, should be %d)",
6427 nargs, needed_parms);
6428 return error_mark_node;
6431 /* If we aren't able to check the actual arguments now
6432 (because they haven't been expanded yet), we can at least
6433 verify that all of the types used for the non-type
6434 template parameter pack are, in fact, valid for non-type
6435 template parameters. */
6436 if (arg_idx < nargs
6437 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6439 int j, len = TREE_VEC_LENGTH (packed_types);
6440 for (j = 0; j < len; ++j)
6442 tree t = TREE_VEC_ELT (packed_types, j);
6443 if (invalid_nontype_parm_type_p (t, complain))
6444 return error_mark_node;
6449 /* Convert the remaining arguments, which will be a part of the
6450 parameter pack "parm". */
6451 for (; arg_idx < nargs; ++arg_idx)
6453 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6454 tree actual_parm = TREE_VALUE (parm);
6456 if (packed_types && !PACK_EXPANSION_P (arg))
6458 /* When we have a vector of types (corresponding to the
6459 non-type template parameter pack that uses parameter
6460 packs in its type, as mention above), and the
6461 argument is not an expansion (which expands to a
6462 currently unknown number of arguments), clone the
6463 parm and give it the next type in PACKED_TYPES. */
6464 actual_parm = copy_node (actual_parm);
6465 TREE_TYPE (actual_parm) =
6466 TREE_VEC_ELT (packed_types, arg_idx - parm_idx);
6469 if (arg == error_mark_node)
6471 if (complain & tf_error)
6472 error ("template argument %d is invalid", arg_idx + 1);
6474 else
6475 arg = convert_template_argument (actual_parm,
6476 arg, new_args, complain, parm_idx,
6477 in_decl);
6478 if (arg == error_mark_node)
6479 (*lost)++;
6480 TREE_VEC_ELT (packed_args, arg_idx - parm_idx) = arg;
6483 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6484 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6485 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6486 else
6488 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6489 TREE_TYPE (argument_pack)
6490 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6491 TREE_CONSTANT (argument_pack) = 1;
6494 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6495 #ifdef ENABLE_CHECKING
6496 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6497 TREE_VEC_LENGTH (packed_args));
6498 #endif
6499 return argument_pack;
6502 /* Returns true if the template argument vector ARGS contains
6503 any pack expansions, false otherwise. */
6505 static bool
6506 any_pack_expanson_args_p (tree args)
6508 int i;
6509 if (args)
6510 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6511 if (PACK_EXPANSION_P (TREE_VEC_ELT (args, i)))
6512 return true;
6513 return false;
6516 /* Convert all template arguments to their appropriate types, and
6517 return a vector containing the innermost resulting template
6518 arguments. If any error occurs, return error_mark_node. Error and
6519 warning messages are issued under control of COMPLAIN.
6521 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6522 for arguments not specified in ARGS. Otherwise, if
6523 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6524 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6525 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6526 ARGS. */
6528 static tree
6529 coerce_template_parms (tree parms,
6530 tree args,
6531 tree in_decl,
6532 tsubst_flags_t complain,
6533 bool require_all_args,
6534 bool use_default_args)
6536 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6537 tree inner_args;
6538 tree new_args;
6539 tree new_inner_args;
6540 int saved_unevaluated_operand;
6541 int saved_inhibit_evaluation_warnings;
6543 /* When used as a boolean value, indicates whether this is a
6544 variadic template parameter list. Since it's an int, we can also
6545 subtract it from nparms to get the number of non-variadic
6546 parameters. */
6547 int variadic_p = 0;
6548 int post_variadic_parms = 0;
6550 if (args == error_mark_node)
6551 return error_mark_node;
6553 nparms = TREE_VEC_LENGTH (parms);
6555 /* Determine if there are any parameter packs. */
6556 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6558 tree tparm = TREE_VALUE (TREE_VEC_ELT (parms, parm_idx));
6559 if (variadic_p)
6560 ++post_variadic_parms;
6561 if (template_parameter_pack_p (tparm))
6562 ++variadic_p;
6565 inner_args = INNERMOST_TEMPLATE_ARGS (args);
6566 /* If there are no parameters that follow a parameter pack, we need to
6567 expand any argument packs so that we can deduce a parameter pack from
6568 some non-packed args followed by an argument pack, as in variadic85.C.
6569 If there are such parameters, we need to leave argument packs intact
6570 so the arguments are assigned properly. This can happen when dealing
6571 with a nested class inside a partial specialization of a class
6572 template, as in variadic92.C, or when deducing a template parameter pack
6573 from a sub-declarator, as in variadic114.C. */
6574 if (!post_variadic_parms)
6575 inner_args = expand_template_argument_pack (inner_args);
6577 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6578 if ((nargs > nparms && !variadic_p)
6579 || (nargs < nparms - variadic_p
6580 && require_all_args
6581 && !any_pack_expanson_args_p (inner_args)
6582 && (!use_default_args
6583 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6584 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6586 if (complain & tf_error)
6588 if (variadic_p)
6590 nparms -= variadic_p;
6591 error ("wrong number of template arguments "
6592 "(%d, should be %d or more)", nargs, nparms);
6594 else
6595 error ("wrong number of template arguments "
6596 "(%d, should be %d)", nargs, nparms);
6598 if (in_decl)
6599 error ("provided for %q+D", in_decl);
6602 return error_mark_node;
6605 /* We need to evaluate the template arguments, even though this
6606 template-id may be nested within a "sizeof". */
6607 saved_unevaluated_operand = cp_unevaluated_operand;
6608 cp_unevaluated_operand = 0;
6609 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
6610 c_inhibit_evaluation_warnings = 0;
6611 new_inner_args = make_tree_vec (nparms);
6612 new_args = add_outermost_template_args (args, new_inner_args);
6613 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
6615 tree arg;
6616 tree parm;
6618 /* Get the Ith template parameter. */
6619 parm = TREE_VEC_ELT (parms, parm_idx);
6621 if (parm == error_mark_node)
6623 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
6624 continue;
6627 /* Calculate the next argument. */
6628 if (arg_idx < nargs)
6629 arg = TREE_VEC_ELT (inner_args, arg_idx);
6630 else
6631 arg = NULL_TREE;
6633 if (template_parameter_pack_p (TREE_VALUE (parm))
6634 && !(arg && ARGUMENT_PACK_P (arg)))
6636 /* All remaining arguments will be placed in the
6637 template parameter pack PARM. */
6638 arg = coerce_template_parameter_pack (parms, parm_idx, args,
6639 inner_args, arg_idx,
6640 new_args, &lost,
6641 in_decl, complain);
6643 /* Store this argument. */
6644 if (arg == error_mark_node)
6645 lost++;
6646 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
6648 /* We are done with all of the arguments. */
6649 arg_idx = nargs;
6651 continue;
6653 else if (arg)
6655 if (PACK_EXPANSION_P (arg))
6657 /* We don't know how many args we have yet, just
6658 use the unconverted ones for now. */
6659 new_inner_args = inner_args;
6660 break;
6663 else if (require_all_args)
6665 /* There must be a default arg in this case. */
6666 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
6667 complain, in_decl);
6668 /* The position of the first default template argument,
6669 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
6670 Record that. */
6671 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6672 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args, arg_idx);
6674 else
6675 break;
6677 if (arg == error_mark_node)
6679 if (complain & tf_error)
6680 error ("template argument %d is invalid", arg_idx + 1);
6682 else if (!arg)
6683 /* This only occurs if there was an error in the template
6684 parameter list itself (which we would already have
6685 reported) that we are trying to recover from, e.g., a class
6686 template with a parameter list such as
6687 template<typename..., typename>. */
6688 ++lost;
6689 else
6690 arg = convert_template_argument (TREE_VALUE (parm),
6691 arg, new_args, complain,
6692 parm_idx, in_decl);
6694 if (arg == error_mark_node)
6695 lost++;
6696 TREE_VEC_ELT (new_inner_args, arg_idx) = arg;
6698 cp_unevaluated_operand = saved_unevaluated_operand;
6699 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
6701 if (lost)
6702 return error_mark_node;
6704 #ifdef ENABLE_CHECKING
6705 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6706 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
6707 TREE_VEC_LENGTH (new_inner_args));
6708 #endif
6710 return new_inner_args;
6713 /* Like coerce_template_parms. If PARMS represents all template
6714 parameters levels, this function returns a vector of vectors
6715 representing all the resulting argument levels. Note that in this
6716 case, only the innermost arguments are coerced because the
6717 outermost ones are supposed to have been coerced already.
6719 Otherwise, if PARMS represents only (the innermost) vector of
6720 parameters, this function returns a vector containing just the
6721 innermost resulting arguments. */
6723 static tree
6724 coerce_innermost_template_parms (tree parms,
6725 tree args,
6726 tree in_decl,
6727 tsubst_flags_t complain,
6728 bool require_all_args,
6729 bool use_default_args)
6731 int parms_depth = TMPL_PARMS_DEPTH (parms);
6732 int args_depth = TMPL_ARGS_DEPTH (args);
6733 tree coerced_args;
6735 if (parms_depth > 1)
6737 coerced_args = make_tree_vec (parms_depth);
6738 tree level;
6739 int cur_depth;
6741 for (level = parms, cur_depth = parms_depth;
6742 parms_depth > 0 && level != NULL_TREE;
6743 level = TREE_CHAIN (level), --cur_depth)
6745 tree l;
6746 if (cur_depth == args_depth)
6747 l = coerce_template_parms (TREE_VALUE (level),
6748 args, in_decl, complain,
6749 require_all_args,
6750 use_default_args);
6751 else
6752 l = TMPL_ARGS_LEVEL (args, cur_depth);
6754 if (l == error_mark_node)
6755 return error_mark_node;
6757 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
6760 else
6761 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
6762 args, in_decl, complain,
6763 require_all_args,
6764 use_default_args);
6765 return coerced_args;
6768 /* Returns 1 if template args OT and NT are equivalent. */
6770 static int
6771 template_args_equal (tree ot, tree nt)
6773 if (nt == ot)
6774 return 1;
6775 if (nt == NULL_TREE || ot == NULL_TREE)
6776 return false;
6778 if (TREE_CODE (nt) == TREE_VEC)
6779 /* For member templates */
6780 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
6781 else if (PACK_EXPANSION_P (ot))
6782 return (PACK_EXPANSION_P (nt)
6783 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
6784 PACK_EXPANSION_PATTERN (nt))
6785 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
6786 PACK_EXPANSION_EXTRA_ARGS (nt)));
6787 else if (ARGUMENT_PACK_P (ot))
6789 int i, len;
6790 tree opack, npack;
6792 if (!ARGUMENT_PACK_P (nt))
6793 return 0;
6795 opack = ARGUMENT_PACK_ARGS (ot);
6796 npack = ARGUMENT_PACK_ARGS (nt);
6797 len = TREE_VEC_LENGTH (opack);
6798 if (TREE_VEC_LENGTH (npack) != len)
6799 return 0;
6800 for (i = 0; i < len; ++i)
6801 if (!template_args_equal (TREE_VEC_ELT (opack, i),
6802 TREE_VEC_ELT (npack, i)))
6803 return 0;
6804 return 1;
6806 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
6808 /* We get here probably because we are in the middle of substituting
6809 into the pattern of a pack expansion. In that case the
6810 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
6811 interested in. So we want to use the initial pack argument for
6812 the comparison. */
6813 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
6814 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
6815 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
6816 return template_args_equal (ot, nt);
6818 else if (TYPE_P (nt))
6819 return TYPE_P (ot) && same_type_p (ot, nt);
6820 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
6821 return 0;
6822 else
6823 return cp_tree_equal (ot, nt);
6826 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
6827 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
6828 NEWARG_PTR with the offending arguments if they are non-NULL. */
6830 static int
6831 comp_template_args_with_info (tree oldargs, tree newargs,
6832 tree *oldarg_ptr, tree *newarg_ptr)
6834 int i;
6836 if (oldargs == newargs)
6837 return 1;
6839 if (!oldargs || !newargs)
6840 return 0;
6842 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
6843 return 0;
6845 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
6847 tree nt = TREE_VEC_ELT (newargs, i);
6848 tree ot = TREE_VEC_ELT (oldargs, i);
6850 if (! template_args_equal (ot, nt))
6852 if (oldarg_ptr != NULL)
6853 *oldarg_ptr = ot;
6854 if (newarg_ptr != NULL)
6855 *newarg_ptr = nt;
6856 return 0;
6859 return 1;
6862 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
6863 of template arguments. Returns 0 otherwise. */
6866 comp_template_args (tree oldargs, tree newargs)
6868 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
6871 static void
6872 add_pending_template (tree d)
6874 tree ti = (TYPE_P (d)
6875 ? CLASSTYPE_TEMPLATE_INFO (d)
6876 : DECL_TEMPLATE_INFO (d));
6877 struct pending_template *pt;
6878 int level;
6880 if (TI_PENDING_TEMPLATE_FLAG (ti))
6881 return;
6883 /* We are called both from instantiate_decl, where we've already had a
6884 tinst_level pushed, and instantiate_template, where we haven't.
6885 Compensate. */
6886 level = !current_tinst_level || current_tinst_level->decl != d;
6888 if (level)
6889 push_tinst_level (d);
6891 pt = ggc_alloc_pending_template ();
6892 pt->next = NULL;
6893 pt->tinst = current_tinst_level;
6894 if (last_pending_template)
6895 last_pending_template->next = pt;
6896 else
6897 pending_templates = pt;
6899 last_pending_template = pt;
6901 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
6903 if (level)
6904 pop_tinst_level ();
6908 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
6909 ARGLIST. Valid choices for FNS are given in the cp-tree.def
6910 documentation for TEMPLATE_ID_EXPR. */
6912 tree
6913 lookup_template_function (tree fns, tree arglist)
6915 tree type;
6917 if (fns == error_mark_node || arglist == error_mark_node)
6918 return error_mark_node;
6920 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
6922 if (!is_overloaded_fn (fns) && TREE_CODE (fns) != IDENTIFIER_NODE)
6924 error ("%q#D is not a function template", fns);
6925 return error_mark_node;
6928 if (BASELINK_P (fns))
6930 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
6931 unknown_type_node,
6932 BASELINK_FUNCTIONS (fns),
6933 arglist);
6934 return fns;
6937 type = TREE_TYPE (fns);
6938 if (TREE_CODE (fns) == OVERLOAD || !type)
6939 type = unknown_type_node;
6941 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
6944 /* Within the scope of a template class S<T>, the name S gets bound
6945 (in build_self_reference) to a TYPE_DECL for the class, not a
6946 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
6947 or one of its enclosing classes, and that type is a template,
6948 return the associated TEMPLATE_DECL. Otherwise, the original
6949 DECL is returned.
6951 Also handle the case when DECL is a TREE_LIST of ambiguous
6952 injected-class-names from different bases. */
6954 tree
6955 maybe_get_template_decl_from_type_decl (tree decl)
6957 if (decl == NULL_TREE)
6958 return decl;
6960 /* DR 176: A lookup that finds an injected-class-name (10.2
6961 [class.member.lookup]) can result in an ambiguity in certain cases
6962 (for example, if it is found in more than one base class). If all of
6963 the injected-class-names that are found refer to specializations of
6964 the same class template, and if the name is followed by a
6965 template-argument-list, the reference refers to the class template
6966 itself and not a specialization thereof, and is not ambiguous. */
6967 if (TREE_CODE (decl) == TREE_LIST)
6969 tree t, tmpl = NULL_TREE;
6970 for (t = decl; t; t = TREE_CHAIN (t))
6972 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
6973 if (!tmpl)
6974 tmpl = elt;
6975 else if (tmpl != elt)
6976 break;
6978 if (tmpl && t == NULL_TREE)
6979 return tmpl;
6980 else
6981 return decl;
6984 return (decl != NULL_TREE
6985 && DECL_SELF_REFERENCE_P (decl)
6986 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
6987 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
6990 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
6991 parameters, find the desired type.
6993 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
6995 IN_DECL, if non-NULL, is the template declaration we are trying to
6996 instantiate.
6998 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
6999 the class we are looking up.
7001 Issue error and warning messages under control of COMPLAIN.
7003 If the template class is really a local class in a template
7004 function, then the FUNCTION_CONTEXT is the function in which it is
7005 being instantiated.
7007 ??? Note that this function is currently called *twice* for each
7008 template-id: the first time from the parser, while creating the
7009 incomplete type (finish_template_type), and the second type during the
7010 real instantiation (instantiate_template_class). This is surely something
7011 that we want to avoid. It also causes some problems with argument
7012 coercion (see convert_nontype_argument for more information on this). */
7014 static tree
7015 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7016 int entering_scope, tsubst_flags_t complain)
7018 tree templ = NULL_TREE, parmlist;
7019 tree t;
7020 void **slot;
7021 spec_entry *entry;
7022 spec_entry elt;
7023 hashval_t hash;
7025 if (TREE_CODE (d1) == IDENTIFIER_NODE)
7027 tree value = innermost_non_namespace_value (d1);
7028 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7029 templ = value;
7030 else
7032 if (context)
7033 push_decl_namespace (context);
7034 templ = lookup_name (d1);
7035 templ = maybe_get_template_decl_from_type_decl (templ);
7036 if (context)
7037 pop_decl_namespace ();
7039 if (templ)
7040 context = DECL_CONTEXT (templ);
7042 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7044 tree type = TREE_TYPE (d1);
7046 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7047 an implicit typename for the second A. Deal with it. */
7048 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7049 type = TREE_TYPE (type);
7051 if (CLASSTYPE_TEMPLATE_INFO (type))
7053 templ = CLASSTYPE_TI_TEMPLATE (type);
7054 d1 = DECL_NAME (templ);
7057 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7058 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7060 templ = TYPE_TI_TEMPLATE (d1);
7061 d1 = DECL_NAME (templ);
7063 else if (TREE_CODE (d1) == TEMPLATE_DECL
7064 && DECL_TEMPLATE_RESULT (d1)
7065 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
7067 templ = d1;
7068 d1 = DECL_NAME (templ);
7069 context = DECL_CONTEXT (templ);
7072 /* Issue an error message if we didn't find a template. */
7073 if (! templ)
7075 if (complain & tf_error)
7076 error ("%qT is not a template", d1);
7077 return error_mark_node;
7080 if (TREE_CODE (templ) != TEMPLATE_DECL
7081 /* Make sure it's a user visible template, if it was named by
7082 the user. */
7083 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7084 && !PRIMARY_TEMPLATE_P (templ)))
7086 if (complain & tf_error)
7088 error ("non-template type %qT used as a template", d1);
7089 if (in_decl)
7090 error ("for template declaration %q+D", in_decl);
7092 return error_mark_node;
7095 complain &= ~tf_user;
7097 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7099 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7100 template arguments */
7102 tree parm;
7103 tree arglist2;
7104 tree outer;
7106 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7108 /* Consider an example where a template template parameter declared as
7110 template <class T, class U = std::allocator<T> > class TT
7112 The template parameter level of T and U are one level larger than
7113 of TT. To proper process the default argument of U, say when an
7114 instantiation `TT<int>' is seen, we need to build the full
7115 arguments containing {int} as the innermost level. Outer levels,
7116 available when not appearing as default template argument, can be
7117 obtained from the arguments of the enclosing template.
7119 Suppose that TT is later substituted with std::vector. The above
7120 instantiation is `TT<int, std::allocator<T> >' with TT at
7121 level 1, and T at level 2, while the template arguments at level 1
7122 becomes {std::vector} and the inner level 2 is {int}. */
7124 outer = DECL_CONTEXT (templ);
7125 if (outer)
7126 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7127 else if (current_template_parms)
7128 /* This is an argument of the current template, so we haven't set
7129 DECL_CONTEXT yet. */
7130 outer = current_template_args ();
7132 if (outer)
7133 arglist = add_to_template_args (outer, arglist);
7135 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7136 complain,
7137 /*require_all_args=*/true,
7138 /*use_default_args=*/true);
7139 if (arglist2 == error_mark_node
7140 || (!uses_template_parms (arglist2)
7141 && check_instantiated_args (templ, arglist2, complain)))
7142 return error_mark_node;
7144 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7145 return parm;
7147 else
7149 tree template_type = TREE_TYPE (templ);
7150 tree gen_tmpl;
7151 tree type_decl;
7152 tree found = NULL_TREE;
7153 int arg_depth;
7154 int parm_depth;
7155 int is_dependent_type;
7156 int use_partial_inst_tmpl = false;
7158 if (template_type == error_mark_node)
7159 /* An error occured while building the template TEMPL, and a
7160 diagnostic has most certainly been emitted for that
7161 already. Let's propagate that error. */
7162 return error_mark_node;
7164 gen_tmpl = most_general_template (templ);
7165 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7166 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7167 arg_depth = TMPL_ARGS_DEPTH (arglist);
7169 if (arg_depth == 1 && parm_depth > 1)
7171 /* We've been given an incomplete set of template arguments.
7172 For example, given:
7174 template <class T> struct S1 {
7175 template <class U> struct S2 {};
7176 template <class U> struct S2<U*> {};
7179 we will be called with an ARGLIST of `U*', but the
7180 TEMPLATE will be `template <class T> template
7181 <class U> struct S1<T>::S2'. We must fill in the missing
7182 arguments. */
7183 arglist
7184 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7185 arglist);
7186 arg_depth = TMPL_ARGS_DEPTH (arglist);
7189 /* Now we should have enough arguments. */
7190 gcc_assert (parm_depth == arg_depth);
7192 /* From here on, we're only interested in the most general
7193 template. */
7195 /* Calculate the BOUND_ARGS. These will be the args that are
7196 actually tsubst'd into the definition to create the
7197 instantiation. */
7198 if (parm_depth > 1)
7200 /* We have multiple levels of arguments to coerce, at once. */
7201 int i;
7202 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7204 tree bound_args = make_tree_vec (parm_depth);
7206 for (i = saved_depth,
7207 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7208 i > 0 && t != NULL_TREE;
7209 --i, t = TREE_CHAIN (t))
7211 tree a;
7212 if (i == saved_depth)
7213 a = coerce_template_parms (TREE_VALUE (t),
7214 arglist, gen_tmpl,
7215 complain,
7216 /*require_all_args=*/true,
7217 /*use_default_args=*/true);
7218 else
7219 /* Outer levels should have already been coerced. */
7220 a = TMPL_ARGS_LEVEL (arglist, i);
7222 /* Don't process further if one of the levels fails. */
7223 if (a == error_mark_node)
7225 /* Restore the ARGLIST to its full size. */
7226 TREE_VEC_LENGTH (arglist) = saved_depth;
7227 return error_mark_node;
7230 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7232 /* We temporarily reduce the length of the ARGLIST so
7233 that coerce_template_parms will see only the arguments
7234 corresponding to the template parameters it is
7235 examining. */
7236 TREE_VEC_LENGTH (arglist)--;
7239 /* Restore the ARGLIST to its full size. */
7240 TREE_VEC_LENGTH (arglist) = saved_depth;
7242 arglist = bound_args;
7244 else
7245 arglist
7246 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7247 INNERMOST_TEMPLATE_ARGS (arglist),
7248 gen_tmpl,
7249 complain,
7250 /*require_all_args=*/true,
7251 /*use_default_args=*/true);
7253 if (arglist == error_mark_node)
7254 /* We were unable to bind the arguments. */
7255 return error_mark_node;
7257 /* In the scope of a template class, explicit references to the
7258 template class refer to the type of the template, not any
7259 instantiation of it. For example, in:
7261 template <class T> class C { void f(C<T>); }
7263 the `C<T>' is just the same as `C'. Outside of the
7264 class, however, such a reference is an instantiation. */
7265 if ((entering_scope
7266 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7267 || currently_open_class (template_type))
7268 /* comp_template_args is expensive, check it last. */
7269 && comp_template_args (TYPE_TI_ARGS (template_type),
7270 arglist))
7271 return template_type;
7273 /* If we already have this specialization, return it. */
7274 elt.tmpl = gen_tmpl;
7275 elt.args = arglist;
7276 hash = hash_specialization (&elt);
7277 entry = (spec_entry *) htab_find_with_hash (type_specializations,
7278 &elt, hash);
7280 if (entry)
7281 return entry->spec;
7283 is_dependent_type = uses_template_parms (arglist);
7285 /* If the deduced arguments are invalid, then the binding
7286 failed. */
7287 if (!is_dependent_type
7288 && check_instantiated_args (gen_tmpl,
7289 INNERMOST_TEMPLATE_ARGS (arglist),
7290 complain))
7291 return error_mark_node;
7293 if (!is_dependent_type
7294 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7295 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7296 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7298 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7299 DECL_NAME (gen_tmpl),
7300 /*tag_scope=*/ts_global);
7301 return found;
7304 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7305 complain, in_decl);
7306 if (context == error_mark_node)
7307 return error_mark_node;
7309 if (!context)
7310 context = global_namespace;
7312 /* Create the type. */
7313 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7315 if (!is_dependent_type)
7317 set_current_access_from_decl (TYPE_NAME (template_type));
7318 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7319 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7320 arglist, complain, in_decl),
7321 SCOPED_ENUM_P (template_type), NULL);
7323 else
7325 /* We don't want to call start_enum for this type, since
7326 the values for the enumeration constants may involve
7327 template parameters. And, no one should be interested
7328 in the enumeration constants for such a type. */
7329 t = cxx_make_type (ENUMERAL_TYPE);
7330 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7332 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7333 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7334 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7336 else if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7338 /* The user referred to a specialization of an alias
7339 template represented by GEN_TMPL.
7341 [temp.alias]/2 says:
7343 When a template-id refers to the specialization of an
7344 alias template, it is equivalent to the associated
7345 type obtained by substitution of its
7346 template-arguments for the template-parameters in the
7347 type-id of the alias template. */
7349 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7350 /* Note that the call above (by indirectly calling
7351 register_specialization in tsubst_decl) registers the
7352 TYPE_DECL representing the specialization of the alias
7353 template. So next time someone substitutes ARGLIST for
7354 the template parms into the alias template (GEN_TMPL),
7355 she'll get that TYPE_DECL back. */
7357 if (t == error_mark_node)
7358 return t;
7360 else if (CLASS_TYPE_P (template_type))
7362 t = make_class_type (TREE_CODE (template_type));
7363 CLASSTYPE_DECLARED_CLASS (t)
7364 = CLASSTYPE_DECLARED_CLASS (template_type);
7365 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7366 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7368 /* A local class. Make sure the decl gets registered properly. */
7369 if (context == current_function_decl)
7370 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7372 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7373 /* This instantiation is another name for the primary
7374 template type. Set the TYPE_CANONICAL field
7375 appropriately. */
7376 TYPE_CANONICAL (t) = template_type;
7377 else if (any_template_arguments_need_structural_equality_p (arglist))
7378 /* Some of the template arguments require structural
7379 equality testing, so this template class requires
7380 structural equality testing. */
7381 SET_TYPE_STRUCTURAL_EQUALITY (t);
7383 else
7384 gcc_unreachable ();
7386 /* If we called start_enum or pushtag above, this information
7387 will already be set up. */
7388 if (!TYPE_NAME (t))
7390 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7392 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7393 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7394 DECL_SOURCE_LOCATION (type_decl)
7395 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7397 else
7398 type_decl = TYPE_NAME (t);
7400 if (CLASS_TYPE_P (template_type))
7402 TREE_PRIVATE (type_decl)
7403 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7404 TREE_PROTECTED (type_decl)
7405 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7406 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7408 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7409 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7413 /* Let's consider the explicit specialization of a member
7414 of a class template specialization that is implicitely instantiated,
7415 e.g.:
7416 template<class T>
7417 struct S
7419 template<class U> struct M {}; //#0
7422 template<>
7423 template<>
7424 struct S<int>::M<char> //#1
7426 int i;
7428 [temp.expl.spec]/4 says this is valid.
7430 In this case, when we write:
7431 S<int>::M<char> m;
7433 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7434 the one of #0.
7436 When we encounter #1, we want to store the partial instantiation
7437 of M (template<class T> S<int>::M<T>) in it's CLASSTYPE_TI_TEMPLATE.
7439 For all cases other than this "explicit specialization of member of a
7440 class template", we just want to store the most general template into
7441 the CLASSTYPE_TI_TEMPLATE of M.
7443 This case of "explicit specialization of member of a class template"
7444 only happens when:
7445 1/ the enclosing class is an instantiation of, and therefore not
7446 the same as, the context of the most general template, and
7447 2/ we aren't looking at the partial instantiation itself, i.e.
7448 the innermost arguments are not the same as the innermost parms of
7449 the most general template.
7451 So it's only when 1/ and 2/ happens that we want to use the partial
7452 instantiation of the member template in lieu of its most general
7453 template. */
7455 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7456 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7457 /* the enclosing class must be an instantiation... */
7458 && CLASS_TYPE_P (context)
7459 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7461 tree partial_inst_args;
7462 TREE_VEC_LENGTH (arglist)--;
7463 ++processing_template_decl;
7464 partial_inst_args =
7465 tsubst (INNERMOST_TEMPLATE_ARGS
7466 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7467 arglist, complain, NULL_TREE);
7468 --processing_template_decl;
7469 TREE_VEC_LENGTH (arglist)++;
7470 use_partial_inst_tmpl =
7471 /*...and we must not be looking at the partial instantiation
7472 itself. */
7473 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7474 partial_inst_args);
7477 if (!use_partial_inst_tmpl)
7478 /* This case is easy; there are no member templates involved. */
7479 found = gen_tmpl;
7480 else
7482 /* This is a full instantiation of a member template. Find
7483 the partial instantiation of which this is an instance. */
7485 /* Temporarily reduce by one the number of levels in the ARGLIST
7486 so as to avoid comparing the last set of arguments. */
7487 TREE_VEC_LENGTH (arglist)--;
7488 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7489 TREE_VEC_LENGTH (arglist)++;
7490 /* FOUND is either a proper class type, or an alias
7491 template specialization. In the later case, it's a
7492 TYPE_DECL, resulting from the substituting of arguments
7493 for parameters in the TYPE_DECL of the alias template
7494 done earlier. So be careful while getting the template
7495 of FOUND. */
7496 found = TREE_CODE (found) == TYPE_DECL
7497 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
7498 : CLASSTYPE_TI_TEMPLATE (found);
7501 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
7503 elt.spec = t;
7504 slot = htab_find_slot_with_hash (type_specializations,
7505 &elt, hash, INSERT);
7506 entry = ggc_alloc_spec_entry ();
7507 *entry = elt;
7508 *slot = entry;
7510 /* Note this use of the partial instantiation so we can check it
7511 later in maybe_process_partial_specialization. */
7512 DECL_TEMPLATE_INSTANTIATIONS (templ)
7513 = tree_cons (arglist, t,
7514 DECL_TEMPLATE_INSTANTIATIONS (templ));
7516 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type)
7517 /* Now that the type has been registered on the instantiations
7518 list, we set up the enumerators. Because the enumeration
7519 constants may involve the enumeration type itself, we make
7520 sure to register the type first, and then create the
7521 constants. That way, doing tsubst_expr for the enumeration
7522 constants won't result in recursive calls here; we'll find
7523 the instantiation and exit above. */
7524 tsubst_enum (template_type, t, arglist);
7526 if (CLASS_TYPE_P (template_type) && is_dependent_type)
7527 /* If the type makes use of template parameters, the
7528 code that generates debugging information will crash. */
7529 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
7531 /* Possibly limit visibility based on template args. */
7532 TREE_PUBLIC (type_decl) = 1;
7533 determine_visibility (type_decl);
7535 return t;
7539 /* Wrapper for lookup_template_class_1. */
7541 tree
7542 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
7543 int entering_scope, tsubst_flags_t complain)
7545 tree ret;
7546 timevar_push (TV_TEMPLATE_INST);
7547 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
7548 entering_scope, complain);
7549 timevar_pop (TV_TEMPLATE_INST);
7550 return ret;
7553 struct pair_fn_data
7555 tree_fn_t fn;
7556 void *data;
7557 /* True when we should also visit template parameters that occur in
7558 non-deduced contexts. */
7559 bool include_nondeduced_p;
7560 struct pointer_set_t *visited;
7563 /* Called from for_each_template_parm via walk_tree. */
7565 static tree
7566 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
7568 tree t = *tp;
7569 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
7570 tree_fn_t fn = pfd->fn;
7571 void *data = pfd->data;
7573 if (TYPE_P (t)
7574 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
7575 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
7576 pfd->include_nondeduced_p))
7577 return error_mark_node;
7579 switch (TREE_CODE (t))
7581 case RECORD_TYPE:
7582 if (TYPE_PTRMEMFUNC_P (t))
7583 break;
7584 /* Fall through. */
7586 case UNION_TYPE:
7587 case ENUMERAL_TYPE:
7588 if (!TYPE_TEMPLATE_INFO (t))
7589 *walk_subtrees = 0;
7590 else if (for_each_template_parm (TI_ARGS (TYPE_TEMPLATE_INFO (t)),
7591 fn, data, pfd->visited,
7592 pfd->include_nondeduced_p))
7593 return error_mark_node;
7594 break;
7596 case INTEGER_TYPE:
7597 if (for_each_template_parm (TYPE_MIN_VALUE (t),
7598 fn, data, pfd->visited,
7599 pfd->include_nondeduced_p)
7600 || for_each_template_parm (TYPE_MAX_VALUE (t),
7601 fn, data, pfd->visited,
7602 pfd->include_nondeduced_p))
7603 return error_mark_node;
7604 break;
7606 case METHOD_TYPE:
7607 /* Since we're not going to walk subtrees, we have to do this
7608 explicitly here. */
7609 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
7610 pfd->visited, pfd->include_nondeduced_p))
7611 return error_mark_node;
7612 /* Fall through. */
7614 case FUNCTION_TYPE:
7615 /* Check the return type. */
7616 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7617 pfd->include_nondeduced_p))
7618 return error_mark_node;
7620 /* Check the parameter types. Since default arguments are not
7621 instantiated until they are needed, the TYPE_ARG_TYPES may
7622 contain expressions that involve template parameters. But,
7623 no-one should be looking at them yet. And, once they're
7624 instantiated, they don't contain template parameters, so
7625 there's no point in looking at them then, either. */
7627 tree parm;
7629 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
7630 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
7631 pfd->visited, pfd->include_nondeduced_p))
7632 return error_mark_node;
7634 /* Since we've already handled the TYPE_ARG_TYPES, we don't
7635 want walk_tree walking into them itself. */
7636 *walk_subtrees = 0;
7638 break;
7640 case TYPEOF_TYPE:
7641 case UNDERLYING_TYPE:
7642 if (pfd->include_nondeduced_p
7643 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
7644 pfd->visited,
7645 pfd->include_nondeduced_p))
7646 return error_mark_node;
7647 break;
7649 case FUNCTION_DECL:
7650 case VAR_DECL:
7651 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
7652 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
7653 pfd->visited, pfd->include_nondeduced_p))
7654 return error_mark_node;
7655 /* Fall through. */
7657 case PARM_DECL:
7658 case CONST_DECL:
7659 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
7660 && for_each_template_parm (DECL_INITIAL (t), fn, data,
7661 pfd->visited, pfd->include_nondeduced_p))
7662 return error_mark_node;
7663 if (DECL_CONTEXT (t)
7664 && pfd->include_nondeduced_p
7665 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
7666 pfd->visited, pfd->include_nondeduced_p))
7667 return error_mark_node;
7668 break;
7670 case BOUND_TEMPLATE_TEMPLATE_PARM:
7671 /* Record template parameters such as `T' inside `TT<T>'. */
7672 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
7673 pfd->include_nondeduced_p))
7674 return error_mark_node;
7675 /* Fall through. */
7677 case TEMPLATE_TEMPLATE_PARM:
7678 case TEMPLATE_TYPE_PARM:
7679 case TEMPLATE_PARM_INDEX:
7680 if (fn && (*fn)(t, data))
7681 return error_mark_node;
7682 else if (!fn)
7683 return error_mark_node;
7684 break;
7686 case TEMPLATE_DECL:
7687 /* A template template parameter is encountered. */
7688 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
7689 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7690 pfd->include_nondeduced_p))
7691 return error_mark_node;
7693 /* Already substituted template template parameter */
7694 *walk_subtrees = 0;
7695 break;
7697 case TYPENAME_TYPE:
7698 if (!fn
7699 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
7700 data, pfd->visited,
7701 pfd->include_nondeduced_p))
7702 return error_mark_node;
7703 break;
7705 case CONSTRUCTOR:
7706 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
7707 && pfd->include_nondeduced_p
7708 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
7709 (TREE_TYPE (t)), fn, data,
7710 pfd->visited, pfd->include_nondeduced_p))
7711 return error_mark_node;
7712 break;
7714 case INDIRECT_REF:
7715 case COMPONENT_REF:
7716 /* If there's no type, then this thing must be some expression
7717 involving template parameters. */
7718 if (!fn && !TREE_TYPE (t))
7719 return error_mark_node;
7720 break;
7722 case MODOP_EXPR:
7723 case CAST_EXPR:
7724 case IMPLICIT_CONV_EXPR:
7725 case REINTERPRET_CAST_EXPR:
7726 case CONST_CAST_EXPR:
7727 case STATIC_CAST_EXPR:
7728 case DYNAMIC_CAST_EXPR:
7729 case ARROW_EXPR:
7730 case DOTSTAR_EXPR:
7731 case TYPEID_EXPR:
7732 case PSEUDO_DTOR_EXPR:
7733 if (!fn)
7734 return error_mark_node;
7735 break;
7737 default:
7738 break;
7741 /* We didn't find any template parameters we liked. */
7742 return NULL_TREE;
7745 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
7746 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
7747 call FN with the parameter and the DATA.
7748 If FN returns nonzero, the iteration is terminated, and
7749 for_each_template_parm returns 1. Otherwise, the iteration
7750 continues. If FN never returns a nonzero value, the value
7751 returned by for_each_template_parm is 0. If FN is NULL, it is
7752 considered to be the function which always returns 1.
7754 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
7755 parameters that occur in non-deduced contexts. When false, only
7756 visits those template parameters that can be deduced. */
7758 static int
7759 for_each_template_parm (tree t, tree_fn_t fn, void* data,
7760 struct pointer_set_t *visited,
7761 bool include_nondeduced_p)
7763 struct pair_fn_data pfd;
7764 int result;
7766 /* Set up. */
7767 pfd.fn = fn;
7768 pfd.data = data;
7769 pfd.include_nondeduced_p = include_nondeduced_p;
7771 /* Walk the tree. (Conceptually, we would like to walk without
7772 duplicates, but for_each_template_parm_r recursively calls
7773 for_each_template_parm, so we would need to reorganize a fair
7774 bit to use walk_tree_without_duplicates, so we keep our own
7775 visited list.) */
7776 if (visited)
7777 pfd.visited = visited;
7778 else
7779 pfd.visited = pointer_set_create ();
7780 result = cp_walk_tree (&t,
7781 for_each_template_parm_r,
7782 &pfd,
7783 pfd.visited) != NULL_TREE;
7785 /* Clean up. */
7786 if (!visited)
7788 pointer_set_destroy (pfd.visited);
7789 pfd.visited = 0;
7792 return result;
7795 /* Returns true if T depends on any template parameter. */
7798 uses_template_parms (tree t)
7800 bool dependent_p;
7801 int saved_processing_template_decl;
7803 saved_processing_template_decl = processing_template_decl;
7804 if (!saved_processing_template_decl)
7805 processing_template_decl = 1;
7806 if (TYPE_P (t))
7807 dependent_p = dependent_type_p (t);
7808 else if (TREE_CODE (t) == TREE_VEC)
7809 dependent_p = any_dependent_template_arguments_p (t);
7810 else if (TREE_CODE (t) == TREE_LIST)
7811 dependent_p = (uses_template_parms (TREE_VALUE (t))
7812 || uses_template_parms (TREE_CHAIN (t)));
7813 else if (TREE_CODE (t) == TYPE_DECL)
7814 dependent_p = dependent_type_p (TREE_TYPE (t));
7815 else if (DECL_P (t)
7816 || EXPR_P (t)
7817 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
7818 || TREE_CODE (t) == OVERLOAD
7819 || BASELINK_P (t)
7820 || TREE_CODE (t) == IDENTIFIER_NODE
7821 || TREE_CODE (t) == TRAIT_EXPR
7822 || TREE_CODE (t) == CONSTRUCTOR
7823 || CONSTANT_CLASS_P (t))
7824 dependent_p = (type_dependent_expression_p (t)
7825 || value_dependent_expression_p (t));
7826 else
7828 gcc_assert (t == error_mark_node);
7829 dependent_p = false;
7832 processing_template_decl = saved_processing_template_decl;
7834 return dependent_p;
7837 /* Returns true iff current_function_decl is an incompletely instantiated
7838 template. Useful instead of processing_template_decl because the latter
7839 is set to 0 during fold_non_dependent_expr. */
7841 bool
7842 in_template_function (void)
7844 tree fn = current_function_decl;
7845 bool ret;
7846 ++processing_template_decl;
7847 ret = (fn && DECL_LANG_SPECIFIC (fn)
7848 && DECL_TEMPLATE_INFO (fn)
7849 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
7850 --processing_template_decl;
7851 return ret;
7854 /* Returns true if T depends on any template parameter with level LEVEL. */
7857 uses_template_parms_level (tree t, int level)
7859 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
7860 /*include_nondeduced_p=*/true);
7863 /* Returns TRUE iff INST is an instantiation we don't need to do in an
7864 ill-formed translation unit, i.e. a variable or function that isn't
7865 usable in a constant expression. */
7867 static inline bool
7868 neglectable_inst_p (tree d)
7870 return (DECL_P (d)
7871 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
7872 : decl_maybe_constant_var_p (d)));
7875 /* Returns TRUE iff we should refuse to instantiate DECL because it's
7876 neglectable and instantiated from within an erroneous instantiation. */
7878 static bool
7879 limit_bad_template_recursion (tree decl)
7881 struct tinst_level *lev = current_tinst_level;
7882 int errs = errorcount + sorrycount;
7883 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
7884 return false;
7886 for (; lev; lev = lev->next)
7887 if (neglectable_inst_p (lev->decl))
7888 break;
7890 return (lev && errs > lev->errors);
7893 static int tinst_depth;
7894 extern int max_tinst_depth;
7895 int depth_reached;
7897 static GTY(()) struct tinst_level *last_error_tinst_level;
7899 /* We're starting to instantiate D; record the template instantiation context
7900 for diagnostics and to restore it later. */
7903 push_tinst_level (tree d)
7905 struct tinst_level *new_level;
7907 if (tinst_depth >= max_tinst_depth)
7909 last_error_tinst_level = current_tinst_level;
7910 if (TREE_CODE (d) == TREE_LIST)
7911 error ("template instantiation depth exceeds maximum of %d (use "
7912 "-ftemplate-depth= to increase the maximum) substituting %qS",
7913 max_tinst_depth, d);
7914 else
7915 error ("template instantiation depth exceeds maximum of %d (use "
7916 "-ftemplate-depth= to increase the maximum) instantiating %qD",
7917 max_tinst_depth, d);
7919 print_instantiation_context ();
7921 return 0;
7924 /* If the current instantiation caused problems, don't let it instantiate
7925 anything else. Do allow deduction substitution and decls usable in
7926 constant expressions. */
7927 if (limit_bad_template_recursion (d))
7928 return 0;
7930 new_level = ggc_alloc_tinst_level ();
7931 new_level->decl = d;
7932 new_level->locus = input_location;
7933 new_level->errors = errorcount+sorrycount;
7934 new_level->in_system_header_p = in_system_header;
7935 new_level->next = current_tinst_level;
7936 current_tinst_level = new_level;
7938 ++tinst_depth;
7939 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
7940 depth_reached = tinst_depth;
7942 return 1;
7945 /* We're done instantiating this template; return to the instantiation
7946 context. */
7948 void
7949 pop_tinst_level (void)
7951 /* Restore the filename and line number stashed away when we started
7952 this instantiation. */
7953 input_location = current_tinst_level->locus;
7954 current_tinst_level = current_tinst_level->next;
7955 --tinst_depth;
7958 /* We're instantiating a deferred template; restore the template
7959 instantiation context in which the instantiation was requested, which
7960 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
7962 static tree
7963 reopen_tinst_level (struct tinst_level *level)
7965 struct tinst_level *t;
7967 tinst_depth = 0;
7968 for (t = level; t; t = t->next)
7969 ++tinst_depth;
7971 current_tinst_level = level;
7972 pop_tinst_level ();
7973 if (current_tinst_level)
7974 current_tinst_level->errors = errorcount+sorrycount;
7975 return level->decl;
7978 /* Returns the TINST_LEVEL which gives the original instantiation
7979 context. */
7981 struct tinst_level *
7982 outermost_tinst_level (void)
7984 struct tinst_level *level = current_tinst_level;
7985 if (level)
7986 while (level->next)
7987 level = level->next;
7988 return level;
7991 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
7992 vector of template arguments, as for tsubst.
7994 Returns an appropriate tsubst'd friend declaration. */
7996 static tree
7997 tsubst_friend_function (tree decl, tree args)
7999 tree new_friend;
8001 if (TREE_CODE (decl) == FUNCTION_DECL
8002 && DECL_TEMPLATE_INSTANTIATION (decl)
8003 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8004 /* This was a friend declared with an explicit template
8005 argument list, e.g.:
8007 friend void f<>(T);
8009 to indicate that f was a template instantiation, not a new
8010 function declaration. Now, we have to figure out what
8011 instantiation of what template. */
8013 tree template_id, arglist, fns;
8014 tree new_args;
8015 tree tmpl;
8016 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8018 /* Friend functions are looked up in the containing namespace scope.
8019 We must enter that scope, to avoid finding member functions of the
8020 current class with same name. */
8021 push_nested_namespace (ns);
8022 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8023 tf_warning_or_error, NULL_TREE,
8024 /*integral_constant_expression_p=*/false);
8025 pop_nested_namespace (ns);
8026 arglist = tsubst (DECL_TI_ARGS (decl), args,
8027 tf_warning_or_error, NULL_TREE);
8028 template_id = lookup_template_function (fns, arglist);
8030 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8031 tmpl = determine_specialization (template_id, new_friend,
8032 &new_args,
8033 /*need_member_template=*/0,
8034 TREE_VEC_LENGTH (args),
8035 tsk_none);
8036 return instantiate_template (tmpl, new_args, tf_error);
8039 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8041 /* The NEW_FRIEND will look like an instantiation, to the
8042 compiler, but is not an instantiation from the point of view of
8043 the language. For example, we might have had:
8045 template <class T> struct S {
8046 template <class U> friend void f(T, U);
8049 Then, in S<int>, template <class U> void f(int, U) is not an
8050 instantiation of anything. */
8051 if (new_friend == error_mark_node)
8052 return error_mark_node;
8054 DECL_USE_TEMPLATE (new_friend) = 0;
8055 if (TREE_CODE (decl) == TEMPLATE_DECL)
8057 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8058 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8059 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8062 /* The mangled name for the NEW_FRIEND is incorrect. The function
8063 is not a template instantiation and should not be mangled like
8064 one. Therefore, we forget the mangling here; we'll recompute it
8065 later if we need it. */
8066 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8068 SET_DECL_RTL (new_friend, NULL);
8069 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8072 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8074 tree old_decl;
8075 tree new_friend_template_info;
8076 tree new_friend_result_template_info;
8077 tree ns;
8078 int new_friend_is_defn;
8080 /* We must save some information from NEW_FRIEND before calling
8081 duplicate decls since that function will free NEW_FRIEND if
8082 possible. */
8083 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8084 new_friend_is_defn =
8085 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8086 (template_for_substitution (new_friend)))
8087 != NULL_TREE);
8088 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8090 /* This declaration is a `primary' template. */
8091 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8093 new_friend_result_template_info
8094 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8096 else
8097 new_friend_result_template_info = NULL_TREE;
8099 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8100 if (new_friend_is_defn)
8101 DECL_INITIAL (new_friend) = error_mark_node;
8103 /* Inside pushdecl_namespace_level, we will push into the
8104 current namespace. However, the friend function should go
8105 into the namespace of the template. */
8106 ns = decl_namespace_context (new_friend);
8107 push_nested_namespace (ns);
8108 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8109 pop_nested_namespace (ns);
8111 if (old_decl == error_mark_node)
8112 return error_mark_node;
8114 if (old_decl != new_friend)
8116 /* This new friend declaration matched an existing
8117 declaration. For example, given:
8119 template <class T> void f(T);
8120 template <class U> class C {
8121 template <class T> friend void f(T) {}
8124 the friend declaration actually provides the definition
8125 of `f', once C has been instantiated for some type. So,
8126 old_decl will be the out-of-class template declaration,
8127 while new_friend is the in-class definition.
8129 But, if `f' was called before this point, the
8130 instantiation of `f' will have DECL_TI_ARGS corresponding
8131 to `T' but not to `U', references to which might appear
8132 in the definition of `f'. Previously, the most general
8133 template for an instantiation of `f' was the out-of-class
8134 version; now it is the in-class version. Therefore, we
8135 run through all specialization of `f', adding to their
8136 DECL_TI_ARGS appropriately. In particular, they need a
8137 new set of outer arguments, corresponding to the
8138 arguments for this class instantiation.
8140 The same situation can arise with something like this:
8142 friend void f(int);
8143 template <class T> class C {
8144 friend void f(T) {}
8147 when `C<int>' is instantiated. Now, `f(int)' is defined
8148 in the class. */
8150 if (!new_friend_is_defn)
8151 /* On the other hand, if the in-class declaration does
8152 *not* provide a definition, then we don't want to alter
8153 existing definitions. We can just leave everything
8154 alone. */
8156 else
8158 tree new_template = TI_TEMPLATE (new_friend_template_info);
8159 tree new_args = TI_ARGS (new_friend_template_info);
8161 /* Overwrite whatever template info was there before, if
8162 any, with the new template information pertaining to
8163 the declaration. */
8164 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8166 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8168 /* We should have called reregister_specialization in
8169 duplicate_decls. */
8170 gcc_assert (retrieve_specialization (new_template,
8171 new_args, 0)
8172 == old_decl);
8174 /* Instantiate it if the global has already been used. */
8175 if (DECL_ODR_USED (old_decl))
8176 instantiate_decl (old_decl, /*defer_ok=*/true,
8177 /*expl_inst_class_mem_p=*/false);
8179 else
8181 tree t;
8183 /* Indicate that the old function template is a partial
8184 instantiation. */
8185 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8186 = new_friend_result_template_info;
8188 gcc_assert (new_template
8189 == most_general_template (new_template));
8190 gcc_assert (new_template != old_decl);
8192 /* Reassign any specializations already in the hash table
8193 to the new more general template, and add the
8194 additional template args. */
8195 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8196 t != NULL_TREE;
8197 t = TREE_CHAIN (t))
8199 tree spec = TREE_VALUE (t);
8200 spec_entry elt;
8202 elt.tmpl = old_decl;
8203 elt.args = DECL_TI_ARGS (spec);
8204 elt.spec = NULL_TREE;
8206 htab_remove_elt (decl_specializations, &elt);
8208 DECL_TI_ARGS (spec)
8209 = add_outermost_template_args (new_args,
8210 DECL_TI_ARGS (spec));
8212 register_specialization
8213 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8216 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8220 /* The information from NEW_FRIEND has been merged into OLD_DECL
8221 by duplicate_decls. */
8222 new_friend = old_decl;
8225 else
8227 tree context = DECL_CONTEXT (new_friend);
8228 bool dependent_p;
8230 /* In the code
8231 template <class T> class C {
8232 template <class U> friend void C1<U>::f (); // case 1
8233 friend void C2<T>::f (); // case 2
8235 we only need to make sure CONTEXT is a complete type for
8236 case 2. To distinguish between the two cases, we note that
8237 CONTEXT of case 1 remains dependent type after tsubst while
8238 this isn't true for case 2. */
8239 ++processing_template_decl;
8240 dependent_p = dependent_type_p (context);
8241 --processing_template_decl;
8243 if (!dependent_p
8244 && !complete_type_or_else (context, NULL_TREE))
8245 return error_mark_node;
8247 if (COMPLETE_TYPE_P (context))
8249 /* Check to see that the declaration is really present, and,
8250 possibly obtain an improved declaration. */
8251 tree fn = check_classfn (context,
8252 new_friend, NULL_TREE);
8254 if (fn)
8255 new_friend = fn;
8259 return new_friend;
8262 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8263 template arguments, as for tsubst.
8265 Returns an appropriate tsubst'd friend type or error_mark_node on
8266 failure. */
8268 static tree
8269 tsubst_friend_class (tree friend_tmpl, tree args)
8271 tree friend_type;
8272 tree tmpl;
8273 tree context;
8275 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8277 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8278 return TREE_TYPE (t);
8281 context = CP_DECL_CONTEXT (friend_tmpl);
8283 if (context != global_namespace)
8285 if (TREE_CODE (context) == NAMESPACE_DECL)
8286 push_nested_namespace (context);
8287 else
8288 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8291 /* Look for a class template declaration. We look for hidden names
8292 because two friend declarations of the same template are the
8293 same. For example, in:
8295 struct A {
8296 template <typename> friend class F;
8298 template <typename> struct B {
8299 template <typename> friend class F;
8302 both F templates are the same. */
8303 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8304 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8306 /* But, if we don't find one, it might be because we're in a
8307 situation like this:
8309 template <class T>
8310 struct S {
8311 template <class U>
8312 friend struct S;
8315 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8316 for `S<int>', not the TEMPLATE_DECL. */
8317 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8319 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8320 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8323 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8325 /* The friend template has already been declared. Just
8326 check to see that the declarations match, and install any new
8327 default parameters. We must tsubst the default parameters,
8328 of course. We only need the innermost template parameters
8329 because that is all that redeclare_class_template will look
8330 at. */
8331 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8332 > TMPL_ARGS_DEPTH (args))
8334 tree parms;
8335 location_t saved_input_location;
8336 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8337 args, tf_warning_or_error);
8339 saved_input_location = input_location;
8340 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8341 redeclare_class_template (TREE_TYPE (tmpl), parms);
8342 input_location = saved_input_location;
8346 friend_type = TREE_TYPE (tmpl);
8348 else
8350 /* The friend template has not already been declared. In this
8351 case, the instantiation of the template class will cause the
8352 injection of this template into the global scope. */
8353 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8354 if (tmpl == error_mark_node)
8355 return error_mark_node;
8357 /* The new TMPL is not an instantiation of anything, so we
8358 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8359 the new type because that is supposed to be the corresponding
8360 template decl, i.e., TMPL. */
8361 DECL_USE_TEMPLATE (tmpl) = 0;
8362 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8363 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8364 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8365 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8367 /* Inject this template into the global scope. */
8368 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8371 if (context != global_namespace)
8373 if (TREE_CODE (context) == NAMESPACE_DECL)
8374 pop_nested_namespace (context);
8375 else
8376 pop_nested_class ();
8379 return friend_type;
8382 /* Returns zero if TYPE cannot be completed later due to circularity.
8383 Otherwise returns one. */
8385 static int
8386 can_complete_type_without_circularity (tree type)
8388 if (type == NULL_TREE || type == error_mark_node)
8389 return 0;
8390 else if (COMPLETE_TYPE_P (type))
8391 return 1;
8392 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8393 return can_complete_type_without_circularity (TREE_TYPE (type));
8394 else if (CLASS_TYPE_P (type)
8395 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8396 return 0;
8397 else
8398 return 1;
8401 /* Apply any attributes which had to be deferred until instantiation
8402 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8403 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8405 static void
8406 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8407 tree args, tsubst_flags_t complain, tree in_decl)
8409 tree last_dep = NULL_TREE;
8410 tree t;
8411 tree *p;
8413 for (t = attributes; t; t = TREE_CHAIN (t))
8414 if (ATTR_IS_DEPENDENT (t))
8416 last_dep = t;
8417 attributes = copy_list (attributes);
8418 break;
8421 if (DECL_P (*decl_p))
8423 if (TREE_TYPE (*decl_p) == error_mark_node)
8424 return;
8425 p = &DECL_ATTRIBUTES (*decl_p);
8427 else
8428 p = &TYPE_ATTRIBUTES (*decl_p);
8430 if (last_dep)
8432 tree late_attrs = NULL_TREE;
8433 tree *q = &late_attrs;
8435 for (*p = attributes; *p; )
8437 t = *p;
8438 if (ATTR_IS_DEPENDENT (t))
8440 *p = TREE_CHAIN (t);
8441 TREE_CHAIN (t) = NULL_TREE;
8442 /* If the first attribute argument is an identifier, don't
8443 pass it through tsubst. Attributes like mode, format,
8444 cleanup and several target specific attributes expect it
8445 unmodified. */
8446 if (TREE_VALUE (t)
8447 && TREE_CODE (TREE_VALUE (t)) == TREE_LIST
8448 && TREE_VALUE (TREE_VALUE (t))
8449 && (TREE_CODE (TREE_VALUE (TREE_VALUE (t)))
8450 == IDENTIFIER_NODE))
8452 tree chain
8453 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
8454 in_decl,
8455 /*integral_constant_expression_p=*/false);
8456 if (chain != TREE_CHAIN (TREE_VALUE (t)))
8457 TREE_VALUE (t)
8458 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
8459 chain);
8461 else
8462 TREE_VALUE (t)
8463 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
8464 /*integral_constant_expression_p=*/false);
8465 *q = t;
8466 q = &TREE_CHAIN (t);
8468 else
8469 p = &TREE_CHAIN (t);
8472 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
8476 /* Perform (or defer) access check for typedefs that were referenced
8477 from within the template TMPL code.
8478 This is a subroutine of instantiate_decl and instantiate_class_template.
8479 TMPL is the template to consider and TARGS is the list of arguments of
8480 that template. */
8482 static void
8483 perform_typedefs_access_check (tree tmpl, tree targs)
8485 location_t saved_location;
8486 unsigned i;
8487 qualified_typedef_usage_t *iter;
8489 if (!tmpl
8490 || (!CLASS_TYPE_P (tmpl)
8491 && TREE_CODE (tmpl) != FUNCTION_DECL))
8492 return;
8494 saved_location = input_location;
8495 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
8497 tree type_decl = iter->typedef_decl;
8498 tree type_scope = iter->context;
8500 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
8501 continue;
8503 if (uses_template_parms (type_decl))
8504 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
8505 if (uses_template_parms (type_scope))
8506 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
8508 /* Make access check error messages point to the location
8509 of the use of the typedef. */
8510 input_location = iter->locus;
8511 perform_or_defer_access_check (TYPE_BINFO (type_scope),
8512 type_decl, type_decl,
8513 tf_warning_or_error);
8515 input_location = saved_location;
8518 static tree
8519 instantiate_class_template_1 (tree type)
8521 tree templ, args, pattern, t, member;
8522 tree typedecl;
8523 tree pbinfo;
8524 tree base_list;
8525 unsigned int saved_maximum_field_alignment;
8526 tree fn_context;
8528 if (type == error_mark_node)
8529 return error_mark_node;
8531 if (COMPLETE_OR_OPEN_TYPE_P (type)
8532 || uses_template_parms (type))
8533 return type;
8535 /* Figure out which template is being instantiated. */
8536 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
8537 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
8539 /* Determine what specialization of the original template to
8540 instantiate. */
8541 t = most_specialized_class (type, templ, tf_warning_or_error);
8542 if (t == error_mark_node)
8544 TYPE_BEING_DEFINED (type) = 1;
8545 return error_mark_node;
8547 else if (t)
8549 /* This TYPE is actually an instantiation of a partial
8550 specialization. We replace the innermost set of ARGS with
8551 the arguments appropriate for substitution. For example,
8552 given:
8554 template <class T> struct S {};
8555 template <class T> struct S<T*> {};
8557 and supposing that we are instantiating S<int*>, ARGS will
8558 presently be {int*} -- but we need {int}. */
8559 pattern = TREE_TYPE (t);
8560 args = TREE_PURPOSE (t);
8562 else
8564 pattern = TREE_TYPE (templ);
8565 args = CLASSTYPE_TI_ARGS (type);
8568 /* If the template we're instantiating is incomplete, then clearly
8569 there's nothing we can do. */
8570 if (!COMPLETE_TYPE_P (pattern))
8571 return type;
8573 /* If we've recursively instantiated too many templates, stop. */
8574 if (! push_tinst_level (type))
8575 return type;
8577 /* Now we're really doing the instantiation. Mark the type as in
8578 the process of being defined. */
8579 TYPE_BEING_DEFINED (type) = 1;
8581 /* We may be in the middle of deferred access check. Disable
8582 it now. */
8583 push_deferring_access_checks (dk_no_deferred);
8585 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
8586 if (!fn_context)
8587 push_to_top_level ();
8588 /* Use #pragma pack from the template context. */
8589 saved_maximum_field_alignment = maximum_field_alignment;
8590 maximum_field_alignment = TYPE_PRECISION (pattern);
8592 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
8594 /* Set the input location to the most specialized template definition.
8595 This is needed if tsubsting causes an error. */
8596 typedecl = TYPE_MAIN_DECL (pattern);
8597 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
8598 DECL_SOURCE_LOCATION (typedecl);
8600 TYPE_PACKED (type) = TYPE_PACKED (pattern);
8601 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
8602 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
8603 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
8604 if (ANON_AGGR_TYPE_P (pattern))
8605 SET_ANON_AGGR_TYPE_P (type);
8606 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
8608 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
8609 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
8610 /* Adjust visibility for template arguments. */
8611 determine_visibility (TYPE_MAIN_DECL (type));
8613 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
8615 pbinfo = TYPE_BINFO (pattern);
8617 /* We should never instantiate a nested class before its enclosing
8618 class; we need to look up the nested class by name before we can
8619 instantiate it, and that lookup should instantiate the enclosing
8620 class. */
8621 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
8622 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
8624 base_list = NULL_TREE;
8625 if (BINFO_N_BASE_BINFOS (pbinfo))
8627 tree pbase_binfo;
8628 tree pushed_scope;
8629 int i;
8631 /* We must enter the scope containing the type, as that is where
8632 the accessibility of types named in dependent bases are
8633 looked up from. */
8634 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
8636 /* Substitute into each of the bases to determine the actual
8637 basetypes. */
8638 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
8640 tree base;
8641 tree access = BINFO_BASE_ACCESS (pbinfo, i);
8642 tree expanded_bases = NULL_TREE;
8643 int idx, len = 1;
8645 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
8647 expanded_bases =
8648 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
8649 args, tf_error, NULL_TREE);
8650 if (expanded_bases == error_mark_node)
8651 continue;
8653 len = TREE_VEC_LENGTH (expanded_bases);
8656 for (idx = 0; idx < len; idx++)
8658 if (expanded_bases)
8659 /* Extract the already-expanded base class. */
8660 base = TREE_VEC_ELT (expanded_bases, idx);
8661 else
8662 /* Substitute to figure out the base class. */
8663 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
8664 NULL_TREE);
8666 if (base == error_mark_node)
8667 continue;
8669 base_list = tree_cons (access, base, base_list);
8670 if (BINFO_VIRTUAL_P (pbase_binfo))
8671 TREE_TYPE (base_list) = integer_type_node;
8675 /* The list is now in reverse order; correct that. */
8676 base_list = nreverse (base_list);
8678 if (pushed_scope)
8679 pop_scope (pushed_scope);
8681 /* Now call xref_basetypes to set up all the base-class
8682 information. */
8683 xref_basetypes (type, base_list);
8685 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
8686 (int) ATTR_FLAG_TYPE_IN_PLACE,
8687 args, tf_error, NULL_TREE);
8688 fixup_attribute_variants (type);
8690 /* Now that our base classes are set up, enter the scope of the
8691 class, so that name lookups into base classes, etc. will work
8692 correctly. This is precisely analogous to what we do in
8693 begin_class_definition when defining an ordinary non-template
8694 class, except we also need to push the enclosing classes. */
8695 push_nested_class (type);
8697 /* Now members are processed in the order of declaration. */
8698 for (member = CLASSTYPE_DECL_LIST (pattern);
8699 member; member = TREE_CHAIN (member))
8701 tree t = TREE_VALUE (member);
8703 if (TREE_PURPOSE (member))
8705 if (TYPE_P (t))
8707 /* Build new CLASSTYPE_NESTED_UTDS. */
8709 tree newtag;
8710 bool class_template_p;
8712 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
8713 && TYPE_LANG_SPECIFIC (t)
8714 && CLASSTYPE_IS_TEMPLATE (t));
8715 /* If the member is a class template, then -- even after
8716 substitution -- there may be dependent types in the
8717 template argument list for the class. We increment
8718 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
8719 that function will assume that no types are dependent
8720 when outside of a template. */
8721 if (class_template_p)
8722 ++processing_template_decl;
8723 newtag = tsubst (t, args, tf_error, NULL_TREE);
8724 if (class_template_p)
8725 --processing_template_decl;
8726 if (newtag == error_mark_node)
8727 continue;
8729 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
8731 tree name = TYPE_IDENTIFIER (t);
8733 if (class_template_p)
8734 /* Unfortunately, lookup_template_class sets
8735 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
8736 instantiation (i.e., for the type of a member
8737 template class nested within a template class.)
8738 This behavior is required for
8739 maybe_process_partial_specialization to work
8740 correctly, but is not accurate in this case;
8741 the TAG is not an instantiation of anything.
8742 (The corresponding TEMPLATE_DECL is an
8743 instantiation, but the TYPE is not.) */
8744 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
8746 /* Now, we call pushtag to put this NEWTAG into the scope of
8747 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
8748 pushtag calling push_template_decl. We don't have to do
8749 this for enums because it will already have been done in
8750 tsubst_enum. */
8751 if (name)
8752 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
8753 pushtag (name, newtag, /*tag_scope=*/ts_current);
8756 else if (TREE_CODE (t) == FUNCTION_DECL
8757 || DECL_FUNCTION_TEMPLATE_P (t))
8759 /* Build new TYPE_METHODS. */
8760 tree r;
8762 if (TREE_CODE (t) == TEMPLATE_DECL)
8763 ++processing_template_decl;
8764 r = tsubst (t, args, tf_error, NULL_TREE);
8765 if (TREE_CODE (t) == TEMPLATE_DECL)
8766 --processing_template_decl;
8767 set_current_access_from_decl (r);
8768 finish_member_declaration (r);
8769 /* Instantiate members marked with attribute used. */
8770 if (r != error_mark_node && DECL_PRESERVE_P (r))
8771 mark_used (r);
8773 else
8775 /* Build new TYPE_FIELDS. */
8776 if (TREE_CODE (t) == STATIC_ASSERT)
8778 tree condition;
8780 ++c_inhibit_evaluation_warnings;
8781 condition =
8782 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
8783 tf_warning_or_error, NULL_TREE,
8784 /*integral_constant_expression_p=*/true);
8785 --c_inhibit_evaluation_warnings;
8787 finish_static_assert (condition,
8788 STATIC_ASSERT_MESSAGE (t),
8789 STATIC_ASSERT_SOURCE_LOCATION (t),
8790 /*member_p=*/true);
8792 else if (TREE_CODE (t) != CONST_DECL)
8794 tree r;
8796 /* The file and line for this declaration, to
8797 assist in error message reporting. Since we
8798 called push_tinst_level above, we don't need to
8799 restore these. */
8800 input_location = DECL_SOURCE_LOCATION (t);
8802 if (TREE_CODE (t) == TEMPLATE_DECL)
8803 ++processing_template_decl;
8804 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
8805 if (TREE_CODE (t) == TEMPLATE_DECL)
8806 --processing_template_decl;
8807 if (TREE_CODE (r) == VAR_DECL)
8809 /* In [temp.inst]:
8811 [t]he initialization (and any associated
8812 side-effects) of a static data member does
8813 not occur unless the static data member is
8814 itself used in a way that requires the
8815 definition of the static data member to
8816 exist.
8818 Therefore, we do not substitute into the
8819 initialized for the static data member here. */
8820 finish_static_data_member_decl
8822 /*init=*/NULL_TREE,
8823 /*init_const_expr_p=*/false,
8824 /*asmspec_tree=*/NULL_TREE,
8825 /*flags=*/0);
8826 /* Instantiate members marked with attribute used. */
8827 if (r != error_mark_node && DECL_PRESERVE_P (r))
8828 mark_used (r);
8830 else if (TREE_CODE (r) == FIELD_DECL)
8832 /* Determine whether R has a valid type and can be
8833 completed later. If R is invalid, then it is
8834 replaced by error_mark_node so that it will not be
8835 added to TYPE_FIELDS. */
8836 tree rtype = TREE_TYPE (r);
8837 if (can_complete_type_without_circularity (rtype))
8838 complete_type (rtype);
8840 if (!COMPLETE_TYPE_P (rtype))
8842 cxx_incomplete_type_error (r, rtype);
8843 r = error_mark_node;
8847 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
8848 such a thing will already have been added to the field
8849 list by tsubst_enum in finish_member_declaration in the
8850 CLASSTYPE_NESTED_UTDS case above. */
8851 if (!(TREE_CODE (r) == TYPE_DECL
8852 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
8853 && DECL_ARTIFICIAL (r)))
8855 set_current_access_from_decl (r);
8856 finish_member_declaration (r);
8861 else
8863 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
8864 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8866 /* Build new CLASSTYPE_FRIEND_CLASSES. */
8868 tree friend_type = t;
8869 bool adjust_processing_template_decl = false;
8871 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8873 /* template <class T> friend class C; */
8874 friend_type = tsubst_friend_class (friend_type, args);
8875 adjust_processing_template_decl = true;
8877 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
8879 /* template <class T> friend class C::D; */
8880 friend_type = tsubst (friend_type, args,
8881 tf_warning_or_error, NULL_TREE);
8882 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8883 friend_type = TREE_TYPE (friend_type);
8884 adjust_processing_template_decl = true;
8886 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
8887 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
8889 /* This could be either
8891 friend class T::C;
8893 when dependent_type_p is false or
8895 template <class U> friend class T::C;
8897 otherwise. */
8898 friend_type = tsubst (friend_type, args,
8899 tf_warning_or_error, NULL_TREE);
8900 /* Bump processing_template_decl for correct
8901 dependent_type_p calculation. */
8902 ++processing_template_decl;
8903 if (dependent_type_p (friend_type))
8904 adjust_processing_template_decl = true;
8905 --processing_template_decl;
8907 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
8908 && hidden_name_p (TYPE_NAME (friend_type)))
8910 /* friend class C;
8912 where C hasn't been declared yet. Let's lookup name
8913 from namespace scope directly, bypassing any name that
8914 come from dependent base class. */
8915 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
8917 /* The call to xref_tag_from_type does injection for friend
8918 classes. */
8919 push_nested_namespace (ns);
8920 friend_type =
8921 xref_tag_from_type (friend_type, NULL_TREE,
8922 /*tag_scope=*/ts_current);
8923 pop_nested_namespace (ns);
8925 else if (uses_template_parms (friend_type))
8926 /* friend class C<T>; */
8927 friend_type = tsubst (friend_type, args,
8928 tf_warning_or_error, NULL_TREE);
8929 /* Otherwise it's
8931 friend class C;
8933 where C is already declared or
8935 friend class C<int>;
8937 We don't have to do anything in these cases. */
8939 if (adjust_processing_template_decl)
8940 /* Trick make_friend_class into realizing that the friend
8941 we're adding is a template, not an ordinary class. It's
8942 important that we use make_friend_class since it will
8943 perform some error-checking and output cross-reference
8944 information. */
8945 ++processing_template_decl;
8947 if (friend_type != error_mark_node)
8948 make_friend_class (type, friend_type, /*complain=*/false);
8950 if (adjust_processing_template_decl)
8951 --processing_template_decl;
8953 else
8955 /* Build new DECL_FRIENDLIST. */
8956 tree r;
8958 /* The file and line for this declaration, to
8959 assist in error message reporting. Since we
8960 called push_tinst_level above, we don't need to
8961 restore these. */
8962 input_location = DECL_SOURCE_LOCATION (t);
8964 if (TREE_CODE (t) == TEMPLATE_DECL)
8966 ++processing_template_decl;
8967 push_deferring_access_checks (dk_no_check);
8970 r = tsubst_friend_function (t, args);
8971 add_friend (type, r, /*complain=*/false);
8972 if (TREE_CODE (t) == TEMPLATE_DECL)
8974 pop_deferring_access_checks ();
8975 --processing_template_decl;
8981 if (CLASSTYPE_LAMBDA_EXPR (type))
8983 tree decl = lambda_function (type);
8984 if (decl)
8986 instantiate_decl (decl, false, false);
8987 maybe_add_lambda_conv_op (type);
8989 else
8990 gcc_assert (errorcount);
8993 /* Set the file and line number information to whatever is given for
8994 the class itself. This puts error messages involving generated
8995 implicit functions at a predictable point, and the same point
8996 that would be used for non-template classes. */
8997 input_location = DECL_SOURCE_LOCATION (typedecl);
8999 unreverse_member_declarations (type);
9000 finish_struct_1 (type);
9001 TYPE_BEING_DEFINED (type) = 0;
9003 /* We don't instantiate default arguments for member functions. 14.7.1:
9005 The implicit instantiation of a class template specialization causes
9006 the implicit instantiation of the declarations, but not of the
9007 definitions or default arguments, of the class member functions,
9008 member classes, static data members and member templates.... */
9010 /* Some typedefs referenced from within the template code need to be access
9011 checked at template instantiation time, i.e now. These types were
9012 added to the template at parsing time. Let's get those and perform
9013 the access checks then. */
9014 perform_typedefs_access_check (pattern, args);
9015 perform_deferred_access_checks (tf_warning_or_error);
9016 pop_nested_class ();
9017 maximum_field_alignment = saved_maximum_field_alignment;
9018 if (!fn_context)
9019 pop_from_top_level ();
9020 pop_deferring_access_checks ();
9021 pop_tinst_level ();
9023 /* The vtable for a template class can be emitted in any translation
9024 unit in which the class is instantiated. When there is no key
9025 method, however, finish_struct_1 will already have added TYPE to
9026 the keyed_classes list. */
9027 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9028 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9030 return type;
9033 /* Wrapper for instantiate_class_template_1. */
9035 tree
9036 instantiate_class_template (tree type)
9038 tree ret;
9039 timevar_push (TV_TEMPLATE_INST);
9040 ret = instantiate_class_template_1 (type);
9041 timevar_pop (TV_TEMPLATE_INST);
9042 return ret;
9045 static tree
9046 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9048 tree r;
9050 if (!t)
9051 r = t;
9052 else if (TYPE_P (t))
9053 r = tsubst (t, args, complain, in_decl);
9054 else
9056 if (!(complain & tf_warning))
9057 ++c_inhibit_evaluation_warnings;
9058 r = tsubst_expr (t, args, complain, in_decl,
9059 /*integral_constant_expression_p=*/true);
9060 if (!(complain & tf_warning))
9061 --c_inhibit_evaluation_warnings;
9062 /* Preserve the raw-reference nature of T. */
9063 if (TREE_TYPE (t) && TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
9064 && REFERENCE_REF_P (r))
9065 r = TREE_OPERAND (r, 0);
9067 return r;
9070 /* Given a function parameter pack TMPL_PARM and some function parameters
9071 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9072 and set *SPEC_P to point at the next point in the list. */
9074 static tree
9075 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9077 /* Collect all of the extra "packed" parameters into an
9078 argument pack. */
9079 tree parmvec;
9080 tree parmtypevec;
9081 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9082 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9083 tree spec_parm = *spec_p;
9084 int i, len;
9086 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9087 if (tmpl_parm
9088 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9089 break;
9091 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9092 parmvec = make_tree_vec (len);
9093 parmtypevec = make_tree_vec (len);
9094 spec_parm = *spec_p;
9095 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9097 TREE_VEC_ELT (parmvec, i) = spec_parm;
9098 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9101 /* Build the argument packs. */
9102 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9103 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9104 TREE_TYPE (argpack) = argtypepack;
9105 *spec_p = spec_parm;
9107 return argpack;
9110 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9111 NONTYPE_ARGUMENT_PACK. */
9113 static tree
9114 make_fnparm_pack (tree spec_parm)
9116 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9119 /* Return true iff the Ith element of the argument pack ARG_PACK is a
9120 pack expansion. */
9122 static bool
9123 argument_pack_element_is_expansion_p (tree arg_pack, int i)
9125 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
9126 if (i >= TREE_VEC_LENGTH (vec))
9127 return false;
9128 return PACK_EXPANSION_P (TREE_VEC_ELT (vec, i));
9132 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
9134 static tree
9135 make_argument_pack_select (tree arg_pack, unsigned index)
9137 tree aps = make_node (ARGUMENT_PACK_SELECT);
9139 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
9140 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9142 return aps;
9145 /* This is a subroutine of tsubst_pack_expansion.
9147 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
9148 mechanism to store the (non complete list of) arguments of the
9149 substitution and return a non substituted pack expansion, in order
9150 to wait for when we have enough arguments to really perform the
9151 substitution. */
9153 static bool
9154 use_pack_expansion_extra_args_p (tree parm_packs,
9155 int arg_pack_len,
9156 bool has_empty_arg)
9158 if (parm_packs == NULL_TREE)
9159 return false;
9161 bool has_expansion_arg = false;
9162 for (int i = 0 ; i < arg_pack_len; ++i)
9164 bool has_non_expansion_arg = false;
9165 for (tree parm_pack = parm_packs;
9166 parm_pack;
9167 parm_pack = TREE_CHAIN (parm_pack))
9169 tree arg = TREE_VALUE (parm_pack);
9171 if (argument_pack_element_is_expansion_p (arg, i))
9172 has_expansion_arg = true;
9173 else
9174 has_non_expansion_arg = true;
9177 /* If one pack has an expansion and another pack has a normal
9178 argument or if one pack has an empty argument another one
9179 hasn't then tsubst_pack_expansion cannot perform the
9180 substitution and need to fall back on the
9181 PACK_EXPANSION_EXTRA mechanism. */
9182 if ((has_expansion_arg && has_non_expansion_arg)
9183 || (has_empty_arg && (has_expansion_arg || has_non_expansion_arg)))
9184 return true;
9186 return false;
9189 /* [temp.variadic]/6 says that:
9191 The instantiation of a pack expansion [...]
9192 produces a list E1,E2, ..., En, where N is the number of elements
9193 in the pack expansion parameters.
9195 This subroutine of tsubst_pack_expansion produces one of these Ei.
9197 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
9198 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
9199 PATTERN, and each TREE_VALUE is its corresponding argument pack.
9200 INDEX is the index 'i' of the element Ei to produce. ARGS,
9201 COMPLAIN, and IN_DECL are the same parameters as for the
9202 tsubst_pack_expansion function.
9204 The function returns the resulting Ei upon successful completion,
9205 or error_mark_node.
9207 Note that this function possibly modifies the ARGS parameter, so
9208 it's the responsibility of the caller to restore it. */
9210 static tree
9211 gen_elem_of_pack_expansion_instantiation (tree pattern,
9212 tree parm_packs,
9213 unsigned index,
9214 tree args /* This parm gets
9215 modified. */,
9216 tsubst_flags_t complain,
9217 tree in_decl)
9219 tree t;
9220 bool ith_elem_is_expansion = false;
9222 /* For each parameter pack, change the substitution of the parameter
9223 pack to the ith argument in its argument pack, then expand the
9224 pattern. */
9225 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
9227 tree parm = TREE_PURPOSE (pack);
9228 tree arg_pack = TREE_VALUE (pack);
9229 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
9231 ith_elem_is_expansion |=
9232 argument_pack_element_is_expansion_p (arg_pack, index);
9234 /* Select the Ith argument from the pack. */
9235 if (TREE_CODE (parm) == PARM_DECL)
9237 if (index == 0)
9239 aps = make_argument_pack_select (arg_pack, index);
9240 mark_used (parm);
9241 register_local_specialization (aps, parm);
9243 else
9244 aps = retrieve_local_specialization (parm);
9246 else
9248 int idx, level;
9249 template_parm_level_and_index (parm, &level, &idx);
9251 if (index == 0)
9253 aps = make_argument_pack_select (arg_pack, index);
9254 /* Update the corresponding argument. */
9255 TMPL_ARG (args, level, idx) = aps;
9257 else
9258 /* Re-use the ARGUMENT_PACK_SELECT. */
9259 aps = TMPL_ARG (args, level, idx);
9261 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9264 /* Substitute into the PATTERN with the (possibly altered)
9265 arguments. */
9266 if (!TYPE_P (pattern))
9267 t = tsubst_expr (pattern, args, complain, in_decl,
9268 /*integral_constant_expression_p=*/false);
9269 else
9270 t = tsubst (pattern, args, complain, in_decl);
9272 /* If the Ith argument pack element is a pack expansion, then
9273 the Ith element resulting from the substituting is going to
9274 be a pack expansion as well. */
9275 if (ith_elem_is_expansion)
9276 t = make_pack_expansion (t);
9278 return t;
9281 /* Substitute ARGS into T, which is an pack expansion
9282 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9283 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9284 (if only a partial substitution could be performed) or
9285 ERROR_MARK_NODE if there was an error. */
9286 tree
9287 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9288 tree in_decl)
9290 tree pattern;
9291 tree pack, packs = NULL_TREE;
9292 bool unsubstituted_packs = false;
9293 int i, len = -1;
9294 tree result;
9295 struct pointer_map_t *saved_local_specializations = NULL;
9296 bool need_local_specializations = false;
9297 int levels;
9299 gcc_assert (PACK_EXPANSION_P (t));
9300 pattern = PACK_EXPANSION_PATTERN (t);
9302 /* Add in any args remembered from an earlier partial instantiation. */
9303 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9305 levels = TMPL_ARGS_DEPTH (args);
9307 /* Determine the argument packs that will instantiate the parameter
9308 packs used in the expansion expression. While we're at it,
9309 compute the number of arguments to be expanded and make sure it
9310 is consistent. */
9311 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9312 pack = TREE_CHAIN (pack))
9314 tree parm_pack = TREE_VALUE (pack);
9315 tree arg_pack = NULL_TREE;
9316 tree orig_arg = NULL_TREE;
9317 int level = 0;
9319 if (TREE_CODE (parm_pack) == BASES)
9321 if (BASES_DIRECT (parm_pack))
9322 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9323 args, complain, in_decl, false));
9324 else
9325 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9326 args, complain, in_decl, false));
9328 if (TREE_CODE (parm_pack) == PARM_DECL)
9330 if (PACK_EXPANSION_LOCAL_P (t))
9331 arg_pack = retrieve_local_specialization (parm_pack);
9332 else
9334 /* We can't rely on local_specializations for a parameter
9335 name used later in a function declaration (such as in a
9336 late-specified return type). Even if it exists, it might
9337 have the wrong value for a recursive call. Just make a
9338 dummy decl, since it's only used for its type. */
9339 arg_pack = tsubst_decl (parm_pack, args, complain);
9340 if (arg_pack && FUNCTION_PARAMETER_PACK_P (arg_pack))
9341 /* Partial instantiation of the parm_pack, we can't build
9342 up an argument pack yet. */
9343 arg_pack = NULL_TREE;
9344 else
9345 arg_pack = make_fnparm_pack (arg_pack);
9346 need_local_specializations = true;
9349 else
9351 int idx;
9352 template_parm_level_and_index (parm_pack, &level, &idx);
9354 if (level <= levels)
9355 arg_pack = TMPL_ARG (args, level, idx);
9358 orig_arg = arg_pack;
9359 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9360 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9362 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9363 /* This can only happen if we forget to expand an argument
9364 pack somewhere else. Just return an error, silently. */
9366 result = make_tree_vec (1);
9367 TREE_VEC_ELT (result, 0) = error_mark_node;
9368 return result;
9371 if (arg_pack)
9373 int my_len =
9374 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9376 /* Don't bother trying to do a partial substitution with
9377 incomplete packs; we'll try again after deduction. */
9378 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9379 return t;
9381 if (len < 0)
9382 len = my_len;
9383 else if (len != my_len)
9385 if (!(complain & tf_error))
9386 /* Fail quietly. */;
9387 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9388 error ("mismatched argument pack lengths while expanding "
9389 "%<%T%>",
9390 pattern);
9391 else
9392 error ("mismatched argument pack lengths while expanding "
9393 "%<%E%>",
9394 pattern);
9395 return error_mark_node;
9398 /* Keep track of the parameter packs and their corresponding
9399 argument packs. */
9400 packs = tree_cons (parm_pack, arg_pack, packs);
9401 TREE_TYPE (packs) = orig_arg;
9403 else
9405 /* We can't substitute for this parameter pack. We use a flag as
9406 well as the missing_level counter because function parameter
9407 packs don't have a level. */
9408 unsubstituted_packs = true;
9412 /* We cannot expand this expansion expression, because we don't have
9413 all of the argument packs we need. */
9414 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
9416 /* We got some full packs, but we can't substitute them in until we
9417 have values for all the packs. So remember these until then. */
9419 t = make_pack_expansion (pattern);
9420 PACK_EXPANSION_EXTRA_ARGS (t) = args;
9421 return t;
9423 else if (unsubstituted_packs)
9425 /* There were no real arguments, we're just replacing a parameter
9426 pack with another version of itself. Substitute into the
9427 pattern and return a PACK_EXPANSION_*. The caller will need to
9428 deal with that. */
9429 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
9430 t = tsubst_expr (pattern, args, complain, in_decl,
9431 /*integral_constant_expression_p=*/false);
9432 else
9433 t = tsubst (pattern, args, complain, in_decl);
9434 t = make_pack_expansion (t);
9435 return t;
9438 gcc_assert (len >= 0);
9440 if (need_local_specializations)
9442 /* We're in a late-specified return type, so create our own local
9443 specializations map; the current map is either NULL or (in the
9444 case of recursive unification) might have bindings that we don't
9445 want to use or alter. */
9446 saved_local_specializations = local_specializations;
9447 local_specializations = pointer_map_create ();
9450 /* For each argument in each argument pack, substitute into the
9451 pattern. */
9452 result = make_tree_vec (len);
9453 for (i = 0; i < len; ++i)
9455 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
9457 args, complain,
9458 in_decl);
9459 TREE_VEC_ELT (result, i) = t;
9460 if (t == error_mark_node)
9462 result = error_mark_node;
9463 break;
9467 /* Update ARGS to restore the substitution from parameter packs to
9468 their argument packs. */
9469 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9471 tree parm = TREE_PURPOSE (pack);
9473 if (TREE_CODE (parm) == PARM_DECL)
9474 register_local_specialization (TREE_TYPE (pack), parm);
9475 else
9477 int idx, level;
9479 if (TREE_VALUE (pack) == NULL_TREE)
9480 continue;
9482 template_parm_level_and_index (parm, &level, &idx);
9484 /* Update the corresponding argument. */
9485 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
9486 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
9487 TREE_TYPE (pack);
9488 else
9489 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
9493 if (need_local_specializations)
9495 pointer_map_destroy (local_specializations);
9496 local_specializations = saved_local_specializations;
9499 return result;
9502 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
9503 TMPL. We do this using DECL_PARM_INDEX, which should work even with
9504 parameter packs; all parms generated from a function parameter pack will
9505 have the same DECL_PARM_INDEX. */
9507 tree
9508 get_pattern_parm (tree parm, tree tmpl)
9510 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
9511 tree patparm;
9513 if (DECL_ARTIFICIAL (parm))
9515 for (patparm = DECL_ARGUMENTS (pattern);
9516 patparm; patparm = DECL_CHAIN (patparm))
9517 if (DECL_ARTIFICIAL (patparm)
9518 && DECL_NAME (parm) == DECL_NAME (patparm))
9519 break;
9521 else
9523 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
9524 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
9525 gcc_assert (DECL_PARM_INDEX (patparm)
9526 == DECL_PARM_INDEX (parm));
9529 return patparm;
9532 /* Substitute ARGS into the vector or list of template arguments T. */
9534 static tree
9535 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9537 tree orig_t = t;
9538 int len, need_new = 0, i, expanded_len_adjust = 0, out;
9539 tree *elts;
9541 if (t == error_mark_node)
9542 return error_mark_node;
9544 len = TREE_VEC_LENGTH (t);
9545 elts = XALLOCAVEC (tree, len);
9547 for (i = 0; i < len; i++)
9549 tree orig_arg = TREE_VEC_ELT (t, i);
9550 tree new_arg;
9552 if (TREE_CODE (orig_arg) == TREE_VEC)
9553 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
9554 else if (PACK_EXPANSION_P (orig_arg))
9556 /* Substitute into an expansion expression. */
9557 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
9559 if (TREE_CODE (new_arg) == TREE_VEC)
9560 /* Add to the expanded length adjustment the number of
9561 expanded arguments. We subtract one from this
9562 measurement, because the argument pack expression
9563 itself is already counted as 1 in
9564 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
9565 the argument pack is empty. */
9566 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
9568 else if (ARGUMENT_PACK_P (orig_arg))
9570 /* Substitute into each of the arguments. */
9571 new_arg = TYPE_P (orig_arg)
9572 ? cxx_make_type (TREE_CODE (orig_arg))
9573 : make_node (TREE_CODE (orig_arg));
9575 SET_ARGUMENT_PACK_ARGS (
9576 new_arg,
9577 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
9578 args, complain, in_decl));
9580 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
9581 new_arg = error_mark_node;
9583 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
9584 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
9585 complain, in_decl);
9586 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
9588 if (TREE_TYPE (new_arg) == error_mark_node)
9589 new_arg = error_mark_node;
9592 else
9593 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
9595 if (new_arg == error_mark_node)
9596 return error_mark_node;
9598 elts[i] = new_arg;
9599 if (new_arg != orig_arg)
9600 need_new = 1;
9603 if (!need_new)
9604 return t;
9606 /* Make space for the expanded arguments coming from template
9607 argument packs. */
9608 t = make_tree_vec (len + expanded_len_adjust);
9609 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
9610 arguments for a member template.
9611 In that case each TREE_VEC in ORIG_T represents a level of template
9612 arguments, and ORIG_T won't carry any non defaulted argument count.
9613 It will rather be the nested TREE_VECs that will carry one.
9614 In other words, ORIG_T carries a non defaulted argument count only
9615 if it doesn't contain any nested TREE_VEC. */
9616 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
9618 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
9619 count += expanded_len_adjust;
9620 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
9622 for (i = 0, out = 0; i < len; i++)
9624 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
9625 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
9626 && TREE_CODE (elts[i]) == TREE_VEC)
9628 int idx;
9630 /* Now expand the template argument pack "in place". */
9631 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
9632 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
9634 else
9636 TREE_VEC_ELT (t, out) = elts[i];
9637 out++;
9641 return t;
9644 /* Return the result of substituting ARGS into the template parameters
9645 given by PARMS. If there are m levels of ARGS and m + n levels of
9646 PARMS, then the result will contain n levels of PARMS. For
9647 example, if PARMS is `template <class T> template <class U>
9648 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
9649 result will be `template <int*, double, class V>'. */
9651 static tree
9652 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
9654 tree r = NULL_TREE;
9655 tree* new_parms;
9657 /* When substituting into a template, we must set
9658 PROCESSING_TEMPLATE_DECL as the template parameters may be
9659 dependent if they are based on one-another, and the dependency
9660 predicates are short-circuit outside of templates. */
9661 ++processing_template_decl;
9663 for (new_parms = &r;
9664 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
9665 new_parms = &(TREE_CHAIN (*new_parms)),
9666 parms = TREE_CHAIN (parms))
9668 tree new_vec =
9669 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
9670 int i;
9672 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
9674 tree tuple;
9676 if (parms == error_mark_node)
9677 continue;
9679 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
9681 if (tuple == error_mark_node)
9682 continue;
9684 TREE_VEC_ELT (new_vec, i) =
9685 tsubst_template_parm (tuple, args, complain);
9688 *new_parms =
9689 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
9690 - TMPL_ARGS_DEPTH (args)),
9691 new_vec, NULL_TREE);
9694 --processing_template_decl;
9696 return r;
9699 /* Return the result of substituting ARGS into one template parameter
9700 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
9701 parameter and which TREE_PURPOSE is the default argument of the
9702 template parameter. */
9704 static tree
9705 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
9707 tree default_value, parm_decl;
9709 if (args == NULL_TREE
9710 || t == NULL_TREE
9711 || t == error_mark_node)
9712 return t;
9714 gcc_assert (TREE_CODE (t) == TREE_LIST);
9716 default_value = TREE_PURPOSE (t);
9717 parm_decl = TREE_VALUE (t);
9719 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
9720 if (TREE_CODE (parm_decl) == PARM_DECL
9721 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
9722 parm_decl = error_mark_node;
9723 default_value = tsubst_template_arg (default_value, args,
9724 complain, NULL_TREE);
9726 return build_tree_list (default_value, parm_decl);
9729 /* Substitute the ARGS into the indicated aggregate (or enumeration)
9730 type T. If T is not an aggregate or enumeration type, it is
9731 handled as if by tsubst. IN_DECL is as for tsubst. If
9732 ENTERING_SCOPE is nonzero, T is the context for a template which
9733 we are presently tsubst'ing. Return the substituted value. */
9735 static tree
9736 tsubst_aggr_type (tree t,
9737 tree args,
9738 tsubst_flags_t complain,
9739 tree in_decl,
9740 int entering_scope)
9742 if (t == NULL_TREE)
9743 return NULL_TREE;
9745 switch (TREE_CODE (t))
9747 case RECORD_TYPE:
9748 if (TYPE_PTRMEMFUNC_P (t))
9749 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
9751 /* Else fall through. */
9752 case ENUMERAL_TYPE:
9753 case UNION_TYPE:
9754 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
9756 tree argvec;
9757 tree context;
9758 tree r;
9759 int saved_unevaluated_operand;
9760 int saved_inhibit_evaluation_warnings;
9762 /* In "sizeof(X<I>)" we need to evaluate "I". */
9763 saved_unevaluated_operand = cp_unevaluated_operand;
9764 cp_unevaluated_operand = 0;
9765 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9766 c_inhibit_evaluation_warnings = 0;
9768 /* First, determine the context for the type we are looking
9769 up. */
9770 context = TYPE_CONTEXT (t);
9771 if (context && TYPE_P (context))
9773 context = tsubst_aggr_type (context, args, complain,
9774 in_decl, /*entering_scope=*/1);
9775 /* If context is a nested class inside a class template,
9776 it may still need to be instantiated (c++/33959). */
9777 context = complete_type (context);
9780 /* Then, figure out what arguments are appropriate for the
9781 type we are trying to find. For example, given:
9783 template <class T> struct S;
9784 template <class T, class U> void f(T, U) { S<U> su; }
9786 and supposing that we are instantiating f<int, double>,
9787 then our ARGS will be {int, double}, but, when looking up
9788 S we only want {double}. */
9789 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
9790 complain, in_decl);
9791 if (argvec == error_mark_node)
9792 r = error_mark_node;
9793 else
9795 r = lookup_template_class (t, argvec, in_decl, context,
9796 entering_scope, complain);
9797 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
9800 cp_unevaluated_operand = saved_unevaluated_operand;
9801 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
9803 return r;
9805 else
9806 /* This is not a template type, so there's nothing to do. */
9807 return t;
9809 default:
9810 return tsubst (t, args, complain, in_decl);
9814 /* Substitute into the default argument ARG (a default argument for
9815 FN), which has the indicated TYPE. */
9817 tree
9818 tsubst_default_argument (tree fn, tree type, tree arg)
9820 tree saved_class_ptr = NULL_TREE;
9821 tree saved_class_ref = NULL_TREE;
9822 int errs = errorcount + sorrycount;
9824 /* This can happen in invalid code. */
9825 if (TREE_CODE (arg) == DEFAULT_ARG)
9826 return arg;
9828 /* This default argument came from a template. Instantiate the
9829 default argument here, not in tsubst. In the case of
9830 something like:
9832 template <class T>
9833 struct S {
9834 static T t();
9835 void f(T = t());
9838 we must be careful to do name lookup in the scope of S<T>,
9839 rather than in the current class. */
9840 push_access_scope (fn);
9841 /* The "this" pointer is not valid in a default argument. */
9842 if (cfun)
9844 saved_class_ptr = current_class_ptr;
9845 cp_function_chain->x_current_class_ptr = NULL_TREE;
9846 saved_class_ref = current_class_ref;
9847 cp_function_chain->x_current_class_ref = NULL_TREE;
9850 push_deferring_access_checks(dk_no_deferred);
9851 /* The default argument expression may cause implicitly defined
9852 member functions to be synthesized, which will result in garbage
9853 collection. We must treat this situation as if we were within
9854 the body of function so as to avoid collecting live data on the
9855 stack. */
9856 ++function_depth;
9857 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
9858 tf_warning_or_error, NULL_TREE,
9859 /*integral_constant_expression_p=*/false);
9860 --function_depth;
9861 pop_deferring_access_checks();
9863 /* Restore the "this" pointer. */
9864 if (cfun)
9866 cp_function_chain->x_current_class_ptr = saved_class_ptr;
9867 cp_function_chain->x_current_class_ref = saved_class_ref;
9870 if (errorcount+sorrycount > errs)
9871 inform (input_location,
9872 " when instantiating default argument for call to %D", fn);
9874 /* Make sure the default argument is reasonable. */
9875 arg = check_default_argument (type, arg);
9877 pop_access_scope (fn);
9879 return arg;
9882 /* Substitute into all the default arguments for FN. */
9884 static void
9885 tsubst_default_arguments (tree fn)
9887 tree arg;
9888 tree tmpl_args;
9890 tmpl_args = DECL_TI_ARGS (fn);
9892 /* If this function is not yet instantiated, we certainly don't need
9893 its default arguments. */
9894 if (uses_template_parms (tmpl_args))
9895 return;
9896 /* Don't do this again for clones. */
9897 if (DECL_CLONED_FUNCTION_P (fn))
9898 return;
9900 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
9901 arg;
9902 arg = TREE_CHAIN (arg))
9903 if (TREE_PURPOSE (arg))
9904 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
9905 TREE_VALUE (arg),
9906 TREE_PURPOSE (arg));
9909 /* Substitute the ARGS into the T, which is a _DECL. Return the
9910 result of the substitution. Issue error and warning messages under
9911 control of COMPLAIN. */
9913 static tree
9914 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
9916 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
9917 location_t saved_loc;
9918 tree r = NULL_TREE;
9919 tree in_decl = t;
9920 hashval_t hash = 0;
9922 /* Set the filename and linenumber to improve error-reporting. */
9923 saved_loc = input_location;
9924 input_location = DECL_SOURCE_LOCATION (t);
9926 switch (TREE_CODE (t))
9928 case TEMPLATE_DECL:
9930 /* We can get here when processing a member function template,
9931 member class template, or template template parameter. */
9932 tree decl = DECL_TEMPLATE_RESULT (t);
9933 tree spec;
9934 tree tmpl_args;
9935 tree full_args;
9937 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9939 /* Template template parameter is treated here. */
9940 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
9941 if (new_type == error_mark_node)
9942 RETURN (error_mark_node);
9943 /* If we get a real template back, return it. This can happen in
9944 the context of most_specialized_class. */
9945 if (TREE_CODE (new_type) == TEMPLATE_DECL)
9946 return new_type;
9948 r = copy_decl (t);
9949 DECL_CHAIN (r) = NULL_TREE;
9950 TREE_TYPE (r) = new_type;
9951 DECL_TEMPLATE_RESULT (r)
9952 = build_decl (DECL_SOURCE_LOCATION (decl),
9953 TYPE_DECL, DECL_NAME (decl), new_type);
9954 DECL_TEMPLATE_PARMS (r)
9955 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
9956 complain);
9957 TYPE_NAME (new_type) = r;
9958 break;
9961 /* We might already have an instance of this template.
9962 The ARGS are for the surrounding class type, so the
9963 full args contain the tsubst'd args for the context,
9964 plus the innermost args from the template decl. */
9965 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
9966 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
9967 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
9968 /* Because this is a template, the arguments will still be
9969 dependent, even after substitution. If
9970 PROCESSING_TEMPLATE_DECL is not set, the dependency
9971 predicates will short-circuit. */
9972 ++processing_template_decl;
9973 full_args = tsubst_template_args (tmpl_args, args,
9974 complain, in_decl);
9975 --processing_template_decl;
9976 if (full_args == error_mark_node)
9977 RETURN (error_mark_node);
9979 /* If this is a default template template argument,
9980 tsubst might not have changed anything. */
9981 if (full_args == tmpl_args)
9982 RETURN (t);
9984 hash = hash_tmpl_and_args (t, full_args);
9985 spec = retrieve_specialization (t, full_args, hash);
9986 if (spec != NULL_TREE)
9988 r = spec;
9989 break;
9992 /* Make a new template decl. It will be similar to the
9993 original, but will record the current template arguments.
9994 We also create a new function declaration, which is just
9995 like the old one, but points to this new template, rather
9996 than the old one. */
9997 r = copy_decl (t);
9998 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
9999 DECL_CHAIN (r) = NULL_TREE;
10001 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10003 if (TREE_CODE (decl) == TYPE_DECL
10004 && !TYPE_DECL_ALIAS_P (decl))
10006 tree new_type;
10007 ++processing_template_decl;
10008 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10009 --processing_template_decl;
10010 if (new_type == error_mark_node)
10011 RETURN (error_mark_node);
10013 TREE_TYPE (r) = new_type;
10014 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10015 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10016 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10017 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10019 else
10021 tree new_decl;
10022 ++processing_template_decl;
10023 new_decl = tsubst (decl, args, complain, in_decl);
10024 --processing_template_decl;
10025 if (new_decl == error_mark_node)
10026 RETURN (error_mark_node);
10028 DECL_TEMPLATE_RESULT (r) = new_decl;
10029 DECL_TI_TEMPLATE (new_decl) = r;
10030 TREE_TYPE (r) = TREE_TYPE (new_decl);
10031 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10032 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10035 SET_DECL_IMPLICIT_INSTANTIATION (r);
10036 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10037 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10039 /* The template parameters for this new template are all the
10040 template parameters for the old template, except the
10041 outermost level of parameters. */
10042 DECL_TEMPLATE_PARMS (r)
10043 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10044 complain);
10046 if (PRIMARY_TEMPLATE_P (t))
10047 DECL_PRIMARY_TEMPLATE (r) = r;
10049 if (TREE_CODE (decl) != TYPE_DECL)
10050 /* Record this non-type partial instantiation. */
10051 register_specialization (r, t,
10052 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10053 false, hash);
10055 break;
10057 case FUNCTION_DECL:
10059 tree ctx;
10060 tree argvec = NULL_TREE;
10061 tree *friends;
10062 tree gen_tmpl;
10063 tree type;
10064 int member;
10065 int args_depth;
10066 int parms_depth;
10068 /* Nobody should be tsubst'ing into non-template functions. */
10069 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10071 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10073 tree spec;
10074 bool dependent_p;
10076 /* If T is not dependent, just return it. We have to
10077 increment PROCESSING_TEMPLATE_DECL because
10078 value_dependent_expression_p assumes that nothing is
10079 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10080 ++processing_template_decl;
10081 dependent_p = value_dependent_expression_p (t);
10082 --processing_template_decl;
10083 if (!dependent_p)
10084 RETURN (t);
10086 /* Calculate the most general template of which R is a
10087 specialization, and the complete set of arguments used to
10088 specialize R. */
10089 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10090 argvec = tsubst_template_args (DECL_TI_ARGS
10091 (DECL_TEMPLATE_RESULT
10092 (DECL_TI_TEMPLATE (t))),
10093 args, complain, in_decl);
10094 if (argvec == error_mark_node)
10095 RETURN (error_mark_node);
10097 /* Check to see if we already have this specialization. */
10098 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10099 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10101 if (spec)
10103 r = spec;
10104 break;
10107 /* We can see more levels of arguments than parameters if
10108 there was a specialization of a member template, like
10109 this:
10111 template <class T> struct S { template <class U> void f(); }
10112 template <> template <class U> void S<int>::f(U);
10114 Here, we'll be substituting into the specialization,
10115 because that's where we can find the code we actually
10116 want to generate, but we'll have enough arguments for
10117 the most general template.
10119 We also deal with the peculiar case:
10121 template <class T> struct S {
10122 template <class U> friend void f();
10124 template <class U> void f() {}
10125 template S<int>;
10126 template void f<double>();
10128 Here, the ARGS for the instantiation of will be {int,
10129 double}. But, we only need as many ARGS as there are
10130 levels of template parameters in CODE_PATTERN. We are
10131 careful not to get fooled into reducing the ARGS in
10132 situations like:
10134 template <class T> struct S { template <class U> void f(U); }
10135 template <class T> template <> void S<T>::f(int) {}
10137 which we can spot because the pattern will be a
10138 specialization in this case. */
10139 args_depth = TMPL_ARGS_DEPTH (args);
10140 parms_depth =
10141 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10142 if (args_depth > parms_depth
10143 && !DECL_TEMPLATE_SPECIALIZATION (t))
10144 args = get_innermost_template_args (args, parms_depth);
10146 else
10148 /* This special case arises when we have something like this:
10150 template <class T> struct S {
10151 friend void f<int>(int, double);
10154 Here, the DECL_TI_TEMPLATE for the friend declaration
10155 will be an IDENTIFIER_NODE. We are being called from
10156 tsubst_friend_function, and we want only to create a
10157 new decl (R) with appropriate types so that we can call
10158 determine_specialization. */
10159 gen_tmpl = NULL_TREE;
10162 if (DECL_CLASS_SCOPE_P (t))
10164 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10165 member = 2;
10166 else
10167 member = 1;
10168 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10169 complain, t, /*entering_scope=*/1);
10171 else
10173 member = 0;
10174 ctx = DECL_CONTEXT (t);
10176 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10177 if (type == error_mark_node)
10178 RETURN (error_mark_node);
10180 /* If we hit excessive deduction depth, the type is bogus even if
10181 it isn't error_mark_node, so don't build a decl. */
10182 if (excessive_deduction_depth)
10183 RETURN (error_mark_node);
10185 /* We do NOT check for matching decls pushed separately at this
10186 point, as they may not represent instantiations of this
10187 template, and in any case are considered separate under the
10188 discrete model. */
10189 r = copy_decl (t);
10190 DECL_USE_TEMPLATE (r) = 0;
10191 TREE_TYPE (r) = type;
10192 /* Clear out the mangled name and RTL for the instantiation. */
10193 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10194 SET_DECL_RTL (r, NULL);
10195 /* Leave DECL_INITIAL set on deleted instantiations. */
10196 if (!DECL_DELETED_FN (r))
10197 DECL_INITIAL (r) = NULL_TREE;
10198 DECL_CONTEXT (r) = ctx;
10200 if (member && DECL_CONV_FN_P (r))
10201 /* Type-conversion operator. Reconstruct the name, in
10202 case it's the name of one of the template's parameters. */
10203 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10205 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10206 complain, t);
10207 DECL_RESULT (r) = NULL_TREE;
10209 TREE_STATIC (r) = 0;
10210 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10211 DECL_EXTERNAL (r) = 1;
10212 /* If this is an instantiation of a function with internal
10213 linkage, we already know what object file linkage will be
10214 assigned to the instantiation. */
10215 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10216 DECL_DEFER_OUTPUT (r) = 0;
10217 DECL_CHAIN (r) = NULL_TREE;
10218 DECL_PENDING_INLINE_INFO (r) = 0;
10219 DECL_PENDING_INLINE_P (r) = 0;
10220 DECL_SAVED_TREE (r) = NULL_TREE;
10221 DECL_STRUCT_FUNCTION (r) = NULL;
10222 TREE_USED (r) = 0;
10223 /* We'll re-clone as appropriate in instantiate_template. */
10224 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10226 /* If we aren't complaining now, return on error before we register
10227 the specialization so that we'll complain eventually. */
10228 if ((complain & tf_error) == 0
10229 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10230 && !grok_op_properties (r, /*complain=*/false))
10231 RETURN (error_mark_node);
10233 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10234 this in the special friend case mentioned above where
10235 GEN_TMPL is NULL. */
10236 if (gen_tmpl)
10238 DECL_TEMPLATE_INFO (r)
10239 = build_template_info (gen_tmpl, argvec);
10240 SET_DECL_IMPLICIT_INSTANTIATION (r);
10241 register_specialization (r, gen_tmpl, argvec, false, hash);
10243 /* We're not supposed to instantiate default arguments
10244 until they are called, for a template. But, for a
10245 declaration like:
10247 template <class T> void f ()
10248 { extern void g(int i = T()); }
10250 we should do the substitution when the template is
10251 instantiated. We handle the member function case in
10252 instantiate_class_template since the default arguments
10253 might refer to other members of the class. */
10254 if (!member
10255 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10256 && !uses_template_parms (argvec))
10257 tsubst_default_arguments (r);
10259 else
10260 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10262 /* Copy the list of befriending classes. */
10263 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10264 *friends;
10265 friends = &TREE_CHAIN (*friends))
10267 *friends = copy_node (*friends);
10268 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10269 args, complain,
10270 in_decl);
10273 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10275 maybe_retrofit_in_chrg (r);
10276 if (DECL_CONSTRUCTOR_P (r))
10277 grok_ctor_properties (ctx, r);
10278 if (DECL_INHERITED_CTOR_BASE (r))
10279 deduce_inheriting_ctor (r);
10280 /* If this is an instantiation of a member template, clone it.
10281 If it isn't, that'll be handled by
10282 clone_constructors_and_destructors. */
10283 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10284 clone_function_decl (r, /*update_method_vec_p=*/0);
10286 else if ((complain & tf_error) != 0
10287 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10288 && !grok_op_properties (r, /*complain=*/true))
10289 RETURN (error_mark_node);
10291 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10292 SET_DECL_FRIEND_CONTEXT (r,
10293 tsubst (DECL_FRIEND_CONTEXT (t),
10294 args, complain, in_decl));
10296 /* Possibly limit visibility based on template args. */
10297 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10298 if (DECL_VISIBILITY_SPECIFIED (t))
10300 DECL_VISIBILITY_SPECIFIED (r) = 0;
10301 DECL_ATTRIBUTES (r)
10302 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10304 determine_visibility (r);
10305 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10306 && !processing_template_decl)
10307 defaulted_late_check (r);
10309 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10310 args, complain, in_decl);
10312 break;
10314 case PARM_DECL:
10316 tree type = NULL_TREE;
10317 int i, len = 1;
10318 tree expanded_types = NULL_TREE;
10319 tree prev_r = NULL_TREE;
10320 tree first_r = NULL_TREE;
10322 if (FUNCTION_PARAMETER_PACK_P (t))
10324 /* If there is a local specialization that isn't a
10325 parameter pack, it means that we're doing a "simple"
10326 substitution from inside tsubst_pack_expansion. Just
10327 return the local specialization (which will be a single
10328 parm). */
10329 tree spec = retrieve_local_specialization (t);
10330 if (spec
10331 && TREE_CODE (spec) == PARM_DECL
10332 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10333 RETURN (spec);
10335 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10336 the parameters in this function parameter pack. */
10337 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10338 complain, in_decl);
10339 if (TREE_CODE (expanded_types) == TREE_VEC)
10341 len = TREE_VEC_LENGTH (expanded_types);
10343 /* Zero-length parameter packs are boring. Just substitute
10344 into the chain. */
10345 if (len == 0)
10346 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10347 TREE_CHAIN (t)));
10349 else
10351 /* All we did was update the type. Make a note of that. */
10352 type = expanded_types;
10353 expanded_types = NULL_TREE;
10357 /* Loop through all of the parameter's we'll build. When T is
10358 a function parameter pack, LEN is the number of expanded
10359 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10360 r = NULL_TREE;
10361 for (i = 0; i < len; ++i)
10363 prev_r = r;
10364 r = copy_node (t);
10365 if (DECL_TEMPLATE_PARM_P (t))
10366 SET_DECL_TEMPLATE_PARM_P (r);
10368 if (expanded_types)
10369 /* We're on the Ith parameter of the function parameter
10370 pack. */
10372 /* An argument of a function parameter pack is not a parameter
10373 pack. */
10374 FUNCTION_PARAMETER_PACK_P (r) = false;
10376 /* Get the Ith type. */
10377 type = TREE_VEC_ELT (expanded_types, i);
10379 /* Rename the parameter to include the index. */
10380 DECL_NAME (r)
10381 = make_ith_pack_parameter_name (DECL_NAME (r), i);
10383 else if (!type)
10384 /* We're dealing with a normal parameter. */
10385 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10387 type = type_decays_to (type);
10388 TREE_TYPE (r) = type;
10389 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10391 if (DECL_INITIAL (r))
10393 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
10394 DECL_INITIAL (r) = TREE_TYPE (r);
10395 else
10396 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
10397 complain, in_decl);
10400 DECL_CONTEXT (r) = NULL_TREE;
10402 if (!DECL_TEMPLATE_PARM_P (r))
10403 DECL_ARG_TYPE (r) = type_passed_as (type);
10405 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10406 args, complain, in_decl);
10408 /* Keep track of the first new parameter we
10409 generate. That's what will be returned to the
10410 caller. */
10411 if (!first_r)
10412 first_r = r;
10414 /* Build a proper chain of parameters when substituting
10415 into a function parameter pack. */
10416 if (prev_r)
10417 DECL_CHAIN (prev_r) = r;
10420 /* If cp_unevaluated_operand is set, we're just looking for a
10421 single dummy parameter, so don't keep going. */
10422 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
10423 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
10424 complain, DECL_CHAIN (t));
10426 /* FIRST_R contains the start of the chain we've built. */
10427 r = first_r;
10429 break;
10431 case FIELD_DECL:
10433 tree type;
10435 r = copy_decl (t);
10436 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10437 if (type == error_mark_node)
10438 RETURN (error_mark_node);
10439 TREE_TYPE (r) = type;
10440 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10442 if (DECL_C_BIT_FIELD (r))
10443 /* For bit-fields, DECL_INITIAL gives the number of bits. For
10444 non-bit-fields DECL_INITIAL is a non-static data member
10445 initializer, which gets deferred instantiation. */
10446 DECL_INITIAL (r)
10447 = tsubst_expr (DECL_INITIAL (t), args,
10448 complain, in_decl,
10449 /*integral_constant_expression_p=*/true);
10450 else if (DECL_INITIAL (t))
10452 /* Set up DECL_TEMPLATE_INFO so that we can get at the
10453 NSDMI in perform_member_init. Still set DECL_INITIAL
10454 so that we know there is one. */
10455 DECL_INITIAL (r) = void_zero_node;
10456 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
10457 retrofit_lang_decl (r);
10458 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10460 /* We don't have to set DECL_CONTEXT here; it is set by
10461 finish_member_declaration. */
10462 DECL_CHAIN (r) = NULL_TREE;
10463 if (VOID_TYPE_P (type))
10464 error ("instantiation of %q+D as type %qT", r, type);
10466 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10467 args, complain, in_decl);
10469 break;
10471 case USING_DECL:
10472 /* We reach here only for member using decls. We also need to check
10473 uses_template_parms because DECL_DEPENDENT_P is not set for a
10474 using-declaration that designates a member of the current
10475 instantiation (c++/53549). */
10476 if (DECL_DEPENDENT_P (t)
10477 || uses_template_parms (USING_DECL_SCOPE (t)))
10479 tree scope = USING_DECL_SCOPE (t);
10480 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
10481 complain, in_decl);
10482 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
10483 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM
10484 && name == TYPE_IDENTIFIER (scope))
10485 name = TYPE_IDENTIFIER (inst_scope);
10486 r = do_class_using_decl (inst_scope, name);
10487 if (!r)
10488 r = error_mark_node;
10489 else
10491 TREE_PROTECTED (r) = TREE_PROTECTED (t);
10492 TREE_PRIVATE (r) = TREE_PRIVATE (t);
10495 else
10497 r = copy_node (t);
10498 DECL_CHAIN (r) = NULL_TREE;
10500 break;
10502 case TYPE_DECL:
10503 case VAR_DECL:
10505 tree argvec = NULL_TREE;
10506 tree gen_tmpl = NULL_TREE;
10507 tree spec;
10508 tree tmpl = NULL_TREE;
10509 tree ctx;
10510 tree type = NULL_TREE;
10511 bool local_p;
10513 if (TREE_CODE (t) == TYPE_DECL
10514 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
10516 /* If this is the canonical decl, we don't have to
10517 mess with instantiations, and often we can't (for
10518 typename, template type parms and such). Note that
10519 TYPE_NAME is not correct for the above test if
10520 we've copied the type for a typedef. */
10521 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10522 if (type == error_mark_node)
10523 RETURN (error_mark_node);
10524 r = TYPE_NAME (type);
10525 break;
10528 /* Check to see if we already have the specialization we
10529 need. */
10530 spec = NULL_TREE;
10531 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
10533 /* T is a static data member or namespace-scope entity.
10534 We have to substitute into namespace-scope variables
10535 (even though such entities are never templates) because
10536 of cases like:
10538 template <class T> void f() { extern T t; }
10540 where the entity referenced is not known until
10541 instantiation time. */
10542 local_p = false;
10543 ctx = DECL_CONTEXT (t);
10544 if (DECL_CLASS_SCOPE_P (t))
10546 ctx = tsubst_aggr_type (ctx, args,
10547 complain,
10548 in_decl, /*entering_scope=*/1);
10549 /* If CTX is unchanged, then T is in fact the
10550 specialization we want. That situation occurs when
10551 referencing a static data member within in its own
10552 class. We can use pointer equality, rather than
10553 same_type_p, because DECL_CONTEXT is always
10554 canonical... */
10555 if (ctx == DECL_CONTEXT (t)
10556 && (TREE_CODE (t) != TYPE_DECL
10557 /* ... unless T is a member template; in which
10558 case our caller can be willing to create a
10559 specialization of that template represented
10560 by T. */
10561 || !(DECL_TI_TEMPLATE (t)
10562 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t)))))
10563 spec = t;
10566 if (!spec)
10568 tmpl = DECL_TI_TEMPLATE (t);
10569 gen_tmpl = most_general_template (tmpl);
10570 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
10571 if (argvec == error_mark_node)
10572 RETURN (error_mark_node);
10573 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10574 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10577 else
10579 /* A local variable. */
10580 local_p = true;
10581 /* Subsequent calls to pushdecl will fill this in. */
10582 ctx = NULL_TREE;
10583 spec = retrieve_local_specialization (t);
10585 /* If we already have the specialization we need, there is
10586 nothing more to do. */
10587 if (spec)
10589 r = spec;
10590 break;
10593 if (TREE_CODE (t) == VAR_DECL && DECL_ANON_UNION_VAR_P (t))
10595 /* Just use name lookup to find a member alias for an anonymous
10596 union, but then add it to the hash table. */
10597 r = lookup_name (DECL_NAME (t));
10598 gcc_assert (DECL_ANON_UNION_VAR_P (r));
10599 register_local_specialization (r, t);
10600 break;
10603 /* Create a new node for the specialization we need. */
10604 r = copy_decl (t);
10605 if (type == NULL_TREE)
10607 if (is_typedef_decl (t))
10608 type = DECL_ORIGINAL_TYPE (t);
10609 else
10610 type = TREE_TYPE (t);
10611 if (TREE_CODE (t) == VAR_DECL
10612 && VAR_HAD_UNKNOWN_BOUND (t)
10613 && type != error_mark_node)
10614 type = strip_array_domain (type);
10615 type = tsubst (type, args, complain, in_decl);
10617 if (TREE_CODE (r) == VAR_DECL)
10619 /* Even if the original location is out of scope, the
10620 newly substituted one is not. */
10621 DECL_DEAD_FOR_LOCAL (r) = 0;
10622 DECL_INITIALIZED_P (r) = 0;
10623 DECL_TEMPLATE_INSTANTIATED (r) = 0;
10624 if (type == error_mark_node)
10625 RETURN (error_mark_node);
10626 if (TREE_CODE (type) == FUNCTION_TYPE)
10628 /* It may seem that this case cannot occur, since:
10630 typedef void f();
10631 void g() { f x; }
10633 declares a function, not a variable. However:
10635 typedef void f();
10636 template <typename T> void g() { T t; }
10637 template void g<f>();
10639 is an attempt to declare a variable with function
10640 type. */
10641 error ("variable %qD has function type",
10642 /* R is not yet sufficiently initialized, so we
10643 just use its name. */
10644 DECL_NAME (r));
10645 RETURN (error_mark_node);
10647 type = complete_type (type);
10648 /* Wait until cp_finish_decl to set this again, to handle
10649 circular dependency (template/instantiate6.C). */
10650 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
10651 type = check_var_type (DECL_NAME (r), type);
10653 if (DECL_HAS_VALUE_EXPR_P (t))
10655 tree ve = DECL_VALUE_EXPR (t);
10656 ve = tsubst_expr (ve, args, complain, in_decl,
10657 /*constant_expression_p=*/false);
10658 if (REFERENCE_REF_P (ve))
10660 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
10661 ve = TREE_OPERAND (ve, 0);
10663 SET_DECL_VALUE_EXPR (r, ve);
10666 else if (DECL_SELF_REFERENCE_P (t))
10667 SET_DECL_SELF_REFERENCE_P (r);
10668 TREE_TYPE (r) = type;
10669 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10670 DECL_CONTEXT (r) = ctx;
10671 /* Clear out the mangled name and RTL for the instantiation. */
10672 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10673 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10674 SET_DECL_RTL (r, NULL);
10675 /* The initializer must not be expanded until it is required;
10676 see [temp.inst]. */
10677 DECL_INITIAL (r) = NULL_TREE;
10678 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10679 SET_DECL_RTL (r, NULL);
10680 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
10681 if (TREE_CODE (r) == VAR_DECL)
10683 /* Possibly limit visibility based on template args. */
10684 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10685 if (DECL_VISIBILITY_SPECIFIED (t))
10687 DECL_VISIBILITY_SPECIFIED (r) = 0;
10688 DECL_ATTRIBUTES (r)
10689 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10691 determine_visibility (r);
10694 if (!local_p)
10696 /* A static data member declaration is always marked
10697 external when it is declared in-class, even if an
10698 initializer is present. We mimic the non-template
10699 processing here. */
10700 DECL_EXTERNAL (r) = 1;
10702 register_specialization (r, gen_tmpl, argvec, false, hash);
10703 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
10704 SET_DECL_IMPLICIT_INSTANTIATION (r);
10706 else if (cp_unevaluated_operand)
10708 /* We're substituting this var in a decltype outside of its
10709 scope, such as for a lambda return type. Don't add it to
10710 local_specializations, do perform auto deduction. */
10711 tree auto_node = type_uses_auto (type);
10712 if (auto_node)
10714 tree init
10715 = tsubst_expr (DECL_INITIAL (t), args, complain, in_decl,
10716 /*constant_expression_p=*/false);
10717 init = resolve_nondeduced_context (init);
10718 TREE_TYPE (r) = type
10719 = do_auto_deduction (type, init, auto_node);
10722 else
10723 register_local_specialization (r, t);
10725 DECL_CHAIN (r) = NULL_TREE;
10727 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
10728 /*flags=*/0,
10729 args, complain, in_decl);
10731 /* Preserve a typedef that names a type. */
10732 if (is_typedef_decl (r))
10734 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
10735 set_underlying_type (r);
10738 layout_decl (r, 0);
10740 break;
10742 default:
10743 gcc_unreachable ();
10745 #undef RETURN
10747 out:
10748 /* Restore the file and line information. */
10749 input_location = saved_loc;
10751 return r;
10754 /* Substitute into the ARG_TYPES of a function type.
10755 If END is a TREE_CHAIN, leave it and any following types
10756 un-substituted. */
10758 static tree
10759 tsubst_arg_types (tree arg_types,
10760 tree args,
10761 tree end,
10762 tsubst_flags_t complain,
10763 tree in_decl)
10765 tree remaining_arg_types;
10766 tree type = NULL_TREE;
10767 int i = 1;
10768 tree expanded_args = NULL_TREE;
10769 tree default_arg;
10771 if (!arg_types || arg_types == void_list_node || arg_types == end)
10772 return arg_types;
10774 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
10775 args, end, complain, in_decl);
10776 if (remaining_arg_types == error_mark_node)
10777 return error_mark_node;
10779 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
10781 /* For a pack expansion, perform substitution on the
10782 entire expression. Later on, we'll handle the arguments
10783 one-by-one. */
10784 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
10785 args, complain, in_decl);
10787 if (TREE_CODE (expanded_args) == TREE_VEC)
10788 /* So that we'll spin through the parameters, one by one. */
10789 i = TREE_VEC_LENGTH (expanded_args);
10790 else
10792 /* We only partially substituted into the parameter
10793 pack. Our type is TYPE_PACK_EXPANSION. */
10794 type = expanded_args;
10795 expanded_args = NULL_TREE;
10799 while (i > 0) {
10800 --i;
10802 if (expanded_args)
10803 type = TREE_VEC_ELT (expanded_args, i);
10804 else if (!type)
10805 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
10807 if (type == error_mark_node)
10808 return error_mark_node;
10809 if (VOID_TYPE_P (type))
10811 if (complain & tf_error)
10813 error ("invalid parameter type %qT", type);
10814 if (in_decl)
10815 error ("in declaration %q+D", in_decl);
10817 return error_mark_node;
10820 /* Do array-to-pointer, function-to-pointer conversion, and ignore
10821 top-level qualifiers as required. */
10822 type = cv_unqualified (type_decays_to (type));
10824 /* We do not substitute into default arguments here. The standard
10825 mandates that they be instantiated only when needed, which is
10826 done in build_over_call. */
10827 default_arg = TREE_PURPOSE (arg_types);
10829 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
10831 /* We've instantiated a template before its default arguments
10832 have been parsed. This can happen for a nested template
10833 class, and is not an error unless we require the default
10834 argument in a call of this function. */
10835 remaining_arg_types =
10836 tree_cons (default_arg, type, remaining_arg_types);
10837 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
10839 else
10840 remaining_arg_types =
10841 hash_tree_cons (default_arg, type, remaining_arg_types);
10844 return remaining_arg_types;
10847 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
10848 *not* handle the exception-specification for FNTYPE, because the
10849 initial substitution of explicitly provided template parameters
10850 during argument deduction forbids substitution into the
10851 exception-specification:
10853 [temp.deduct]
10855 All references in the function type of the function template to the
10856 corresponding template parameters are replaced by the specified tem-
10857 plate argument values. If a substitution in a template parameter or
10858 in the function type of the function template results in an invalid
10859 type, type deduction fails. [Note: The equivalent substitution in
10860 exception specifications is done only when the function is instanti-
10861 ated, at which point a program is ill-formed if the substitution
10862 results in an invalid type.] */
10864 static tree
10865 tsubst_function_type (tree t,
10866 tree args,
10867 tsubst_flags_t complain,
10868 tree in_decl)
10870 tree return_type;
10871 tree arg_types;
10872 tree fntype;
10874 /* The TYPE_CONTEXT is not used for function/method types. */
10875 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
10877 /* Substitute the return type. */
10878 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10879 if (return_type == error_mark_node)
10880 return error_mark_node;
10881 /* The standard does not presently indicate that creation of a
10882 function type with an invalid return type is a deduction failure.
10883 However, that is clearly analogous to creating an array of "void"
10884 or a reference to a reference. This is core issue #486. */
10885 if (TREE_CODE (return_type) == ARRAY_TYPE
10886 || TREE_CODE (return_type) == FUNCTION_TYPE)
10888 if (complain & tf_error)
10890 if (TREE_CODE (return_type) == ARRAY_TYPE)
10891 error ("function returning an array");
10892 else
10893 error ("function returning a function");
10895 return error_mark_node;
10898 /* Substitute the argument types. */
10899 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
10900 complain, in_decl);
10901 if (arg_types == error_mark_node)
10902 return error_mark_node;
10904 /* Construct a new type node and return it. */
10905 if (TREE_CODE (t) == FUNCTION_TYPE)
10907 fntype = build_function_type (return_type, arg_types);
10908 fntype = apply_memfn_quals (fntype, type_memfn_quals (t));
10910 else
10912 tree r = TREE_TYPE (TREE_VALUE (arg_types));
10913 if (! MAYBE_CLASS_TYPE_P (r))
10915 /* [temp.deduct]
10917 Type deduction may fail for any of the following
10918 reasons:
10920 -- Attempting to create "pointer to member of T" when T
10921 is not a class type. */
10922 if (complain & tf_error)
10923 error ("creating pointer to member function of non-class type %qT",
10925 return error_mark_node;
10928 fntype = build_method_type_directly (r, return_type,
10929 TREE_CHAIN (arg_types));
10931 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
10933 return fntype;
10936 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
10937 ARGS into that specification, and return the substituted
10938 specification. If there is no specification, return NULL_TREE. */
10940 static tree
10941 tsubst_exception_specification (tree fntype,
10942 tree args,
10943 tsubst_flags_t complain,
10944 tree in_decl,
10945 bool defer_ok)
10947 tree specs;
10948 tree new_specs;
10950 specs = TYPE_RAISES_EXCEPTIONS (fntype);
10951 new_specs = NULL_TREE;
10952 if (specs && TREE_PURPOSE (specs))
10954 /* A noexcept-specifier. */
10955 tree expr = TREE_PURPOSE (specs);
10956 if (TREE_CODE (expr) == INTEGER_CST)
10957 new_specs = expr;
10958 else if (defer_ok)
10960 /* Defer instantiation of noexcept-specifiers to avoid
10961 excessive instantiations (c++/49107). */
10962 new_specs = make_node (DEFERRED_NOEXCEPT);
10963 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
10965 /* We already partially instantiated this member template,
10966 so combine the new args with the old. */
10967 DEFERRED_NOEXCEPT_PATTERN (new_specs)
10968 = DEFERRED_NOEXCEPT_PATTERN (expr);
10969 DEFERRED_NOEXCEPT_ARGS (new_specs)
10970 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
10972 else
10974 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
10975 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
10978 else
10979 new_specs = tsubst_copy_and_build
10980 (expr, args, complain, in_decl, /*function_p=*/false,
10981 /*integral_constant_expression_p=*/true);
10982 new_specs = build_noexcept_spec (new_specs, complain);
10984 else if (specs)
10986 if (! TREE_VALUE (specs))
10987 new_specs = specs;
10988 else
10989 while (specs)
10991 tree spec;
10992 int i, len = 1;
10993 tree expanded_specs = NULL_TREE;
10995 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
10997 /* Expand the pack expansion type. */
10998 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
10999 args, complain,
11000 in_decl);
11002 if (expanded_specs == error_mark_node)
11003 return error_mark_node;
11004 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11005 len = TREE_VEC_LENGTH (expanded_specs);
11006 else
11008 /* We're substituting into a member template, so
11009 we got a TYPE_PACK_EXPANSION back. Add that
11010 expansion and move on. */
11011 gcc_assert (TREE_CODE (expanded_specs)
11012 == TYPE_PACK_EXPANSION);
11013 new_specs = add_exception_specifier (new_specs,
11014 expanded_specs,
11015 complain);
11016 specs = TREE_CHAIN (specs);
11017 continue;
11021 for (i = 0; i < len; ++i)
11023 if (expanded_specs)
11024 spec = TREE_VEC_ELT (expanded_specs, i);
11025 else
11026 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11027 if (spec == error_mark_node)
11028 return spec;
11029 new_specs = add_exception_specifier (new_specs, spec,
11030 complain);
11033 specs = TREE_CHAIN (specs);
11036 return new_specs;
11039 /* Take the tree structure T and replace template parameters used
11040 therein with the argument vector ARGS. IN_DECL is an associated
11041 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11042 Issue error and warning messages under control of COMPLAIN. Note
11043 that we must be relatively non-tolerant of extensions here, in
11044 order to preserve conformance; if we allow substitutions that
11045 should not be allowed, we may allow argument deductions that should
11046 not succeed, and therefore report ambiguous overload situations
11047 where there are none. In theory, we could allow the substitution,
11048 but indicate that it should have failed, and allow our caller to
11049 make sure that the right thing happens, but we don't try to do this
11050 yet.
11052 This function is used for dealing with types, decls and the like;
11053 for expressions, use tsubst_expr or tsubst_copy. */
11055 tree
11056 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11058 enum tree_code code;
11059 tree type, r = NULL_TREE;
11061 if (t == NULL_TREE || t == error_mark_node
11062 || t == integer_type_node
11063 || t == void_type_node
11064 || t == char_type_node
11065 || t == unknown_type_node
11066 || TREE_CODE (t) == NAMESPACE_DECL
11067 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11068 return t;
11070 if (DECL_P (t))
11071 return tsubst_decl (t, args, complain);
11073 if (args == NULL_TREE)
11074 return t;
11076 code = TREE_CODE (t);
11078 if (code == IDENTIFIER_NODE)
11079 type = IDENTIFIER_TYPE_VALUE (t);
11080 else
11081 type = TREE_TYPE (t);
11083 gcc_assert (type != unknown_type_node);
11085 /* Reuse typedefs. We need to do this to handle dependent attributes,
11086 such as attribute aligned. */
11087 if (TYPE_P (t)
11088 && typedef_variant_p (t))
11090 tree decl = TYPE_NAME (t);
11092 if (alias_template_specialization_p (t))
11094 /* DECL represents an alias template and we want to
11095 instantiate it. */
11096 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11097 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11098 r = instantiate_alias_template (tmpl, gen_args, complain);
11100 else if (DECL_CLASS_SCOPE_P (decl)
11101 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11102 && uses_template_parms (DECL_CONTEXT (decl)))
11104 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11105 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11106 r = retrieve_specialization (tmpl, gen_args, 0);
11108 else if (DECL_FUNCTION_SCOPE_P (decl)
11109 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11110 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11111 r = retrieve_local_specialization (decl);
11112 else
11113 /* The typedef is from a non-template context. */
11114 return t;
11116 if (r)
11118 r = TREE_TYPE (r);
11119 r = cp_build_qualified_type_real
11120 (r, cp_type_quals (t) | cp_type_quals (r),
11121 complain | tf_ignore_bad_quals);
11122 return r;
11124 else
11126 /* We don't have an instantiation yet, so drop the typedef. */
11127 int quals = cp_type_quals (t);
11128 t = DECL_ORIGINAL_TYPE (decl);
11129 t = cp_build_qualified_type_real (t, quals,
11130 complain | tf_ignore_bad_quals);
11134 if (type
11135 && code != TYPENAME_TYPE
11136 && code != TEMPLATE_TYPE_PARM
11137 && code != IDENTIFIER_NODE
11138 && code != FUNCTION_TYPE
11139 && code != METHOD_TYPE)
11140 type = tsubst (type, args, complain, in_decl);
11141 if (type == error_mark_node)
11142 return error_mark_node;
11144 switch (code)
11146 case RECORD_TYPE:
11147 case UNION_TYPE:
11148 case ENUMERAL_TYPE:
11149 return tsubst_aggr_type (t, args, complain, in_decl,
11150 /*entering_scope=*/0);
11152 case ERROR_MARK:
11153 case IDENTIFIER_NODE:
11154 case VOID_TYPE:
11155 case REAL_TYPE:
11156 case COMPLEX_TYPE:
11157 case VECTOR_TYPE:
11158 case BOOLEAN_TYPE:
11159 case NULLPTR_TYPE:
11160 case LANG_TYPE:
11161 return t;
11163 case INTEGER_TYPE:
11164 if (t == integer_type_node)
11165 return t;
11167 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11168 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11169 return t;
11172 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11174 max = tsubst_expr (omax, args, complain, in_decl,
11175 /*integral_constant_expression_p=*/false);
11177 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11178 needed. */
11179 if (TREE_CODE (max) == NOP_EXPR
11180 && TREE_SIDE_EFFECTS (omax)
11181 && !TREE_TYPE (max))
11182 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11184 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11185 with TREE_SIDE_EFFECTS that indicates this is not an integral
11186 constant expression. */
11187 if (processing_template_decl
11188 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11190 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11191 TREE_SIDE_EFFECTS (max) = 1;
11194 return compute_array_index_type (NULL_TREE, max, complain);
11197 case TEMPLATE_TYPE_PARM:
11198 case TEMPLATE_TEMPLATE_PARM:
11199 case BOUND_TEMPLATE_TEMPLATE_PARM:
11200 case TEMPLATE_PARM_INDEX:
11202 int idx;
11203 int level;
11204 int levels;
11205 tree arg = NULL_TREE;
11207 r = NULL_TREE;
11209 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11210 template_parm_level_and_index (t, &level, &idx);
11212 levels = TMPL_ARGS_DEPTH (args);
11213 if (level <= levels)
11215 arg = TMPL_ARG (args, level, idx);
11217 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11219 /* See through ARGUMENT_PACK_SELECT arguments. */
11220 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11221 /* If the selected argument is an expansion E, that most
11222 likely means we were called from
11223 gen_elem_of_pack_expansion_instantiation during the
11224 substituting of pack an argument pack (which Ith
11225 element is a pack expansion, where I is
11226 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
11227 In this case, the Ith element resulting from this
11228 substituting is going to be a pack expansion, which
11229 pattern is the pattern of E. Let's return the
11230 pattern of E, and
11231 gen_elem_of_pack_expansion_instantiation will
11232 build the resulting pack expansion from it. */
11233 if (PACK_EXPANSION_P (arg))
11234 arg = PACK_EXPANSION_PATTERN (arg);
11238 if (arg == error_mark_node)
11239 return error_mark_node;
11240 else if (arg != NULL_TREE)
11242 if (ARGUMENT_PACK_P (arg))
11243 /* If ARG is an argument pack, we don't actually want to
11244 perform a substitution here, because substitutions
11245 for argument packs are only done
11246 element-by-element. We can get to this point when
11247 substituting the type of a non-type template
11248 parameter pack, when that type actually contains
11249 template parameter packs from an outer template, e.g.,
11251 template<typename... Types> struct A {
11252 template<Types... Values> struct B { };
11253 }; */
11254 return t;
11256 if (code == TEMPLATE_TYPE_PARM)
11258 int quals;
11259 gcc_assert (TYPE_P (arg));
11261 quals = cp_type_quals (arg) | cp_type_quals (t);
11263 return cp_build_qualified_type_real
11264 (arg, quals, complain | tf_ignore_bad_quals);
11266 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11268 /* We are processing a type constructed from a
11269 template template parameter. */
11270 tree argvec = tsubst (TYPE_TI_ARGS (t),
11271 args, complain, in_decl);
11272 if (argvec == error_mark_node)
11273 return error_mark_node;
11275 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11276 || TREE_CODE (arg) == TEMPLATE_DECL
11277 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11279 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11280 /* Consider this code:
11282 template <template <class> class Template>
11283 struct Internal {
11284 template <class Arg> using Bind = Template<Arg>;
11287 template <template <class> class Template, class Arg>
11288 using Instantiate = Template<Arg>; //#0
11290 template <template <class> class Template,
11291 class Argument>
11292 using Bind =
11293 Instantiate<Internal<Template>::template Bind,
11294 Argument>; //#1
11296 When #1 is parsed, the
11297 BOUND_TEMPLATE_TEMPLATE_PARM representing the
11298 parameter `Template' in #0 matches the
11299 UNBOUND_CLASS_TEMPLATE representing the argument
11300 `Internal<Template>::template Bind'; We then want
11301 to assemble the type `Bind<Argument>' that can't
11302 be fully created right now, because
11303 `Internal<Template>' not being complete, the Bind
11304 template cannot be looked up in that context. So
11305 we need to "store" `Bind<Argument>' for later
11306 when the context of Bind becomes complete. Let's
11307 store that in a TYPENAME_TYPE. */
11308 return make_typename_type (TYPE_CONTEXT (arg),
11309 build_nt (TEMPLATE_ID_EXPR,
11310 TYPE_IDENTIFIER (arg),
11311 argvec),
11312 typename_type,
11313 complain);
11315 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
11316 are resolving nested-types in the signature of a
11317 member function templates. Otherwise ARG is a
11318 TEMPLATE_DECL and is the real template to be
11319 instantiated. */
11320 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11321 arg = TYPE_NAME (arg);
11323 r = lookup_template_class (arg,
11324 argvec, in_decl,
11325 DECL_CONTEXT (arg),
11326 /*entering_scope=*/0,
11327 complain);
11328 return cp_build_qualified_type_real
11329 (r, cp_type_quals (t), complain);
11331 else
11332 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
11333 return convert_from_reference (unshare_expr (arg));
11336 if (level == 1)
11337 /* This can happen during the attempted tsubst'ing in
11338 unify. This means that we don't yet have any information
11339 about the template parameter in question. */
11340 return t;
11342 /* Early in template argument deduction substitution, we don't
11343 want to reduce the level of 'auto', or it will be confused
11344 with a normal template parm in subsequent deduction. */
11345 if (is_auto (t) && (complain & tf_partial))
11346 return t;
11348 /* If we get here, we must have been looking at a parm for a
11349 more deeply nested template. Make a new version of this
11350 template parameter, but with a lower level. */
11351 switch (code)
11353 case TEMPLATE_TYPE_PARM:
11354 case TEMPLATE_TEMPLATE_PARM:
11355 case BOUND_TEMPLATE_TEMPLATE_PARM:
11356 if (cp_type_quals (t))
11358 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
11359 r = cp_build_qualified_type_real
11360 (r, cp_type_quals (t),
11361 complain | (code == TEMPLATE_TYPE_PARM
11362 ? tf_ignore_bad_quals : 0));
11364 else
11366 r = copy_type (t);
11367 TEMPLATE_TYPE_PARM_INDEX (r)
11368 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
11369 r, levels, args, complain);
11370 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
11371 TYPE_MAIN_VARIANT (r) = r;
11372 TYPE_POINTER_TO (r) = NULL_TREE;
11373 TYPE_REFERENCE_TO (r) = NULL_TREE;
11375 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
11376 /* We have reduced the level of the template
11377 template parameter, but not the levels of its
11378 template parameters, so canonical_type_parameter
11379 will not be able to find the canonical template
11380 template parameter for this level. Thus, we
11381 require structural equality checking to compare
11382 TEMPLATE_TEMPLATE_PARMs. */
11383 SET_TYPE_STRUCTURAL_EQUALITY (r);
11384 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
11385 SET_TYPE_STRUCTURAL_EQUALITY (r);
11386 else
11387 TYPE_CANONICAL (r) = canonical_type_parameter (r);
11389 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11391 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
11392 complain, in_decl);
11393 if (argvec == error_mark_node)
11394 return error_mark_node;
11396 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
11397 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
11400 break;
11402 case TEMPLATE_PARM_INDEX:
11403 r = reduce_template_parm_level (t, type, levels, args, complain);
11404 break;
11406 default:
11407 gcc_unreachable ();
11410 return r;
11413 case TREE_LIST:
11415 tree purpose, value, chain;
11417 if (t == void_list_node)
11418 return t;
11420 purpose = TREE_PURPOSE (t);
11421 if (purpose)
11423 purpose = tsubst (purpose, args, complain, in_decl);
11424 if (purpose == error_mark_node)
11425 return error_mark_node;
11427 value = TREE_VALUE (t);
11428 if (value)
11430 value = tsubst (value, args, complain, in_decl);
11431 if (value == error_mark_node)
11432 return error_mark_node;
11434 chain = TREE_CHAIN (t);
11435 if (chain && chain != void_type_node)
11437 chain = tsubst (chain, args, complain, in_decl);
11438 if (chain == error_mark_node)
11439 return error_mark_node;
11441 if (purpose == TREE_PURPOSE (t)
11442 && value == TREE_VALUE (t)
11443 && chain == TREE_CHAIN (t))
11444 return t;
11445 return hash_tree_cons (purpose, value, chain);
11448 case TREE_BINFO:
11449 /* We should never be tsubsting a binfo. */
11450 gcc_unreachable ();
11452 case TREE_VEC:
11453 /* A vector of template arguments. */
11454 gcc_assert (!type);
11455 return tsubst_template_args (t, args, complain, in_decl);
11457 case POINTER_TYPE:
11458 case REFERENCE_TYPE:
11460 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
11461 return t;
11463 /* [temp.deduct]
11465 Type deduction may fail for any of the following
11466 reasons:
11468 -- Attempting to create a pointer to reference type.
11469 -- Attempting to create a reference to a reference type or
11470 a reference to void.
11472 Core issue 106 says that creating a reference to a reference
11473 during instantiation is no longer a cause for failure. We
11474 only enforce this check in strict C++98 mode. */
11475 if ((TREE_CODE (type) == REFERENCE_TYPE
11476 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
11477 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
11479 static location_t last_loc;
11481 /* We keep track of the last time we issued this error
11482 message to avoid spewing a ton of messages during a
11483 single bad template instantiation. */
11484 if (complain & tf_error
11485 && last_loc != input_location)
11487 if (TREE_CODE (type) == VOID_TYPE)
11488 error ("forming reference to void");
11489 else if (code == POINTER_TYPE)
11490 error ("forming pointer to reference type %qT", type);
11491 else
11492 error ("forming reference to reference type %qT", type);
11493 last_loc = input_location;
11496 return error_mark_node;
11498 else if (code == POINTER_TYPE)
11500 r = build_pointer_type (type);
11501 if (TREE_CODE (type) == METHOD_TYPE)
11502 r = build_ptrmemfunc_type (r);
11504 else if (TREE_CODE (type) == REFERENCE_TYPE)
11505 /* In C++0x, during template argument substitution, when there is an
11506 attempt to create a reference to a reference type, reference
11507 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
11509 "If a template-argument for a template-parameter T names a type
11510 that is a reference to a type A, an attempt to create the type
11511 'lvalue reference to cv T' creates the type 'lvalue reference to
11512 A,' while an attempt to create the type type rvalue reference to
11513 cv T' creates the type T"
11515 r = cp_build_reference_type
11516 (TREE_TYPE (type),
11517 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
11518 else
11519 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
11520 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11522 if (r != error_mark_node)
11523 /* Will this ever be needed for TYPE_..._TO values? */
11524 layout_type (r);
11526 return r;
11528 case OFFSET_TYPE:
11530 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
11531 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
11533 /* [temp.deduct]
11535 Type deduction may fail for any of the following
11536 reasons:
11538 -- Attempting to create "pointer to member of T" when T
11539 is not a class type. */
11540 if (complain & tf_error)
11541 error ("creating pointer to member of non-class type %qT", r);
11542 return error_mark_node;
11544 if (TREE_CODE (type) == REFERENCE_TYPE)
11546 if (complain & tf_error)
11547 error ("creating pointer to member reference type %qT", type);
11548 return error_mark_node;
11550 if (TREE_CODE (type) == VOID_TYPE)
11552 if (complain & tf_error)
11553 error ("creating pointer to member of type void");
11554 return error_mark_node;
11556 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11557 if (TREE_CODE (type) == FUNCTION_TYPE)
11559 /* The type of the implicit object parameter gets its
11560 cv-qualifiers from the FUNCTION_TYPE. */
11561 tree memptr;
11562 tree method_type = build_memfn_type (type, r, type_memfn_quals (type));
11563 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
11564 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
11565 complain);
11567 else
11568 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
11569 cp_type_quals (t),
11570 complain);
11572 case FUNCTION_TYPE:
11573 case METHOD_TYPE:
11575 tree fntype;
11576 tree specs;
11577 fntype = tsubst_function_type (t, args, complain, in_decl);
11578 if (fntype == error_mark_node)
11579 return error_mark_node;
11581 /* Substitute the exception specification. */
11582 specs = tsubst_exception_specification (t, args, complain,
11583 in_decl, /*defer_ok*/true);
11584 if (specs == error_mark_node)
11585 return error_mark_node;
11586 if (specs)
11587 fntype = build_exception_variant (fntype, specs);
11588 return fntype;
11590 case ARRAY_TYPE:
11592 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
11593 if (domain == error_mark_node)
11594 return error_mark_node;
11596 /* As an optimization, we avoid regenerating the array type if
11597 it will obviously be the same as T. */
11598 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
11599 return t;
11601 /* These checks should match the ones in grokdeclarator.
11603 [temp.deduct]
11605 The deduction may fail for any of the following reasons:
11607 -- Attempting to create an array with an element type that
11608 is void, a function type, or a reference type, or [DR337]
11609 an abstract class type. */
11610 if (TREE_CODE (type) == VOID_TYPE
11611 || TREE_CODE (type) == FUNCTION_TYPE
11612 || TREE_CODE (type) == REFERENCE_TYPE)
11614 if (complain & tf_error)
11615 error ("creating array of %qT", type);
11616 return error_mark_node;
11618 if (ABSTRACT_CLASS_TYPE_P (type))
11620 if (complain & tf_error)
11621 error ("creating array of %qT, which is an abstract class type",
11622 type);
11623 return error_mark_node;
11626 r = build_cplus_array_type (type, domain);
11628 if (TYPE_USER_ALIGN (t))
11630 TYPE_ALIGN (r) = TYPE_ALIGN (t);
11631 TYPE_USER_ALIGN (r) = 1;
11634 return r;
11637 case TYPENAME_TYPE:
11639 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11640 in_decl, /*entering_scope=*/1);
11641 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
11642 complain, in_decl);
11644 if (ctx == error_mark_node || f == error_mark_node)
11645 return error_mark_node;
11647 if (!MAYBE_CLASS_TYPE_P (ctx))
11649 if (complain & tf_error)
11650 error ("%qT is not a class, struct, or union type", ctx);
11651 return error_mark_node;
11653 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
11655 /* Normally, make_typename_type does not require that the CTX
11656 have complete type in order to allow things like:
11658 template <class T> struct S { typename S<T>::X Y; };
11660 But, such constructs have already been resolved by this
11661 point, so here CTX really should have complete type, unless
11662 it's a partial instantiation. */
11663 ctx = complete_type (ctx);
11664 if (!COMPLETE_TYPE_P (ctx))
11666 if (complain & tf_error)
11667 cxx_incomplete_type_error (NULL_TREE, ctx);
11668 return error_mark_node;
11672 f = make_typename_type (ctx, f, typename_type,
11673 complain | tf_keep_type_decl);
11674 if (f == error_mark_node)
11675 return f;
11676 if (TREE_CODE (f) == TYPE_DECL)
11678 complain |= tf_ignore_bad_quals;
11679 f = TREE_TYPE (f);
11682 if (TREE_CODE (f) != TYPENAME_TYPE)
11684 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
11686 if (complain & tf_error)
11687 error ("%qT resolves to %qT, which is not an enumeration type",
11688 t, f);
11689 else
11690 return error_mark_node;
11692 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
11694 if (complain & tf_error)
11695 error ("%qT resolves to %qT, which is is not a class type",
11696 t, f);
11697 else
11698 return error_mark_node;
11702 return cp_build_qualified_type_real
11703 (f, cp_type_quals (f) | cp_type_quals (t), complain);
11706 case UNBOUND_CLASS_TEMPLATE:
11708 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11709 in_decl, /*entering_scope=*/1);
11710 tree name = TYPE_IDENTIFIER (t);
11711 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
11713 if (ctx == error_mark_node || name == error_mark_node)
11714 return error_mark_node;
11716 if (parm_list)
11717 parm_list = tsubst_template_parms (parm_list, args, complain);
11718 return make_unbound_class_template (ctx, name, parm_list, complain);
11721 case TYPEOF_TYPE:
11723 tree type;
11725 ++cp_unevaluated_operand;
11726 ++c_inhibit_evaluation_warnings;
11728 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
11729 complain, in_decl,
11730 /*integral_constant_expression_p=*/false);
11732 --cp_unevaluated_operand;
11733 --c_inhibit_evaluation_warnings;
11735 type = finish_typeof (type);
11736 return cp_build_qualified_type_real (type,
11737 cp_type_quals (t)
11738 | cp_type_quals (type),
11739 complain);
11742 case DECLTYPE_TYPE:
11744 tree type;
11746 ++cp_unevaluated_operand;
11747 ++c_inhibit_evaluation_warnings;
11749 type = tsubst_expr (DECLTYPE_TYPE_EXPR (t), args,
11750 complain, in_decl,
11751 /*integral_constant_expression_p=*/false);
11753 --cp_unevaluated_operand;
11754 --c_inhibit_evaluation_warnings;
11756 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
11757 type = lambda_capture_field_type (type);
11758 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
11759 type = lambda_proxy_type (type);
11760 else
11761 type = finish_decltype_type
11762 (type, DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t), complain);
11763 return cp_build_qualified_type_real (type,
11764 cp_type_quals (t)
11765 | cp_type_quals (type),
11766 complain);
11769 case UNDERLYING_TYPE:
11771 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
11772 complain, in_decl);
11773 return finish_underlying_type (type);
11776 case TYPE_ARGUMENT_PACK:
11777 case NONTYPE_ARGUMENT_PACK:
11779 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
11780 tree packed_out =
11781 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
11782 args,
11783 complain,
11784 in_decl);
11785 SET_ARGUMENT_PACK_ARGS (r, packed_out);
11787 /* For template nontype argument packs, also substitute into
11788 the type. */
11789 if (code == NONTYPE_ARGUMENT_PACK)
11790 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
11792 return r;
11794 break;
11796 case INTEGER_CST:
11797 case REAL_CST:
11798 case STRING_CST:
11799 case PLUS_EXPR:
11800 case MINUS_EXPR:
11801 case NEGATE_EXPR:
11802 case NOP_EXPR:
11803 case INDIRECT_REF:
11804 case ADDR_EXPR:
11805 case CALL_EXPR:
11806 case ARRAY_REF:
11807 case SCOPE_REF:
11808 /* We should use one of the expression tsubsts for these codes. */
11809 gcc_unreachable ();
11811 default:
11812 sorry ("use of %qs in template", tree_code_name [(int) code]);
11813 return error_mark_node;
11817 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
11818 type of the expression on the left-hand side of the "." or "->"
11819 operator. */
11821 static tree
11822 tsubst_baselink (tree baselink, tree object_type,
11823 tree args, tsubst_flags_t complain, tree in_decl)
11825 tree name;
11826 tree qualifying_scope;
11827 tree fns;
11828 tree optype;
11829 tree template_args = 0;
11830 bool template_id_p = false;
11831 bool qualified = BASELINK_QUALIFIED_P (baselink);
11833 /* A baselink indicates a function from a base class. Both the
11834 BASELINK_ACCESS_BINFO and the base class referenced may
11835 indicate bases of the template class, rather than the
11836 instantiated class. In addition, lookups that were not
11837 ambiguous before may be ambiguous now. Therefore, we perform
11838 the lookup again. */
11839 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
11840 qualifying_scope = tsubst (qualifying_scope, args,
11841 complain, in_decl);
11842 fns = BASELINK_FUNCTIONS (baselink);
11843 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
11844 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
11846 template_id_p = true;
11847 template_args = TREE_OPERAND (fns, 1);
11848 fns = TREE_OPERAND (fns, 0);
11849 if (template_args)
11850 template_args = tsubst_template_args (template_args, args,
11851 complain, in_decl);
11853 name = DECL_NAME (get_first_fn (fns));
11854 if (IDENTIFIER_TYPENAME_P (name))
11855 name = mangle_conv_op_name_for_type (optype);
11856 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
11857 if (!baselink)
11858 return error_mark_node;
11860 /* If lookup found a single function, mark it as used at this
11861 point. (If it lookup found multiple functions the one selected
11862 later by overload resolution will be marked as used at that
11863 point.) */
11864 if (BASELINK_P (baselink))
11865 fns = BASELINK_FUNCTIONS (baselink);
11866 if (!template_id_p && !really_overloaded_fn (fns))
11867 mark_used (OVL_CURRENT (fns));
11869 /* Add back the template arguments, if present. */
11870 if (BASELINK_P (baselink) && template_id_p)
11871 BASELINK_FUNCTIONS (baselink)
11872 = build_nt (TEMPLATE_ID_EXPR,
11873 BASELINK_FUNCTIONS (baselink),
11874 template_args);
11875 /* Update the conversion operator type. */
11876 BASELINK_OPTYPE (baselink) = optype;
11878 if (!object_type)
11879 object_type = current_class_type;
11881 if (qualified)
11882 baselink = adjust_result_of_qualified_name_lookup (baselink,
11883 qualifying_scope,
11884 object_type);
11885 return baselink;
11888 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
11889 true if the qualified-id will be a postfix-expression in-and-of
11890 itself; false if more of the postfix-expression follows the
11891 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
11892 of "&". */
11894 static tree
11895 tsubst_qualified_id (tree qualified_id, tree args,
11896 tsubst_flags_t complain, tree in_decl,
11897 bool done, bool address_p)
11899 tree expr;
11900 tree scope;
11901 tree name;
11902 bool is_template;
11903 tree template_args;
11904 location_t loc = UNKNOWN_LOCATION;
11906 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
11908 /* Figure out what name to look up. */
11909 name = TREE_OPERAND (qualified_id, 1);
11910 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
11912 is_template = true;
11913 loc = EXPR_LOCATION (name);
11914 template_args = TREE_OPERAND (name, 1);
11915 if (template_args)
11916 template_args = tsubst_template_args (template_args, args,
11917 complain, in_decl);
11918 name = TREE_OPERAND (name, 0);
11920 else
11922 is_template = false;
11923 template_args = NULL_TREE;
11926 /* Substitute into the qualifying scope. When there are no ARGS, we
11927 are just trying to simplify a non-dependent expression. In that
11928 case the qualifying scope may be dependent, and, in any case,
11929 substituting will not help. */
11930 scope = TREE_OPERAND (qualified_id, 0);
11931 if (args)
11933 scope = tsubst (scope, args, complain, in_decl);
11934 expr = tsubst_copy (name, args, complain, in_decl);
11936 else
11937 expr = name;
11939 if (dependent_scope_p (scope))
11941 if (is_template)
11942 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
11943 return build_qualified_name (NULL_TREE, scope, expr,
11944 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
11947 if (!BASELINK_P (name) && !DECL_P (expr))
11949 if (TREE_CODE (expr) == BIT_NOT_EXPR)
11951 /* A BIT_NOT_EXPR is used to represent a destructor. */
11952 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
11954 error ("qualifying type %qT does not match destructor name ~%qT",
11955 scope, TREE_OPERAND (expr, 0));
11956 expr = error_mark_node;
11958 else
11959 expr = lookup_qualified_name (scope, complete_dtor_identifier,
11960 /*is_type_p=*/0, false);
11962 else
11963 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
11964 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
11965 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
11967 if (complain & tf_error)
11969 error ("dependent-name %qE is parsed as a non-type, but "
11970 "instantiation yields a type", qualified_id);
11971 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
11973 return error_mark_node;
11977 if (DECL_P (expr))
11979 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
11980 scope);
11981 /* Remember that there was a reference to this entity. */
11982 mark_used (expr);
11985 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
11987 if (complain & tf_error)
11988 qualified_name_lookup_error (scope,
11989 TREE_OPERAND (qualified_id, 1),
11990 expr, input_location);
11991 return error_mark_node;
11994 if (is_template)
11995 expr = lookup_template_function (expr, template_args);
11997 if (expr == error_mark_node && complain & tf_error)
11998 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
11999 expr, input_location);
12000 else if (TYPE_P (scope))
12002 expr = (adjust_result_of_qualified_name_lookup
12003 (expr, scope, current_class_type));
12004 expr = (finish_qualified_id_expr
12005 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12006 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12007 /*template_arg_p=*/false));
12010 /* Expressions do not generally have reference type. */
12011 if (TREE_CODE (expr) != SCOPE_REF
12012 /* However, if we're about to form a pointer-to-member, we just
12013 want the referenced member referenced. */
12014 && TREE_CODE (expr) != OFFSET_REF)
12015 expr = convert_from_reference (expr);
12017 return expr;
12020 /* Like tsubst, but deals with expressions. This function just replaces
12021 template parms; to finish processing the resultant expression, use
12022 tsubst_copy_and_build or tsubst_expr. */
12024 static tree
12025 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12027 enum tree_code code;
12028 tree r;
12030 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12031 return t;
12033 code = TREE_CODE (t);
12035 switch (code)
12037 case PARM_DECL:
12038 r = retrieve_local_specialization (t);
12040 if (r == NULL_TREE)
12042 /* We get here for a use of 'this' in an NSDMI. */
12043 if (DECL_NAME (t) == this_identifier
12044 && at_function_scope_p ()
12045 && DECL_CONSTRUCTOR_P (current_function_decl))
12046 return current_class_ptr;
12048 /* This can happen for a parameter name used later in a function
12049 declaration (such as in a late-specified return type). Just
12050 make a dummy decl, since it's only used for its type. */
12051 gcc_assert (cp_unevaluated_operand != 0);
12052 r = tsubst_decl (t, args, complain);
12053 /* Give it the template pattern as its context; its true context
12054 hasn't been instantiated yet and this is good enough for
12055 mangling. */
12056 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12059 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12060 r = ARGUMENT_PACK_SELECT_ARG (r);
12061 mark_used (r);
12062 return r;
12064 case CONST_DECL:
12066 tree enum_type;
12067 tree v;
12069 if (DECL_TEMPLATE_PARM_P (t))
12070 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12071 /* There is no need to substitute into namespace-scope
12072 enumerators. */
12073 if (DECL_NAMESPACE_SCOPE_P (t))
12074 return t;
12075 /* If ARGS is NULL, then T is known to be non-dependent. */
12076 if (args == NULL_TREE)
12077 return integral_constant_value (t);
12079 /* Unfortunately, we cannot just call lookup_name here.
12080 Consider:
12082 template <int I> int f() {
12083 enum E { a = I };
12084 struct S { void g() { E e = a; } };
12087 When we instantiate f<7>::S::g(), say, lookup_name is not
12088 clever enough to find f<7>::a. */
12089 enum_type
12090 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12091 /*entering_scope=*/0);
12093 for (v = TYPE_VALUES (enum_type);
12094 v != NULL_TREE;
12095 v = TREE_CHAIN (v))
12096 if (TREE_PURPOSE (v) == DECL_NAME (t))
12097 return TREE_VALUE (v);
12099 /* We didn't find the name. That should never happen; if
12100 name-lookup found it during preliminary parsing, we
12101 should find it again here during instantiation. */
12102 gcc_unreachable ();
12104 return t;
12106 case FIELD_DECL:
12107 if (DECL_CONTEXT (t))
12109 tree ctx;
12111 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12112 /*entering_scope=*/1);
12113 if (ctx != DECL_CONTEXT (t))
12115 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12116 if (!r)
12118 if (complain & tf_error)
12119 error ("using invalid field %qD", t);
12120 return error_mark_node;
12122 return r;
12126 return t;
12128 case VAR_DECL:
12129 case FUNCTION_DECL:
12130 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12131 || local_variable_p (t))
12132 t = tsubst (t, args, complain, in_decl);
12133 mark_used (t);
12134 return t;
12136 case NAMESPACE_DECL:
12137 return t;
12139 case OVERLOAD:
12140 /* An OVERLOAD will always be a non-dependent overload set; an
12141 overload set from function scope will just be represented with an
12142 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12143 gcc_assert (!uses_template_parms (t));
12144 return t;
12146 case BASELINK:
12147 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
12149 case TEMPLATE_DECL:
12150 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12151 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
12152 args, complain, in_decl);
12153 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
12154 return tsubst (t, args, complain, in_decl);
12155 else if (DECL_CLASS_SCOPE_P (t)
12156 && uses_template_parms (DECL_CONTEXT (t)))
12158 /* Template template argument like the following example need
12159 special treatment:
12161 template <template <class> class TT> struct C {};
12162 template <class T> struct D {
12163 template <class U> struct E {};
12164 C<E> c; // #1
12166 D<int> d; // #2
12168 We are processing the template argument `E' in #1 for
12169 the template instantiation #2. Originally, `E' is a
12170 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
12171 have to substitute this with one having context `D<int>'. */
12173 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12174 return lookup_field (context, DECL_NAME(t), 0, false);
12176 else
12177 /* Ordinary template template argument. */
12178 return t;
12180 case CAST_EXPR:
12181 case REINTERPRET_CAST_EXPR:
12182 case CONST_CAST_EXPR:
12183 case STATIC_CAST_EXPR:
12184 case DYNAMIC_CAST_EXPR:
12185 case IMPLICIT_CONV_EXPR:
12186 case CONVERT_EXPR:
12187 case NOP_EXPR:
12188 return build1
12189 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12190 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12192 case SIZEOF_EXPR:
12193 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
12196 tree expanded, op = TREE_OPERAND (t, 0);
12197 int len = 0;
12199 if (SIZEOF_EXPR_TYPE_P (t))
12200 op = TREE_TYPE (op);
12202 ++cp_unevaluated_operand;
12203 ++c_inhibit_evaluation_warnings;
12204 /* We only want to compute the number of arguments. */
12205 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
12206 --cp_unevaluated_operand;
12207 --c_inhibit_evaluation_warnings;
12209 if (TREE_CODE (expanded) == TREE_VEC)
12210 len = TREE_VEC_LENGTH (expanded);
12212 if (expanded == error_mark_node)
12213 return error_mark_node;
12214 else if (PACK_EXPANSION_P (expanded)
12215 || (TREE_CODE (expanded) == TREE_VEC
12216 && len > 0
12217 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
12219 if (TREE_CODE (expanded) == TREE_VEC)
12220 expanded = TREE_VEC_ELT (expanded, len - 1);
12222 if (TYPE_P (expanded))
12223 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
12224 complain & tf_error);
12225 else
12226 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
12227 complain & tf_error);
12229 else
12230 return build_int_cst (size_type_node, len);
12232 if (SIZEOF_EXPR_TYPE_P (t))
12234 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
12235 args, complain, in_decl);
12236 r = build1 (NOP_EXPR, r, error_mark_node);
12237 r = build1 (SIZEOF_EXPR,
12238 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
12239 SIZEOF_EXPR_TYPE_P (r) = 1;
12240 return r;
12242 /* Fall through */
12244 case INDIRECT_REF:
12245 case NEGATE_EXPR:
12246 case TRUTH_NOT_EXPR:
12247 case BIT_NOT_EXPR:
12248 case ADDR_EXPR:
12249 case UNARY_PLUS_EXPR: /* Unary + */
12250 case ALIGNOF_EXPR:
12251 case AT_ENCODE_EXPR:
12252 case ARROW_EXPR:
12253 case THROW_EXPR:
12254 case TYPEID_EXPR:
12255 case REALPART_EXPR:
12256 case IMAGPART_EXPR:
12257 return build1
12258 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12259 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12261 case COMPONENT_REF:
12263 tree object;
12264 tree name;
12266 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
12267 name = TREE_OPERAND (t, 1);
12268 if (TREE_CODE (name) == BIT_NOT_EXPR)
12270 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12271 complain, in_decl);
12272 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12274 else if (TREE_CODE (name) == SCOPE_REF
12275 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
12277 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
12278 complain, in_decl);
12279 name = TREE_OPERAND (name, 1);
12280 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12281 complain, in_decl);
12282 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12283 name = build_qualified_name (/*type=*/NULL_TREE,
12284 base, name,
12285 /*template_p=*/false);
12287 else if (BASELINK_P (name))
12288 name = tsubst_baselink (name,
12289 non_reference (TREE_TYPE (object)),
12290 args, complain,
12291 in_decl);
12292 else
12293 name = tsubst_copy (name, args, complain, in_decl);
12294 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
12297 case PLUS_EXPR:
12298 case MINUS_EXPR:
12299 case MULT_EXPR:
12300 case TRUNC_DIV_EXPR:
12301 case CEIL_DIV_EXPR:
12302 case FLOOR_DIV_EXPR:
12303 case ROUND_DIV_EXPR:
12304 case EXACT_DIV_EXPR:
12305 case BIT_AND_EXPR:
12306 case BIT_IOR_EXPR:
12307 case BIT_XOR_EXPR:
12308 case TRUNC_MOD_EXPR:
12309 case FLOOR_MOD_EXPR:
12310 case TRUTH_ANDIF_EXPR:
12311 case TRUTH_ORIF_EXPR:
12312 case TRUTH_AND_EXPR:
12313 case TRUTH_OR_EXPR:
12314 case RSHIFT_EXPR:
12315 case LSHIFT_EXPR:
12316 case RROTATE_EXPR:
12317 case LROTATE_EXPR:
12318 case EQ_EXPR:
12319 case NE_EXPR:
12320 case MAX_EXPR:
12321 case MIN_EXPR:
12322 case LE_EXPR:
12323 case GE_EXPR:
12324 case LT_EXPR:
12325 case GT_EXPR:
12326 case COMPOUND_EXPR:
12327 case DOTSTAR_EXPR:
12328 case MEMBER_REF:
12329 case PREDECREMENT_EXPR:
12330 case PREINCREMENT_EXPR:
12331 case POSTDECREMENT_EXPR:
12332 case POSTINCREMENT_EXPR:
12333 return build_nt
12334 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12335 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12337 case SCOPE_REF:
12338 return build_qualified_name (/*type=*/NULL_TREE,
12339 tsubst_copy (TREE_OPERAND (t, 0),
12340 args, complain, in_decl),
12341 tsubst_copy (TREE_OPERAND (t, 1),
12342 args, complain, in_decl),
12343 QUALIFIED_NAME_IS_TEMPLATE (t));
12345 case ARRAY_REF:
12346 return build_nt
12347 (ARRAY_REF,
12348 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12349 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12350 NULL_TREE, NULL_TREE);
12352 case CALL_EXPR:
12354 int n = VL_EXP_OPERAND_LENGTH (t);
12355 tree result = build_vl_exp (CALL_EXPR, n);
12356 int i;
12357 for (i = 0; i < n; i++)
12358 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
12359 complain, in_decl);
12360 return result;
12363 case COND_EXPR:
12364 case MODOP_EXPR:
12365 case PSEUDO_DTOR_EXPR:
12367 r = build_nt
12368 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12369 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12370 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12371 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
12372 return r;
12375 case NEW_EXPR:
12377 r = build_nt
12378 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12379 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12380 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12381 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
12382 return r;
12385 case DELETE_EXPR:
12387 r = build_nt
12388 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12389 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12390 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
12391 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
12392 return r;
12395 case TEMPLATE_ID_EXPR:
12397 /* Substituted template arguments */
12398 tree fn = TREE_OPERAND (t, 0);
12399 tree targs = TREE_OPERAND (t, 1);
12401 fn = tsubst_copy (fn, args, complain, in_decl);
12402 if (targs)
12403 targs = tsubst_template_args (targs, args, complain, in_decl);
12405 return lookup_template_function (fn, targs);
12408 case TREE_LIST:
12410 tree purpose, value, chain;
12412 if (t == void_list_node)
12413 return t;
12415 purpose = TREE_PURPOSE (t);
12416 if (purpose)
12417 purpose = tsubst_copy (purpose, args, complain, in_decl);
12418 value = TREE_VALUE (t);
12419 if (value)
12420 value = tsubst_copy (value, args, complain, in_decl);
12421 chain = TREE_CHAIN (t);
12422 if (chain && chain != void_type_node)
12423 chain = tsubst_copy (chain, args, complain, in_decl);
12424 if (purpose == TREE_PURPOSE (t)
12425 && value == TREE_VALUE (t)
12426 && chain == TREE_CHAIN (t))
12427 return t;
12428 return tree_cons (purpose, value, chain);
12431 case RECORD_TYPE:
12432 case UNION_TYPE:
12433 case ENUMERAL_TYPE:
12434 case INTEGER_TYPE:
12435 case TEMPLATE_TYPE_PARM:
12436 case TEMPLATE_TEMPLATE_PARM:
12437 case BOUND_TEMPLATE_TEMPLATE_PARM:
12438 case TEMPLATE_PARM_INDEX:
12439 case POINTER_TYPE:
12440 case REFERENCE_TYPE:
12441 case OFFSET_TYPE:
12442 case FUNCTION_TYPE:
12443 case METHOD_TYPE:
12444 case ARRAY_TYPE:
12445 case TYPENAME_TYPE:
12446 case UNBOUND_CLASS_TEMPLATE:
12447 case TYPEOF_TYPE:
12448 case DECLTYPE_TYPE:
12449 case TYPE_DECL:
12450 return tsubst (t, args, complain, in_decl);
12452 case IDENTIFIER_NODE:
12453 if (IDENTIFIER_TYPENAME_P (t))
12455 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12456 return mangle_conv_op_name_for_type (new_type);
12458 else
12459 return t;
12461 case CONSTRUCTOR:
12462 /* This is handled by tsubst_copy_and_build. */
12463 gcc_unreachable ();
12465 case VA_ARG_EXPR:
12466 return build_x_va_arg (EXPR_LOCATION (t),
12467 tsubst_copy (TREE_OPERAND (t, 0), args, complain,
12468 in_decl),
12469 tsubst (TREE_TYPE (t), args, complain, in_decl));
12471 case CLEANUP_POINT_EXPR:
12472 /* We shouldn't have built any of these during initial template
12473 generation. Instead, they should be built during instantiation
12474 in response to the saved STMT_IS_FULL_EXPR_P setting. */
12475 gcc_unreachable ();
12477 case OFFSET_REF:
12478 r = build2
12479 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12480 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12481 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12482 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
12483 mark_used (TREE_OPERAND (r, 1));
12484 return r;
12486 case EXPR_PACK_EXPANSION:
12487 error ("invalid use of pack expansion expression");
12488 return error_mark_node;
12490 case NONTYPE_ARGUMENT_PACK:
12491 error ("use %<...%> to expand argument pack");
12492 return error_mark_node;
12494 case INTEGER_CST:
12495 case REAL_CST:
12496 case STRING_CST:
12497 case COMPLEX_CST:
12499 /* Instantiate any typedefs in the type. */
12500 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12501 r = fold_convert (type, t);
12502 gcc_assert (TREE_CODE (r) == code);
12503 return r;
12506 case PTRMEM_CST:
12507 /* These can sometimes show up in a partial instantiation, but never
12508 involve template parms. */
12509 gcc_assert (!uses_template_parms (t));
12510 return t;
12512 default:
12513 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
12514 gcc_checking_assert (false);
12515 return t;
12519 /* Like tsubst_copy, but specifically for OpenMP clauses. */
12521 static tree
12522 tsubst_omp_clauses (tree clauses, tree args, tsubst_flags_t complain,
12523 tree in_decl)
12525 tree new_clauses = NULL, nc, oc;
12527 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
12529 nc = copy_node (oc);
12530 OMP_CLAUSE_CHAIN (nc) = new_clauses;
12531 new_clauses = nc;
12533 switch (OMP_CLAUSE_CODE (nc))
12535 case OMP_CLAUSE_LASTPRIVATE:
12536 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
12538 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
12539 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
12540 in_decl, /*integral_constant_expression_p=*/false);
12541 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
12542 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
12544 /* FALLTHRU */
12545 case OMP_CLAUSE_PRIVATE:
12546 case OMP_CLAUSE_SHARED:
12547 case OMP_CLAUSE_FIRSTPRIVATE:
12548 case OMP_CLAUSE_REDUCTION:
12549 case OMP_CLAUSE_COPYIN:
12550 case OMP_CLAUSE_COPYPRIVATE:
12551 case OMP_CLAUSE_IF:
12552 case OMP_CLAUSE_NUM_THREADS:
12553 case OMP_CLAUSE_SCHEDULE:
12554 case OMP_CLAUSE_COLLAPSE:
12555 case OMP_CLAUSE_FINAL:
12556 OMP_CLAUSE_OPERAND (nc, 0)
12557 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
12558 in_decl, /*integral_constant_expression_p=*/false);
12559 break;
12560 case OMP_CLAUSE_NOWAIT:
12561 case OMP_CLAUSE_ORDERED:
12562 case OMP_CLAUSE_DEFAULT:
12563 case OMP_CLAUSE_UNTIED:
12564 case OMP_CLAUSE_MERGEABLE:
12565 break;
12566 default:
12567 gcc_unreachable ();
12571 return finish_omp_clauses (nreverse (new_clauses));
12574 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
12576 static tree
12577 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
12578 tree in_decl)
12580 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
12582 tree purpose, value, chain;
12584 if (t == NULL)
12585 return t;
12587 if (TREE_CODE (t) != TREE_LIST)
12588 return tsubst_copy_and_build (t, args, complain, in_decl,
12589 /*function_p=*/false,
12590 /*integral_constant_expression_p=*/false);
12592 if (t == void_list_node)
12593 return t;
12595 purpose = TREE_PURPOSE (t);
12596 if (purpose)
12597 purpose = RECUR (purpose);
12598 value = TREE_VALUE (t);
12599 if (value)
12601 if (TREE_CODE (value) != LABEL_DECL)
12602 value = RECUR (value);
12603 else
12605 value = lookup_label (DECL_NAME (value));
12606 gcc_assert (TREE_CODE (value) == LABEL_DECL);
12607 TREE_USED (value) = 1;
12610 chain = TREE_CHAIN (t);
12611 if (chain && chain != void_type_node)
12612 chain = RECUR (chain);
12613 return tree_cons (purpose, value, chain);
12614 #undef RECUR
12617 /* Substitute one OMP_FOR iterator. */
12619 static void
12620 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
12621 tree condv, tree incrv, tree *clauses,
12622 tree args, tsubst_flags_t complain, tree in_decl,
12623 bool integral_constant_expression_p)
12625 #define RECUR(NODE) \
12626 tsubst_expr ((NODE), args, complain, in_decl, \
12627 integral_constant_expression_p)
12628 tree decl, init, cond, incr;
12629 bool init_decl;
12631 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
12632 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
12633 decl = TREE_OPERAND (init, 0);
12634 init = TREE_OPERAND (init, 1);
12635 /* Do this before substituting into decl to handle 'auto'. */
12636 init_decl = (init && TREE_CODE (init) == DECL_EXPR);
12637 init = RECUR (init);
12638 decl = RECUR (decl);
12639 if (init_decl)
12641 gcc_assert (!processing_template_decl);
12642 init = DECL_INITIAL (decl);
12643 DECL_INITIAL (decl) = NULL_TREE;
12646 gcc_assert (!type_dependent_expression_p (decl));
12648 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
12650 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
12651 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12652 if (TREE_CODE (incr) == MODIFY_EXPR)
12653 incr = build_x_modify_expr (EXPR_LOCATION (incr),
12654 RECUR (TREE_OPERAND (incr, 0)), NOP_EXPR,
12655 RECUR (TREE_OPERAND (incr, 1)),
12656 complain);
12657 else
12658 incr = RECUR (incr);
12659 TREE_VEC_ELT (declv, i) = decl;
12660 TREE_VEC_ELT (initv, i) = init;
12661 TREE_VEC_ELT (condv, i) = cond;
12662 TREE_VEC_ELT (incrv, i) = incr;
12663 return;
12666 if (init && !init_decl)
12668 tree c;
12669 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
12671 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
12672 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
12673 && OMP_CLAUSE_DECL (c) == decl)
12674 break;
12675 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
12676 && OMP_CLAUSE_DECL (c) == decl)
12677 error ("iteration variable %qD should not be firstprivate", decl);
12678 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
12679 && OMP_CLAUSE_DECL (c) == decl)
12680 error ("iteration variable %qD should not be reduction", decl);
12682 if (c == NULL)
12684 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
12685 OMP_CLAUSE_DECL (c) = decl;
12686 c = finish_omp_clauses (c);
12687 if (c)
12689 OMP_CLAUSE_CHAIN (c) = *clauses;
12690 *clauses = c;
12694 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
12695 if (COMPARISON_CLASS_P (cond))
12696 cond = build2 (TREE_CODE (cond), boolean_type_node,
12697 RECUR (TREE_OPERAND (cond, 0)),
12698 RECUR (TREE_OPERAND (cond, 1)));
12699 else
12700 cond = RECUR (cond);
12701 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12702 switch (TREE_CODE (incr))
12704 case PREINCREMENT_EXPR:
12705 case PREDECREMENT_EXPR:
12706 case POSTINCREMENT_EXPR:
12707 case POSTDECREMENT_EXPR:
12708 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
12709 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
12710 break;
12711 case MODIFY_EXPR:
12712 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12713 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12715 tree rhs = TREE_OPERAND (incr, 1);
12716 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12717 RECUR (TREE_OPERAND (incr, 0)),
12718 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12719 RECUR (TREE_OPERAND (rhs, 0)),
12720 RECUR (TREE_OPERAND (rhs, 1))));
12722 else
12723 incr = RECUR (incr);
12724 break;
12725 case MODOP_EXPR:
12726 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12727 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12729 tree lhs = RECUR (TREE_OPERAND (incr, 0));
12730 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
12731 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
12732 TREE_TYPE (decl), lhs,
12733 RECUR (TREE_OPERAND (incr, 2))));
12735 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
12736 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
12737 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
12739 tree rhs = TREE_OPERAND (incr, 2);
12740 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12741 RECUR (TREE_OPERAND (incr, 0)),
12742 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12743 RECUR (TREE_OPERAND (rhs, 0)),
12744 RECUR (TREE_OPERAND (rhs, 1))));
12746 else
12747 incr = RECUR (incr);
12748 break;
12749 default:
12750 incr = RECUR (incr);
12751 break;
12754 TREE_VEC_ELT (declv, i) = decl;
12755 TREE_VEC_ELT (initv, i) = init;
12756 TREE_VEC_ELT (condv, i) = cond;
12757 TREE_VEC_ELT (incrv, i) = incr;
12758 #undef RECUR
12761 /* Like tsubst_copy for expressions, etc. but also does semantic
12762 processing. */
12764 static tree
12765 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
12766 bool integral_constant_expression_p)
12768 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
12769 #define RECUR(NODE) \
12770 tsubst_expr ((NODE), args, complain, in_decl, \
12771 integral_constant_expression_p)
12773 tree stmt, tmp;
12774 tree r;
12775 location_t loc;
12777 if (t == NULL_TREE || t == error_mark_node)
12778 return t;
12780 loc = input_location;
12781 if (EXPR_HAS_LOCATION (t))
12782 input_location = EXPR_LOCATION (t);
12783 if (STATEMENT_CODE_P (TREE_CODE (t)))
12784 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
12786 switch (TREE_CODE (t))
12788 case STATEMENT_LIST:
12790 tree_stmt_iterator i;
12791 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
12792 RECUR (tsi_stmt (i));
12793 break;
12796 case CTOR_INITIALIZER:
12797 finish_mem_initializers (tsubst_initializer_list
12798 (TREE_OPERAND (t, 0), args));
12799 break;
12801 case RETURN_EXPR:
12802 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
12803 break;
12805 case EXPR_STMT:
12806 tmp = RECUR (EXPR_STMT_EXPR (t));
12807 if (EXPR_STMT_STMT_EXPR_RESULT (t))
12808 finish_stmt_expr_expr (tmp, cur_stmt_expr);
12809 else
12810 finish_expr_stmt (tmp);
12811 break;
12813 case USING_STMT:
12814 do_using_directive (USING_STMT_NAMESPACE (t));
12815 break;
12817 case DECL_EXPR:
12819 tree decl, pattern_decl;
12820 tree init;
12822 pattern_decl = decl = DECL_EXPR_DECL (t);
12823 if (TREE_CODE (decl) == LABEL_DECL)
12824 finish_label_decl (DECL_NAME (decl));
12825 else if (TREE_CODE (decl) == USING_DECL)
12827 tree scope = USING_DECL_SCOPE (decl);
12828 tree name = DECL_NAME (decl);
12829 tree decl;
12831 scope = tsubst (scope, args, complain, in_decl);
12832 decl = lookup_qualified_name (scope, name,
12833 /*is_type_p=*/false,
12834 /*complain=*/false);
12835 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
12836 qualified_name_lookup_error (scope, name, decl, input_location);
12837 else
12838 do_local_using_decl (decl, scope, name);
12840 else
12842 init = DECL_INITIAL (decl);
12843 decl = tsubst (decl, args, complain, in_decl);
12844 if (decl != error_mark_node)
12846 /* By marking the declaration as instantiated, we avoid
12847 trying to instantiate it. Since instantiate_decl can't
12848 handle local variables, and since we've already done
12849 all that needs to be done, that's the right thing to
12850 do. */
12851 if (TREE_CODE (decl) == VAR_DECL)
12852 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
12853 if (TREE_CODE (decl) == VAR_DECL
12854 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
12855 /* Anonymous aggregates are a special case. */
12856 finish_anon_union (decl);
12857 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
12859 DECL_CONTEXT (decl) = current_function_decl;
12860 if (DECL_NAME (decl) == this_identifier)
12862 tree lam = DECL_CONTEXT (current_function_decl);
12863 lam = CLASSTYPE_LAMBDA_EXPR (lam);
12864 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
12866 insert_capture_proxy (decl);
12868 else if (DECL_IMPLICIT_TYPEDEF_P (t))
12869 /* We already did a pushtag. */;
12870 else
12872 int const_init = false;
12873 maybe_push_decl (decl);
12874 if (TREE_CODE (decl) == VAR_DECL
12875 && DECL_PRETTY_FUNCTION_P (decl))
12877 /* For __PRETTY_FUNCTION__ we have to adjust the
12878 initializer. */
12879 const char *const name
12880 = cxx_printable_name (current_function_decl, 2);
12881 init = cp_fname_init (name, &TREE_TYPE (decl));
12883 else
12885 tree t = RECUR (init);
12887 if (init && !t)
12889 /* If we had an initializer but it
12890 instantiated to nothing,
12891 value-initialize the object. This will
12892 only occur when the initializer was a
12893 pack expansion where the parameter packs
12894 used in that expansion were of length
12895 zero. */
12896 init = build_value_init (TREE_TYPE (decl),
12897 complain);
12898 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12899 init = get_target_expr_sfinae (init, complain);
12901 else
12902 init = t;
12905 if (TREE_CODE (decl) == VAR_DECL)
12906 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
12907 (pattern_decl));
12908 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
12913 break;
12916 case FOR_STMT:
12917 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12918 RECUR (FOR_INIT_STMT (t));
12919 finish_for_init_stmt (stmt);
12920 tmp = RECUR (FOR_COND (t));
12921 finish_for_cond (tmp, stmt);
12922 tmp = RECUR (FOR_EXPR (t));
12923 finish_for_expr (tmp, stmt);
12924 RECUR (FOR_BODY (t));
12925 finish_for_stmt (stmt);
12926 break;
12928 case RANGE_FOR_STMT:
12930 tree decl, expr;
12931 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12932 decl = RANGE_FOR_DECL (t);
12933 decl = tsubst (decl, args, complain, in_decl);
12934 maybe_push_decl (decl);
12935 expr = RECUR (RANGE_FOR_EXPR (t));
12936 stmt = cp_convert_range_for (stmt, decl, expr);
12937 RECUR (RANGE_FOR_BODY (t));
12938 finish_for_stmt (stmt);
12940 break;
12942 case WHILE_STMT:
12943 stmt = begin_while_stmt ();
12944 tmp = RECUR (WHILE_COND (t));
12945 finish_while_stmt_cond (tmp, stmt);
12946 RECUR (WHILE_BODY (t));
12947 finish_while_stmt (stmt);
12948 break;
12950 case DO_STMT:
12951 stmt = begin_do_stmt ();
12952 RECUR (DO_BODY (t));
12953 finish_do_body (stmt);
12954 tmp = RECUR (DO_COND (t));
12955 finish_do_stmt (tmp, stmt);
12956 break;
12958 case IF_STMT:
12959 stmt = begin_if_stmt ();
12960 tmp = RECUR (IF_COND (t));
12961 finish_if_stmt_cond (tmp, stmt);
12962 RECUR (THEN_CLAUSE (t));
12963 finish_then_clause (stmt);
12965 if (ELSE_CLAUSE (t))
12967 begin_else_clause (stmt);
12968 RECUR (ELSE_CLAUSE (t));
12969 finish_else_clause (stmt);
12972 finish_if_stmt (stmt);
12973 break;
12975 case BIND_EXPR:
12976 if (BIND_EXPR_BODY_BLOCK (t))
12977 stmt = begin_function_body ();
12978 else
12979 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
12980 ? BCS_TRY_BLOCK : 0);
12982 RECUR (BIND_EXPR_BODY (t));
12984 if (BIND_EXPR_BODY_BLOCK (t))
12985 finish_function_body (stmt);
12986 else
12987 finish_compound_stmt (stmt);
12988 break;
12990 case BREAK_STMT:
12991 finish_break_stmt ();
12992 break;
12994 case CONTINUE_STMT:
12995 finish_continue_stmt ();
12996 break;
12998 case SWITCH_STMT:
12999 stmt = begin_switch_stmt ();
13000 tmp = RECUR (SWITCH_STMT_COND (t));
13001 finish_switch_cond (tmp, stmt);
13002 RECUR (SWITCH_STMT_BODY (t));
13003 finish_switch_stmt (stmt);
13004 break;
13006 case CASE_LABEL_EXPR:
13007 finish_case_label (EXPR_LOCATION (t),
13008 RECUR (CASE_LOW (t)),
13009 RECUR (CASE_HIGH (t)));
13010 break;
13012 case LABEL_EXPR:
13014 tree decl = LABEL_EXPR_LABEL (t);
13015 tree label;
13017 label = finish_label_stmt (DECL_NAME (decl));
13018 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
13019 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
13021 break;
13023 case GOTO_EXPR:
13024 tmp = GOTO_DESTINATION (t);
13025 if (TREE_CODE (tmp) != LABEL_DECL)
13026 /* Computed goto's must be tsubst'd into. On the other hand,
13027 non-computed gotos must not be; the identifier in question
13028 will have no binding. */
13029 tmp = RECUR (tmp);
13030 else
13031 tmp = DECL_NAME (tmp);
13032 finish_goto_stmt (tmp);
13033 break;
13035 case ASM_EXPR:
13036 tmp = finish_asm_stmt
13037 (ASM_VOLATILE_P (t),
13038 RECUR (ASM_STRING (t)),
13039 tsubst_copy_asm_operands (ASM_OUTPUTS (t), args, complain, in_decl),
13040 tsubst_copy_asm_operands (ASM_INPUTS (t), args, complain, in_decl),
13041 tsubst_copy_asm_operands (ASM_CLOBBERS (t), args, complain, in_decl),
13042 tsubst_copy_asm_operands (ASM_LABELS (t), args, complain, in_decl));
13044 tree asm_expr = tmp;
13045 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
13046 asm_expr = TREE_OPERAND (asm_expr, 0);
13047 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
13049 break;
13051 case TRY_BLOCK:
13052 if (CLEANUP_P (t))
13054 stmt = begin_try_block ();
13055 RECUR (TRY_STMTS (t));
13056 finish_cleanup_try_block (stmt);
13057 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
13059 else
13061 tree compound_stmt = NULL_TREE;
13063 if (FN_TRY_BLOCK_P (t))
13064 stmt = begin_function_try_block (&compound_stmt);
13065 else
13066 stmt = begin_try_block ();
13068 RECUR (TRY_STMTS (t));
13070 if (FN_TRY_BLOCK_P (t))
13071 finish_function_try_block (stmt);
13072 else
13073 finish_try_block (stmt);
13075 RECUR (TRY_HANDLERS (t));
13076 if (FN_TRY_BLOCK_P (t))
13077 finish_function_handler_sequence (stmt, compound_stmt);
13078 else
13079 finish_handler_sequence (stmt);
13081 break;
13083 case HANDLER:
13085 tree decl = HANDLER_PARMS (t);
13087 if (decl)
13089 decl = tsubst (decl, args, complain, in_decl);
13090 /* Prevent instantiate_decl from trying to instantiate
13091 this variable. We've already done all that needs to be
13092 done. */
13093 if (decl != error_mark_node)
13094 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13096 stmt = begin_handler ();
13097 finish_handler_parms (decl, stmt);
13098 RECUR (HANDLER_BODY (t));
13099 finish_handler (stmt);
13101 break;
13103 case TAG_DEFN:
13104 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
13105 if (CLASS_TYPE_P (tmp))
13107 /* Local classes are not independent templates; they are
13108 instantiated along with their containing function. And this
13109 way we don't have to deal with pushing out of one local class
13110 to instantiate a member of another local class. */
13111 tree fn;
13112 /* Closures are handled by the LAMBDA_EXPR. */
13113 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
13114 complete_type (tmp);
13115 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
13116 if (!DECL_ARTIFICIAL (fn))
13117 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
13119 break;
13121 case STATIC_ASSERT:
13123 tree condition;
13125 ++c_inhibit_evaluation_warnings;
13126 condition =
13127 tsubst_expr (STATIC_ASSERT_CONDITION (t),
13128 args,
13129 complain, in_decl,
13130 /*integral_constant_expression_p=*/true);
13131 --c_inhibit_evaluation_warnings;
13133 finish_static_assert (condition,
13134 STATIC_ASSERT_MESSAGE (t),
13135 STATIC_ASSERT_SOURCE_LOCATION (t),
13136 /*member_p=*/false);
13138 break;
13140 case OMP_PARALLEL:
13141 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t),
13142 args, complain, in_decl);
13143 stmt = begin_omp_parallel ();
13144 RECUR (OMP_PARALLEL_BODY (t));
13145 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
13146 = OMP_PARALLEL_COMBINED (t);
13147 break;
13149 case OMP_TASK:
13150 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t),
13151 args, complain, in_decl);
13152 stmt = begin_omp_task ();
13153 RECUR (OMP_TASK_BODY (t));
13154 finish_omp_task (tmp, stmt);
13155 break;
13157 case OMP_FOR:
13159 tree clauses, body, pre_body;
13160 tree declv, initv, condv, incrv;
13161 int i;
13163 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t),
13164 args, complain, in_decl);
13165 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13166 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13167 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13168 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13170 stmt = begin_omp_structured_block ();
13172 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
13173 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
13174 &clauses, args, complain, in_decl,
13175 integral_constant_expression_p);
13177 pre_body = push_stmt_list ();
13178 RECUR (OMP_FOR_PRE_BODY (t));
13179 pre_body = pop_stmt_list (pre_body);
13181 body = push_stmt_list ();
13182 RECUR (OMP_FOR_BODY (t));
13183 body = pop_stmt_list (body);
13185 t = finish_omp_for (EXPR_LOCATION (t), declv, initv, condv, incrv,
13186 body, pre_body, clauses);
13188 add_stmt (finish_omp_structured_block (stmt));
13190 break;
13192 case OMP_SECTIONS:
13193 case OMP_SINGLE:
13194 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), args, complain, in_decl);
13195 stmt = push_stmt_list ();
13196 RECUR (OMP_BODY (t));
13197 stmt = pop_stmt_list (stmt);
13199 t = copy_node (t);
13200 OMP_BODY (t) = stmt;
13201 OMP_CLAUSES (t) = tmp;
13202 add_stmt (t);
13203 break;
13205 case OMP_SECTION:
13206 case OMP_CRITICAL:
13207 case OMP_MASTER:
13208 case OMP_ORDERED:
13209 stmt = push_stmt_list ();
13210 RECUR (OMP_BODY (t));
13211 stmt = pop_stmt_list (stmt);
13213 t = copy_node (t);
13214 OMP_BODY (t) = stmt;
13215 add_stmt (t);
13216 break;
13218 case OMP_ATOMIC:
13219 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
13220 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
13222 tree op1 = TREE_OPERAND (t, 1);
13223 tree rhs1 = NULL_TREE;
13224 tree lhs, rhs;
13225 if (TREE_CODE (op1) == COMPOUND_EXPR)
13227 rhs1 = RECUR (TREE_OPERAND (op1, 0));
13228 op1 = TREE_OPERAND (op1, 1);
13230 lhs = RECUR (TREE_OPERAND (op1, 0));
13231 rhs = RECUR (TREE_OPERAND (op1, 1));
13232 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
13233 NULL_TREE, NULL_TREE, rhs1);
13235 else
13237 tree op1 = TREE_OPERAND (t, 1);
13238 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
13239 tree rhs1 = NULL_TREE;
13240 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
13241 enum tree_code opcode = NOP_EXPR;
13242 if (code == OMP_ATOMIC_READ)
13244 v = RECUR (TREE_OPERAND (op1, 0));
13245 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13247 else if (code == OMP_ATOMIC_CAPTURE_OLD
13248 || code == OMP_ATOMIC_CAPTURE_NEW)
13250 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
13251 v = RECUR (TREE_OPERAND (op1, 0));
13252 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13253 if (TREE_CODE (op11) == COMPOUND_EXPR)
13255 rhs1 = RECUR (TREE_OPERAND (op11, 0));
13256 op11 = TREE_OPERAND (op11, 1);
13258 lhs = RECUR (TREE_OPERAND (op11, 0));
13259 rhs = RECUR (TREE_OPERAND (op11, 1));
13260 opcode = TREE_CODE (op11);
13262 else
13264 code = OMP_ATOMIC;
13265 lhs = RECUR (TREE_OPERAND (op1, 0));
13266 rhs = RECUR (TREE_OPERAND (op1, 1));
13268 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1);
13270 break;
13272 case TRANSACTION_EXPR:
13274 int flags = 0;
13275 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
13276 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
13278 if (TRANSACTION_EXPR_IS_STMT (t))
13280 tree body = TRANSACTION_EXPR_BODY (t);
13281 tree noex = NULL_TREE;
13282 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
13284 noex = MUST_NOT_THROW_COND (body);
13285 if (noex == NULL_TREE)
13286 noex = boolean_true_node;
13287 body = TREE_OPERAND (body, 0);
13289 stmt = begin_transaction_stmt (input_location, NULL, flags);
13290 RECUR (body);
13291 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
13293 else
13295 stmt = build_transaction_expr (EXPR_LOCATION (t),
13296 RECUR (TRANSACTION_EXPR_BODY (t)),
13297 flags, NULL_TREE);
13298 RETURN (stmt);
13301 break;
13303 case MUST_NOT_THROW_EXPR:
13304 RETURN (build_must_not_throw_expr (RECUR (TREE_OPERAND (t, 0)),
13305 RECUR (MUST_NOT_THROW_COND (t))));
13307 case EXPR_PACK_EXPANSION:
13308 error ("invalid use of pack expansion expression");
13309 RETURN (error_mark_node);
13311 case NONTYPE_ARGUMENT_PACK:
13312 error ("use %<...%> to expand argument pack");
13313 RETURN (error_mark_node);
13315 case COMPOUND_EXPR:
13316 tmp = RECUR (TREE_OPERAND (t, 0));
13317 if (tmp == NULL_TREE)
13318 /* If the first operand was a statement, we're done with it. */
13319 RETURN (RECUR (TREE_OPERAND (t, 1)));
13320 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
13321 RECUR (TREE_OPERAND (t, 1)),
13322 complain));
13324 default:
13325 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
13327 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
13328 /*function_p=*/false,
13329 integral_constant_expression_p));
13332 RETURN (NULL_TREE);
13333 out:
13334 input_location = loc;
13335 return r;
13336 #undef RECUR
13337 #undef RETURN
13340 /* T is a postfix-expression that is not being used in a function
13341 call. Return the substituted version of T. */
13343 static tree
13344 tsubst_non_call_postfix_expression (tree t, tree args,
13345 tsubst_flags_t complain,
13346 tree in_decl)
13348 if (TREE_CODE (t) == SCOPE_REF)
13349 t = tsubst_qualified_id (t, args, complain, in_decl,
13350 /*done=*/false, /*address_p=*/false);
13351 else
13352 t = tsubst_copy_and_build (t, args, complain, in_decl,
13353 /*function_p=*/false,
13354 /*integral_constant_expression_p=*/false);
13356 return t;
13359 /* Like tsubst but deals with expressions and performs semantic
13360 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
13362 tree
13363 tsubst_copy_and_build (tree t,
13364 tree args,
13365 tsubst_flags_t complain,
13366 tree in_decl,
13367 bool function_p,
13368 bool integral_constant_expression_p)
13370 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
13371 #define RECUR(NODE) \
13372 tsubst_copy_and_build (NODE, args, complain, in_decl, \
13373 /*function_p=*/false, \
13374 integral_constant_expression_p)
13376 tree retval, op1;
13377 location_t loc;
13379 if (t == NULL_TREE || t == error_mark_node)
13380 return t;
13382 loc = input_location;
13383 if (EXPR_HAS_LOCATION (t))
13384 input_location = EXPR_LOCATION (t);
13386 switch (TREE_CODE (t))
13388 case USING_DECL:
13389 t = DECL_NAME (t);
13390 /* Fall through. */
13391 case IDENTIFIER_NODE:
13393 tree decl;
13394 cp_id_kind idk;
13395 bool non_integral_constant_expression_p;
13396 const char *error_msg;
13398 if (IDENTIFIER_TYPENAME_P (t))
13400 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13401 t = mangle_conv_op_name_for_type (new_type);
13404 /* Look up the name. */
13405 decl = lookup_name (t);
13407 /* By convention, expressions use ERROR_MARK_NODE to indicate
13408 failure, not NULL_TREE. */
13409 if (decl == NULL_TREE)
13410 decl = error_mark_node;
13412 decl = finish_id_expression (t, decl, NULL_TREE,
13413 &idk,
13414 integral_constant_expression_p,
13415 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx0x),
13416 &non_integral_constant_expression_p,
13417 /*template_p=*/false,
13418 /*done=*/true,
13419 /*address_p=*/false,
13420 /*template_arg_p=*/false,
13421 &error_msg,
13422 input_location);
13423 if (error_msg)
13424 error (error_msg);
13425 if (!function_p && TREE_CODE (decl) == IDENTIFIER_NODE)
13427 if (complain & tf_error)
13428 unqualified_name_lookup_error (decl);
13429 decl = error_mark_node;
13431 RETURN (decl);
13434 case TEMPLATE_ID_EXPR:
13436 tree object;
13437 tree templ = RECUR (TREE_OPERAND (t, 0));
13438 tree targs = TREE_OPERAND (t, 1);
13440 if (targs)
13441 targs = tsubst_template_args (targs, args, complain, in_decl);
13443 if (TREE_CODE (templ) == COMPONENT_REF)
13445 object = TREE_OPERAND (templ, 0);
13446 templ = TREE_OPERAND (templ, 1);
13448 else
13449 object = NULL_TREE;
13450 templ = lookup_template_function (templ, targs);
13452 if (object)
13453 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
13454 object, templ, NULL_TREE));
13455 else
13456 RETURN (baselink_for_fns (templ));
13459 case INDIRECT_REF:
13461 tree r = RECUR (TREE_OPERAND (t, 0));
13463 if (REFERENCE_REF_P (t))
13465 /* A type conversion to reference type will be enclosed in
13466 such an indirect ref, but the substitution of the cast
13467 will have also added such an indirect ref. */
13468 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
13469 r = convert_from_reference (r);
13471 else
13472 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR, complain);
13473 RETURN (r);
13476 case NOP_EXPR:
13477 RETURN (build_nop
13478 (tsubst (TREE_TYPE (t), args, complain, in_decl),
13479 RECUR (TREE_OPERAND (t, 0))));
13481 case IMPLICIT_CONV_EXPR:
13483 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13484 tree expr = RECUR (TREE_OPERAND (t, 0));
13485 int flags = LOOKUP_IMPLICIT;
13486 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
13487 flags = LOOKUP_NORMAL;
13488 RETURN (perform_implicit_conversion_flags (type, expr, complain,
13489 flags));
13492 case CONVERT_EXPR:
13493 RETURN (build1
13494 (CONVERT_EXPR,
13495 tsubst (TREE_TYPE (t), args, complain, in_decl),
13496 RECUR (TREE_OPERAND (t, 0))));
13498 case CAST_EXPR:
13499 case REINTERPRET_CAST_EXPR:
13500 case CONST_CAST_EXPR:
13501 case DYNAMIC_CAST_EXPR:
13502 case STATIC_CAST_EXPR:
13504 tree type;
13505 tree op, r = NULL_TREE;
13507 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13508 if (integral_constant_expression_p
13509 && !cast_valid_in_integral_constant_expression_p (type))
13511 if (complain & tf_error)
13512 error ("a cast to a type other than an integral or "
13513 "enumeration type cannot appear in a constant-expression");
13514 RETURN (error_mark_node);
13517 op = RECUR (TREE_OPERAND (t, 0));
13519 ++c_inhibit_evaluation_warnings;
13520 switch (TREE_CODE (t))
13522 case CAST_EXPR:
13523 r = build_functional_cast (type, op, complain);
13524 break;
13525 case REINTERPRET_CAST_EXPR:
13526 r = build_reinterpret_cast (type, op, complain);
13527 break;
13528 case CONST_CAST_EXPR:
13529 r = build_const_cast (type, op, complain);
13530 break;
13531 case DYNAMIC_CAST_EXPR:
13532 r = build_dynamic_cast (type, op, complain);
13533 break;
13534 case STATIC_CAST_EXPR:
13535 r = build_static_cast (type, op, complain);
13536 break;
13537 default:
13538 gcc_unreachable ();
13540 --c_inhibit_evaluation_warnings;
13542 RETURN (r);
13545 case POSTDECREMENT_EXPR:
13546 case POSTINCREMENT_EXPR:
13547 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13548 args, complain, in_decl);
13549 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1, complain));
13551 case PREDECREMENT_EXPR:
13552 case PREINCREMENT_EXPR:
13553 case NEGATE_EXPR:
13554 case BIT_NOT_EXPR:
13555 case ABS_EXPR:
13556 case TRUTH_NOT_EXPR:
13557 case UNARY_PLUS_EXPR: /* Unary + */
13558 case REALPART_EXPR:
13559 case IMAGPART_EXPR:
13560 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
13561 RECUR (TREE_OPERAND (t, 0)), complain));
13563 case FIX_TRUNC_EXPR:
13564 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
13565 0, complain));
13567 case ADDR_EXPR:
13568 op1 = TREE_OPERAND (t, 0);
13569 if (TREE_CODE (op1) == LABEL_DECL)
13570 RETURN (finish_label_address_expr (DECL_NAME (op1),
13571 EXPR_LOCATION (op1)));
13572 if (TREE_CODE (op1) == SCOPE_REF)
13573 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
13574 /*done=*/true, /*address_p=*/true);
13575 else
13576 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
13577 in_decl);
13578 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1, complain));
13580 case PLUS_EXPR:
13581 case MINUS_EXPR:
13582 case MULT_EXPR:
13583 case TRUNC_DIV_EXPR:
13584 case CEIL_DIV_EXPR:
13585 case FLOOR_DIV_EXPR:
13586 case ROUND_DIV_EXPR:
13587 case EXACT_DIV_EXPR:
13588 case BIT_AND_EXPR:
13589 case BIT_IOR_EXPR:
13590 case BIT_XOR_EXPR:
13591 case TRUNC_MOD_EXPR:
13592 case FLOOR_MOD_EXPR:
13593 case TRUTH_ANDIF_EXPR:
13594 case TRUTH_ORIF_EXPR:
13595 case TRUTH_AND_EXPR:
13596 case TRUTH_OR_EXPR:
13597 case RSHIFT_EXPR:
13598 case LSHIFT_EXPR:
13599 case RROTATE_EXPR:
13600 case LROTATE_EXPR:
13601 case EQ_EXPR:
13602 case NE_EXPR:
13603 case MAX_EXPR:
13604 case MIN_EXPR:
13605 case LE_EXPR:
13606 case GE_EXPR:
13607 case LT_EXPR:
13608 case GT_EXPR:
13609 case MEMBER_REF:
13610 case DOTSTAR_EXPR:
13612 tree r;
13614 ++c_inhibit_evaluation_warnings;
13616 r = build_x_binary_op
13617 (input_location, TREE_CODE (t),
13618 RECUR (TREE_OPERAND (t, 0)),
13619 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
13620 ? ERROR_MARK
13621 : TREE_CODE (TREE_OPERAND (t, 0))),
13622 RECUR (TREE_OPERAND (t, 1)),
13623 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
13624 ? ERROR_MARK
13625 : TREE_CODE (TREE_OPERAND (t, 1))),
13626 /*overload=*/NULL,
13627 complain);
13628 if (EXPR_P (r) && TREE_NO_WARNING (t))
13629 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13631 --c_inhibit_evaluation_warnings;
13633 RETURN (r);
13636 case SCOPE_REF:
13637 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
13638 /*address_p=*/false));
13639 case ARRAY_REF:
13640 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13641 args, complain, in_decl);
13642 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
13643 RECUR (TREE_OPERAND (t, 1)), complain));
13645 case SIZEOF_EXPR:
13646 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13647 RETURN (tsubst_copy (t, args, complain, in_decl));
13648 /* Fall through */
13650 case ALIGNOF_EXPR:
13652 tree r;
13654 op1 = TREE_OPERAND (t, 0);
13655 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
13656 op1 = TREE_TYPE (op1);
13657 if (!args)
13659 /* When there are no ARGS, we are trying to evaluate a
13660 non-dependent expression from the parser. Trying to do
13661 the substitutions may not work. */
13662 if (!TYPE_P (op1))
13663 op1 = TREE_TYPE (op1);
13665 else
13667 ++cp_unevaluated_operand;
13668 ++c_inhibit_evaluation_warnings;
13669 if (TYPE_P (op1))
13670 op1 = tsubst (op1, args, complain, in_decl);
13671 else
13672 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13673 /*function_p=*/false,
13674 /*integral_constant_expression_p=*/
13675 false);
13676 --cp_unevaluated_operand;
13677 --c_inhibit_evaluation_warnings;
13679 if (TYPE_P (op1))
13680 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
13681 complain & tf_error);
13682 else
13683 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
13684 complain & tf_error);
13685 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
13687 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
13689 if (!processing_template_decl && TYPE_P (op1))
13691 r = build_min (SIZEOF_EXPR, size_type_node,
13692 build1 (NOP_EXPR, op1, error_mark_node));
13693 SIZEOF_EXPR_TYPE_P (r) = 1;
13695 else
13696 r = build_min (SIZEOF_EXPR, size_type_node, op1);
13697 TREE_SIDE_EFFECTS (r) = 0;
13698 TREE_READONLY (r) = 1;
13700 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
13702 RETURN (r);
13705 case AT_ENCODE_EXPR:
13707 op1 = TREE_OPERAND (t, 0);
13708 ++cp_unevaluated_operand;
13709 ++c_inhibit_evaluation_warnings;
13710 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13711 /*function_p=*/false,
13712 /*integral_constant_expression_p=*/false);
13713 --cp_unevaluated_operand;
13714 --c_inhibit_evaluation_warnings;
13715 RETURN (objc_build_encode_expr (op1));
13718 case NOEXCEPT_EXPR:
13719 op1 = TREE_OPERAND (t, 0);
13720 ++cp_unevaluated_operand;
13721 ++c_inhibit_evaluation_warnings;
13722 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13723 /*function_p=*/false,
13724 /*integral_constant_expression_p=*/false);
13725 --cp_unevaluated_operand;
13726 --c_inhibit_evaluation_warnings;
13727 RETURN (finish_noexcept_expr (op1, complain));
13729 case MODOP_EXPR:
13731 tree r = build_x_modify_expr
13732 (EXPR_LOCATION (t),
13733 RECUR (TREE_OPERAND (t, 0)),
13734 TREE_CODE (TREE_OPERAND (t, 1)),
13735 RECUR (TREE_OPERAND (t, 2)),
13736 complain);
13737 /* TREE_NO_WARNING must be set if either the expression was
13738 parenthesized or it uses an operator such as >>= rather
13739 than plain assignment. In the former case, it was already
13740 set and must be copied. In the latter case,
13741 build_x_modify_expr sets it and it must not be reset
13742 here. */
13743 if (TREE_NO_WARNING (t))
13744 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13745 RETURN (r);
13748 case ARROW_EXPR:
13749 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13750 args, complain, in_decl);
13751 /* Remember that there was a reference to this entity. */
13752 if (DECL_P (op1))
13753 mark_used (op1);
13754 RETURN (build_x_arrow (input_location, op1, complain));
13756 case NEW_EXPR:
13758 tree placement = RECUR (TREE_OPERAND (t, 0));
13759 tree init = RECUR (TREE_OPERAND (t, 3));
13760 vec<tree, va_gc> *placement_vec;
13761 vec<tree, va_gc> *init_vec;
13762 tree ret;
13764 if (placement == NULL_TREE)
13765 placement_vec = NULL;
13766 else
13768 placement_vec = make_tree_vector ();
13769 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
13770 vec_safe_push (placement_vec, TREE_VALUE (placement));
13773 /* If there was an initializer in the original tree, but it
13774 instantiated to an empty list, then we should pass a
13775 non-NULL empty vector to tell build_new that it was an
13776 empty initializer() rather than no initializer. This can
13777 only happen when the initializer is a pack expansion whose
13778 parameter packs are of length zero. */
13779 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
13780 init_vec = NULL;
13781 else
13783 init_vec = make_tree_vector ();
13784 if (init == void_zero_node)
13785 gcc_assert (init_vec != NULL);
13786 else
13788 for (; init != NULL_TREE; init = TREE_CHAIN (init))
13789 vec_safe_push (init_vec, TREE_VALUE (init));
13793 ret = build_new (&placement_vec,
13794 tsubst (TREE_OPERAND (t, 1), args, complain, in_decl),
13795 RECUR (TREE_OPERAND (t, 2)),
13796 &init_vec,
13797 NEW_EXPR_USE_GLOBAL (t),
13798 complain);
13800 if (placement_vec != NULL)
13801 release_tree_vector (placement_vec);
13802 if (init_vec != NULL)
13803 release_tree_vector (init_vec);
13805 RETURN (ret);
13808 case DELETE_EXPR:
13809 RETURN (delete_sanity
13810 (RECUR (TREE_OPERAND (t, 0)),
13811 RECUR (TREE_OPERAND (t, 1)),
13812 DELETE_EXPR_USE_VEC (t),
13813 DELETE_EXPR_USE_GLOBAL (t),
13814 complain));
13816 case COMPOUND_EXPR:
13817 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
13818 RECUR (TREE_OPERAND (t, 0)),
13819 RECUR (TREE_OPERAND (t, 1)),
13820 complain));
13822 case CALL_EXPR:
13824 tree function;
13825 vec<tree, va_gc> *call_args;
13826 unsigned int nargs, i;
13827 bool qualified_p;
13828 bool koenig_p;
13829 tree ret;
13831 function = CALL_EXPR_FN (t);
13832 /* When we parsed the expression, we determined whether or
13833 not Koenig lookup should be performed. */
13834 koenig_p = KOENIG_LOOKUP_P (t);
13835 if (TREE_CODE (function) == SCOPE_REF)
13837 qualified_p = true;
13838 function = tsubst_qualified_id (function, args, complain, in_decl,
13839 /*done=*/false,
13840 /*address_p=*/false);
13842 else if (koenig_p && TREE_CODE (function) == IDENTIFIER_NODE)
13844 /* Do nothing; calling tsubst_copy_and_build on an identifier
13845 would incorrectly perform unqualified lookup again.
13847 Note that we can also have an IDENTIFIER_NODE if the earlier
13848 unqualified lookup found a member function; in that case
13849 koenig_p will be false and we do want to do the lookup
13850 again to find the instantiated member function.
13852 FIXME but doing that causes c++/15272, so we need to stop
13853 using IDENTIFIER_NODE in that situation. */
13854 qualified_p = false;
13856 else
13858 if (TREE_CODE (function) == COMPONENT_REF)
13860 tree op = TREE_OPERAND (function, 1);
13862 qualified_p = (TREE_CODE (op) == SCOPE_REF
13863 || (BASELINK_P (op)
13864 && BASELINK_QUALIFIED_P (op)));
13866 else
13867 qualified_p = false;
13869 if (TREE_CODE (function) == ADDR_EXPR
13870 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
13871 /* Avoid error about taking the address of a constructor. */
13872 function = TREE_OPERAND (function, 0);
13874 function = tsubst_copy_and_build (function, args, complain,
13875 in_decl,
13876 !qualified_p,
13877 integral_constant_expression_p);
13879 if (BASELINK_P (function))
13880 qualified_p = true;
13883 nargs = call_expr_nargs (t);
13884 call_args = make_tree_vector ();
13885 for (i = 0; i < nargs; ++i)
13887 tree arg = CALL_EXPR_ARG (t, i);
13889 if (!PACK_EXPANSION_P (arg))
13890 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
13891 else
13893 /* Expand the pack expansion and push each entry onto
13894 CALL_ARGS. */
13895 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
13896 if (TREE_CODE (arg) == TREE_VEC)
13898 unsigned int len, j;
13900 len = TREE_VEC_LENGTH (arg);
13901 for (j = 0; j < len; ++j)
13903 tree value = TREE_VEC_ELT (arg, j);
13904 if (value != NULL_TREE)
13905 value = convert_from_reference (value);
13906 vec_safe_push (call_args, value);
13909 else
13911 /* A partial substitution. Add one entry. */
13912 vec_safe_push (call_args, arg);
13917 /* We do not perform argument-dependent lookup if normal
13918 lookup finds a non-function, in accordance with the
13919 expected resolution of DR 218. */
13920 if (koenig_p
13921 && ((is_overloaded_fn (function)
13922 /* If lookup found a member function, the Koenig lookup is
13923 not appropriate, even if an unqualified-name was used
13924 to denote the function. */
13925 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
13926 || TREE_CODE (function) == IDENTIFIER_NODE)
13927 /* Only do this when substitution turns a dependent call
13928 into a non-dependent call. */
13929 && type_dependent_expression_p_push (t)
13930 && !any_type_dependent_arguments_p (call_args))
13931 function = perform_koenig_lookup (function, call_args, false,
13932 tf_none);
13934 if (TREE_CODE (function) == IDENTIFIER_NODE
13935 && !any_type_dependent_arguments_p (call_args))
13937 if (koenig_p && (complain & tf_warning_or_error))
13939 /* For backwards compatibility and good diagnostics, try
13940 the unqualified lookup again if we aren't in SFINAE
13941 context. */
13942 tree unq = (tsubst_copy_and_build
13943 (function, args, complain, in_decl, true,
13944 integral_constant_expression_p));
13945 if (unq == error_mark_node)
13946 RETURN (error_mark_node);
13948 if (unq != function)
13950 tree fn = unq;
13951 if (TREE_CODE (fn) == INDIRECT_REF)
13952 fn = TREE_OPERAND (fn, 0);
13953 if (TREE_CODE (fn) == COMPONENT_REF)
13954 fn = TREE_OPERAND (fn, 1);
13955 if (is_overloaded_fn (fn))
13956 fn = get_first_fn (fn);
13957 permerror (EXPR_LOC_OR_HERE (t),
13958 "%qD was not declared in this scope, "
13959 "and no declarations were found by "
13960 "argument-dependent lookup at the point "
13961 "of instantiation", function);
13962 if (!DECL_P (fn))
13963 /* Can't say anything more. */;
13964 else if (DECL_CLASS_SCOPE_P (fn))
13966 inform (EXPR_LOC_OR_HERE (t),
13967 "declarations in dependent base %qT are "
13968 "not found by unqualified lookup",
13969 DECL_CLASS_CONTEXT (fn));
13970 if (current_class_ptr)
13971 inform (EXPR_LOC_OR_HERE (t),
13972 "use %<this->%D%> instead", function);
13973 else
13974 inform (EXPR_LOC_OR_HERE (t),
13975 "use %<%T::%D%> instead",
13976 current_class_name, function);
13978 else
13979 inform (0, "%q+D declared here, later in the "
13980 "translation unit", fn);
13981 function = unq;
13984 if (TREE_CODE (function) == IDENTIFIER_NODE)
13986 if (complain & tf_error)
13987 unqualified_name_lookup_error (function);
13988 release_tree_vector (call_args);
13989 RETURN (error_mark_node);
13993 /* Remember that there was a reference to this entity. */
13994 if (DECL_P (function))
13995 mark_used (function);
13997 if (TREE_CODE (function) == OFFSET_REF)
13998 ret = build_offset_ref_call_from_tree (function, &call_args,
13999 complain);
14000 else if (TREE_CODE (function) == COMPONENT_REF)
14002 tree instance = TREE_OPERAND (function, 0);
14003 tree fn = TREE_OPERAND (function, 1);
14005 if (processing_template_decl
14006 && (type_dependent_expression_p (instance)
14007 || (!BASELINK_P (fn)
14008 && TREE_CODE (fn) != FIELD_DECL)
14009 || type_dependent_expression_p (fn)
14010 || any_type_dependent_arguments_p (call_args)))
14011 ret = build_nt_call_vec (function, call_args);
14012 else if (!BASELINK_P (fn))
14013 ret = finish_call_expr (function, &call_args,
14014 /*disallow_virtual=*/false,
14015 /*koenig_p=*/false,
14016 complain);
14017 else
14018 ret = (build_new_method_call
14019 (instance, fn,
14020 &call_args, NULL_TREE,
14021 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
14022 /*fn_p=*/NULL,
14023 complain));
14025 else
14026 ret = finish_call_expr (function, &call_args,
14027 /*disallow_virtual=*/qualified_p,
14028 koenig_p,
14029 complain);
14031 release_tree_vector (call_args);
14033 RETURN (ret);
14036 case COND_EXPR:
14038 tree cond = RECUR (TREE_OPERAND (t, 0));
14039 tree exp1, exp2;
14041 if (TREE_CODE (cond) == INTEGER_CST)
14043 if (integer_zerop (cond))
14045 ++c_inhibit_evaluation_warnings;
14046 exp1 = RECUR (TREE_OPERAND (t, 1));
14047 --c_inhibit_evaluation_warnings;
14048 exp2 = RECUR (TREE_OPERAND (t, 2));
14050 else
14052 exp1 = RECUR (TREE_OPERAND (t, 1));
14053 ++c_inhibit_evaluation_warnings;
14054 exp2 = RECUR (TREE_OPERAND (t, 2));
14055 --c_inhibit_evaluation_warnings;
14058 else
14060 exp1 = RECUR (TREE_OPERAND (t, 1));
14061 exp2 = RECUR (TREE_OPERAND (t, 2));
14064 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
14065 cond, exp1, exp2, complain));
14068 case PSEUDO_DTOR_EXPR:
14069 RETURN (finish_pseudo_destructor_expr
14070 (RECUR (TREE_OPERAND (t, 0)),
14071 RECUR (TREE_OPERAND (t, 1)),
14072 tsubst (TREE_OPERAND (t, 2), args, complain, in_decl)));
14074 case TREE_LIST:
14076 tree purpose, value, chain;
14078 if (t == void_list_node)
14079 RETURN (t);
14081 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
14082 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
14084 /* We have pack expansions, so expand those and
14085 create a new list out of it. */
14086 tree purposevec = NULL_TREE;
14087 tree valuevec = NULL_TREE;
14088 tree chain;
14089 int i, len = -1;
14091 /* Expand the argument expressions. */
14092 if (TREE_PURPOSE (t))
14093 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
14094 complain, in_decl);
14095 if (TREE_VALUE (t))
14096 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
14097 complain, in_decl);
14099 /* Build the rest of the list. */
14100 chain = TREE_CHAIN (t);
14101 if (chain && chain != void_type_node)
14102 chain = RECUR (chain);
14104 /* Determine the number of arguments. */
14105 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
14107 len = TREE_VEC_LENGTH (purposevec);
14108 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
14110 else if (TREE_CODE (valuevec) == TREE_VEC)
14111 len = TREE_VEC_LENGTH (valuevec);
14112 else
14114 /* Since we only performed a partial substitution into
14115 the argument pack, we only RETURN (a single list
14116 node. */
14117 if (purposevec == TREE_PURPOSE (t)
14118 && valuevec == TREE_VALUE (t)
14119 && chain == TREE_CHAIN (t))
14120 RETURN (t);
14122 RETURN (tree_cons (purposevec, valuevec, chain));
14125 /* Convert the argument vectors into a TREE_LIST */
14126 i = len;
14127 while (i > 0)
14129 /* Grab the Ith values. */
14130 i--;
14131 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
14132 : NULL_TREE;
14133 value
14134 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
14135 : NULL_TREE;
14137 /* Build the list (backwards). */
14138 chain = tree_cons (purpose, value, chain);
14141 RETURN (chain);
14144 purpose = TREE_PURPOSE (t);
14145 if (purpose)
14146 purpose = RECUR (purpose);
14147 value = TREE_VALUE (t);
14148 if (value)
14149 value = RECUR (value);
14150 chain = TREE_CHAIN (t);
14151 if (chain && chain != void_type_node)
14152 chain = RECUR (chain);
14153 if (purpose == TREE_PURPOSE (t)
14154 && value == TREE_VALUE (t)
14155 && chain == TREE_CHAIN (t))
14156 RETURN (t);
14157 RETURN (tree_cons (purpose, value, chain));
14160 case COMPONENT_REF:
14162 tree object;
14163 tree object_type;
14164 tree member;
14166 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14167 args, complain, in_decl);
14168 /* Remember that there was a reference to this entity. */
14169 if (DECL_P (object))
14170 mark_used (object);
14171 object_type = TREE_TYPE (object);
14173 member = TREE_OPERAND (t, 1);
14174 if (BASELINK_P (member))
14175 member = tsubst_baselink (member,
14176 non_reference (TREE_TYPE (object)),
14177 args, complain, in_decl);
14178 else
14179 member = tsubst_copy (member, args, complain, in_decl);
14180 if (member == error_mark_node)
14181 RETURN (error_mark_node);
14183 if (type_dependent_expression_p (object))
14184 /* We can't do much here. */;
14185 else if (!CLASS_TYPE_P (object_type))
14187 if (scalarish_type_p (object_type))
14189 tree s = NULL_TREE;
14190 tree dtor = member;
14192 if (TREE_CODE (dtor) == SCOPE_REF)
14194 s = TREE_OPERAND (dtor, 0);
14195 dtor = TREE_OPERAND (dtor, 1);
14197 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
14199 dtor = TREE_OPERAND (dtor, 0);
14200 if (TYPE_P (dtor))
14201 RETURN (finish_pseudo_destructor_expr (object, s, dtor));
14205 else if (TREE_CODE (member) == SCOPE_REF
14206 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
14208 /* Lookup the template functions now that we know what the
14209 scope is. */
14210 tree scope = TREE_OPERAND (member, 0);
14211 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
14212 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
14213 member = lookup_qualified_name (scope, tmpl,
14214 /*is_type_p=*/false,
14215 /*complain=*/false);
14216 if (BASELINK_P (member))
14218 BASELINK_FUNCTIONS (member)
14219 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
14220 args);
14221 member = (adjust_result_of_qualified_name_lookup
14222 (member, BINFO_TYPE (BASELINK_BINFO (member)),
14223 object_type));
14225 else
14227 qualified_name_lookup_error (scope, tmpl, member,
14228 input_location);
14229 RETURN (error_mark_node);
14232 else if (TREE_CODE (member) == SCOPE_REF
14233 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
14234 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
14236 if (complain & tf_error)
14238 if (TYPE_P (TREE_OPERAND (member, 0)))
14239 error ("%qT is not a class or namespace",
14240 TREE_OPERAND (member, 0));
14241 else
14242 error ("%qD is not a class or namespace",
14243 TREE_OPERAND (member, 0));
14245 RETURN (error_mark_node);
14247 else if (TREE_CODE (member) == FIELD_DECL)
14248 RETURN (finish_non_static_data_member (member, object, NULL_TREE));
14250 RETURN (finish_class_member_access_expr (object, member,
14251 /*template_p=*/false,
14252 complain));
14255 case THROW_EXPR:
14256 RETURN (build_throw
14257 (RECUR (TREE_OPERAND (t, 0))));
14259 case CONSTRUCTOR:
14261 vec<constructor_elt, va_gc> *n;
14262 constructor_elt *ce;
14263 unsigned HOST_WIDE_INT idx;
14264 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14265 bool process_index_p;
14266 int newlen;
14267 bool need_copy_p = false;
14268 tree r;
14270 if (type == error_mark_node)
14271 RETURN (error_mark_node);
14273 /* digest_init will do the wrong thing if we let it. */
14274 if (type && TYPE_PTRMEMFUNC_P (type))
14275 RETURN (t);
14277 /* We do not want to process the index of aggregate
14278 initializers as they are identifier nodes which will be
14279 looked up by digest_init. */
14280 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
14282 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
14283 newlen = vec_safe_length (n);
14284 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
14286 if (ce->index && process_index_p)
14287 ce->index = RECUR (ce->index);
14289 if (PACK_EXPANSION_P (ce->value))
14291 /* Substitute into the pack expansion. */
14292 ce->value = tsubst_pack_expansion (ce->value, args, complain,
14293 in_decl);
14295 if (ce->value == error_mark_node
14296 || PACK_EXPANSION_P (ce->value))
14298 else if (TREE_VEC_LENGTH (ce->value) == 1)
14299 /* Just move the argument into place. */
14300 ce->value = TREE_VEC_ELT (ce->value, 0);
14301 else
14303 /* Update the length of the final CONSTRUCTOR
14304 arguments vector, and note that we will need to
14305 copy.*/
14306 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
14307 need_copy_p = true;
14310 else
14311 ce->value = RECUR (ce->value);
14314 if (need_copy_p)
14316 vec<constructor_elt, va_gc> *old_n = n;
14318 vec_alloc (n, newlen);
14319 FOR_EACH_VEC_ELT (*old_n, idx, ce)
14321 if (TREE_CODE (ce->value) == TREE_VEC)
14323 int i, len = TREE_VEC_LENGTH (ce->value);
14324 for (i = 0; i < len; ++i)
14325 CONSTRUCTOR_APPEND_ELT (n, 0,
14326 TREE_VEC_ELT (ce->value, i));
14328 else
14329 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
14333 r = build_constructor (init_list_type_node, n);
14334 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
14336 if (TREE_HAS_CONSTRUCTOR (t))
14337 RETURN (finish_compound_literal (type, r, complain));
14339 TREE_TYPE (r) = type;
14340 RETURN (r);
14343 case TYPEID_EXPR:
14345 tree operand_0 = TREE_OPERAND (t, 0);
14346 if (TYPE_P (operand_0))
14348 operand_0 = tsubst (operand_0, args, complain, in_decl);
14349 RETURN (get_typeid (operand_0, complain));
14351 else
14353 operand_0 = RECUR (operand_0);
14354 RETURN (build_typeid (operand_0, complain));
14358 case VAR_DECL:
14359 if (!args)
14360 RETURN (t);
14361 /* Fall through */
14363 case PARM_DECL:
14365 tree r = tsubst_copy (t, args, complain, in_decl);
14367 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
14368 /* If the original type was a reference, we'll be wrapped in
14369 the appropriate INDIRECT_REF. */
14370 r = convert_from_reference (r);
14371 RETURN (r);
14374 case VA_ARG_EXPR:
14375 RETURN (build_x_va_arg (EXPR_LOCATION (t),
14376 RECUR (TREE_OPERAND (t, 0)),
14377 tsubst (TREE_TYPE (t), args, complain, in_decl)));
14379 case OFFSETOF_EXPR:
14380 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0))));
14382 case TRAIT_EXPR:
14384 tree type1 = tsubst_copy (TRAIT_EXPR_TYPE1 (t), args,
14385 complain, in_decl);
14387 tree type2 = TRAIT_EXPR_TYPE2 (t);
14388 if (type2)
14389 type2 = tsubst_copy (type2, args, complain, in_decl);
14391 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
14394 case STMT_EXPR:
14396 tree old_stmt_expr = cur_stmt_expr;
14397 tree stmt_expr = begin_stmt_expr ();
14399 cur_stmt_expr = stmt_expr;
14400 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
14401 integral_constant_expression_p);
14402 stmt_expr = finish_stmt_expr (stmt_expr, false);
14403 cur_stmt_expr = old_stmt_expr;
14405 /* If the resulting list of expression statement is empty,
14406 fold it further into void_zero_node. */
14407 if (empty_expr_stmt_p (stmt_expr))
14408 stmt_expr = void_zero_node;
14410 RETURN (stmt_expr);
14413 case LAMBDA_EXPR:
14415 tree r = build_lambda_expr ();
14417 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
14418 LAMBDA_EXPR_CLOSURE (r) = type;
14419 CLASSTYPE_LAMBDA_EXPR (type) = r;
14421 LAMBDA_EXPR_LOCATION (r)
14422 = LAMBDA_EXPR_LOCATION (t);
14423 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
14424 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
14425 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
14426 LAMBDA_EXPR_DISCRIMINATOR (r)
14427 = (LAMBDA_EXPR_DISCRIMINATOR (t));
14428 /* For a function scope, we want to use tsubst so that we don't
14429 complain about referring to an auto function before its return
14430 type has been deduced. Otherwise, we want to use tsubst_copy so
14431 that we look up the existing field/parameter/variable rather
14432 than build a new one. */
14433 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
14434 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
14435 scope = tsubst (LAMBDA_EXPR_EXTRA_SCOPE (t), args,
14436 complain, in_decl);
14437 else
14438 scope = RECUR (scope);
14439 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
14440 LAMBDA_EXPR_RETURN_TYPE (r)
14441 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
14443 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
14444 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
14446 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
14447 determine_visibility (TYPE_NAME (type));
14448 /* Now that we know visibility, instantiate the type so we have a
14449 declaration of the op() for later calls to lambda_function. */
14450 complete_type (type);
14452 /* The capture list refers to closure members, so this needs to
14453 wait until after we finish instantiating the type. */
14454 LAMBDA_EXPR_CAPTURE_LIST (r)
14455 = RECUR (LAMBDA_EXPR_CAPTURE_LIST (t));
14456 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
14458 RETURN (build_lambda_object (r));
14461 case TARGET_EXPR:
14462 /* We can get here for a constant initializer of non-dependent type.
14463 FIXME stop folding in cp_parser_initializer_clause. */
14465 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
14466 complain);
14467 RETURN (r);
14470 case TRANSACTION_EXPR:
14471 RETURN (tsubst_expr(t, args, complain, in_decl,
14472 integral_constant_expression_p));
14474 default:
14475 /* Handle Objective-C++ constructs, if appropriate. */
14477 tree subst
14478 = objcp_tsubst_copy_and_build (t, args, complain,
14479 in_decl, /*function_p=*/false);
14480 if (subst)
14481 RETURN (subst);
14483 RETURN (tsubst_copy (t, args, complain, in_decl));
14486 #undef RECUR
14487 #undef RETURN
14488 out:
14489 input_location = loc;
14490 return retval;
14493 /* Verify that the instantiated ARGS are valid. For type arguments,
14494 make sure that the type's linkage is ok. For non-type arguments,
14495 make sure they are constants if they are integral or enumerations.
14496 Emit an error under control of COMPLAIN, and return TRUE on error. */
14498 static bool
14499 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
14501 if (dependent_template_arg_p (t))
14502 return false;
14503 if (ARGUMENT_PACK_P (t))
14505 tree vec = ARGUMENT_PACK_ARGS (t);
14506 int len = TREE_VEC_LENGTH (vec);
14507 bool result = false;
14508 int i;
14510 for (i = 0; i < len; ++i)
14511 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
14512 result = true;
14513 return result;
14515 else if (TYPE_P (t))
14517 /* [basic.link]: A name with no linkage (notably, the name
14518 of a class or enumeration declared in a local scope)
14519 shall not be used to declare an entity with linkage.
14520 This implies that names with no linkage cannot be used as
14521 template arguments
14523 DR 757 relaxes this restriction for C++0x. */
14524 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
14525 : no_linkage_check (t, /*relaxed_p=*/false));
14527 if (nt)
14529 /* DR 488 makes use of a type with no linkage cause
14530 type deduction to fail. */
14531 if (complain & tf_error)
14533 if (TYPE_ANONYMOUS_P (nt))
14534 error ("%qT is/uses anonymous type", t);
14535 else
14536 error ("template argument for %qD uses local type %qT",
14537 tmpl, t);
14539 return true;
14541 /* In order to avoid all sorts of complications, we do not
14542 allow variably-modified types as template arguments. */
14543 else if (variably_modified_type_p (t, NULL_TREE))
14545 if (complain & tf_error)
14546 error ("%qT is a variably modified type", t);
14547 return true;
14550 /* Class template and alias template arguments should be OK. */
14551 else if (DECL_TYPE_TEMPLATE_P (t))
14553 /* A non-type argument of integral or enumerated type must be a
14554 constant. */
14555 else if (TREE_TYPE (t)
14556 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
14557 && !TREE_CONSTANT (t))
14559 if (complain & tf_error)
14560 error ("integral expression %qE is not constant", t);
14561 return true;
14563 return false;
14566 static bool
14567 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
14569 int ix, len = DECL_NTPARMS (tmpl);
14570 bool result = false;
14572 for (ix = 0; ix != len; ix++)
14574 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
14575 result = true;
14577 if (result && (complain & tf_error))
14578 error (" trying to instantiate %qD", tmpl);
14579 return result;
14582 /* We're out of SFINAE context now, so generate diagnostics for the access
14583 errors we saw earlier when instantiating D from TMPL and ARGS. */
14585 static void
14586 recheck_decl_substitution (tree d, tree tmpl, tree args)
14588 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
14589 tree type = TREE_TYPE (pattern);
14590 location_t loc = input_location;
14592 push_access_scope (d);
14593 push_deferring_access_checks (dk_no_deferred);
14594 input_location = DECL_SOURCE_LOCATION (pattern);
14595 tsubst (type, args, tf_warning_or_error, d);
14596 input_location = loc;
14597 pop_deferring_access_checks ();
14598 pop_access_scope (d);
14601 /* Instantiate the indicated variable, function, or alias template TMPL with
14602 the template arguments in TARG_PTR. */
14604 static tree
14605 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
14607 tree targ_ptr = orig_args;
14608 tree fndecl;
14609 tree gen_tmpl;
14610 tree spec;
14611 bool access_ok = true;
14613 if (tmpl == error_mark_node)
14614 return error_mark_node;
14616 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
14618 /* If this function is a clone, handle it specially. */
14619 if (DECL_CLONED_FUNCTION_P (tmpl))
14621 tree spec;
14622 tree clone;
14624 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
14625 DECL_CLONED_FUNCTION. */
14626 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
14627 targ_ptr, complain);
14628 if (spec == error_mark_node)
14629 return error_mark_node;
14631 /* Look for the clone. */
14632 FOR_EACH_CLONE (clone, spec)
14633 if (DECL_NAME (clone) == DECL_NAME (tmpl))
14634 return clone;
14635 /* We should always have found the clone by now. */
14636 gcc_unreachable ();
14637 return NULL_TREE;
14640 /* Check to see if we already have this specialization. */
14641 gen_tmpl = most_general_template (tmpl);
14642 if (tmpl != gen_tmpl)
14643 /* The TMPL is a partial instantiation. To get a full set of
14644 arguments we must add the arguments used to perform the
14645 partial instantiation. */
14646 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
14647 targ_ptr);
14649 /* It would be nice to avoid hashing here and then again in tsubst_decl,
14650 but it doesn't seem to be on the hot path. */
14651 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
14653 gcc_assert (tmpl == gen_tmpl
14654 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
14655 == spec)
14656 || fndecl == NULL_TREE);
14658 if (spec != NULL_TREE)
14660 if (FNDECL_HAS_ACCESS_ERRORS (spec))
14662 if (complain & tf_error)
14663 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
14664 return error_mark_node;
14666 return spec;
14669 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
14670 complain))
14671 return error_mark_node;
14673 /* We are building a FUNCTION_DECL, during which the access of its
14674 parameters and return types have to be checked. However this
14675 FUNCTION_DECL which is the desired context for access checking
14676 is not built yet. We solve this chicken-and-egg problem by
14677 deferring all checks until we have the FUNCTION_DECL. */
14678 push_deferring_access_checks (dk_deferred);
14680 /* Instantiation of the function happens in the context of the function
14681 template, not the context of the overload resolution we're doing. */
14682 push_to_top_level ();
14683 /* If there are dependent arguments, e.g. because we're doing partial
14684 ordering, make sure processing_template_decl stays set. */
14685 if (uses_template_parms (targ_ptr))
14686 ++processing_template_decl;
14687 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14689 tree ctx = tsubst (DECL_CONTEXT (gen_tmpl), targ_ptr,
14690 complain, gen_tmpl);
14691 push_nested_class (ctx);
14693 /* Substitute template parameters to obtain the specialization. */
14694 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
14695 targ_ptr, complain, gen_tmpl);
14696 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14697 pop_nested_class ();
14698 pop_from_top_level ();
14700 if (fndecl == error_mark_node)
14702 pop_deferring_access_checks ();
14703 return error_mark_node;
14706 /* The DECL_TI_TEMPLATE should always be the immediate parent
14707 template, not the most general template. */
14708 DECL_TI_TEMPLATE (fndecl) = tmpl;
14710 /* Now we know the specialization, compute access previously
14711 deferred. */
14712 push_access_scope (fndecl);
14713 if (!perform_deferred_access_checks (complain))
14714 access_ok = false;
14715 pop_access_scope (fndecl);
14716 pop_deferring_access_checks ();
14718 /* If we've just instantiated the main entry point for a function,
14719 instantiate all the alternate entry points as well. We do this
14720 by cloning the instantiation of the main entry point, not by
14721 instantiating the template clones. */
14722 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
14723 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
14725 if (!access_ok)
14727 if (!(complain & tf_error))
14729 /* Remember to reinstantiate when we're out of SFINAE so the user
14730 can see the errors. */
14731 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
14733 return error_mark_node;
14735 return fndecl;
14738 /* Wrapper for instantiate_template_1. */
14740 tree
14741 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
14743 tree ret;
14744 timevar_push (TV_TEMPLATE_INST);
14745 ret = instantiate_template_1 (tmpl, orig_args, complain);
14746 timevar_pop (TV_TEMPLATE_INST);
14747 return ret;
14750 /* Instantiate the alias template TMPL with ARGS. Also push a template
14751 instantiation level, which instantiate_template doesn't do because
14752 functions and variables have sufficient context established by the
14753 callers. */
14755 static tree
14756 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
14758 struct pending_template *old_last_pend = last_pending_template;
14759 struct tinst_level *old_error_tinst = last_error_tinst_level;
14760 if (tmpl == error_mark_node || args == error_mark_node)
14761 return error_mark_node;
14762 tree tinst = build_tree_list (tmpl, args);
14763 if (!push_tinst_level (tinst))
14765 ggc_free (tinst);
14766 return error_mark_node;
14769 args =
14770 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
14771 args, tmpl, complain,
14772 /*require_all_args=*/true,
14773 /*use_default_args=*/true);
14775 tree r = instantiate_template (tmpl, args, complain);
14776 pop_tinst_level ();
14777 /* We can't free this if a pending_template entry or last_error_tinst_level
14778 is pointing at it. */
14779 if (last_pending_template == old_last_pend
14780 && last_error_tinst_level == old_error_tinst)
14781 ggc_free (tinst);
14783 return r;
14786 /* PARM is a template parameter pack for FN. Returns true iff
14787 PARM is used in a deducible way in the argument list of FN. */
14789 static bool
14790 pack_deducible_p (tree parm, tree fn)
14792 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
14793 for (; t; t = TREE_CHAIN (t))
14795 tree type = TREE_VALUE (t);
14796 tree packs;
14797 if (!PACK_EXPANSION_P (type))
14798 continue;
14799 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
14800 packs; packs = TREE_CHAIN (packs))
14801 if (TREE_VALUE (packs) == parm)
14803 /* The template parameter pack is used in a function parameter
14804 pack. If this is the end of the parameter list, the
14805 template parameter pack is deducible. */
14806 if (TREE_CHAIN (t) == void_list_node)
14807 return true;
14808 else
14809 /* Otherwise, not. Well, it could be deduced from
14810 a non-pack parameter, but doing so would end up with
14811 a deduction mismatch, so don't bother. */
14812 return false;
14815 /* The template parameter pack isn't used in any function parameter
14816 packs, but it might be used deeper, e.g. tuple<Args...>. */
14817 return true;
14820 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
14821 NARGS elements of the arguments that are being used when calling
14822 it. TARGS is a vector into which the deduced template arguments
14823 are placed.
14825 Return zero for success, 2 for an incomplete match that doesn't resolve
14826 all the types, and 1 for complete failure. An error message will be
14827 printed only for an incomplete match.
14829 If FN is a conversion operator, or we are trying to produce a specific
14830 specialization, RETURN_TYPE is the return type desired.
14832 The EXPLICIT_TARGS are explicit template arguments provided via a
14833 template-id.
14835 The parameter STRICT is one of:
14837 DEDUCE_CALL:
14838 We are deducing arguments for a function call, as in
14839 [temp.deduct.call].
14841 DEDUCE_CONV:
14842 We are deducing arguments for a conversion function, as in
14843 [temp.deduct.conv].
14845 DEDUCE_EXACT:
14846 We are deducing arguments when doing an explicit instantiation
14847 as in [temp.explicit], when determining an explicit specialization
14848 as in [temp.expl.spec], or when taking the address of a function
14849 template, as in [temp.deduct.funcaddr]. */
14851 tree
14852 fn_type_unification (tree fn,
14853 tree explicit_targs,
14854 tree targs,
14855 const tree *args,
14856 unsigned int nargs,
14857 tree return_type,
14858 unification_kind_t strict,
14859 int flags,
14860 bool explain_p)
14862 tree parms;
14863 tree fntype;
14864 tree decl = NULL_TREE;
14865 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
14866 bool ok;
14867 static int deduction_depth;
14868 struct pending_template *old_last_pend = last_pending_template;
14869 struct tinst_level *old_error_tinst = last_error_tinst_level;
14870 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
14871 tree tinst;
14872 tree r = error_mark_node;
14874 /* Adjust any explicit template arguments before entering the
14875 substitution context. */
14876 if (explicit_targs)
14878 explicit_targs
14879 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
14880 complain,
14881 /*require_all_args=*/false,
14882 /*use_default_args=*/false));
14883 if (explicit_targs == error_mark_node)
14884 return error_mark_node;
14887 /* In C++0x, it's possible to have a function template whose type depends
14888 on itself recursively. This is most obvious with decltype, but can also
14889 occur with enumeration scope (c++/48969). So we need to catch infinite
14890 recursion and reject the substitution at deduction time; this function
14891 will return error_mark_node for any repeated substitution.
14893 This also catches excessive recursion such as when f<N> depends on
14894 f<N-1> across all integers, and returns error_mark_node for all the
14895 substitutions back up to the initial one.
14897 This is, of course, not reentrant. */
14898 if (excessive_deduction_depth)
14899 return error_mark_node;
14900 tinst = build_tree_list (fn, targs);
14901 if (!push_tinst_level (tinst))
14903 excessive_deduction_depth = true;
14904 ggc_free (tinst);
14905 return error_mark_node;
14907 ++deduction_depth;
14908 push_deferring_access_checks (dk_deferred);
14910 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
14912 fntype = TREE_TYPE (fn);
14913 if (explicit_targs)
14915 /* [temp.deduct]
14917 The specified template arguments must match the template
14918 parameters in kind (i.e., type, nontype, template), and there
14919 must not be more arguments than there are parameters;
14920 otherwise type deduction fails.
14922 Nontype arguments must match the types of the corresponding
14923 nontype template parameters, or must be convertible to the
14924 types of the corresponding nontype parameters as specified in
14925 _temp.arg.nontype_, otherwise type deduction fails.
14927 All references in the function type of the function template
14928 to the corresponding template parameters are replaced by the
14929 specified template argument values. If a substitution in a
14930 template parameter or in the function type of the function
14931 template results in an invalid type, type deduction fails. */
14932 int i, len = TREE_VEC_LENGTH (tparms);
14933 location_t loc = input_location;
14934 bool incomplete = false;
14936 /* Substitute the explicit args into the function type. This is
14937 necessary so that, for instance, explicitly declared function
14938 arguments can match null pointed constants. If we were given
14939 an incomplete set of explicit args, we must not do semantic
14940 processing during substitution as we could create partial
14941 instantiations. */
14942 for (i = 0; i < len; i++)
14944 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
14945 bool parameter_pack = false;
14946 tree targ = TREE_VEC_ELT (explicit_targs, i);
14948 /* Dig out the actual parm. */
14949 if (TREE_CODE (parm) == TYPE_DECL
14950 || TREE_CODE (parm) == TEMPLATE_DECL)
14952 parm = TREE_TYPE (parm);
14953 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
14955 else if (TREE_CODE (parm) == PARM_DECL)
14957 parm = DECL_INITIAL (parm);
14958 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
14961 if (!parameter_pack && targ == NULL_TREE)
14962 /* No explicit argument for this template parameter. */
14963 incomplete = true;
14965 if (parameter_pack && pack_deducible_p (parm, fn))
14967 /* Mark the argument pack as "incomplete". We could
14968 still deduce more arguments during unification.
14969 We remove this mark in type_unification_real. */
14970 if (targ)
14972 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
14973 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
14974 = ARGUMENT_PACK_ARGS (targ);
14977 /* We have some incomplete argument packs. */
14978 incomplete = true;
14982 processing_template_decl += incomplete;
14983 input_location = DECL_SOURCE_LOCATION (fn);
14984 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
14985 complain | tf_partial, NULL_TREE);
14986 input_location = loc;
14987 processing_template_decl -= incomplete;
14989 if (fntype == error_mark_node)
14990 goto fail;
14992 /* Place the explicitly specified arguments in TARGS. */
14993 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
14994 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
14997 /* Never do unification on the 'this' parameter. */
14998 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
15000 if (return_type)
15002 tree *new_args;
15004 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
15005 new_args = XALLOCAVEC (tree, nargs + 1);
15006 new_args[0] = return_type;
15007 memcpy (new_args + 1, args, nargs * sizeof (tree));
15008 args = new_args;
15009 ++nargs;
15012 /* We allow incomplete unification without an error message here
15013 because the standard doesn't seem to explicitly prohibit it. Our
15014 callers must be ready to deal with unification failures in any
15015 event. */
15017 pop_tinst_level ();
15018 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15019 targs, parms, args, nargs, /*subr=*/0,
15020 strict, flags, explain_p);
15021 push_tinst_level (tinst);
15022 if (!ok)
15023 goto fail;
15025 /* Now that we have bindings for all of the template arguments,
15026 ensure that the arguments deduced for the template template
15027 parameters have compatible template parameter lists. We cannot
15028 check this property before we have deduced all template
15029 arguments, because the template parameter types of a template
15030 template parameter might depend on prior template parameters
15031 deduced after the template template parameter. The following
15032 ill-formed example illustrates this issue:
15034 template<typename T, template<T> class C> void f(C<5>, T);
15036 template<int N> struct X {};
15038 void g() {
15039 f(X<5>(), 5l); // error: template argument deduction fails
15042 The template parameter list of 'C' depends on the template type
15043 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
15044 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
15045 time that we deduce 'C'. */
15046 if (!template_template_parm_bindings_ok_p
15047 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
15049 unify_inconsistent_template_template_parameters (explain_p);
15050 goto fail;
15053 /* All is well so far. Now, check:
15055 [temp.deduct]
15057 When all template arguments have been deduced, all uses of
15058 template parameters in nondeduced contexts are replaced with
15059 the corresponding deduced argument values. If the
15060 substitution results in an invalid type, as described above,
15061 type deduction fails. */
15062 decl = instantiate_template (fn, targs, complain);
15063 if (decl == error_mark_node)
15064 goto fail;
15066 /* Now perform any access checks encountered during deduction, such as
15067 for default template arguments. */
15068 push_access_scope (decl);
15069 ok = perform_deferred_access_checks (complain);
15070 pop_access_scope (decl);
15071 if (!ok)
15072 goto fail;
15074 /* If we're looking for an exact match, check that what we got
15075 is indeed an exact match. It might not be if some template
15076 parameters are used in non-deduced contexts. */
15077 if (strict == DEDUCE_EXACT)
15079 tree substed = TREE_TYPE (decl);
15080 unsigned int i;
15082 tree sarg
15083 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
15084 if (return_type)
15085 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
15086 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
15087 if (!same_type_p (args[i], TREE_VALUE (sarg)))
15089 unify_type_mismatch (explain_p, args[i],
15090 TREE_VALUE (sarg));
15091 goto fail;
15095 r = decl;
15097 fail:
15098 pop_deferring_access_checks ();
15099 --deduction_depth;
15100 if (excessive_deduction_depth)
15102 if (deduction_depth == 0)
15103 /* Reset once we're all the way out. */
15104 excessive_deduction_depth = false;
15107 pop_tinst_level ();
15108 /* We can't free this if a pending_template entry or last_error_tinst_level
15109 is pointing at it. */
15110 if (last_pending_template == old_last_pend
15111 && last_error_tinst_level == old_error_tinst)
15112 ggc_free (tinst);
15114 return r;
15117 /* Adjust types before performing type deduction, as described in
15118 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
15119 sections are symmetric. PARM is the type of a function parameter
15120 or the return type of the conversion function. ARG is the type of
15121 the argument passed to the call, or the type of the value
15122 initialized with the result of the conversion function.
15123 ARG_EXPR is the original argument expression, which may be null. */
15125 static int
15126 maybe_adjust_types_for_deduction (unification_kind_t strict,
15127 tree* parm,
15128 tree* arg,
15129 tree arg_expr)
15131 int result = 0;
15133 switch (strict)
15135 case DEDUCE_CALL:
15136 break;
15138 case DEDUCE_CONV:
15140 /* Swap PARM and ARG throughout the remainder of this
15141 function; the handling is precisely symmetric since PARM
15142 will initialize ARG rather than vice versa. */
15143 tree* temp = parm;
15144 parm = arg;
15145 arg = temp;
15146 break;
15149 case DEDUCE_EXACT:
15150 /* Core issue #873: Do the DR606 thing (see below) for these cases,
15151 too, but here handle it by stripping the reference from PARM
15152 rather than by adding it to ARG. */
15153 if (TREE_CODE (*parm) == REFERENCE_TYPE
15154 && TYPE_REF_IS_RVALUE (*parm)
15155 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15156 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15157 && TREE_CODE (*arg) == REFERENCE_TYPE
15158 && !TYPE_REF_IS_RVALUE (*arg))
15159 *parm = TREE_TYPE (*parm);
15160 /* Nothing else to do in this case. */
15161 return 0;
15163 default:
15164 gcc_unreachable ();
15167 if (TREE_CODE (*parm) != REFERENCE_TYPE)
15169 /* [temp.deduct.call]
15171 If P is not a reference type:
15173 --If A is an array type, the pointer type produced by the
15174 array-to-pointer standard conversion (_conv.array_) is
15175 used in place of A for type deduction; otherwise,
15177 --If A is a function type, the pointer type produced by
15178 the function-to-pointer standard conversion
15179 (_conv.func_) is used in place of A for type deduction;
15180 otherwise,
15182 --If A is a cv-qualified type, the top level
15183 cv-qualifiers of A's type are ignored for type
15184 deduction. */
15185 if (TREE_CODE (*arg) == ARRAY_TYPE)
15186 *arg = build_pointer_type (TREE_TYPE (*arg));
15187 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
15188 *arg = build_pointer_type (*arg);
15189 else
15190 *arg = TYPE_MAIN_VARIANT (*arg);
15193 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
15194 of the form T&&, where T is a template parameter, and the argument
15195 is an lvalue, T is deduced as A& */
15196 if (TREE_CODE (*parm) == REFERENCE_TYPE
15197 && TYPE_REF_IS_RVALUE (*parm)
15198 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15199 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15200 && (arg_expr ? real_lvalue_p (arg_expr)
15201 /* try_one_overload doesn't provide an arg_expr, but
15202 functions are always lvalues. */
15203 : TREE_CODE (*arg) == FUNCTION_TYPE))
15204 *arg = build_reference_type (*arg);
15206 /* [temp.deduct.call]
15208 If P is a cv-qualified type, the top level cv-qualifiers
15209 of P's type are ignored for type deduction. If P is a
15210 reference type, the type referred to by P is used for
15211 type deduction. */
15212 *parm = TYPE_MAIN_VARIANT (*parm);
15213 if (TREE_CODE (*parm) == REFERENCE_TYPE)
15215 *parm = TREE_TYPE (*parm);
15216 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
15219 /* DR 322. For conversion deduction, remove a reference type on parm
15220 too (which has been swapped into ARG). */
15221 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
15222 *arg = TREE_TYPE (*arg);
15224 return result;
15227 /* Subroutine of unify_one_argument. PARM is a function parameter of a
15228 template which does contain any deducible template parameters; check if
15229 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
15230 unify_one_argument. */
15232 static int
15233 check_non_deducible_conversion (tree parm, tree arg, int strict,
15234 int flags, bool explain_p)
15236 tree type;
15238 if (!TYPE_P (arg))
15239 type = TREE_TYPE (arg);
15240 else
15241 type = arg;
15243 if (same_type_p (parm, type))
15244 return unify_success (explain_p);
15246 if (strict == DEDUCE_CONV)
15248 if (can_convert_arg (type, parm, NULL_TREE, flags,
15249 explain_p ? tf_warning_or_error : tf_none))
15250 return unify_success (explain_p);
15252 else if (strict != DEDUCE_EXACT)
15254 if (can_convert_arg (parm, type,
15255 TYPE_P (arg) ? NULL_TREE : arg,
15256 flags, explain_p ? tf_warning_or_error : tf_none))
15257 return unify_success (explain_p);
15260 if (strict == DEDUCE_EXACT)
15261 return unify_type_mismatch (explain_p, parm, arg);
15262 else
15263 return unify_arg_conversion (explain_p, parm, type, arg);
15266 /* Subroutine of type_unification_real and unify_pack_expansion to
15267 handle unification of a single P/A pair. Parameters are as
15268 for those functions. */
15270 static int
15271 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
15272 int subr, unification_kind_t strict, int flags,
15273 bool explain_p)
15275 tree arg_expr = NULL_TREE;
15276 int arg_strict;
15278 if (arg == error_mark_node || parm == error_mark_node)
15279 return unify_invalid (explain_p);
15280 if (arg == unknown_type_node)
15281 /* We can't deduce anything from this, but we might get all the
15282 template args from other function args. */
15283 return unify_success (explain_p);
15285 /* FIXME uses_deducible_template_parms */
15286 if (TYPE_P (parm) && !uses_template_parms (parm))
15287 return check_non_deducible_conversion (parm, arg, strict, flags,
15288 explain_p);
15290 switch (strict)
15292 case DEDUCE_CALL:
15293 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
15294 | UNIFY_ALLOW_MORE_CV_QUAL
15295 | UNIFY_ALLOW_DERIVED);
15296 break;
15298 case DEDUCE_CONV:
15299 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
15300 break;
15302 case DEDUCE_EXACT:
15303 arg_strict = UNIFY_ALLOW_NONE;
15304 break;
15306 default:
15307 gcc_unreachable ();
15310 /* We only do these transformations if this is the top-level
15311 parameter_type_list in a call or declaration matching; in other
15312 situations (nested function declarators, template argument lists) we
15313 won't be comparing a type to an expression, and we don't do any type
15314 adjustments. */
15315 if (!subr)
15317 if (!TYPE_P (arg))
15319 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
15320 if (type_unknown_p (arg))
15322 /* [temp.deduct.type] A template-argument can be
15323 deduced from a pointer to function or pointer
15324 to member function argument if the set of
15325 overloaded functions does not contain function
15326 templates and at most one of a set of
15327 overloaded functions provides a unique
15328 match. */
15330 if (resolve_overloaded_unification
15331 (tparms, targs, parm, arg, strict,
15332 arg_strict, explain_p))
15333 return unify_success (explain_p);
15334 return unify_overload_resolution_failure (explain_p, arg);
15337 arg_expr = arg;
15338 arg = unlowered_expr_type (arg);
15339 if (arg == error_mark_node)
15340 return unify_invalid (explain_p);
15343 arg_strict |=
15344 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
15346 else
15347 gcc_assert ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
15348 == (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL));
15350 /* For deduction from an init-list we need the actual list. */
15351 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
15352 arg = arg_expr;
15353 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
15356 /* Most parms like fn_type_unification.
15358 If SUBR is 1, we're being called recursively (to unify the
15359 arguments of a function or method parameter of a function
15360 template). */
15362 static int
15363 type_unification_real (tree tparms,
15364 tree targs,
15365 tree xparms,
15366 const tree *xargs,
15367 unsigned int xnargs,
15368 int subr,
15369 unification_kind_t strict,
15370 int flags,
15371 bool explain_p)
15373 tree parm, arg;
15374 int i;
15375 int ntparms = TREE_VEC_LENGTH (tparms);
15376 int saw_undeduced = 0;
15377 tree parms;
15378 const tree *args;
15379 unsigned int nargs;
15380 unsigned int ia;
15382 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
15383 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
15384 gcc_assert (ntparms > 0);
15386 /* Reset the number of non-defaulted template arguments contained
15387 in TARGS. */
15388 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
15390 again:
15391 parms = xparms;
15392 args = xargs;
15393 nargs = xnargs;
15395 ia = 0;
15396 while (parms && parms != void_list_node
15397 && ia < nargs)
15399 parm = TREE_VALUE (parms);
15401 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
15402 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
15403 /* For a function parameter pack that occurs at the end of the
15404 parameter-declaration-list, the type A of each remaining
15405 argument of the call is compared with the type P of the
15406 declarator-id of the function parameter pack. */
15407 break;
15409 parms = TREE_CHAIN (parms);
15411 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
15412 /* For a function parameter pack that does not occur at the
15413 end of the parameter-declaration-list, the type of the
15414 parameter pack is a non-deduced context. */
15415 continue;
15417 arg = args[ia];
15418 ++ia;
15420 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
15421 flags, explain_p))
15422 return 1;
15425 if (parms
15426 && parms != void_list_node
15427 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
15429 /* Unify the remaining arguments with the pack expansion type. */
15430 tree argvec;
15431 tree parmvec = make_tree_vec (1);
15433 /* Allocate a TREE_VEC and copy in all of the arguments */
15434 argvec = make_tree_vec (nargs - ia);
15435 for (i = 0; ia < nargs; ++ia, ++i)
15436 TREE_VEC_ELT (argvec, i) = args[ia];
15438 /* Copy the parameter into parmvec. */
15439 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
15440 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
15441 /*subr=*/subr, explain_p))
15442 return 1;
15444 /* Advance to the end of the list of parameters. */
15445 parms = TREE_CHAIN (parms);
15448 /* Fail if we've reached the end of the parm list, and more args
15449 are present, and the parm list isn't variadic. */
15450 if (ia < nargs && parms == void_list_node)
15451 return unify_too_many_arguments (explain_p, nargs, ia);
15452 /* Fail if parms are left and they don't have default values. */
15453 if (parms && parms != void_list_node
15454 && TREE_PURPOSE (parms) == NULL_TREE)
15456 unsigned int count = nargs;
15457 tree p = parms;
15458 while (p && p != void_list_node)
15460 count++;
15461 p = TREE_CHAIN (p);
15463 return unify_too_few_arguments (explain_p, ia, count);
15466 if (!subr)
15468 tsubst_flags_t complain = (explain_p
15469 ? tf_warning_or_error
15470 : tf_none);
15472 for (i = 0; i < ntparms; i++)
15474 tree targ = TREE_VEC_ELT (targs, i);
15475 tree tparm = TREE_VEC_ELT (tparms, i);
15477 /* Clear the "incomplete" flags on all argument packs now so that
15478 substituting them into later default arguments works. */
15479 if (targ && ARGUMENT_PACK_P (targ))
15481 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
15482 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
15485 if (targ || tparm == error_mark_node)
15486 continue;
15487 tparm = TREE_VALUE (tparm);
15489 /* If this is an undeduced nontype parameter that depends on
15490 a type parameter, try another pass; its type may have been
15491 deduced from a later argument than the one from which
15492 this parameter can be deduced. */
15493 if (TREE_CODE (tparm) == PARM_DECL
15494 && uses_template_parms (TREE_TYPE (tparm))
15495 && !saw_undeduced++)
15496 goto again;
15498 /* Core issue #226 (C++0x) [temp.deduct]:
15500 If a template argument has not been deduced, its
15501 default template argument, if any, is used.
15503 When we are in C++98 mode, TREE_PURPOSE will either
15504 be NULL_TREE or ERROR_MARK_NODE, so we do not need
15505 to explicitly check cxx_dialect here. */
15506 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
15508 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
15509 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
15510 location_t save_loc = input_location;
15511 if (DECL_P (parm))
15512 input_location = DECL_SOURCE_LOCATION (parm);
15513 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
15514 arg = convert_template_argument (parm, arg, targs, complain,
15515 i, NULL_TREE);
15516 input_location = save_loc;
15517 if (arg == error_mark_node)
15518 return 1;
15519 else
15521 TREE_VEC_ELT (targs, i) = arg;
15522 /* The position of the first default template argument,
15523 is also the number of non-defaulted arguments in TARGS.
15524 Record that. */
15525 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15526 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
15527 continue;
15531 /* If the type parameter is a parameter pack, then it will
15532 be deduced to an empty parameter pack. */
15533 if (template_parameter_pack_p (tparm))
15535 tree arg;
15537 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
15539 arg = make_node (NONTYPE_ARGUMENT_PACK);
15540 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
15541 TREE_CONSTANT (arg) = 1;
15543 else
15544 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
15546 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
15548 TREE_VEC_ELT (targs, i) = arg;
15549 continue;
15552 return unify_parameter_deduction_failure (explain_p, tparm);
15555 #ifdef ENABLE_CHECKING
15556 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15557 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
15558 #endif
15560 return unify_success (explain_p);
15563 /* Subroutine of type_unification_real. Args are like the variables
15564 at the call site. ARG is an overloaded function (or template-id);
15565 we try deducing template args from each of the overloads, and if
15566 only one succeeds, we go with that. Modifies TARGS and returns
15567 true on success. */
15569 static bool
15570 resolve_overloaded_unification (tree tparms,
15571 tree targs,
15572 tree parm,
15573 tree arg,
15574 unification_kind_t strict,
15575 int sub_strict,
15576 bool explain_p)
15578 tree tempargs = copy_node (targs);
15579 int good = 0;
15580 tree goodfn = NULL_TREE;
15581 bool addr_p;
15583 if (TREE_CODE (arg) == ADDR_EXPR)
15585 arg = TREE_OPERAND (arg, 0);
15586 addr_p = true;
15588 else
15589 addr_p = false;
15591 if (TREE_CODE (arg) == COMPONENT_REF)
15592 /* Handle `&x' where `x' is some static or non-static member
15593 function name. */
15594 arg = TREE_OPERAND (arg, 1);
15596 if (TREE_CODE (arg) == OFFSET_REF)
15597 arg = TREE_OPERAND (arg, 1);
15599 /* Strip baselink information. */
15600 if (BASELINK_P (arg))
15601 arg = BASELINK_FUNCTIONS (arg);
15603 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
15605 /* If we got some explicit template args, we need to plug them into
15606 the affected templates before we try to unify, in case the
15607 explicit args will completely resolve the templates in question. */
15609 int ok = 0;
15610 tree expl_subargs = TREE_OPERAND (arg, 1);
15611 arg = TREE_OPERAND (arg, 0);
15613 for (; arg; arg = OVL_NEXT (arg))
15615 tree fn = OVL_CURRENT (arg);
15616 tree subargs, elem;
15618 if (TREE_CODE (fn) != TEMPLATE_DECL)
15619 continue;
15621 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15622 expl_subargs, NULL_TREE, tf_none,
15623 /*require_all_args=*/true,
15624 /*use_default_args=*/true);
15625 if (subargs != error_mark_node
15626 && !any_dependent_template_arguments_p (subargs))
15628 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
15629 if (try_one_overload (tparms, targs, tempargs, parm,
15630 elem, strict, sub_strict, addr_p, explain_p)
15631 && (!goodfn || !same_type_p (goodfn, elem)))
15633 goodfn = elem;
15634 ++good;
15637 else if (subargs)
15638 ++ok;
15640 /* If no templates (or more than one) are fully resolved by the
15641 explicit arguments, this template-id is a non-deduced context; it
15642 could still be OK if we deduce all template arguments for the
15643 enclosing call through other arguments. */
15644 if (good != 1)
15645 good = ok;
15647 else if (TREE_CODE (arg) != OVERLOAD
15648 && TREE_CODE (arg) != FUNCTION_DECL)
15649 /* If ARG is, for example, "(0, &f)" then its type will be unknown
15650 -- but the deduction does not succeed because the expression is
15651 not just the function on its own. */
15652 return false;
15653 else
15654 for (; arg; arg = OVL_NEXT (arg))
15655 if (try_one_overload (tparms, targs, tempargs, parm,
15656 TREE_TYPE (OVL_CURRENT (arg)),
15657 strict, sub_strict, addr_p, explain_p)
15658 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
15660 goodfn = OVL_CURRENT (arg);
15661 ++good;
15664 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15665 to function or pointer to member function argument if the set of
15666 overloaded functions does not contain function templates and at most
15667 one of a set of overloaded functions provides a unique match.
15669 So if we found multiple possibilities, we return success but don't
15670 deduce anything. */
15672 if (good == 1)
15674 int i = TREE_VEC_LENGTH (targs);
15675 for (; i--; )
15676 if (TREE_VEC_ELT (tempargs, i))
15677 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
15679 if (good)
15680 return true;
15682 return false;
15685 /* Core DR 115: In contexts where deduction is done and fails, or in
15686 contexts where deduction is not done, if a template argument list is
15687 specified and it, along with any default template arguments, identifies
15688 a single function template specialization, then the template-id is an
15689 lvalue for the function template specialization. */
15691 tree
15692 resolve_nondeduced_context (tree orig_expr)
15694 tree expr, offset, baselink;
15695 bool addr;
15697 if (!type_unknown_p (orig_expr))
15698 return orig_expr;
15700 expr = orig_expr;
15701 addr = false;
15702 offset = NULL_TREE;
15703 baselink = NULL_TREE;
15705 if (TREE_CODE (expr) == ADDR_EXPR)
15707 expr = TREE_OPERAND (expr, 0);
15708 addr = true;
15710 if (TREE_CODE (expr) == OFFSET_REF)
15712 offset = expr;
15713 expr = TREE_OPERAND (expr, 1);
15715 if (BASELINK_P (expr))
15717 baselink = expr;
15718 expr = BASELINK_FUNCTIONS (expr);
15721 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
15723 int good = 0;
15724 tree goodfn = NULL_TREE;
15726 /* If we got some explicit template args, we need to plug them into
15727 the affected templates before we try to unify, in case the
15728 explicit args will completely resolve the templates in question. */
15730 tree expl_subargs = TREE_OPERAND (expr, 1);
15731 tree arg = TREE_OPERAND (expr, 0);
15732 tree badfn = NULL_TREE;
15733 tree badargs = NULL_TREE;
15735 for (; arg; arg = OVL_NEXT (arg))
15737 tree fn = OVL_CURRENT (arg);
15738 tree subargs, elem;
15740 if (TREE_CODE (fn) != TEMPLATE_DECL)
15741 continue;
15743 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15744 expl_subargs, NULL_TREE, tf_none,
15745 /*require_all_args=*/true,
15746 /*use_default_args=*/true);
15747 if (subargs != error_mark_node
15748 && !any_dependent_template_arguments_p (subargs))
15750 elem = instantiate_template (fn, subargs, tf_none);
15751 if (elem == error_mark_node)
15753 badfn = fn;
15754 badargs = subargs;
15756 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
15758 goodfn = elem;
15759 ++good;
15763 if (good == 1)
15765 mark_used (goodfn);
15766 expr = goodfn;
15767 if (baselink)
15768 expr = build_baselink (BASELINK_BINFO (baselink),
15769 BASELINK_ACCESS_BINFO (baselink),
15770 expr, BASELINK_OPTYPE (baselink));
15771 if (offset)
15773 tree base
15774 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
15775 expr = build_offset_ref (base, expr, addr);
15777 if (addr)
15778 expr = cp_build_addr_expr (expr, tf_warning_or_error);
15779 return expr;
15781 else if (good == 0 && badargs)
15782 /* There were no good options and at least one bad one, so let the
15783 user know what the problem is. */
15784 instantiate_template (badfn, badargs, tf_warning_or_error);
15786 return orig_expr;
15789 /* Subroutine of resolve_overloaded_unification; does deduction for a single
15790 overload. Fills TARGS with any deduced arguments, or error_mark_node if
15791 different overloads deduce different arguments for a given parm.
15792 ADDR_P is true if the expression for which deduction is being
15793 performed was of the form "& fn" rather than simply "fn".
15795 Returns 1 on success. */
15797 static int
15798 try_one_overload (tree tparms,
15799 tree orig_targs,
15800 tree targs,
15801 tree parm,
15802 tree arg,
15803 unification_kind_t strict,
15804 int sub_strict,
15805 bool addr_p,
15806 bool explain_p)
15808 int nargs;
15809 tree tempargs;
15810 int i;
15812 if (arg == error_mark_node)
15813 return 0;
15815 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15816 to function or pointer to member function argument if the set of
15817 overloaded functions does not contain function templates and at most
15818 one of a set of overloaded functions provides a unique match.
15820 So if this is a template, just return success. */
15822 if (uses_template_parms (arg))
15823 return 1;
15825 if (TREE_CODE (arg) == METHOD_TYPE)
15826 arg = build_ptrmemfunc_type (build_pointer_type (arg));
15827 else if (addr_p)
15828 arg = build_pointer_type (arg);
15830 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
15832 /* We don't copy orig_targs for this because if we have already deduced
15833 some template args from previous args, unify would complain when we
15834 try to deduce a template parameter for the same argument, even though
15835 there isn't really a conflict. */
15836 nargs = TREE_VEC_LENGTH (targs);
15837 tempargs = make_tree_vec (nargs);
15839 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
15840 return 0;
15842 /* First make sure we didn't deduce anything that conflicts with
15843 explicitly specified args. */
15844 for (i = nargs; i--; )
15846 tree elt = TREE_VEC_ELT (tempargs, i);
15847 tree oldelt = TREE_VEC_ELT (orig_targs, i);
15849 if (!elt)
15850 /*NOP*/;
15851 else if (uses_template_parms (elt))
15852 /* Since we're unifying against ourselves, we will fill in
15853 template args used in the function parm list with our own
15854 template parms. Discard them. */
15855 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
15856 else if (oldelt && !template_args_equal (oldelt, elt))
15857 return 0;
15860 for (i = nargs; i--; )
15862 tree elt = TREE_VEC_ELT (tempargs, i);
15864 if (elt)
15865 TREE_VEC_ELT (targs, i) = elt;
15868 return 1;
15871 /* PARM is a template class (perhaps with unbound template
15872 parameters). ARG is a fully instantiated type. If ARG can be
15873 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
15874 TARGS are as for unify. */
15876 static tree
15877 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
15878 bool explain_p)
15880 tree copy_of_targs;
15882 if (!CLASSTYPE_TEMPLATE_INFO (arg)
15883 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
15884 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
15885 return NULL_TREE;
15887 /* We need to make a new template argument vector for the call to
15888 unify. If we used TARGS, we'd clutter it up with the result of
15889 the attempted unification, even if this class didn't work out.
15890 We also don't want to commit ourselves to all the unifications
15891 we've already done, since unification is supposed to be done on
15892 an argument-by-argument basis. In other words, consider the
15893 following pathological case:
15895 template <int I, int J, int K>
15896 struct S {};
15898 template <int I, int J>
15899 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
15901 template <int I, int J, int K>
15902 void f(S<I, J, K>, S<I, I, I>);
15904 void g() {
15905 S<0, 0, 0> s0;
15906 S<0, 1, 2> s2;
15908 f(s0, s2);
15911 Now, by the time we consider the unification involving `s2', we
15912 already know that we must have `f<0, 0, 0>'. But, even though
15913 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
15914 because there are two ways to unify base classes of S<0, 1, 2>
15915 with S<I, I, I>. If we kept the already deduced knowledge, we
15916 would reject the possibility I=1. */
15917 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
15919 /* If unification failed, we're done. */
15920 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
15921 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
15922 return NULL_TREE;
15924 return arg;
15927 /* Given a template type PARM and a class type ARG, find the unique
15928 base type in ARG that is an instance of PARM. We do not examine
15929 ARG itself; only its base-classes. If there is not exactly one
15930 appropriate base class, return NULL_TREE. PARM may be the type of
15931 a partial specialization, as well as a plain template type. Used
15932 by unify. */
15934 static enum template_base_result
15935 get_template_base (tree tparms, tree targs, tree parm, tree arg,
15936 bool explain_p, tree *result)
15938 tree rval = NULL_TREE;
15939 tree binfo;
15941 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
15943 binfo = TYPE_BINFO (complete_type (arg));
15944 if (!binfo)
15946 /* The type could not be completed. */
15947 *result = NULL_TREE;
15948 return tbr_incomplete_type;
15951 /* Walk in inheritance graph order. The search order is not
15952 important, and this avoids multiple walks of virtual bases. */
15953 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
15955 tree r = try_class_unification (tparms, targs, parm,
15956 BINFO_TYPE (binfo), explain_p);
15958 if (r)
15960 /* If there is more than one satisfactory baseclass, then:
15962 [temp.deduct.call]
15964 If they yield more than one possible deduced A, the type
15965 deduction fails.
15967 applies. */
15968 if (rval && !same_type_p (r, rval))
15970 *result = NULL_TREE;
15971 return tbr_ambiguous_baseclass;
15974 rval = r;
15978 *result = rval;
15979 return tbr_success;
15982 /* Returns the level of DECL, which declares a template parameter. */
15984 static int
15985 template_decl_level (tree decl)
15987 switch (TREE_CODE (decl))
15989 case TYPE_DECL:
15990 case TEMPLATE_DECL:
15991 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
15993 case PARM_DECL:
15994 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
15996 default:
15997 gcc_unreachable ();
15999 return 0;
16002 /* Decide whether ARG can be unified with PARM, considering only the
16003 cv-qualifiers of each type, given STRICT as documented for unify.
16004 Returns nonzero iff the unification is OK on that basis. */
16006 static int
16007 check_cv_quals_for_unify (int strict, tree arg, tree parm)
16009 int arg_quals = cp_type_quals (arg);
16010 int parm_quals = cp_type_quals (parm);
16012 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16013 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
16015 /* Although a CVR qualifier is ignored when being applied to a
16016 substituted template parameter ([8.3.2]/1 for example), that
16017 does not allow us to unify "const T" with "int&" because both
16018 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
16019 It is ok when we're allowing additional CV qualifiers
16020 at the outer level [14.8.2.1]/3,1st bullet. */
16021 if ((TREE_CODE (arg) == REFERENCE_TYPE
16022 || TREE_CODE (arg) == FUNCTION_TYPE
16023 || TREE_CODE (arg) == METHOD_TYPE)
16024 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
16025 return 0;
16027 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
16028 && (parm_quals & TYPE_QUAL_RESTRICT))
16029 return 0;
16032 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
16033 && (arg_quals & parm_quals) != parm_quals)
16034 return 0;
16036 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
16037 && (parm_quals & arg_quals) != arg_quals)
16038 return 0;
16040 return 1;
16043 /* Determines the LEVEL and INDEX for the template parameter PARM. */
16044 void
16045 template_parm_level_and_index (tree parm, int* level, int* index)
16047 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16048 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16049 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16051 *index = TEMPLATE_TYPE_IDX (parm);
16052 *level = TEMPLATE_TYPE_LEVEL (parm);
16054 else
16056 *index = TEMPLATE_PARM_IDX (parm);
16057 *level = TEMPLATE_PARM_LEVEL (parm);
16061 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
16062 do { \
16063 if (unify (TP, TA, P, A, S, EP)) \
16064 return 1; \
16065 } while (0);
16067 /* Unifies the remaining arguments in PACKED_ARGS with the pack
16068 expansion at the end of PACKED_PARMS. Returns 0 if the type
16069 deduction succeeds, 1 otherwise. STRICT is the same as in
16070 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
16071 call argument list. We'll need to adjust the arguments to make them
16072 types. SUBR tells us if this is from a recursive call to
16073 type_unification_real, or for comparing two template argument
16074 lists. */
16076 static int
16077 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
16078 tree packed_args, unification_kind_t strict,
16079 bool subr, bool explain_p)
16081 tree parm
16082 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
16083 tree pattern = PACK_EXPANSION_PATTERN (parm);
16084 tree pack, packs = NULL_TREE;
16085 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
16086 int len = TREE_VEC_LENGTH (packed_args);
16088 /* Determine the parameter packs we will be deducing from the
16089 pattern, and record their current deductions. */
16090 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
16091 pack; pack = TREE_CHAIN (pack))
16093 tree parm_pack = TREE_VALUE (pack);
16094 int idx, level;
16096 /* Determine the index and level of this parameter pack. */
16097 template_parm_level_and_index (parm_pack, &level, &idx);
16099 /* Keep track of the parameter packs and their corresponding
16100 argument packs. */
16101 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
16102 TREE_TYPE (packs) = make_tree_vec (len - start);
16105 /* Loop through all of the arguments that have not yet been
16106 unified and unify each with the pattern. */
16107 for (i = start; i < len; i++)
16109 tree parm;
16110 bool any_explicit = false;
16111 tree arg = TREE_VEC_ELT (packed_args, i);
16113 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
16114 or the element of its argument pack at the current index if
16115 this argument was explicitly specified. */
16116 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16118 int idx, level;
16119 tree arg, pargs;
16120 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16122 arg = NULL_TREE;
16123 if (TREE_VALUE (pack)
16124 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
16125 && (i < TREE_VEC_LENGTH (pargs)))
16127 any_explicit = true;
16128 arg = TREE_VEC_ELT (pargs, i);
16130 TMPL_ARG (targs, level, idx) = arg;
16133 /* If we had explicit template arguments, substitute them into the
16134 pattern before deduction. */
16135 if (any_explicit)
16137 /* Some arguments might still be unspecified or dependent. */
16138 bool dependent;
16139 ++processing_template_decl;
16140 dependent = any_dependent_template_arguments_p (targs);
16141 if (!dependent)
16142 --processing_template_decl;
16143 parm = tsubst (pattern, targs,
16144 explain_p ? tf_warning_or_error : tf_none,
16145 NULL_TREE);
16146 if (dependent)
16147 --processing_template_decl;
16148 if (parm == error_mark_node)
16149 return 1;
16151 else
16152 parm = pattern;
16154 /* Unify the pattern with the current argument. */
16155 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16156 LOOKUP_IMPLICIT, explain_p))
16157 return 1;
16159 /* For each parameter pack, collect the deduced value. */
16160 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16162 int idx, level;
16163 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16165 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
16166 TMPL_ARG (targs, level, idx);
16170 /* Verify that the results of unification with the parameter packs
16171 produce results consistent with what we've seen before, and make
16172 the deduced argument packs available. */
16173 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16175 tree old_pack = TREE_VALUE (pack);
16176 tree new_args = TREE_TYPE (pack);
16177 int i, len = TREE_VEC_LENGTH (new_args);
16178 int idx, level;
16179 bool nondeduced_p = false;
16181 /* By default keep the original deduced argument pack.
16182 If necessary, more specific code is going to update the
16183 resulting deduced argument later down in this function. */
16184 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16185 TMPL_ARG (targs, level, idx) = old_pack;
16187 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
16188 actually deduce anything. */
16189 for (i = 0; i < len && !nondeduced_p; ++i)
16190 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
16191 nondeduced_p = true;
16192 if (nondeduced_p)
16193 continue;
16195 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
16197 /* If we had fewer function args than explicit template args,
16198 just use the explicits. */
16199 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16200 int explicit_len = TREE_VEC_LENGTH (explicit_args);
16201 if (len < explicit_len)
16202 new_args = explicit_args;
16205 if (!old_pack)
16207 tree result;
16208 /* Build the deduced *_ARGUMENT_PACK. */
16209 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
16211 result = make_node (NONTYPE_ARGUMENT_PACK);
16212 TREE_TYPE (result) =
16213 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
16214 TREE_CONSTANT (result) = 1;
16216 else
16217 result = cxx_make_type (TYPE_ARGUMENT_PACK);
16219 SET_ARGUMENT_PACK_ARGS (result, new_args);
16221 /* Note the deduced argument packs for this parameter
16222 pack. */
16223 TMPL_ARG (targs, level, idx) = result;
16225 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
16226 && (ARGUMENT_PACK_ARGS (old_pack)
16227 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
16229 /* We only had the explicitly-provided arguments before, but
16230 now we have a complete set of arguments. */
16231 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16233 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
16234 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
16235 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
16237 else
16239 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
16240 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
16242 if (!comp_template_args_with_info (old_args, new_args,
16243 &bad_old_arg, &bad_new_arg))
16244 /* Inconsistent unification of this parameter pack. */
16245 return unify_parameter_pack_inconsistent (explain_p,
16246 bad_old_arg,
16247 bad_new_arg);
16251 return unify_success (explain_p);
16254 /* Deduce the value of template parameters. TPARMS is the (innermost)
16255 set of template parameters to a template. TARGS is the bindings
16256 for those template parameters, as determined thus far; TARGS may
16257 include template arguments for outer levels of template parameters
16258 as well. PARM is a parameter to a template function, or a
16259 subcomponent of that parameter; ARG is the corresponding argument.
16260 This function attempts to match PARM with ARG in a manner
16261 consistent with the existing assignments in TARGS. If more values
16262 are deduced, then TARGS is updated.
16264 Returns 0 if the type deduction succeeds, 1 otherwise. The
16265 parameter STRICT is a bitwise or of the following flags:
16267 UNIFY_ALLOW_NONE:
16268 Require an exact match between PARM and ARG.
16269 UNIFY_ALLOW_MORE_CV_QUAL:
16270 Allow the deduced ARG to be more cv-qualified (by qualification
16271 conversion) than ARG.
16272 UNIFY_ALLOW_LESS_CV_QUAL:
16273 Allow the deduced ARG to be less cv-qualified than ARG.
16274 UNIFY_ALLOW_DERIVED:
16275 Allow the deduced ARG to be a template base class of ARG,
16276 or a pointer to a template base class of the type pointed to by
16277 ARG.
16278 UNIFY_ALLOW_INTEGER:
16279 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
16280 case for more information.
16281 UNIFY_ALLOW_OUTER_LEVEL:
16282 This is the outermost level of a deduction. Used to determine validity
16283 of qualification conversions. A valid qualification conversion must
16284 have const qualified pointers leading up to the inner type which
16285 requires additional CV quals, except at the outer level, where const
16286 is not required [conv.qual]. It would be normal to set this flag in
16287 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
16288 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
16289 This is the outermost level of a deduction, and PARM can be more CV
16290 qualified at this point.
16291 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
16292 This is the outermost level of a deduction, and PARM can be less CV
16293 qualified at this point. */
16295 static int
16296 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
16297 bool explain_p)
16299 int idx;
16300 tree targ;
16301 tree tparm;
16302 int strict_in = strict;
16304 /* I don't think this will do the right thing with respect to types.
16305 But the only case I've seen it in so far has been array bounds, where
16306 signedness is the only information lost, and I think that will be
16307 okay. */
16308 while (TREE_CODE (parm) == NOP_EXPR)
16309 parm = TREE_OPERAND (parm, 0);
16311 if (arg == error_mark_node)
16312 return unify_invalid (explain_p);
16313 if (arg == unknown_type_node
16314 || arg == init_list_type_node)
16315 /* We can't deduce anything from this, but we might get all the
16316 template args from other function args. */
16317 return unify_success (explain_p);
16319 /* If PARM uses template parameters, then we can't bail out here,
16320 even if ARG == PARM, since we won't record unifications for the
16321 template parameters. We might need them if we're trying to
16322 figure out which of two things is more specialized. */
16323 if (arg == parm && !uses_template_parms (parm))
16324 return unify_success (explain_p);
16326 /* Handle init lists early, so the rest of the function can assume
16327 we're dealing with a type. */
16328 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
16330 tree elt, elttype;
16331 unsigned i;
16332 tree orig_parm = parm;
16334 /* Replace T with std::initializer_list<T> for deduction. */
16335 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16336 && flag_deduce_init_list)
16337 parm = listify (parm);
16339 if (!is_std_init_list (parm))
16340 /* We can only deduce from an initializer list argument if the
16341 parameter is std::initializer_list; otherwise this is a
16342 non-deduced context. */
16343 return unify_success (explain_p);
16345 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
16347 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
16349 int elt_strict = strict;
16351 if (elt == error_mark_node)
16352 return unify_invalid (explain_p);
16354 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
16356 tree type = TREE_TYPE (elt);
16357 /* It should only be possible to get here for a call. */
16358 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
16359 elt_strict |= maybe_adjust_types_for_deduction
16360 (DEDUCE_CALL, &elttype, &type, elt);
16361 elt = type;
16364 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
16365 explain_p);
16368 /* If the std::initializer_list<T> deduction worked, replace the
16369 deduced A with std::initializer_list<A>. */
16370 if (orig_parm != parm)
16372 idx = TEMPLATE_TYPE_IDX (orig_parm);
16373 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16374 targ = listify (targ);
16375 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
16377 return unify_success (explain_p);
16380 /* Immediately reject some pairs that won't unify because of
16381 cv-qualification mismatches. */
16382 if (TREE_CODE (arg) == TREE_CODE (parm)
16383 && TYPE_P (arg)
16384 /* It is the elements of the array which hold the cv quals of an array
16385 type, and the elements might be template type parms. We'll check
16386 when we recurse. */
16387 && TREE_CODE (arg) != ARRAY_TYPE
16388 /* We check the cv-qualifiers when unifying with template type
16389 parameters below. We want to allow ARG `const T' to unify with
16390 PARM `T' for example, when computing which of two templates
16391 is more specialized, for example. */
16392 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
16393 && !check_cv_quals_for_unify (strict_in, arg, parm))
16394 return unify_cv_qual_mismatch (explain_p, parm, arg);
16396 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
16397 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
16398 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
16399 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
16400 strict &= ~UNIFY_ALLOW_DERIVED;
16401 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16402 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
16404 switch (TREE_CODE (parm))
16406 case TYPENAME_TYPE:
16407 case SCOPE_REF:
16408 case UNBOUND_CLASS_TEMPLATE:
16409 /* In a type which contains a nested-name-specifier, template
16410 argument values cannot be deduced for template parameters used
16411 within the nested-name-specifier. */
16412 return unify_success (explain_p);
16414 case TEMPLATE_TYPE_PARM:
16415 case TEMPLATE_TEMPLATE_PARM:
16416 case BOUND_TEMPLATE_TEMPLATE_PARM:
16417 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16418 if (tparm == error_mark_node)
16419 return unify_invalid (explain_p);
16421 if (TEMPLATE_TYPE_LEVEL (parm)
16422 != template_decl_level (tparm))
16423 /* The PARM is not one we're trying to unify. Just check
16424 to see if it matches ARG. */
16426 if (TREE_CODE (arg) == TREE_CODE (parm)
16427 && (is_auto (parm) ? is_auto (arg)
16428 : same_type_p (parm, arg)))
16429 return unify_success (explain_p);
16430 else
16431 return unify_type_mismatch (explain_p, parm, arg);
16433 idx = TEMPLATE_TYPE_IDX (parm);
16434 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16435 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
16436 if (tparm == error_mark_node)
16437 return unify_invalid (explain_p);
16439 /* Check for mixed types and values. */
16440 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16441 && TREE_CODE (tparm) != TYPE_DECL)
16442 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16443 && TREE_CODE (tparm) != TEMPLATE_DECL))
16444 gcc_unreachable ();
16446 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16448 /* ARG must be constructed from a template class or a template
16449 template parameter. */
16450 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
16451 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
16452 return unify_template_deduction_failure (explain_p, parm, arg);
16455 tree parmvec = TYPE_TI_ARGS (parm);
16456 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
16457 tree full_argvec = add_to_template_args (targs, argvec);
16458 tree parm_parms
16459 = DECL_INNERMOST_TEMPLATE_PARMS
16460 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
16461 int i, len;
16462 int parm_variadic_p = 0;
16464 /* The resolution to DR150 makes clear that default
16465 arguments for an N-argument may not be used to bind T
16466 to a template template parameter with fewer than N
16467 parameters. It is not safe to permit the binding of
16468 default arguments as an extension, as that may change
16469 the meaning of a conforming program. Consider:
16471 struct Dense { static const unsigned int dim = 1; };
16473 template <template <typename> class View,
16474 typename Block>
16475 void operator+(float, View<Block> const&);
16477 template <typename Block,
16478 unsigned int Dim = Block::dim>
16479 struct Lvalue_proxy { operator float() const; };
16481 void
16482 test_1d (void) {
16483 Lvalue_proxy<Dense> p;
16484 float b;
16485 b + p;
16488 Here, if Lvalue_proxy is permitted to bind to View, then
16489 the global operator+ will be used; if they are not, the
16490 Lvalue_proxy will be converted to float. */
16491 if (coerce_template_parms (parm_parms,
16492 full_argvec,
16493 TYPE_TI_TEMPLATE (parm),
16494 (explain_p
16495 ? tf_warning_or_error
16496 : tf_none),
16497 /*require_all_args=*/true,
16498 /*use_default_args=*/false)
16499 == error_mark_node)
16500 return 1;
16502 /* Deduce arguments T, i from TT<T> or TT<i>.
16503 We check each element of PARMVEC and ARGVEC individually
16504 rather than the whole TREE_VEC since they can have
16505 different number of elements. */
16507 parmvec = expand_template_argument_pack (parmvec);
16508 argvec = expand_template_argument_pack (argvec);
16510 len = TREE_VEC_LENGTH (parmvec);
16512 /* Check if the parameters end in a pack, making them
16513 variadic. */
16514 if (len > 0
16515 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
16516 parm_variadic_p = 1;
16518 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
16519 return unify_too_few_arguments (explain_p,
16520 TREE_VEC_LENGTH (argvec), len);
16522 for (i = 0; i < len - parm_variadic_p; ++i)
16524 RECUR_AND_CHECK_FAILURE (tparms, targs,
16525 TREE_VEC_ELT (parmvec, i),
16526 TREE_VEC_ELT (argvec, i),
16527 UNIFY_ALLOW_NONE, explain_p);
16530 if (parm_variadic_p
16531 && unify_pack_expansion (tparms, targs,
16532 parmvec, argvec,
16533 DEDUCE_EXACT,
16534 /*subr=*/true, explain_p))
16535 return 1;
16537 arg = TYPE_TI_TEMPLATE (arg);
16539 /* Fall through to deduce template name. */
16542 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16543 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16545 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
16547 /* Simple cases: Value already set, does match or doesn't. */
16548 if (targ != NULL_TREE && template_args_equal (targ, arg))
16549 return unify_success (explain_p);
16550 else if (targ)
16551 return unify_inconsistency (explain_p, parm, targ, arg);
16553 else
16555 /* If PARM is `const T' and ARG is only `int', we don't have
16556 a match unless we are allowing additional qualification.
16557 If ARG is `const int' and PARM is just `T' that's OK;
16558 that binds `const int' to `T'. */
16559 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
16560 arg, parm))
16561 return unify_cv_qual_mismatch (explain_p, parm, arg);
16563 /* Consider the case where ARG is `const volatile int' and
16564 PARM is `const T'. Then, T should be `volatile int'. */
16565 arg = cp_build_qualified_type_real
16566 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
16567 if (arg == error_mark_node)
16568 return unify_invalid (explain_p);
16570 /* Simple cases: Value already set, does match or doesn't. */
16571 if (targ != NULL_TREE && same_type_p (targ, arg))
16572 return unify_success (explain_p);
16573 else if (targ)
16574 return unify_inconsistency (explain_p, parm, targ, arg);
16576 /* Make sure that ARG is not a variable-sized array. (Note
16577 that were talking about variable-sized arrays (like
16578 `int[n]'), rather than arrays of unknown size (like
16579 `int[]').) We'll get very confused by such a type since
16580 the bound of the array is not constant, and therefore
16581 not mangleable. Besides, such types are not allowed in
16582 ISO C++, so we can do as we please here. We do allow
16583 them for 'auto' deduction, since that isn't ABI-exposed. */
16584 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
16585 return unify_vla_arg (explain_p, arg);
16587 /* Strip typedefs as in convert_template_argument. */
16588 arg = canonicalize_type_argument (arg, tf_none);
16591 /* If ARG is a parameter pack or an expansion, we cannot unify
16592 against it unless PARM is also a parameter pack. */
16593 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16594 && !template_parameter_pack_p (parm))
16595 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16597 /* If the argument deduction results is a METHOD_TYPE,
16598 then there is a problem.
16599 METHOD_TYPE doesn't map to any real C++ type the result of
16600 the deduction can not be of that type. */
16601 if (TREE_CODE (arg) == METHOD_TYPE)
16602 return unify_method_type_error (explain_p, arg);
16604 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16605 return unify_success (explain_p);
16607 case TEMPLATE_PARM_INDEX:
16608 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16609 if (tparm == error_mark_node)
16610 return unify_invalid (explain_p);
16612 if (TEMPLATE_PARM_LEVEL (parm)
16613 != template_decl_level (tparm))
16615 /* The PARM is not one we're trying to unify. Just check
16616 to see if it matches ARG. */
16617 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
16618 && cp_tree_equal (parm, arg));
16619 if (result)
16620 unify_expression_unequal (explain_p, parm, arg);
16621 return result;
16624 idx = TEMPLATE_PARM_IDX (parm);
16625 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16627 if (targ)
16629 int x = !cp_tree_equal (targ, arg);
16630 if (x)
16631 unify_inconsistency (explain_p, parm, targ, arg);
16632 return x;
16635 /* [temp.deduct.type] If, in the declaration of a function template
16636 with a non-type template-parameter, the non-type
16637 template-parameter is used in an expression in the function
16638 parameter-list and, if the corresponding template-argument is
16639 deduced, the template-argument type shall match the type of the
16640 template-parameter exactly, except that a template-argument
16641 deduced from an array bound may be of any integral type.
16642 The non-type parameter might use already deduced type parameters. */
16643 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
16644 if (!TREE_TYPE (arg))
16645 /* Template-parameter dependent expression. Just accept it for now.
16646 It will later be processed in convert_template_argument. */
16648 else if (same_type_p (TREE_TYPE (arg), tparm))
16649 /* OK */;
16650 else if ((strict & UNIFY_ALLOW_INTEGER)
16651 && (TREE_CODE (tparm) == INTEGER_TYPE
16652 || TREE_CODE (tparm) == BOOLEAN_TYPE))
16653 /* Convert the ARG to the type of PARM; the deduced non-type
16654 template argument must exactly match the types of the
16655 corresponding parameter. */
16656 arg = fold (build_nop (tparm, arg));
16657 else if (uses_template_parms (tparm))
16658 /* We haven't deduced the type of this parameter yet. Try again
16659 later. */
16660 return unify_success (explain_p);
16661 else
16662 return unify_type_mismatch (explain_p, tparm, arg);
16664 /* If ARG is a parameter pack or an expansion, we cannot unify
16665 against it unless PARM is also a parameter pack. */
16666 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16667 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
16668 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16670 arg = strip_typedefs_expr (arg);
16671 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16672 return unify_success (explain_p);
16674 case PTRMEM_CST:
16676 /* A pointer-to-member constant can be unified only with
16677 another constant. */
16678 if (TREE_CODE (arg) != PTRMEM_CST)
16679 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
16681 /* Just unify the class member. It would be useless (and possibly
16682 wrong, depending on the strict flags) to unify also
16683 PTRMEM_CST_CLASS, because we want to be sure that both parm and
16684 arg refer to the same variable, even if through different
16685 classes. For instance:
16687 struct A { int x; };
16688 struct B : A { };
16690 Unification of &A::x and &B::x must succeed. */
16691 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
16692 PTRMEM_CST_MEMBER (arg), strict, explain_p);
16695 case POINTER_TYPE:
16697 if (TREE_CODE (arg) != POINTER_TYPE)
16698 return unify_type_mismatch (explain_p, parm, arg);
16700 /* [temp.deduct.call]
16702 A can be another pointer or pointer to member type that can
16703 be converted to the deduced A via a qualification
16704 conversion (_conv.qual_).
16706 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
16707 This will allow for additional cv-qualification of the
16708 pointed-to types if appropriate. */
16710 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
16711 /* The derived-to-base conversion only persists through one
16712 level of pointers. */
16713 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
16715 return unify (tparms, targs, TREE_TYPE (parm),
16716 TREE_TYPE (arg), strict, explain_p);
16719 case REFERENCE_TYPE:
16720 if (TREE_CODE (arg) != REFERENCE_TYPE)
16721 return unify_type_mismatch (explain_p, parm, arg);
16722 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16723 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16725 case ARRAY_TYPE:
16726 if (TREE_CODE (arg) != ARRAY_TYPE)
16727 return unify_type_mismatch (explain_p, parm, arg);
16728 if ((TYPE_DOMAIN (parm) == NULL_TREE)
16729 != (TYPE_DOMAIN (arg) == NULL_TREE))
16730 return unify_type_mismatch (explain_p, parm, arg);
16731 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16732 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16733 if (TYPE_DOMAIN (parm) != NULL_TREE)
16735 tree parm_max;
16736 tree arg_max;
16737 bool parm_cst;
16738 bool arg_cst;
16740 /* Our representation of array types uses "N - 1" as the
16741 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
16742 not an integer constant. We cannot unify arbitrarily
16743 complex expressions, so we eliminate the MINUS_EXPRs
16744 here. */
16745 parm_max = TYPE_MAX_VALUE (TYPE_DOMAIN (parm));
16746 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
16747 if (!parm_cst)
16749 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
16750 parm_max = TREE_OPERAND (parm_max, 0);
16752 arg_max = TYPE_MAX_VALUE (TYPE_DOMAIN (arg));
16753 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
16754 if (!arg_cst)
16756 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
16757 trying to unify the type of a variable with the type
16758 of a template parameter. For example:
16760 template <unsigned int N>
16761 void f (char (&) [N]);
16762 int g();
16763 void h(int i) {
16764 char a[g(i)];
16765 f(a);
16768 Here, the type of the ARG will be "int [g(i)]", and
16769 may be a SAVE_EXPR, etc. */
16770 if (TREE_CODE (arg_max) != MINUS_EXPR)
16771 return unify_vla_arg (explain_p, arg);
16772 arg_max = TREE_OPERAND (arg_max, 0);
16775 /* If only one of the bounds used a MINUS_EXPR, compensate
16776 by adding one to the other bound. */
16777 if (parm_cst && !arg_cst)
16778 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
16779 integer_type_node,
16780 parm_max,
16781 integer_one_node);
16782 else if (arg_cst && !parm_cst)
16783 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
16784 integer_type_node,
16785 arg_max,
16786 integer_one_node);
16788 RECUR_AND_CHECK_FAILURE (tparms, targs, parm_max, arg_max,
16789 UNIFY_ALLOW_INTEGER, explain_p);
16791 return unify_success (explain_p);
16793 case REAL_TYPE:
16794 case COMPLEX_TYPE:
16795 case VECTOR_TYPE:
16796 case INTEGER_TYPE:
16797 case BOOLEAN_TYPE:
16798 case ENUMERAL_TYPE:
16799 case VOID_TYPE:
16800 case NULLPTR_TYPE:
16801 if (TREE_CODE (arg) != TREE_CODE (parm))
16802 return unify_type_mismatch (explain_p, parm, arg);
16804 /* We have already checked cv-qualification at the top of the
16805 function. */
16806 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
16807 return unify_type_mismatch (explain_p, parm, arg);
16809 /* As far as unification is concerned, this wins. Later checks
16810 will invalidate it if necessary. */
16811 return unify_success (explain_p);
16813 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
16814 /* Type INTEGER_CST can come from ordinary constant template args. */
16815 case INTEGER_CST:
16816 while (TREE_CODE (arg) == NOP_EXPR)
16817 arg = TREE_OPERAND (arg, 0);
16819 if (TREE_CODE (arg) != INTEGER_CST)
16820 return unify_template_argument_mismatch (explain_p, parm, arg);
16821 return (tree_int_cst_equal (parm, arg)
16822 ? unify_success (explain_p)
16823 : unify_template_argument_mismatch (explain_p, parm, arg));
16825 case TREE_VEC:
16827 int i, len, argslen;
16828 int parm_variadic_p = 0;
16830 if (TREE_CODE (arg) != TREE_VEC)
16831 return unify_template_argument_mismatch (explain_p, parm, arg);
16833 len = TREE_VEC_LENGTH (parm);
16834 argslen = TREE_VEC_LENGTH (arg);
16836 /* Check for pack expansions in the parameters. */
16837 for (i = 0; i < len; ++i)
16839 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
16841 if (i == len - 1)
16842 /* We can unify against something with a trailing
16843 parameter pack. */
16844 parm_variadic_p = 1;
16845 else
16846 /* [temp.deduct.type]/9: If the template argument list of
16847 P contains a pack expansion that is not the last
16848 template argument, the entire template argument list
16849 is a non-deduced context. */
16850 return unify_success (explain_p);
16854 /* If we don't have enough arguments to satisfy the parameters
16855 (not counting the pack expression at the end), or we have
16856 too many arguments for a parameter list that doesn't end in
16857 a pack expression, we can't unify. */
16858 if (parm_variadic_p
16859 ? argslen < len - parm_variadic_p
16860 : argslen != len)
16861 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
16863 /* Unify all of the parameters that precede the (optional)
16864 pack expression. */
16865 for (i = 0; i < len - parm_variadic_p; ++i)
16867 RECUR_AND_CHECK_FAILURE (tparms, targs,
16868 TREE_VEC_ELT (parm, i),
16869 TREE_VEC_ELT (arg, i),
16870 UNIFY_ALLOW_NONE, explain_p);
16872 if (parm_variadic_p)
16873 return unify_pack_expansion (tparms, targs, parm, arg,
16874 DEDUCE_EXACT,
16875 /*subr=*/true, explain_p);
16876 return unify_success (explain_p);
16879 case RECORD_TYPE:
16880 case UNION_TYPE:
16881 if (TREE_CODE (arg) != TREE_CODE (parm))
16882 return unify_type_mismatch (explain_p, parm, arg);
16884 if (TYPE_PTRMEMFUNC_P (parm))
16886 if (!TYPE_PTRMEMFUNC_P (arg))
16887 return unify_type_mismatch (explain_p, parm, arg);
16889 return unify (tparms, targs,
16890 TYPE_PTRMEMFUNC_FN_TYPE (parm),
16891 TYPE_PTRMEMFUNC_FN_TYPE (arg),
16892 strict, explain_p);
16895 if (CLASSTYPE_TEMPLATE_INFO (parm))
16897 tree t = NULL_TREE;
16899 if (strict_in & UNIFY_ALLOW_DERIVED)
16901 /* First, we try to unify the PARM and ARG directly. */
16902 t = try_class_unification (tparms, targs,
16903 parm, arg, explain_p);
16905 if (!t)
16907 /* Fallback to the special case allowed in
16908 [temp.deduct.call]:
16910 If P is a class, and P has the form
16911 template-id, then A can be a derived class of
16912 the deduced A. Likewise, if P is a pointer to
16913 a class of the form template-id, A can be a
16914 pointer to a derived class pointed to by the
16915 deduced A. */
16916 enum template_base_result r;
16917 r = get_template_base (tparms, targs, parm, arg,
16918 explain_p, &t);
16920 if (!t)
16921 return unify_no_common_base (explain_p, r, parm, arg);
16924 else if (CLASSTYPE_TEMPLATE_INFO (arg)
16925 && (CLASSTYPE_TI_TEMPLATE (parm)
16926 == CLASSTYPE_TI_TEMPLATE (arg)))
16927 /* Perhaps PARM is something like S<U> and ARG is S<int>.
16928 Then, we should unify `int' and `U'. */
16929 t = arg;
16930 else
16931 /* There's no chance of unification succeeding. */
16932 return unify_type_mismatch (explain_p, parm, arg);
16934 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
16935 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
16937 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
16938 return unify_type_mismatch (explain_p, parm, arg);
16939 return unify_success (explain_p);
16941 case METHOD_TYPE:
16942 case FUNCTION_TYPE:
16944 unsigned int nargs;
16945 tree *args;
16946 tree a;
16947 unsigned int i;
16949 if (TREE_CODE (arg) != TREE_CODE (parm))
16950 return unify_type_mismatch (explain_p, parm, arg);
16952 /* CV qualifications for methods can never be deduced, they must
16953 match exactly. We need to check them explicitly here,
16954 because type_unification_real treats them as any other
16955 cv-qualified parameter. */
16956 if (TREE_CODE (parm) == METHOD_TYPE
16957 && (!check_cv_quals_for_unify
16958 (UNIFY_ALLOW_NONE,
16959 class_of_this_parm (arg),
16960 class_of_this_parm (parm))))
16961 return unify_cv_qual_mismatch (explain_p, parm, arg);
16963 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
16964 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
16966 nargs = list_length (TYPE_ARG_TYPES (arg));
16967 args = XALLOCAVEC (tree, nargs);
16968 for (a = TYPE_ARG_TYPES (arg), i = 0;
16969 a != NULL_TREE && a != void_list_node;
16970 a = TREE_CHAIN (a), ++i)
16971 args[i] = TREE_VALUE (a);
16972 nargs = i;
16974 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
16975 args, nargs, 1, DEDUCE_EXACT,
16976 LOOKUP_NORMAL, explain_p);
16979 case OFFSET_TYPE:
16980 /* Unify a pointer to member with a pointer to member function, which
16981 deduces the type of the member as a function type. */
16982 if (TYPE_PTRMEMFUNC_P (arg))
16984 tree method_type;
16985 tree fntype;
16987 /* Check top-level cv qualifiers */
16988 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
16989 return unify_cv_qual_mismatch (explain_p, parm, arg);
16991 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
16992 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
16993 UNIFY_ALLOW_NONE, explain_p);
16995 /* Determine the type of the function we are unifying against. */
16996 method_type = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (arg));
16997 fntype =
16998 build_function_type (TREE_TYPE (method_type),
16999 TREE_CHAIN (TYPE_ARG_TYPES (method_type)));
17001 /* Extract the cv-qualifiers of the member function from the
17002 implicit object parameter and place them on the function
17003 type to be restored later. */
17004 fntype = apply_memfn_quals (fntype, type_memfn_quals (method_type));
17005 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
17008 if (TREE_CODE (arg) != OFFSET_TYPE)
17009 return unify_type_mismatch (explain_p, parm, arg);
17010 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
17011 TYPE_OFFSET_BASETYPE (arg),
17012 UNIFY_ALLOW_NONE, explain_p);
17013 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
17014 strict, explain_p);
17016 case CONST_DECL:
17017 if (DECL_TEMPLATE_PARM_P (parm))
17018 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
17019 if (arg != integral_constant_value (parm))
17020 return unify_template_argument_mismatch (explain_p, parm, arg);
17021 return unify_success (explain_p);
17023 case FIELD_DECL:
17024 case TEMPLATE_DECL:
17025 /* Matched cases are handled by the ARG == PARM test above. */
17026 return unify_template_argument_mismatch (explain_p, parm, arg);
17028 case VAR_DECL:
17029 /* A non-type template parameter that is a variable should be a
17030 an integral constant, in which case, it whould have been
17031 folded into its (constant) value. So we should not be getting
17032 a variable here. */
17033 gcc_unreachable ();
17035 case TYPE_ARGUMENT_PACK:
17036 case NONTYPE_ARGUMENT_PACK:
17037 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
17038 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
17040 case TYPEOF_TYPE:
17041 case DECLTYPE_TYPE:
17042 case UNDERLYING_TYPE:
17043 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
17044 or UNDERLYING_TYPE nodes. */
17045 return unify_success (explain_p);
17047 case ERROR_MARK:
17048 /* Unification fails if we hit an error node. */
17049 return unify_invalid (explain_p);
17051 default:
17052 /* An unresolved overload is a nondeduced context. */
17053 if (is_overloaded_fn (parm) || type_unknown_p (parm))
17054 return unify_success (explain_p);
17055 gcc_assert (EXPR_P (parm));
17057 /* We must be looking at an expression. This can happen with
17058 something like:
17060 template <int I>
17061 void foo(S<I>, S<I + 2>);
17063 This is a "nondeduced context":
17065 [deduct.type]
17067 The nondeduced contexts are:
17069 --A type that is a template-id in which one or more of
17070 the template-arguments is an expression that references
17071 a template-parameter.
17073 In these cases, we assume deduction succeeded, but don't
17074 actually infer any unifications. */
17076 if (!uses_template_parms (parm)
17077 && !template_args_equal (parm, arg))
17078 return unify_expression_unequal (explain_p, parm, arg);
17079 else
17080 return unify_success (explain_p);
17083 #undef RECUR_AND_CHECK_FAILURE
17085 /* Note that DECL can be defined in this translation unit, if
17086 required. */
17088 static void
17089 mark_definable (tree decl)
17091 tree clone;
17092 DECL_NOT_REALLY_EXTERN (decl) = 1;
17093 FOR_EACH_CLONE (clone, decl)
17094 DECL_NOT_REALLY_EXTERN (clone) = 1;
17097 /* Called if RESULT is explicitly instantiated, or is a member of an
17098 explicitly instantiated class. */
17100 void
17101 mark_decl_instantiated (tree result, int extern_p)
17103 SET_DECL_EXPLICIT_INSTANTIATION (result);
17105 /* If this entity has already been written out, it's too late to
17106 make any modifications. */
17107 if (TREE_ASM_WRITTEN (result))
17108 return;
17110 if (TREE_CODE (result) != FUNCTION_DECL)
17111 /* The TREE_PUBLIC flag for function declarations will have been
17112 set correctly by tsubst. */
17113 TREE_PUBLIC (result) = 1;
17115 /* This might have been set by an earlier implicit instantiation. */
17116 DECL_COMDAT (result) = 0;
17118 if (extern_p)
17119 DECL_NOT_REALLY_EXTERN (result) = 0;
17120 else
17122 mark_definable (result);
17123 /* Always make artificials weak. */
17124 if (DECL_ARTIFICIAL (result) && flag_weak)
17125 comdat_linkage (result);
17126 /* For WIN32 we also want to put explicit instantiations in
17127 linkonce sections. */
17128 else if (TREE_PUBLIC (result))
17129 maybe_make_one_only (result);
17132 /* If EXTERN_P, then this function will not be emitted -- unless
17133 followed by an explicit instantiation, at which point its linkage
17134 will be adjusted. If !EXTERN_P, then this function will be
17135 emitted here. In neither circumstance do we want
17136 import_export_decl to adjust the linkage. */
17137 DECL_INTERFACE_KNOWN (result) = 1;
17140 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
17141 important template arguments. If any are missing, we check whether
17142 they're important by using error_mark_node for substituting into any
17143 args that were used for partial ordering (the ones between ARGS and END)
17144 and seeing if it bubbles up. */
17146 static bool
17147 check_undeduced_parms (tree targs, tree args, tree end)
17149 bool found = false;
17150 int i;
17151 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
17152 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
17154 found = true;
17155 TREE_VEC_ELT (targs, i) = error_mark_node;
17157 if (found)
17159 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
17160 if (substed == error_mark_node)
17161 return true;
17163 return false;
17166 /* Given two function templates PAT1 and PAT2, return:
17168 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
17169 -1 if PAT2 is more specialized than PAT1.
17170 0 if neither is more specialized.
17172 LEN indicates the number of parameters we should consider
17173 (defaulted parameters should not be considered).
17175 The 1998 std underspecified function template partial ordering, and
17176 DR214 addresses the issue. We take pairs of arguments, one from
17177 each of the templates, and deduce them against each other. One of
17178 the templates will be more specialized if all the *other*
17179 template's arguments deduce against its arguments and at least one
17180 of its arguments *does* *not* deduce against the other template's
17181 corresponding argument. Deduction is done as for class templates.
17182 The arguments used in deduction have reference and top level cv
17183 qualifiers removed. Iff both arguments were originally reference
17184 types *and* deduction succeeds in both directions, the template
17185 with the more cv-qualified argument wins for that pairing (if
17186 neither is more cv-qualified, they both are equal). Unlike regular
17187 deduction, after all the arguments have been deduced in this way,
17188 we do *not* verify the deduced template argument values can be
17189 substituted into non-deduced contexts.
17191 The logic can be a bit confusing here, because we look at deduce1 and
17192 targs1 to see if pat2 is at least as specialized, and vice versa; if we
17193 can find template arguments for pat1 to make arg1 look like arg2, that
17194 means that arg2 is at least as specialized as arg1. */
17197 more_specialized_fn (tree pat1, tree pat2, int len)
17199 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
17200 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
17201 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
17202 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
17203 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
17204 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
17205 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
17206 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
17207 tree origs1, origs2;
17208 bool lose1 = false;
17209 bool lose2 = false;
17211 /* Remove the this parameter from non-static member functions. If
17212 one is a non-static member function and the other is not a static
17213 member function, remove the first parameter from that function
17214 also. This situation occurs for operator functions where we
17215 locate both a member function (with this pointer) and non-member
17216 operator (with explicit first operand). */
17217 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
17219 len--; /* LEN is the number of significant arguments for DECL1 */
17220 args1 = TREE_CHAIN (args1);
17221 if (!DECL_STATIC_FUNCTION_P (decl2))
17222 args2 = TREE_CHAIN (args2);
17224 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
17226 args2 = TREE_CHAIN (args2);
17227 if (!DECL_STATIC_FUNCTION_P (decl1))
17229 len--;
17230 args1 = TREE_CHAIN (args1);
17234 /* If only one is a conversion operator, they are unordered. */
17235 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
17236 return 0;
17238 /* Consider the return type for a conversion function */
17239 if (DECL_CONV_FN_P (decl1))
17241 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
17242 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
17243 len++;
17246 processing_template_decl++;
17248 origs1 = args1;
17249 origs2 = args2;
17251 while (len--
17252 /* Stop when an ellipsis is seen. */
17253 && args1 != NULL_TREE && args2 != NULL_TREE)
17255 tree arg1 = TREE_VALUE (args1);
17256 tree arg2 = TREE_VALUE (args2);
17257 int deduce1, deduce2;
17258 int quals1 = -1;
17259 int quals2 = -1;
17261 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17262 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17264 /* When both arguments are pack expansions, we need only
17265 unify the patterns themselves. */
17266 arg1 = PACK_EXPANSION_PATTERN (arg1);
17267 arg2 = PACK_EXPANSION_PATTERN (arg2);
17269 /* This is the last comparison we need to do. */
17270 len = 0;
17273 if (TREE_CODE (arg1) == REFERENCE_TYPE)
17275 arg1 = TREE_TYPE (arg1);
17276 quals1 = cp_type_quals (arg1);
17279 if (TREE_CODE (arg2) == REFERENCE_TYPE)
17281 arg2 = TREE_TYPE (arg2);
17282 quals2 = cp_type_quals (arg2);
17285 arg1 = TYPE_MAIN_VARIANT (arg1);
17286 arg2 = TYPE_MAIN_VARIANT (arg2);
17288 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
17290 int i, len2 = list_length (args2);
17291 tree parmvec = make_tree_vec (1);
17292 tree argvec = make_tree_vec (len2);
17293 tree ta = args2;
17295 /* Setup the parameter vector, which contains only ARG1. */
17296 TREE_VEC_ELT (parmvec, 0) = arg1;
17298 /* Setup the argument vector, which contains the remaining
17299 arguments. */
17300 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
17301 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17303 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
17304 argvec, DEDUCE_EXACT,
17305 /*subr=*/true, /*explain_p=*/false)
17306 == 0);
17308 /* We cannot deduce in the other direction, because ARG1 is
17309 a pack expansion but ARG2 is not. */
17310 deduce2 = 0;
17312 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17314 int i, len1 = list_length (args1);
17315 tree parmvec = make_tree_vec (1);
17316 tree argvec = make_tree_vec (len1);
17317 tree ta = args1;
17319 /* Setup the parameter vector, which contains only ARG1. */
17320 TREE_VEC_ELT (parmvec, 0) = arg2;
17322 /* Setup the argument vector, which contains the remaining
17323 arguments. */
17324 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
17325 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17327 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
17328 argvec, DEDUCE_EXACT,
17329 /*subr=*/true, /*explain_p=*/false)
17330 == 0);
17332 /* We cannot deduce in the other direction, because ARG2 is
17333 a pack expansion but ARG1 is not.*/
17334 deduce1 = 0;
17337 else
17339 /* The normal case, where neither argument is a pack
17340 expansion. */
17341 deduce1 = (unify (tparms1, targs1, arg1, arg2,
17342 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17343 == 0);
17344 deduce2 = (unify (tparms2, targs2, arg2, arg1,
17345 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17346 == 0);
17349 /* If we couldn't deduce arguments for tparms1 to make arg1 match
17350 arg2, then arg2 is not as specialized as arg1. */
17351 if (!deduce1)
17352 lose2 = true;
17353 if (!deduce2)
17354 lose1 = true;
17356 /* "If, for a given type, deduction succeeds in both directions
17357 (i.e., the types are identical after the transformations above)
17358 and if the type from the argument template is more cv-qualified
17359 than the type from the parameter template (as described above)
17360 that type is considered to be more specialized than the other. If
17361 neither type is more cv-qualified than the other then neither type
17362 is more specialized than the other." */
17364 if (deduce1 && deduce2
17365 && quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
17367 if ((quals1 & quals2) == quals2)
17368 lose2 = true;
17369 if ((quals1 & quals2) == quals1)
17370 lose1 = true;
17373 if (lose1 && lose2)
17374 /* We've failed to deduce something in either direction.
17375 These must be unordered. */
17376 break;
17378 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17379 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17380 /* We have already processed all of the arguments in our
17381 handing of the pack expansion type. */
17382 len = 0;
17384 args1 = TREE_CHAIN (args1);
17385 args2 = TREE_CHAIN (args2);
17388 /* "In most cases, all template parameters must have values in order for
17389 deduction to succeed, but for partial ordering purposes a template
17390 parameter may remain without a value provided it is not used in the
17391 types being used for partial ordering."
17393 Thus, if we are missing any of the targs1 we need to substitute into
17394 origs1, then pat2 is not as specialized as pat1. This can happen when
17395 there is a nondeduced context. */
17396 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
17397 lose2 = true;
17398 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
17399 lose1 = true;
17401 processing_template_decl--;
17403 /* All things being equal, if the next argument is a pack expansion
17404 for one function but not for the other, prefer the
17405 non-variadic function. FIXME this is bogus; see c++/41958. */
17406 if (lose1 == lose2
17407 && args1 && TREE_VALUE (args1)
17408 && args2 && TREE_VALUE (args2))
17410 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
17411 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
17414 if (lose1 == lose2)
17415 return 0;
17416 else if (!lose1)
17417 return 1;
17418 else
17419 return -1;
17422 /* Determine which of two partial specializations of MAIN_TMPL is more
17423 specialized.
17425 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
17426 to the first partial specialization. The TREE_VALUE is the
17427 innermost set of template parameters for the partial
17428 specialization. PAT2 is similar, but for the second template.
17430 Return 1 if the first partial specialization is more specialized;
17431 -1 if the second is more specialized; 0 if neither is more
17432 specialized.
17434 See [temp.class.order] for information about determining which of
17435 two templates is more specialized. */
17437 static int
17438 more_specialized_class (tree main_tmpl, tree pat1, tree pat2)
17440 tree targs;
17441 tree tmpl1, tmpl2;
17442 int winner = 0;
17443 bool any_deductions = false;
17445 tmpl1 = TREE_TYPE (pat1);
17446 tmpl2 = TREE_TYPE (pat2);
17448 /* Just like what happens for functions, if we are ordering between
17449 different class template specializations, we may encounter dependent
17450 types in the arguments, and we need our dependency check functions
17451 to behave correctly. */
17452 ++processing_template_decl;
17453 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat1),
17454 CLASSTYPE_TI_ARGS (tmpl1),
17455 CLASSTYPE_TI_ARGS (tmpl2));
17456 if (targs)
17458 --winner;
17459 any_deductions = true;
17462 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat2),
17463 CLASSTYPE_TI_ARGS (tmpl2),
17464 CLASSTYPE_TI_ARGS (tmpl1));
17465 if (targs)
17467 ++winner;
17468 any_deductions = true;
17470 --processing_template_decl;
17472 /* In the case of a tie where at least one of the class templates
17473 has a parameter pack at the end, the template with the most
17474 non-packed parameters wins. */
17475 if (winner == 0
17476 && any_deductions
17477 && (template_args_variadic_p (TREE_PURPOSE (pat1))
17478 || template_args_variadic_p (TREE_PURPOSE (pat2))))
17480 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
17481 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
17482 int len1 = TREE_VEC_LENGTH (args1);
17483 int len2 = TREE_VEC_LENGTH (args2);
17485 /* We don't count the pack expansion at the end. */
17486 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
17487 --len1;
17488 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
17489 --len2;
17491 if (len1 > len2)
17492 return 1;
17493 else if (len1 < len2)
17494 return -1;
17497 return winner;
17500 /* Return the template arguments that will produce the function signature
17501 DECL from the function template FN, with the explicit template
17502 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
17503 also match. Return NULL_TREE if no satisfactory arguments could be
17504 found. */
17506 static tree
17507 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
17509 int ntparms = DECL_NTPARMS (fn);
17510 tree targs = make_tree_vec (ntparms);
17511 tree decl_type = TREE_TYPE (decl);
17512 tree decl_arg_types;
17513 tree *args;
17514 unsigned int nargs, ix;
17515 tree arg;
17517 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
17519 /* Never do unification on the 'this' parameter. */
17520 decl_arg_types = skip_artificial_parms_for (decl,
17521 TYPE_ARG_TYPES (decl_type));
17523 nargs = list_length (decl_arg_types);
17524 args = XALLOCAVEC (tree, nargs);
17525 for (arg = decl_arg_types, ix = 0;
17526 arg != NULL_TREE && arg != void_list_node;
17527 arg = TREE_CHAIN (arg), ++ix)
17528 args[ix] = TREE_VALUE (arg);
17530 if (fn_type_unification (fn, explicit_args, targs,
17531 args, ix,
17532 (check_rettype || DECL_CONV_FN_P (fn)
17533 ? TREE_TYPE (decl_type) : NULL_TREE),
17534 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false)
17535 == error_mark_node)
17536 return NULL_TREE;
17538 return targs;
17541 /* Return the innermost template arguments that, when applied to a partial
17542 specialization of MAIN_TMPL whose innermost template parameters are
17543 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
17544 ARGS.
17546 For example, suppose we have:
17548 template <class T, class U> struct S {};
17549 template <class T> struct S<T*, int> {};
17551 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
17552 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
17553 int}. The resulting vector will be {double}, indicating that `T'
17554 is bound to `double'. */
17556 static tree
17557 get_class_bindings (tree main_tmpl, tree tparms, tree spec_args, tree args)
17559 int i, ntparms = TREE_VEC_LENGTH (tparms);
17560 tree deduced_args;
17561 tree innermost_deduced_args;
17563 innermost_deduced_args = make_tree_vec (ntparms);
17564 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17566 deduced_args = copy_node (args);
17567 SET_TMPL_ARGS_LEVEL (deduced_args,
17568 TMPL_ARGS_DEPTH (deduced_args),
17569 innermost_deduced_args);
17571 else
17572 deduced_args = innermost_deduced_args;
17574 if (unify (tparms, deduced_args,
17575 INNERMOST_TEMPLATE_ARGS (spec_args),
17576 INNERMOST_TEMPLATE_ARGS (args),
17577 UNIFY_ALLOW_NONE, /*explain_p=*/false))
17578 return NULL_TREE;
17580 for (i = 0; i < ntparms; ++i)
17581 if (! TREE_VEC_ELT (innermost_deduced_args, i))
17582 return NULL_TREE;
17584 /* Verify that nondeduced template arguments agree with the type
17585 obtained from argument deduction.
17587 For example:
17589 struct A { typedef int X; };
17590 template <class T, class U> struct C {};
17591 template <class T> struct C<T, typename T::X> {};
17593 Then with the instantiation `C<A, int>', we can deduce that
17594 `T' is `A' but unify () does not check whether `typename T::X'
17595 is `int'. */
17596 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
17597 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (main_tmpl),
17598 spec_args, main_tmpl,
17599 tf_none, false, false);
17600 if (spec_args == error_mark_node
17601 /* We only need to check the innermost arguments; the other
17602 arguments will always agree. */
17603 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
17604 INNERMOST_TEMPLATE_ARGS (args)))
17605 return NULL_TREE;
17607 /* Now that we have bindings for all of the template arguments,
17608 ensure that the arguments deduced for the template template
17609 parameters have compatible template parameter lists. See the use
17610 of template_template_parm_bindings_ok_p in fn_type_unification
17611 for more information. */
17612 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
17613 return NULL_TREE;
17615 return deduced_args;
17618 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
17619 Return the TREE_LIST node with the most specialized template, if
17620 any. If there is no most specialized template, the error_mark_node
17621 is returned.
17623 Note that this function does not look at, or modify, the
17624 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
17625 returned is one of the elements of INSTANTIATIONS, callers may
17626 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
17627 and retrieve it from the value returned. */
17629 tree
17630 most_specialized_instantiation (tree templates)
17632 tree fn, champ;
17634 ++processing_template_decl;
17636 champ = templates;
17637 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
17639 int fate = 0;
17641 if (get_bindings (TREE_VALUE (champ),
17642 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17643 NULL_TREE, /*check_ret=*/true))
17644 fate--;
17646 if (get_bindings (TREE_VALUE (fn),
17647 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17648 NULL_TREE, /*check_ret=*/true))
17649 fate++;
17651 if (fate == -1)
17652 champ = fn;
17653 else if (!fate)
17655 /* Equally specialized, move to next function. If there
17656 is no next function, nothing's most specialized. */
17657 fn = TREE_CHAIN (fn);
17658 champ = fn;
17659 if (!fn)
17660 break;
17664 if (champ)
17665 /* Now verify that champ is better than everything earlier in the
17666 instantiation list. */
17667 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
17668 if (get_bindings (TREE_VALUE (champ),
17669 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17670 NULL_TREE, /*check_ret=*/true)
17671 || !get_bindings (TREE_VALUE (fn),
17672 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17673 NULL_TREE, /*check_ret=*/true))
17675 champ = NULL_TREE;
17676 break;
17679 processing_template_decl--;
17681 if (!champ)
17682 return error_mark_node;
17684 return champ;
17687 /* If DECL is a specialization of some template, return the most
17688 general such template. Otherwise, returns NULL_TREE.
17690 For example, given:
17692 template <class T> struct S { template <class U> void f(U); };
17694 if TMPL is `template <class U> void S<int>::f(U)' this will return
17695 the full template. This function will not trace past partial
17696 specializations, however. For example, given in addition:
17698 template <class T> struct S<T*> { template <class U> void f(U); };
17700 if TMPL is `template <class U> void S<int*>::f(U)' this will return
17701 `template <class T> template <class U> S<T*>::f(U)'. */
17703 tree
17704 most_general_template (tree decl)
17706 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
17707 an immediate specialization. */
17708 if (TREE_CODE (decl) == FUNCTION_DECL)
17710 if (DECL_TEMPLATE_INFO (decl)) {
17711 decl = DECL_TI_TEMPLATE (decl);
17713 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
17714 template friend. */
17715 if (TREE_CODE (decl) != TEMPLATE_DECL)
17716 return NULL_TREE;
17717 } else
17718 return NULL_TREE;
17721 /* Look for more and more general templates. */
17722 while (DECL_TEMPLATE_INFO (decl))
17724 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
17725 (See cp-tree.h for details.) */
17726 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
17727 break;
17729 if (CLASS_TYPE_P (TREE_TYPE (decl))
17730 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
17731 break;
17733 /* Stop if we run into an explicitly specialized class template. */
17734 if (!DECL_NAMESPACE_SCOPE_P (decl)
17735 && DECL_CONTEXT (decl)
17736 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
17737 break;
17739 decl = DECL_TI_TEMPLATE (decl);
17742 return decl;
17745 /* Return the most specialized of the class template partial
17746 specializations of TMPL which can produce TYPE, a specialization of
17747 TMPL. The value returned is actually a TREE_LIST; the TREE_TYPE is
17748 a _TYPE node corresponding to the partial specialization, while the
17749 TREE_PURPOSE is the set of template arguments that must be
17750 substituted into the TREE_TYPE in order to generate TYPE.
17752 If the choice of partial specialization is ambiguous, a diagnostic
17753 is issued, and the error_mark_node is returned. If there are no
17754 partial specializations of TMPL matching TYPE, then NULL_TREE is
17755 returned. */
17757 static tree
17758 most_specialized_class (tree type, tree tmpl, tsubst_flags_t complain)
17760 tree list = NULL_TREE;
17761 tree t;
17762 tree champ;
17763 int fate;
17764 bool ambiguous_p;
17765 tree args;
17766 tree outer_args = NULL_TREE;
17768 tmpl = most_general_template (tmpl);
17769 args = CLASSTYPE_TI_ARGS (type);
17771 /* For determining which partial specialization to use, only the
17772 innermost args are interesting. */
17773 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17775 outer_args = strip_innermost_template_args (args, 1);
17776 args = INNERMOST_TEMPLATE_ARGS (args);
17779 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
17781 tree partial_spec_args;
17782 tree spec_args;
17783 tree parms = TREE_VALUE (t);
17785 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
17787 ++processing_template_decl;
17789 if (outer_args)
17791 int i;
17793 /* Discard the outer levels of args, and then substitute in the
17794 template args from the enclosing class. */
17795 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
17796 partial_spec_args = tsubst_template_args
17797 (partial_spec_args, outer_args, tf_none, NULL_TREE);
17799 /* PARMS already refers to just the innermost parms, but the
17800 template parms in partial_spec_args had their levels lowered
17801 by tsubst, so we need to do the same for the parm list. We
17802 can't just tsubst the TREE_VEC itself, as tsubst wants to
17803 treat a TREE_VEC as an argument vector. */
17804 parms = copy_node (parms);
17805 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
17806 TREE_VEC_ELT (parms, i) =
17807 tsubst (TREE_VEC_ELT (parms, i), outer_args, tf_none, NULL_TREE);
17811 partial_spec_args =
17812 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
17813 add_to_template_args (outer_args,
17814 partial_spec_args),
17815 tmpl, tf_none,
17816 /*require_all_args=*/true,
17817 /*use_default_args=*/true);
17819 --processing_template_decl;
17821 if (partial_spec_args == error_mark_node)
17822 return error_mark_node;
17824 spec_args = get_class_bindings (tmpl, parms,
17825 partial_spec_args,
17826 args);
17827 if (spec_args)
17829 if (outer_args)
17830 spec_args = add_to_template_args (outer_args, spec_args);
17831 list = tree_cons (spec_args, TREE_VALUE (t), list);
17832 TREE_TYPE (list) = TREE_TYPE (t);
17836 if (! list)
17837 return NULL_TREE;
17839 ambiguous_p = false;
17840 t = list;
17841 champ = t;
17842 t = TREE_CHAIN (t);
17843 for (; t; t = TREE_CHAIN (t))
17845 fate = more_specialized_class (tmpl, champ, t);
17846 if (fate == 1)
17848 else
17850 if (fate == 0)
17852 t = TREE_CHAIN (t);
17853 if (! t)
17855 ambiguous_p = true;
17856 break;
17859 champ = t;
17863 if (!ambiguous_p)
17864 for (t = list; t && t != champ; t = TREE_CHAIN (t))
17866 fate = more_specialized_class (tmpl, champ, t);
17867 if (fate != 1)
17869 ambiguous_p = true;
17870 break;
17874 if (ambiguous_p)
17876 const char *str;
17877 char *spaces = NULL;
17878 if (!(complain & tf_error))
17879 return error_mark_node;
17880 error ("ambiguous class template instantiation for %q#T", type);
17881 str = ngettext ("candidate is:", "candidates are:", list_length (list));
17882 for (t = list; t; t = TREE_CHAIN (t))
17884 error ("%s %+#T", spaces ? spaces : str, TREE_TYPE (t));
17885 spaces = spaces ? spaces : get_spaces (str);
17887 free (spaces);
17888 return error_mark_node;
17891 return champ;
17894 /* Explicitly instantiate DECL. */
17896 void
17897 do_decl_instantiation (tree decl, tree storage)
17899 tree result = NULL_TREE;
17900 int extern_p = 0;
17902 if (!decl || decl == error_mark_node)
17903 /* An error occurred, for which grokdeclarator has already issued
17904 an appropriate message. */
17905 return;
17906 else if (! DECL_LANG_SPECIFIC (decl))
17908 error ("explicit instantiation of non-template %q#D", decl);
17909 return;
17911 else if (TREE_CODE (decl) == VAR_DECL)
17913 /* There is an asymmetry here in the way VAR_DECLs and
17914 FUNCTION_DECLs are handled by grokdeclarator. In the case of
17915 the latter, the DECL we get back will be marked as a
17916 template instantiation, and the appropriate
17917 DECL_TEMPLATE_INFO will be set up. This does not happen for
17918 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
17919 should handle VAR_DECLs as it currently handles
17920 FUNCTION_DECLs. */
17921 if (!DECL_CLASS_SCOPE_P (decl))
17923 error ("%qD is not a static data member of a class template", decl);
17924 return;
17926 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
17927 if (!result || TREE_CODE (result) != VAR_DECL)
17929 error ("no matching template for %qD found", decl);
17930 return;
17932 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
17934 error ("type %qT for explicit instantiation %qD does not match "
17935 "declared type %qT", TREE_TYPE (result), decl,
17936 TREE_TYPE (decl));
17937 return;
17940 else if (TREE_CODE (decl) != FUNCTION_DECL)
17942 error ("explicit instantiation of %q#D", decl);
17943 return;
17945 else
17946 result = decl;
17948 /* Check for various error cases. Note that if the explicit
17949 instantiation is valid the RESULT will currently be marked as an
17950 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
17951 until we get here. */
17953 if (DECL_TEMPLATE_SPECIALIZATION (result))
17955 /* DR 259 [temp.spec].
17957 Both an explicit instantiation and a declaration of an explicit
17958 specialization shall not appear in a program unless the explicit
17959 instantiation follows a declaration of the explicit specialization.
17961 For a given set of template parameters, if an explicit
17962 instantiation of a template appears after a declaration of an
17963 explicit specialization for that template, the explicit
17964 instantiation has no effect. */
17965 return;
17967 else if (DECL_EXPLICIT_INSTANTIATION (result))
17969 /* [temp.spec]
17971 No program shall explicitly instantiate any template more
17972 than once.
17974 We check DECL_NOT_REALLY_EXTERN so as not to complain when
17975 the first instantiation was `extern' and the second is not,
17976 and EXTERN_P for the opposite case. */
17977 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
17978 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
17979 /* If an "extern" explicit instantiation follows an ordinary
17980 explicit instantiation, the template is instantiated. */
17981 if (extern_p)
17982 return;
17984 else if (!DECL_IMPLICIT_INSTANTIATION (result))
17986 error ("no matching template for %qD found", result);
17987 return;
17989 else if (!DECL_TEMPLATE_INFO (result))
17991 permerror (input_location, "explicit instantiation of non-template %q#D", result);
17992 return;
17995 if (storage == NULL_TREE)
17997 else if (storage == ridpointers[(int) RID_EXTERN])
17999 if (!in_system_header && (cxx_dialect == cxx98))
18000 pedwarn (input_location, OPT_Wpedantic,
18001 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
18002 "instantiations");
18003 extern_p = 1;
18005 else
18006 error ("storage class %qD applied to template instantiation", storage);
18008 check_explicit_instantiation_namespace (result);
18009 mark_decl_instantiated (result, extern_p);
18010 if (! extern_p)
18011 instantiate_decl (result, /*defer_ok=*/1,
18012 /*expl_inst_class_mem_p=*/false);
18015 static void
18016 mark_class_instantiated (tree t, int extern_p)
18018 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
18019 SET_CLASSTYPE_INTERFACE_KNOWN (t);
18020 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
18021 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
18022 if (! extern_p)
18024 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
18025 rest_of_type_compilation (t, 1);
18029 /* Called from do_type_instantiation through binding_table_foreach to
18030 do recursive instantiation for the type bound in ENTRY. */
18031 static void
18032 bt_instantiate_type_proc (binding_entry entry, void *data)
18034 tree storage = *(tree *) data;
18036 if (MAYBE_CLASS_TYPE_P (entry->type)
18037 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
18038 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
18041 /* Called from do_type_instantiation to instantiate a member
18042 (a member function or a static member variable) of an
18043 explicitly instantiated class template. */
18044 static void
18045 instantiate_class_member (tree decl, int extern_p)
18047 mark_decl_instantiated (decl, extern_p);
18048 if (! extern_p)
18049 instantiate_decl (decl, /*defer_ok=*/1,
18050 /*expl_inst_class_mem_p=*/true);
18053 /* Perform an explicit instantiation of template class T. STORAGE, if
18054 non-null, is the RID for extern, inline or static. COMPLAIN is
18055 nonzero if this is called from the parser, zero if called recursively,
18056 since the standard is unclear (as detailed below). */
18058 void
18059 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
18061 int extern_p = 0;
18062 int nomem_p = 0;
18063 int static_p = 0;
18064 int previous_instantiation_extern_p = 0;
18066 if (TREE_CODE (t) == TYPE_DECL)
18067 t = TREE_TYPE (t);
18069 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
18071 tree tmpl =
18072 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
18073 if (tmpl)
18074 error ("explicit instantiation of non-class template %qD", tmpl);
18075 else
18076 error ("explicit instantiation of non-template type %qT", t);
18077 return;
18080 complete_type (t);
18082 if (!COMPLETE_TYPE_P (t))
18084 if (complain & tf_error)
18085 error ("explicit instantiation of %q#T before definition of template",
18087 return;
18090 if (storage != NULL_TREE)
18092 if (!in_system_header)
18094 if (storage == ridpointers[(int) RID_EXTERN])
18096 if (cxx_dialect == cxx98)
18097 pedwarn (input_location, OPT_Wpedantic,
18098 "ISO C++ 1998 forbids the use of %<extern%> on "
18099 "explicit instantiations");
18101 else
18102 pedwarn (input_location, OPT_Wpedantic,
18103 "ISO C++ forbids the use of %qE"
18104 " on explicit instantiations", storage);
18107 if (storage == ridpointers[(int) RID_INLINE])
18108 nomem_p = 1;
18109 else if (storage == ridpointers[(int) RID_EXTERN])
18110 extern_p = 1;
18111 else if (storage == ridpointers[(int) RID_STATIC])
18112 static_p = 1;
18113 else
18115 error ("storage class %qD applied to template instantiation",
18116 storage);
18117 extern_p = 0;
18121 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
18123 /* DR 259 [temp.spec].
18125 Both an explicit instantiation and a declaration of an explicit
18126 specialization shall not appear in a program unless the explicit
18127 instantiation follows a declaration of the explicit specialization.
18129 For a given set of template parameters, if an explicit
18130 instantiation of a template appears after a declaration of an
18131 explicit specialization for that template, the explicit
18132 instantiation has no effect. */
18133 return;
18135 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
18137 /* [temp.spec]
18139 No program shall explicitly instantiate any template more
18140 than once.
18142 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
18143 instantiation was `extern'. If EXTERN_P then the second is.
18144 These cases are OK. */
18145 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
18147 if (!previous_instantiation_extern_p && !extern_p
18148 && (complain & tf_error))
18149 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
18151 /* If we've already instantiated the template, just return now. */
18152 if (!CLASSTYPE_INTERFACE_ONLY (t))
18153 return;
18156 check_explicit_instantiation_namespace (TYPE_NAME (t));
18157 mark_class_instantiated (t, extern_p);
18159 if (nomem_p)
18160 return;
18163 tree tmp;
18165 /* In contrast to implicit instantiation, where only the
18166 declarations, and not the definitions, of members are
18167 instantiated, we have here:
18169 [temp.explicit]
18171 The explicit instantiation of a class template specialization
18172 implies the instantiation of all of its members not
18173 previously explicitly specialized in the translation unit
18174 containing the explicit instantiation.
18176 Of course, we can't instantiate member template classes, since
18177 we don't have any arguments for them. Note that the standard
18178 is unclear on whether the instantiation of the members are
18179 *explicit* instantiations or not. However, the most natural
18180 interpretation is that it should be an explicit instantiation. */
18182 if (! static_p)
18183 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
18184 if (TREE_CODE (tmp) == FUNCTION_DECL
18185 && DECL_TEMPLATE_INSTANTIATION (tmp))
18186 instantiate_class_member (tmp, extern_p);
18188 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
18189 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
18190 instantiate_class_member (tmp, extern_p);
18192 if (CLASSTYPE_NESTED_UTDS (t))
18193 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
18194 bt_instantiate_type_proc, &storage);
18198 /* Given a function DECL, which is a specialization of TMPL, modify
18199 DECL to be a re-instantiation of TMPL with the same template
18200 arguments. TMPL should be the template into which tsubst'ing
18201 should occur for DECL, not the most general template.
18203 One reason for doing this is a scenario like this:
18205 template <class T>
18206 void f(const T&, int i);
18208 void g() { f(3, 7); }
18210 template <class T>
18211 void f(const T& t, const int i) { }
18213 Note that when the template is first instantiated, with
18214 instantiate_template, the resulting DECL will have no name for the
18215 first parameter, and the wrong type for the second. So, when we go
18216 to instantiate the DECL, we regenerate it. */
18218 static void
18219 regenerate_decl_from_template (tree decl, tree tmpl)
18221 /* The arguments used to instantiate DECL, from the most general
18222 template. */
18223 tree args;
18224 tree code_pattern;
18226 args = DECL_TI_ARGS (decl);
18227 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
18229 /* Make sure that we can see identifiers, and compute access
18230 correctly. */
18231 push_access_scope (decl);
18233 if (TREE_CODE (decl) == FUNCTION_DECL)
18235 tree decl_parm;
18236 tree pattern_parm;
18237 tree specs;
18238 int args_depth;
18239 int parms_depth;
18241 args_depth = TMPL_ARGS_DEPTH (args);
18242 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
18243 if (args_depth > parms_depth)
18244 args = get_innermost_template_args (args, parms_depth);
18246 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
18247 args, tf_error, NULL_TREE,
18248 /*defer_ok*/false);
18249 if (specs && specs != error_mark_node)
18250 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
18251 specs);
18253 /* Merge parameter declarations. */
18254 decl_parm = skip_artificial_parms_for (decl,
18255 DECL_ARGUMENTS (decl));
18256 pattern_parm
18257 = skip_artificial_parms_for (code_pattern,
18258 DECL_ARGUMENTS (code_pattern));
18259 while (decl_parm && !FUNCTION_PARAMETER_PACK_P (pattern_parm))
18261 tree parm_type;
18262 tree attributes;
18264 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18265 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
18266 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
18267 NULL_TREE);
18268 parm_type = type_decays_to (parm_type);
18269 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18270 TREE_TYPE (decl_parm) = parm_type;
18271 attributes = DECL_ATTRIBUTES (pattern_parm);
18272 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18274 DECL_ATTRIBUTES (decl_parm) = attributes;
18275 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18277 decl_parm = DECL_CHAIN (decl_parm);
18278 pattern_parm = DECL_CHAIN (pattern_parm);
18280 /* Merge any parameters that match with the function parameter
18281 pack. */
18282 if (pattern_parm && FUNCTION_PARAMETER_PACK_P (pattern_parm))
18284 int i, len;
18285 tree expanded_types;
18286 /* Expand the TYPE_PACK_EXPANSION that provides the types for
18287 the parameters in this function parameter pack. */
18288 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
18289 args, tf_error, NULL_TREE);
18290 len = TREE_VEC_LENGTH (expanded_types);
18291 for (i = 0; i < len; i++)
18293 tree parm_type;
18294 tree attributes;
18296 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18297 /* Rename the parameter to include the index. */
18298 DECL_NAME (decl_parm) =
18299 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
18300 parm_type = TREE_VEC_ELT (expanded_types, i);
18301 parm_type = type_decays_to (parm_type);
18302 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18303 TREE_TYPE (decl_parm) = parm_type;
18304 attributes = DECL_ATTRIBUTES (pattern_parm);
18305 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18307 DECL_ATTRIBUTES (decl_parm) = attributes;
18308 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18310 decl_parm = DECL_CHAIN (decl_parm);
18313 /* Merge additional specifiers from the CODE_PATTERN. */
18314 if (DECL_DECLARED_INLINE_P (code_pattern)
18315 && !DECL_DECLARED_INLINE_P (decl))
18316 DECL_DECLARED_INLINE_P (decl) = 1;
18318 else if (TREE_CODE (decl) == VAR_DECL)
18320 DECL_INITIAL (decl) =
18321 tsubst_expr (DECL_INITIAL (code_pattern), args,
18322 tf_error, DECL_TI_TEMPLATE (decl),
18323 /*integral_constant_expression_p=*/false);
18324 if (VAR_HAD_UNKNOWN_BOUND (decl))
18325 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
18326 tf_error, DECL_TI_TEMPLATE (decl));
18328 else
18329 gcc_unreachable ();
18331 pop_access_scope (decl);
18334 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
18335 substituted to get DECL. */
18337 tree
18338 template_for_substitution (tree decl)
18340 tree tmpl = DECL_TI_TEMPLATE (decl);
18342 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
18343 for the instantiation. This is not always the most general
18344 template. Consider, for example:
18346 template <class T>
18347 struct S { template <class U> void f();
18348 template <> void f<int>(); };
18350 and an instantiation of S<double>::f<int>. We want TD to be the
18351 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
18352 while (/* An instantiation cannot have a definition, so we need a
18353 more general template. */
18354 DECL_TEMPLATE_INSTANTIATION (tmpl)
18355 /* We must also deal with friend templates. Given:
18357 template <class T> struct S {
18358 template <class U> friend void f() {};
18361 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
18362 so far as the language is concerned, but that's still
18363 where we get the pattern for the instantiation from. On
18364 other hand, if the definition comes outside the class, say:
18366 template <class T> struct S {
18367 template <class U> friend void f();
18369 template <class U> friend void f() {}
18371 we don't need to look any further. That's what the check for
18372 DECL_INITIAL is for. */
18373 || (TREE_CODE (decl) == FUNCTION_DECL
18374 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
18375 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
18377 /* The present template, TD, should not be a definition. If it
18378 were a definition, we should be using it! Note that we
18379 cannot restructure the loop to just keep going until we find
18380 a template with a definition, since that might go too far if
18381 a specialization was declared, but not defined. */
18382 gcc_assert (TREE_CODE (decl) != VAR_DECL
18383 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
18385 /* Fetch the more general template. */
18386 tmpl = DECL_TI_TEMPLATE (tmpl);
18389 return tmpl;
18392 /* Returns true if we need to instantiate this template instance even if we
18393 know we aren't going to emit it.. */
18395 bool
18396 always_instantiate_p (tree decl)
18398 /* We always instantiate inline functions so that we can inline them. An
18399 explicit instantiation declaration prohibits implicit instantiation of
18400 non-inline functions. With high levels of optimization, we would
18401 normally inline non-inline functions -- but we're not allowed to do
18402 that for "extern template" functions. Therefore, we check
18403 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
18404 return ((TREE_CODE (decl) == FUNCTION_DECL
18405 && (DECL_DECLARED_INLINE_P (decl)
18406 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
18407 /* And we need to instantiate static data members so that
18408 their initializers are available in integral constant
18409 expressions. */
18410 || (TREE_CODE (decl) == VAR_DECL
18411 && decl_maybe_constant_var_p (decl)));
18414 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
18415 instantiate it now, modifying TREE_TYPE (fn). */
18417 void
18418 maybe_instantiate_noexcept (tree fn)
18420 tree fntype, spec, noex, clone;
18422 if (DECL_CLONED_FUNCTION_P (fn))
18423 fn = DECL_CLONED_FUNCTION (fn);
18424 fntype = TREE_TYPE (fn);
18425 spec = TYPE_RAISES_EXCEPTIONS (fntype);
18427 if (!DEFERRED_NOEXCEPT_SPEC_P (spec))
18428 return;
18430 noex = TREE_PURPOSE (spec);
18432 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
18434 if (push_tinst_level (fn))
18436 push_access_scope (fn);
18437 push_deferring_access_checks (dk_no_deferred);
18438 input_location = DECL_SOURCE_LOCATION (fn);
18439 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
18440 DEFERRED_NOEXCEPT_ARGS (noex),
18441 tf_warning_or_error, fn,
18442 /*function_p=*/false,
18443 /*integral_constant_expression_p=*/true);
18444 pop_deferring_access_checks ();
18445 pop_access_scope (fn);
18446 pop_tinst_level ();
18447 spec = build_noexcept_spec (noex, tf_warning_or_error);
18448 if (spec == error_mark_node)
18449 spec = noexcept_false_spec;
18451 else
18452 spec = noexcept_false_spec;
18454 else
18456 /* This is an implicitly declared function, so NOEX is a list of
18457 other functions to evaluate and merge. */
18458 tree elt;
18459 spec = noexcept_true_spec;
18460 for (elt = noex; elt; elt = OVL_NEXT (elt))
18462 tree fn = OVL_CURRENT (elt);
18463 tree subspec;
18464 maybe_instantiate_noexcept (fn);
18465 subspec = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
18466 spec = merge_exception_specifiers (spec, subspec, NULL_TREE);
18470 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
18472 FOR_EACH_CLONE (clone, fn)
18474 if (TREE_TYPE (clone) == fntype)
18475 TREE_TYPE (clone) = TREE_TYPE (fn);
18476 else
18477 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
18481 /* Produce the definition of D, a _DECL generated from a template. If
18482 DEFER_OK is nonzero, then we don't have to actually do the
18483 instantiation now; we just have to do it sometime. Normally it is
18484 an error if this is an explicit instantiation but D is undefined.
18485 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
18486 explicitly instantiated class template. */
18488 tree
18489 instantiate_decl (tree d, int defer_ok,
18490 bool expl_inst_class_mem_p)
18492 tree tmpl = DECL_TI_TEMPLATE (d);
18493 tree gen_args;
18494 tree args;
18495 tree td;
18496 tree code_pattern;
18497 tree spec;
18498 tree gen_tmpl;
18499 bool pattern_defined;
18500 location_t saved_loc = input_location;
18501 bool external_p;
18502 tree fn_context;
18503 bool nested;
18505 /* This function should only be used to instantiate templates for
18506 functions and static member variables. */
18507 gcc_assert (TREE_CODE (d) == FUNCTION_DECL
18508 || TREE_CODE (d) == VAR_DECL);
18510 /* Variables are never deferred; if instantiation is required, they
18511 are instantiated right away. That allows for better code in the
18512 case that an expression refers to the value of the variable --
18513 if the variable has a constant value the referring expression can
18514 take advantage of that fact. */
18515 if (TREE_CODE (d) == VAR_DECL
18516 || DECL_DECLARED_CONSTEXPR_P (d))
18517 defer_ok = 0;
18519 /* Don't instantiate cloned functions. Instead, instantiate the
18520 functions they cloned. */
18521 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
18522 d = DECL_CLONED_FUNCTION (d);
18524 if (DECL_TEMPLATE_INSTANTIATED (d)
18525 || (TREE_CODE (d) == FUNCTION_DECL
18526 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
18527 || DECL_TEMPLATE_SPECIALIZATION (d))
18528 /* D has already been instantiated or explicitly specialized, so
18529 there's nothing for us to do here.
18531 It might seem reasonable to check whether or not D is an explicit
18532 instantiation, and, if so, stop here. But when an explicit
18533 instantiation is deferred until the end of the compilation,
18534 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
18535 the instantiation. */
18536 return d;
18538 /* Check to see whether we know that this template will be
18539 instantiated in some other file, as with "extern template"
18540 extension. */
18541 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
18543 /* In general, we do not instantiate such templates. */
18544 if (external_p && !always_instantiate_p (d))
18545 return d;
18547 gen_tmpl = most_general_template (tmpl);
18548 gen_args = DECL_TI_ARGS (d);
18550 if (tmpl != gen_tmpl)
18551 /* We should already have the extra args. */
18552 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
18553 == TMPL_ARGS_DEPTH (gen_args));
18554 /* And what's in the hash table should match D. */
18555 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
18556 || spec == NULL_TREE);
18558 /* This needs to happen before any tsubsting. */
18559 if (! push_tinst_level (d))
18560 return d;
18562 timevar_push (TV_TEMPLATE_INST);
18564 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
18565 for the instantiation. */
18566 td = template_for_substitution (d);
18567 code_pattern = DECL_TEMPLATE_RESULT (td);
18569 /* We should never be trying to instantiate a member of a class
18570 template or partial specialization. */
18571 gcc_assert (d != code_pattern);
18573 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
18574 || DECL_TEMPLATE_SPECIALIZATION (td))
18575 /* In the case of a friend template whose definition is provided
18576 outside the class, we may have too many arguments. Drop the
18577 ones we don't need. The same is true for specializations. */
18578 args = get_innermost_template_args
18579 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
18580 else
18581 args = gen_args;
18583 if (TREE_CODE (d) == FUNCTION_DECL)
18584 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
18585 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern));
18586 else
18587 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
18589 /* We may be in the middle of deferred access check. Disable it now. */
18590 push_deferring_access_checks (dk_no_deferred);
18592 /* Unless an explicit instantiation directive has already determined
18593 the linkage of D, remember that a definition is available for
18594 this entity. */
18595 if (pattern_defined
18596 && !DECL_INTERFACE_KNOWN (d)
18597 && !DECL_NOT_REALLY_EXTERN (d))
18598 mark_definable (d);
18600 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
18601 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
18602 input_location = DECL_SOURCE_LOCATION (d);
18604 /* If D is a member of an explicitly instantiated class template,
18605 and no definition is available, treat it like an implicit
18606 instantiation. */
18607 if (!pattern_defined && expl_inst_class_mem_p
18608 && DECL_EXPLICIT_INSTANTIATION (d))
18610 /* Leave linkage flags alone on instantiations with anonymous
18611 visibility. */
18612 if (TREE_PUBLIC (d))
18614 DECL_NOT_REALLY_EXTERN (d) = 0;
18615 DECL_INTERFACE_KNOWN (d) = 0;
18617 SET_DECL_IMPLICIT_INSTANTIATION (d);
18620 if (TREE_CODE (d) == FUNCTION_DECL)
18621 maybe_instantiate_noexcept (d);
18623 /* Defer all other templates, unless we have been explicitly
18624 forbidden from doing so. */
18625 if (/* If there is no definition, we cannot instantiate the
18626 template. */
18627 ! pattern_defined
18628 /* If it's OK to postpone instantiation, do so. */
18629 || defer_ok
18630 /* If this is a static data member that will be defined
18631 elsewhere, we don't want to instantiate the entire data
18632 member, but we do want to instantiate the initializer so that
18633 we can substitute that elsewhere. */
18634 || (external_p && TREE_CODE (d) == VAR_DECL))
18636 /* The definition of the static data member is now required so
18637 we must substitute the initializer. */
18638 if (TREE_CODE (d) == VAR_DECL
18639 && !DECL_INITIAL (d)
18640 && DECL_INITIAL (code_pattern))
18642 tree ns;
18643 tree init;
18644 bool const_init = false;
18646 ns = decl_namespace_context (d);
18647 push_nested_namespace (ns);
18648 push_nested_class (DECL_CONTEXT (d));
18649 init = tsubst_expr (DECL_INITIAL (code_pattern),
18650 args,
18651 tf_warning_or_error, NULL_TREE,
18652 /*integral_constant_expression_p=*/false);
18653 /* Make sure the initializer is still constant, in case of
18654 circular dependency (template/instantiate6.C). */
18655 const_init
18656 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18657 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
18658 /*asmspec_tree=*/NULL_TREE,
18659 LOOKUP_ONLYCONVERTING);
18660 pop_nested_class ();
18661 pop_nested_namespace (ns);
18664 /* We restore the source position here because it's used by
18665 add_pending_template. */
18666 input_location = saved_loc;
18668 if (at_eof && !pattern_defined
18669 && DECL_EXPLICIT_INSTANTIATION (d)
18670 && DECL_NOT_REALLY_EXTERN (d))
18671 /* [temp.explicit]
18673 The definition of a non-exported function template, a
18674 non-exported member function template, or a non-exported
18675 member function or static data member of a class template
18676 shall be present in every translation unit in which it is
18677 explicitly instantiated. */
18678 permerror (input_location, "explicit instantiation of %qD "
18679 "but no definition available", d);
18681 /* If we're in unevaluated context, we just wanted to get the
18682 constant value; this isn't an odr use, so don't queue
18683 a full instantiation. */
18684 if (cp_unevaluated_operand != 0)
18685 goto out;
18686 /* ??? Historically, we have instantiated inline functions, even
18687 when marked as "extern template". */
18688 if (!(external_p && TREE_CODE (d) == VAR_DECL))
18689 add_pending_template (d);
18690 goto out;
18692 /* Tell the repository that D is available in this translation unit
18693 -- and see if it is supposed to be instantiated here. */
18694 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
18696 /* In a PCH file, despite the fact that the repository hasn't
18697 requested instantiation in the PCH it is still possible that
18698 an instantiation will be required in a file that includes the
18699 PCH. */
18700 if (pch_file)
18701 add_pending_template (d);
18702 /* Instantiate inline functions so that the inliner can do its
18703 job, even though we'll not be emitting a copy of this
18704 function. */
18705 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
18706 goto out;
18709 fn_context = decl_function_context (d);
18710 nested = (current_function_decl != NULL_TREE);
18711 if (!fn_context)
18712 push_to_top_level ();
18713 else if (nested)
18714 push_function_context ();
18716 /* Mark D as instantiated so that recursive calls to
18717 instantiate_decl do not try to instantiate it again. */
18718 DECL_TEMPLATE_INSTANTIATED (d) = 1;
18720 /* Regenerate the declaration in case the template has been modified
18721 by a subsequent redeclaration. */
18722 regenerate_decl_from_template (d, td);
18724 /* We already set the file and line above. Reset them now in case
18725 they changed as a result of calling regenerate_decl_from_template. */
18726 input_location = DECL_SOURCE_LOCATION (d);
18728 if (TREE_CODE (d) == VAR_DECL)
18730 tree init;
18731 bool const_init = false;
18733 /* Clear out DECL_RTL; whatever was there before may not be right
18734 since we've reset the type of the declaration. */
18735 SET_DECL_RTL (d, NULL);
18736 DECL_IN_AGGR_P (d) = 0;
18738 /* The initializer is placed in DECL_INITIAL by
18739 regenerate_decl_from_template so we don't need to
18740 push/pop_access_scope again here. Pull it out so that
18741 cp_finish_decl can process it. */
18742 init = DECL_INITIAL (d);
18743 DECL_INITIAL (d) = NULL_TREE;
18744 DECL_INITIALIZED_P (d) = 0;
18746 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
18747 initializer. That function will defer actual emission until
18748 we have a chance to determine linkage. */
18749 DECL_EXTERNAL (d) = 0;
18751 /* Enter the scope of D so that access-checking works correctly. */
18752 push_nested_class (DECL_CONTEXT (d));
18753 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18754 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
18755 pop_nested_class ();
18757 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
18758 synthesize_method (d);
18759 else if (TREE_CODE (d) == FUNCTION_DECL)
18761 struct pointer_map_t *saved_local_specializations;
18762 tree subst_decl;
18763 tree tmpl_parm;
18764 tree spec_parm;
18766 /* Save away the current list, in case we are instantiating one
18767 template from within the body of another. */
18768 saved_local_specializations = local_specializations;
18770 /* Set up the list of local specializations. */
18771 local_specializations = pointer_map_create ();
18773 /* Set up context. */
18774 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
18776 /* Some typedefs referenced from within the template code need to be
18777 access checked at template instantiation time, i.e now. These
18778 types were added to the template at parsing time. Let's get those
18779 and perform the access checks then. */
18780 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
18781 gen_args);
18783 /* Create substitution entries for the parameters. */
18784 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
18785 tmpl_parm = DECL_ARGUMENTS (subst_decl);
18786 spec_parm = DECL_ARGUMENTS (d);
18787 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
18789 register_local_specialization (spec_parm, tmpl_parm);
18790 spec_parm = skip_artificial_parms_for (d, spec_parm);
18791 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
18793 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
18795 if (!FUNCTION_PARAMETER_PACK_P (tmpl_parm))
18797 register_local_specialization (spec_parm, tmpl_parm);
18798 spec_parm = DECL_CHAIN (spec_parm);
18800 else
18802 /* Register the (value) argument pack as a specialization of
18803 TMPL_PARM, then move on. */
18804 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
18805 register_local_specialization (argpack, tmpl_parm);
18808 gcc_assert (!spec_parm);
18810 /* Substitute into the body of the function. */
18811 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
18812 tf_warning_or_error, tmpl,
18813 /*integral_constant_expression_p=*/false);
18815 /* Set the current input_location to the end of the function
18816 so that finish_function knows where we are. */
18817 input_location = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
18819 /* We don't need the local specializations any more. */
18820 pointer_map_destroy (local_specializations);
18821 local_specializations = saved_local_specializations;
18823 /* Finish the function. */
18824 d = finish_function (0);
18825 expand_or_defer_fn (d);
18828 /* We're not deferring instantiation any more. */
18829 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
18831 if (!fn_context)
18832 pop_from_top_level ();
18833 else if (nested)
18834 pop_function_context ();
18836 out:
18837 input_location = saved_loc;
18838 pop_deferring_access_checks ();
18839 pop_tinst_level ();
18841 timevar_pop (TV_TEMPLATE_INST);
18843 return d;
18846 /* Run through the list of templates that we wish we could
18847 instantiate, and instantiate any we can. RETRIES is the
18848 number of times we retry pending template instantiation. */
18850 void
18851 instantiate_pending_templates (int retries)
18853 int reconsider;
18854 location_t saved_loc = input_location;
18856 /* Instantiating templates may trigger vtable generation. This in turn
18857 may require further template instantiations. We place a limit here
18858 to avoid infinite loop. */
18859 if (pending_templates && retries >= max_tinst_depth)
18861 tree decl = pending_templates->tinst->decl;
18863 error ("template instantiation depth exceeds maximum of %d"
18864 " instantiating %q+D, possibly from virtual table generation"
18865 " (use -ftemplate-depth= to increase the maximum)",
18866 max_tinst_depth, decl);
18867 if (TREE_CODE (decl) == FUNCTION_DECL)
18868 /* Pretend that we defined it. */
18869 DECL_INITIAL (decl) = error_mark_node;
18870 return;
18875 struct pending_template **t = &pending_templates;
18876 struct pending_template *last = NULL;
18877 reconsider = 0;
18878 while (*t)
18880 tree instantiation = reopen_tinst_level ((*t)->tinst);
18881 bool complete = false;
18883 if (TYPE_P (instantiation))
18885 tree fn;
18887 if (!COMPLETE_TYPE_P (instantiation))
18889 instantiate_class_template (instantiation);
18890 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
18891 for (fn = TYPE_METHODS (instantiation);
18893 fn = TREE_CHAIN (fn))
18894 if (! DECL_ARTIFICIAL (fn))
18895 instantiate_decl (fn,
18896 /*defer_ok=*/0,
18897 /*expl_inst_class_mem_p=*/false);
18898 if (COMPLETE_TYPE_P (instantiation))
18899 reconsider = 1;
18902 complete = COMPLETE_TYPE_P (instantiation);
18904 else
18906 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
18907 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
18909 instantiation
18910 = instantiate_decl (instantiation,
18911 /*defer_ok=*/0,
18912 /*expl_inst_class_mem_p=*/false);
18913 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
18914 reconsider = 1;
18917 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
18918 || DECL_TEMPLATE_INSTANTIATED (instantiation));
18921 if (complete)
18922 /* If INSTANTIATION has been instantiated, then we don't
18923 need to consider it again in the future. */
18924 *t = (*t)->next;
18925 else
18927 last = *t;
18928 t = &(*t)->next;
18930 tinst_depth = 0;
18931 current_tinst_level = NULL;
18933 last_pending_template = last;
18935 while (reconsider);
18937 input_location = saved_loc;
18940 /* Substitute ARGVEC into T, which is a list of initializers for
18941 either base class or a non-static data member. The TREE_PURPOSEs
18942 are DECLs, and the TREE_VALUEs are the initializer values. Used by
18943 instantiate_decl. */
18945 static tree
18946 tsubst_initializer_list (tree t, tree argvec)
18948 tree inits = NULL_TREE;
18950 for (; t; t = TREE_CHAIN (t))
18952 tree decl;
18953 tree init;
18954 tree expanded_bases = NULL_TREE;
18955 tree expanded_arguments = NULL_TREE;
18956 int i, len = 1;
18958 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
18960 tree expr;
18961 tree arg;
18963 /* Expand the base class expansion type into separate base
18964 classes. */
18965 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
18966 tf_warning_or_error,
18967 NULL_TREE);
18968 if (expanded_bases == error_mark_node)
18969 continue;
18971 /* We'll be building separate TREE_LISTs of arguments for
18972 each base. */
18973 len = TREE_VEC_LENGTH (expanded_bases);
18974 expanded_arguments = make_tree_vec (len);
18975 for (i = 0; i < len; i++)
18976 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
18978 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
18979 expand each argument in the TREE_VALUE of t. */
18980 expr = make_node (EXPR_PACK_EXPANSION);
18981 PACK_EXPANSION_LOCAL_P (expr) = true;
18982 PACK_EXPANSION_PARAMETER_PACKS (expr) =
18983 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
18985 if (TREE_VALUE (t) == void_type_node)
18986 /* VOID_TYPE_NODE is used to indicate
18987 value-initialization. */
18989 for (i = 0; i < len; i++)
18990 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
18992 else
18994 /* Substitute parameter packs into each argument in the
18995 TREE_LIST. */
18996 in_base_initializer = 1;
18997 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
18999 tree expanded_exprs;
19001 /* Expand the argument. */
19002 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
19003 expanded_exprs
19004 = tsubst_pack_expansion (expr, argvec,
19005 tf_warning_or_error,
19006 NULL_TREE);
19007 if (expanded_exprs == error_mark_node)
19008 continue;
19010 /* Prepend each of the expanded expressions to the
19011 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
19012 for (i = 0; i < len; i++)
19014 TREE_VEC_ELT (expanded_arguments, i) =
19015 tree_cons (NULL_TREE,
19016 TREE_VEC_ELT (expanded_exprs, i),
19017 TREE_VEC_ELT (expanded_arguments, i));
19020 in_base_initializer = 0;
19022 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
19023 since we built them backwards. */
19024 for (i = 0; i < len; i++)
19026 TREE_VEC_ELT (expanded_arguments, i) =
19027 nreverse (TREE_VEC_ELT (expanded_arguments, i));
19032 for (i = 0; i < len; ++i)
19034 if (expanded_bases)
19036 decl = TREE_VEC_ELT (expanded_bases, i);
19037 decl = expand_member_init (decl);
19038 init = TREE_VEC_ELT (expanded_arguments, i);
19040 else
19042 tree tmp;
19043 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
19044 tf_warning_or_error, NULL_TREE);
19046 decl = expand_member_init (decl);
19047 if (decl && !DECL_P (decl))
19048 in_base_initializer = 1;
19050 init = TREE_VALUE (t);
19051 tmp = init;
19052 if (init != void_type_node)
19053 init = tsubst_expr (init, argvec,
19054 tf_warning_or_error, NULL_TREE,
19055 /*integral_constant_expression_p=*/false);
19056 if (init == NULL_TREE && tmp != NULL_TREE)
19057 /* If we had an initializer but it instantiated to nothing,
19058 value-initialize the object. This will only occur when
19059 the initializer was a pack expansion where the parameter
19060 packs used in that expansion were of length zero. */
19061 init = void_type_node;
19062 in_base_initializer = 0;
19065 if (decl)
19067 init = build_tree_list (decl, init);
19068 TREE_CHAIN (init) = inits;
19069 inits = init;
19073 return inits;
19076 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
19078 static void
19079 set_current_access_from_decl (tree decl)
19081 if (TREE_PRIVATE (decl))
19082 current_access_specifier = access_private_node;
19083 else if (TREE_PROTECTED (decl))
19084 current_access_specifier = access_protected_node;
19085 else
19086 current_access_specifier = access_public_node;
19089 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
19090 is the instantiation (which should have been created with
19091 start_enum) and ARGS are the template arguments to use. */
19093 static void
19094 tsubst_enum (tree tag, tree newtag, tree args)
19096 tree e;
19098 if (SCOPED_ENUM_P (newtag))
19099 begin_scope (sk_scoped_enum, newtag);
19101 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
19103 tree value;
19104 tree decl;
19106 decl = TREE_VALUE (e);
19107 /* Note that in a template enum, the TREE_VALUE is the
19108 CONST_DECL, not the corresponding INTEGER_CST. */
19109 value = tsubst_expr (DECL_INITIAL (decl),
19110 args, tf_warning_or_error, NULL_TREE,
19111 /*integral_constant_expression_p=*/true);
19113 /* Give this enumeration constant the correct access. */
19114 set_current_access_from_decl (decl);
19116 /* Actually build the enumerator itself. */
19117 build_enumerator
19118 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
19121 if (SCOPED_ENUM_P (newtag))
19122 finish_scope ();
19124 finish_enum_value_list (newtag);
19125 finish_enum (newtag);
19127 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
19128 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
19131 /* DECL is a FUNCTION_DECL that is a template specialization. Return
19132 its type -- but without substituting the innermost set of template
19133 arguments. So, innermost set of template parameters will appear in
19134 the type. */
19136 tree
19137 get_mostly_instantiated_function_type (tree decl)
19139 tree fn_type;
19140 tree tmpl;
19141 tree targs;
19142 tree tparms;
19143 int parm_depth;
19145 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
19146 targs = DECL_TI_ARGS (decl);
19147 tparms = DECL_TEMPLATE_PARMS (tmpl);
19148 parm_depth = TMPL_PARMS_DEPTH (tparms);
19150 /* There should be as many levels of arguments as there are levels
19151 of parameters. */
19152 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
19154 fn_type = TREE_TYPE (tmpl);
19156 if (parm_depth == 1)
19157 /* No substitution is necessary. */
19159 else
19161 int i;
19162 tree partial_args;
19164 /* Replace the innermost level of the TARGS with NULL_TREEs to
19165 let tsubst know not to substitute for those parameters. */
19166 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
19167 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
19168 SET_TMPL_ARGS_LEVEL (partial_args, i,
19169 TMPL_ARGS_LEVEL (targs, i));
19170 SET_TMPL_ARGS_LEVEL (partial_args,
19171 TMPL_ARGS_DEPTH (targs),
19172 make_tree_vec (DECL_NTPARMS (tmpl)));
19174 /* Make sure that we can see identifiers, and compute access
19175 correctly. */
19176 push_access_scope (decl);
19178 ++processing_template_decl;
19179 /* Now, do the (partial) substitution to figure out the
19180 appropriate function type. */
19181 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
19182 --processing_template_decl;
19184 /* Substitute into the template parameters to obtain the real
19185 innermost set of parameters. This step is important if the
19186 innermost set of template parameters contains value
19187 parameters whose types depend on outer template parameters. */
19188 TREE_VEC_LENGTH (partial_args)--;
19189 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
19191 pop_access_scope (decl);
19194 return fn_type;
19197 /* Return truthvalue if we're processing a template different from
19198 the last one involved in diagnostics. */
19200 problematic_instantiation_changed (void)
19202 return current_tinst_level != last_error_tinst_level;
19205 /* Remember current template involved in diagnostics. */
19206 void
19207 record_last_problematic_instantiation (void)
19209 last_error_tinst_level = current_tinst_level;
19212 struct tinst_level *
19213 current_instantiation (void)
19215 return current_tinst_level;
19218 /* [temp.param] Check that template non-type parm TYPE is of an allowable
19219 type. Return zero for ok, nonzero for disallowed. Issue error and
19220 warning messages under control of COMPLAIN. */
19222 static int
19223 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
19225 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
19226 return 0;
19227 else if (POINTER_TYPE_P (type))
19228 return 0;
19229 else if (TYPE_PTRMEM_P (type))
19230 return 0;
19231 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
19232 return 0;
19233 else if (TREE_CODE (type) == TYPENAME_TYPE)
19234 return 0;
19235 else if (TREE_CODE (type) == DECLTYPE_TYPE)
19236 return 0;
19237 else if (TREE_CODE (type) == NULLPTR_TYPE)
19238 return 0;
19240 if (complain & tf_error)
19242 if (type == error_mark_node)
19243 inform (input_location, "invalid template non-type parameter");
19244 else
19245 error ("%q#T is not a valid type for a template non-type parameter",
19246 type);
19248 return 1;
19251 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
19252 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
19254 static bool
19255 dependent_type_p_r (tree type)
19257 tree scope;
19259 /* [temp.dep.type]
19261 A type is dependent if it is:
19263 -- a template parameter. Template template parameters are types
19264 for us (since TYPE_P holds true for them) so we handle
19265 them here. */
19266 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
19267 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
19268 return true;
19269 /* -- a qualified-id with a nested-name-specifier which contains a
19270 class-name that names a dependent type or whose unqualified-id
19271 names a dependent type. */
19272 if (TREE_CODE (type) == TYPENAME_TYPE)
19273 return true;
19274 /* -- a cv-qualified type where the cv-unqualified type is
19275 dependent. */
19276 type = TYPE_MAIN_VARIANT (type);
19277 /* -- a compound type constructed from any dependent type. */
19278 if (TYPE_PTRMEM_P (type))
19279 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
19280 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
19281 (type)));
19282 else if (TREE_CODE (type) == POINTER_TYPE
19283 || TREE_CODE (type) == REFERENCE_TYPE)
19284 return dependent_type_p (TREE_TYPE (type));
19285 else if (TREE_CODE (type) == FUNCTION_TYPE
19286 || TREE_CODE (type) == METHOD_TYPE)
19288 tree arg_type;
19290 if (dependent_type_p (TREE_TYPE (type)))
19291 return true;
19292 for (arg_type = TYPE_ARG_TYPES (type);
19293 arg_type;
19294 arg_type = TREE_CHAIN (arg_type))
19295 if (dependent_type_p (TREE_VALUE (arg_type)))
19296 return true;
19297 return false;
19299 /* -- an array type constructed from any dependent type or whose
19300 size is specified by a constant expression that is
19301 value-dependent.
19303 We checked for type- and value-dependence of the bounds in
19304 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
19305 if (TREE_CODE (type) == ARRAY_TYPE)
19307 if (TYPE_DOMAIN (type)
19308 && dependent_type_p (TYPE_DOMAIN (type)))
19309 return true;
19310 return dependent_type_p (TREE_TYPE (type));
19313 /* -- a template-id in which either the template name is a template
19314 parameter ... */
19315 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
19316 return true;
19317 /* ... or any of the template arguments is a dependent type or
19318 an expression that is type-dependent or value-dependent. */
19319 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
19320 && (any_dependent_template_arguments_p
19321 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
19322 return true;
19324 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
19325 dependent; if the argument of the `typeof' expression is not
19326 type-dependent, then it should already been have resolved. */
19327 if (TREE_CODE (type) == TYPEOF_TYPE
19328 || TREE_CODE (type) == DECLTYPE_TYPE
19329 || TREE_CODE (type) == UNDERLYING_TYPE)
19330 return true;
19332 /* A template argument pack is dependent if any of its packed
19333 arguments are. */
19334 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
19336 tree args = ARGUMENT_PACK_ARGS (type);
19337 int i, len = TREE_VEC_LENGTH (args);
19338 for (i = 0; i < len; ++i)
19339 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
19340 return true;
19343 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
19344 be template parameters. */
19345 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
19346 return true;
19348 /* The standard does not specifically mention types that are local
19349 to template functions or local classes, but they should be
19350 considered dependent too. For example:
19352 template <int I> void f() {
19353 enum E { a = I };
19354 S<sizeof (E)> s;
19357 The size of `E' cannot be known until the value of `I' has been
19358 determined. Therefore, `E' must be considered dependent. */
19359 scope = TYPE_CONTEXT (type);
19360 if (scope && TYPE_P (scope))
19361 return dependent_type_p (scope);
19362 /* Don't use type_dependent_expression_p here, as it can lead
19363 to infinite recursion trying to determine whether a lambda
19364 nested in a lambda is dependent (c++/47687). */
19365 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
19366 && DECL_LANG_SPECIFIC (scope)
19367 && DECL_TEMPLATE_INFO (scope)
19368 && (any_dependent_template_arguments_p
19369 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
19370 return true;
19372 /* Other types are non-dependent. */
19373 return false;
19376 /* Returns TRUE if TYPE is dependent, in the sense of
19377 [temp.dep.type]. Note that a NULL type is considered dependent. */
19379 bool
19380 dependent_type_p (tree type)
19382 /* If there are no template parameters in scope, then there can't be
19383 any dependent types. */
19384 if (!processing_template_decl)
19386 /* If we are not processing a template, then nobody should be
19387 providing us with a dependent type. */
19388 gcc_assert (type);
19389 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
19390 return false;
19393 /* If the type is NULL, we have not computed a type for the entity
19394 in question; in that case, the type is dependent. */
19395 if (!type)
19396 return true;
19398 /* Erroneous types can be considered non-dependent. */
19399 if (type == error_mark_node)
19400 return false;
19402 /* If we have not already computed the appropriate value for TYPE,
19403 do so now. */
19404 if (!TYPE_DEPENDENT_P_VALID (type))
19406 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
19407 TYPE_DEPENDENT_P_VALID (type) = 1;
19410 return TYPE_DEPENDENT_P (type);
19413 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
19414 lookup. In other words, a dependent type that is not the current
19415 instantiation. */
19417 bool
19418 dependent_scope_p (tree scope)
19420 return (scope && TYPE_P (scope) && dependent_type_p (scope)
19421 && !currently_open_class (scope));
19424 /* T is a SCOPE_REF; return whether we need to consider it
19425 instantiation-dependent so that we can check access at instantiation
19426 time even though we know which member it resolves to. */
19428 static bool
19429 instantiation_dependent_scope_ref_p (tree t)
19431 if (DECL_P (TREE_OPERAND (t, 1))
19432 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
19433 && accessible_in_template_p (TREE_OPERAND (t, 0),
19434 TREE_OPERAND (t, 1)))
19435 return false;
19436 else
19437 return true;
19440 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
19441 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
19442 expression. */
19444 /* Note that this predicate is not appropriate for general expressions;
19445 only constant expressions (that satisfy potential_constant_expression)
19446 can be tested for value dependence. */
19448 bool
19449 value_dependent_expression_p (tree expression)
19451 if (!processing_template_decl)
19452 return false;
19454 /* A name declared with a dependent type. */
19455 if (DECL_P (expression) && type_dependent_expression_p (expression))
19456 return true;
19458 switch (TREE_CODE (expression))
19460 case IDENTIFIER_NODE:
19461 /* A name that has not been looked up -- must be dependent. */
19462 return true;
19464 case TEMPLATE_PARM_INDEX:
19465 /* A non-type template parm. */
19466 return true;
19468 case CONST_DECL:
19469 /* A non-type template parm. */
19470 if (DECL_TEMPLATE_PARM_P (expression))
19471 return true;
19472 return value_dependent_expression_p (DECL_INITIAL (expression));
19474 case VAR_DECL:
19475 /* A constant with literal type and is initialized
19476 with an expression that is value-dependent.
19478 Note that a non-dependent parenthesized initializer will have
19479 already been replaced with its constant value, so if we see
19480 a TREE_LIST it must be dependent. */
19481 if (DECL_INITIAL (expression)
19482 && decl_constant_var_p (expression)
19483 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
19484 || value_dependent_expression_p (DECL_INITIAL (expression))))
19485 return true;
19486 return false;
19488 case DYNAMIC_CAST_EXPR:
19489 case STATIC_CAST_EXPR:
19490 case CONST_CAST_EXPR:
19491 case REINTERPRET_CAST_EXPR:
19492 case CAST_EXPR:
19493 /* These expressions are value-dependent if the type to which
19494 the cast occurs is dependent or the expression being casted
19495 is value-dependent. */
19497 tree type = TREE_TYPE (expression);
19499 if (dependent_type_p (type))
19500 return true;
19502 /* A functional cast has a list of operands. */
19503 expression = TREE_OPERAND (expression, 0);
19504 if (!expression)
19506 /* If there are no operands, it must be an expression such
19507 as "int()". This should not happen for aggregate types
19508 because it would form non-constant expressions. */
19509 gcc_assert (cxx_dialect >= cxx0x
19510 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
19512 return false;
19515 if (TREE_CODE (expression) == TREE_LIST)
19516 return any_value_dependent_elements_p (expression);
19518 return value_dependent_expression_p (expression);
19521 case SIZEOF_EXPR:
19522 if (SIZEOF_EXPR_TYPE_P (expression))
19523 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
19524 /* FALLTHRU */
19525 case ALIGNOF_EXPR:
19526 case TYPEID_EXPR:
19527 /* A `sizeof' expression is value-dependent if the operand is
19528 type-dependent or is a pack expansion. */
19529 expression = TREE_OPERAND (expression, 0);
19530 if (PACK_EXPANSION_P (expression))
19531 return true;
19532 else if (TYPE_P (expression))
19533 return dependent_type_p (expression);
19534 return instantiation_dependent_expression_p (expression);
19536 case AT_ENCODE_EXPR:
19537 /* An 'encode' expression is value-dependent if the operand is
19538 type-dependent. */
19539 expression = TREE_OPERAND (expression, 0);
19540 return dependent_type_p (expression);
19542 case NOEXCEPT_EXPR:
19543 expression = TREE_OPERAND (expression, 0);
19544 return instantiation_dependent_expression_p (expression);
19546 case SCOPE_REF:
19547 /* All instantiation-dependent expressions should also be considered
19548 value-dependent. */
19549 return instantiation_dependent_scope_ref_p (expression);
19551 case COMPONENT_REF:
19552 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
19553 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
19555 case NONTYPE_ARGUMENT_PACK:
19556 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
19557 is value-dependent. */
19559 tree values = ARGUMENT_PACK_ARGS (expression);
19560 int i, len = TREE_VEC_LENGTH (values);
19562 for (i = 0; i < len; ++i)
19563 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
19564 return true;
19566 return false;
19569 case TRAIT_EXPR:
19571 tree type2 = TRAIT_EXPR_TYPE2 (expression);
19572 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
19573 || (type2 ? dependent_type_p (type2) : false));
19576 case MODOP_EXPR:
19577 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19578 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
19580 case ARRAY_REF:
19581 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19582 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
19584 case ADDR_EXPR:
19586 tree op = TREE_OPERAND (expression, 0);
19587 return (value_dependent_expression_p (op)
19588 || has_value_dependent_address (op));
19591 case CALL_EXPR:
19593 tree fn = get_callee_fndecl (expression);
19594 int i, nargs;
19595 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
19596 return true;
19597 nargs = call_expr_nargs (expression);
19598 for (i = 0; i < nargs; ++i)
19600 tree op = CALL_EXPR_ARG (expression, i);
19601 /* In a call to a constexpr member function, look through the
19602 implicit ADDR_EXPR on the object argument so that it doesn't
19603 cause the call to be considered value-dependent. We also
19604 look through it in potential_constant_expression. */
19605 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
19606 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
19607 && TREE_CODE (op) == ADDR_EXPR)
19608 op = TREE_OPERAND (op, 0);
19609 if (value_dependent_expression_p (op))
19610 return true;
19612 return false;
19615 case TEMPLATE_ID_EXPR:
19616 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
19617 type-dependent. */
19618 return type_dependent_expression_p (expression);
19620 case CONSTRUCTOR:
19622 unsigned ix;
19623 tree val;
19624 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
19625 if (value_dependent_expression_p (val))
19626 return true;
19627 return false;
19630 case STMT_EXPR:
19631 /* Treat a GNU statement expression as dependent to avoid crashing
19632 under fold_non_dependent_expr; it can't be constant. */
19633 return true;
19635 default:
19636 /* A constant expression is value-dependent if any subexpression is
19637 value-dependent. */
19638 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
19640 case tcc_reference:
19641 case tcc_unary:
19642 case tcc_comparison:
19643 case tcc_binary:
19644 case tcc_expression:
19645 case tcc_vl_exp:
19647 int i, len = cp_tree_operand_length (expression);
19649 for (i = 0; i < len; i++)
19651 tree t = TREE_OPERAND (expression, i);
19653 /* In some cases, some of the operands may be missing.l
19654 (For example, in the case of PREDECREMENT_EXPR, the
19655 amount to increment by may be missing.) That doesn't
19656 make the expression dependent. */
19657 if (t && value_dependent_expression_p (t))
19658 return true;
19661 break;
19662 default:
19663 break;
19665 break;
19668 /* The expression is not value-dependent. */
19669 return false;
19672 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
19673 [temp.dep.expr]. Note that an expression with no type is
19674 considered dependent. Other parts of the compiler arrange for an
19675 expression with type-dependent subexpressions to have no type, so
19676 this function doesn't have to be fully recursive. */
19678 bool
19679 type_dependent_expression_p (tree expression)
19681 if (!processing_template_decl)
19682 return false;
19684 if (expression == error_mark_node)
19685 return false;
19687 /* An unresolved name is always dependent. */
19688 if (TREE_CODE (expression) == IDENTIFIER_NODE
19689 || TREE_CODE (expression) == USING_DECL)
19690 return true;
19692 /* Some expression forms are never type-dependent. */
19693 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
19694 || TREE_CODE (expression) == SIZEOF_EXPR
19695 || TREE_CODE (expression) == ALIGNOF_EXPR
19696 || TREE_CODE (expression) == AT_ENCODE_EXPR
19697 || TREE_CODE (expression) == NOEXCEPT_EXPR
19698 || TREE_CODE (expression) == TRAIT_EXPR
19699 || TREE_CODE (expression) == TYPEID_EXPR
19700 || TREE_CODE (expression) == DELETE_EXPR
19701 || TREE_CODE (expression) == VEC_DELETE_EXPR
19702 || TREE_CODE (expression) == THROW_EXPR)
19703 return false;
19705 /* The types of these expressions depends only on the type to which
19706 the cast occurs. */
19707 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
19708 || TREE_CODE (expression) == STATIC_CAST_EXPR
19709 || TREE_CODE (expression) == CONST_CAST_EXPR
19710 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
19711 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
19712 || TREE_CODE (expression) == CAST_EXPR)
19713 return dependent_type_p (TREE_TYPE (expression));
19715 /* The types of these expressions depends only on the type created
19716 by the expression. */
19717 if (TREE_CODE (expression) == NEW_EXPR
19718 || TREE_CODE (expression) == VEC_NEW_EXPR)
19720 /* For NEW_EXPR tree nodes created inside a template, either
19721 the object type itself or a TREE_LIST may appear as the
19722 operand 1. */
19723 tree type = TREE_OPERAND (expression, 1);
19724 if (TREE_CODE (type) == TREE_LIST)
19725 /* This is an array type. We need to check array dimensions
19726 as well. */
19727 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
19728 || value_dependent_expression_p
19729 (TREE_OPERAND (TREE_VALUE (type), 1));
19730 else
19731 return dependent_type_p (type);
19734 if (TREE_CODE (expression) == SCOPE_REF)
19736 tree scope = TREE_OPERAND (expression, 0);
19737 tree name = TREE_OPERAND (expression, 1);
19739 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
19740 contains an identifier associated by name lookup with one or more
19741 declarations declared with a dependent type, or...a
19742 nested-name-specifier or qualified-id that names a member of an
19743 unknown specialization. */
19744 return (type_dependent_expression_p (name)
19745 || dependent_scope_p (scope));
19748 if (TREE_CODE (expression) == FUNCTION_DECL
19749 && DECL_LANG_SPECIFIC (expression)
19750 && DECL_TEMPLATE_INFO (expression)
19751 && (any_dependent_template_arguments_p
19752 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
19753 return true;
19755 if (TREE_CODE (expression) == TEMPLATE_DECL
19756 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
19757 return false;
19759 if (TREE_CODE (expression) == STMT_EXPR)
19760 expression = stmt_expr_value_expr (expression);
19762 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
19764 tree elt;
19765 unsigned i;
19767 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
19769 if (type_dependent_expression_p (elt))
19770 return true;
19772 return false;
19775 /* A static data member of the current instantiation with incomplete
19776 array type is type-dependent, as the definition and specializations
19777 can have different bounds. */
19778 if (TREE_CODE (expression) == VAR_DECL
19779 && DECL_CLASS_SCOPE_P (expression)
19780 && dependent_type_p (DECL_CONTEXT (expression))
19781 && VAR_HAD_UNKNOWN_BOUND (expression))
19782 return true;
19784 if (TREE_TYPE (expression) == unknown_type_node)
19786 if (TREE_CODE (expression) == ADDR_EXPR)
19787 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
19788 if (TREE_CODE (expression) == COMPONENT_REF
19789 || TREE_CODE (expression) == OFFSET_REF)
19791 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
19792 return true;
19793 expression = TREE_OPERAND (expression, 1);
19794 if (TREE_CODE (expression) == IDENTIFIER_NODE)
19795 return false;
19797 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
19798 if (TREE_CODE (expression) == SCOPE_REF)
19799 return false;
19801 if (BASELINK_P (expression))
19802 expression = BASELINK_FUNCTIONS (expression);
19804 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
19806 if (any_dependent_template_arguments_p
19807 (TREE_OPERAND (expression, 1)))
19808 return true;
19809 expression = TREE_OPERAND (expression, 0);
19811 gcc_assert (TREE_CODE (expression) == OVERLOAD
19812 || TREE_CODE (expression) == FUNCTION_DECL);
19814 while (expression)
19816 if (type_dependent_expression_p (OVL_CURRENT (expression)))
19817 return true;
19818 expression = OVL_NEXT (expression);
19820 return false;
19823 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
19825 return (dependent_type_p (TREE_TYPE (expression)));
19828 /* walk_tree callback function for instantiation_dependent_expression_p,
19829 below. Returns non-zero if a dependent subexpression is found. */
19831 static tree
19832 instantiation_dependent_r (tree *tp, int *walk_subtrees,
19833 void * /*data*/)
19835 if (TYPE_P (*tp))
19837 /* We don't have to worry about decltype currently because decltype
19838 of an instantiation-dependent expr is a dependent type. This
19839 might change depending on the resolution of DR 1172. */
19840 *walk_subtrees = false;
19841 return NULL_TREE;
19843 enum tree_code code = TREE_CODE (*tp);
19844 switch (code)
19846 /* Don't treat an argument list as dependent just because it has no
19847 TREE_TYPE. */
19848 case TREE_LIST:
19849 case TREE_VEC:
19850 return NULL_TREE;
19852 case TEMPLATE_PARM_INDEX:
19853 return *tp;
19855 /* Handle expressions with type operands. */
19856 case SIZEOF_EXPR:
19857 case ALIGNOF_EXPR:
19858 case TYPEID_EXPR:
19859 case AT_ENCODE_EXPR:
19860 case TRAIT_EXPR:
19862 tree op = TREE_OPERAND (*tp, 0);
19863 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
19864 op = TREE_TYPE (op);
19865 if (TYPE_P (op))
19867 if (dependent_type_p (op)
19868 || (code == TRAIT_EXPR
19869 && dependent_type_p (TREE_OPERAND (*tp, 1))))
19870 return *tp;
19871 else
19873 *walk_subtrees = false;
19874 return NULL_TREE;
19877 break;
19880 case COMPONENT_REF:
19881 if (TREE_CODE (TREE_OPERAND (*tp, 1)) == IDENTIFIER_NODE)
19882 /* In a template, finish_class_member_access_expr creates a
19883 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
19884 type-dependent, so that we can check access control at
19885 instantiation time (PR 42277). See also Core issue 1273. */
19886 return *tp;
19887 break;
19889 case SCOPE_REF:
19890 if (instantiation_dependent_scope_ref_p (*tp))
19891 return *tp;
19892 else
19893 break;
19895 default:
19896 break;
19899 if (type_dependent_expression_p (*tp))
19900 return *tp;
19901 else
19902 return NULL_TREE;
19905 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
19906 sense defined by the ABI:
19908 "An expression is instantiation-dependent if it is type-dependent
19909 or value-dependent, or it has a subexpression that is type-dependent
19910 or value-dependent." */
19912 bool
19913 instantiation_dependent_expression_p (tree expression)
19915 tree result;
19917 if (!processing_template_decl)
19918 return false;
19920 if (expression == error_mark_node)
19921 return false;
19923 result = cp_walk_tree_without_duplicates (&expression,
19924 instantiation_dependent_r, NULL);
19925 return result != NULL_TREE;
19928 /* Like type_dependent_expression_p, but it also works while not processing
19929 a template definition, i.e. during substitution or mangling. */
19931 bool
19932 type_dependent_expression_p_push (tree expr)
19934 bool b;
19935 ++processing_template_decl;
19936 b = type_dependent_expression_p (expr);
19937 --processing_template_decl;
19938 return b;
19941 /* Returns TRUE if ARGS contains a type-dependent expression. */
19943 bool
19944 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
19946 unsigned int i;
19947 tree arg;
19949 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
19951 if (type_dependent_expression_p (arg))
19952 return true;
19954 return false;
19957 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
19958 expressions) contains any type-dependent expressions. */
19960 bool
19961 any_type_dependent_elements_p (const_tree list)
19963 for (; list; list = TREE_CHAIN (list))
19964 if (value_dependent_expression_p (TREE_VALUE (list)))
19965 return true;
19967 return false;
19970 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
19971 expressions) contains any value-dependent expressions. */
19973 bool
19974 any_value_dependent_elements_p (const_tree list)
19976 for (; list; list = TREE_CHAIN (list))
19977 if (value_dependent_expression_p (TREE_VALUE (list)))
19978 return true;
19980 return false;
19983 /* Returns TRUE if the ARG (a template argument) is dependent. */
19985 bool
19986 dependent_template_arg_p (tree arg)
19988 if (!processing_template_decl)
19989 return false;
19991 /* Assume a template argument that was wrongly written by the user
19992 is dependent. This is consistent with what
19993 any_dependent_template_arguments_p [that calls this function]
19994 does. */
19995 if (!arg || arg == error_mark_node)
19996 return true;
19998 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
19999 arg = ARGUMENT_PACK_SELECT_ARG (arg);
20001 if (TREE_CODE (arg) == TEMPLATE_DECL
20002 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
20003 return dependent_template_p (arg);
20004 else if (ARGUMENT_PACK_P (arg))
20006 tree args = ARGUMENT_PACK_ARGS (arg);
20007 int i, len = TREE_VEC_LENGTH (args);
20008 for (i = 0; i < len; ++i)
20010 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
20011 return true;
20014 return false;
20016 else if (TYPE_P (arg))
20017 return dependent_type_p (arg);
20018 else
20019 return (type_dependent_expression_p (arg)
20020 || value_dependent_expression_p (arg));
20023 /* Returns true if ARGS (a collection of template arguments) contains
20024 any types that require structural equality testing. */
20026 bool
20027 any_template_arguments_need_structural_equality_p (tree args)
20029 int i;
20030 int j;
20032 if (!args)
20033 return false;
20034 if (args == error_mark_node)
20035 return true;
20037 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
20039 tree level = TMPL_ARGS_LEVEL (args, i + 1);
20040 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
20042 tree arg = TREE_VEC_ELT (level, j);
20043 tree packed_args = NULL_TREE;
20044 int k, len = 1;
20046 if (ARGUMENT_PACK_P (arg))
20048 /* Look inside the argument pack. */
20049 packed_args = ARGUMENT_PACK_ARGS (arg);
20050 len = TREE_VEC_LENGTH (packed_args);
20053 for (k = 0; k < len; ++k)
20055 if (packed_args)
20056 arg = TREE_VEC_ELT (packed_args, k);
20058 if (error_operand_p (arg))
20059 return true;
20060 else if (TREE_CODE (arg) == TEMPLATE_DECL
20061 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
20062 continue;
20063 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
20064 return true;
20065 else if (!TYPE_P (arg) && TREE_TYPE (arg)
20066 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
20067 return true;
20072 return false;
20075 /* Returns true if ARGS (a collection of template arguments) contains
20076 any dependent arguments. */
20078 bool
20079 any_dependent_template_arguments_p (const_tree args)
20081 int i;
20082 int j;
20084 if (!args)
20085 return false;
20086 if (args == error_mark_node)
20087 return true;
20089 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
20091 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
20092 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
20093 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
20094 return true;
20097 return false;
20100 /* Returns TRUE if the template TMPL is dependent. */
20102 bool
20103 dependent_template_p (tree tmpl)
20105 if (TREE_CODE (tmpl) == OVERLOAD)
20107 while (tmpl)
20109 if (dependent_template_p (OVL_CURRENT (tmpl)))
20110 return true;
20111 tmpl = OVL_NEXT (tmpl);
20113 return false;
20116 /* Template template parameters are dependent. */
20117 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
20118 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
20119 return true;
20120 /* So are names that have not been looked up. */
20121 if (TREE_CODE (tmpl) == SCOPE_REF
20122 || TREE_CODE (tmpl) == IDENTIFIER_NODE)
20123 return true;
20124 /* So are member templates of dependent classes. */
20125 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
20126 return dependent_type_p (DECL_CONTEXT (tmpl));
20127 return false;
20130 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
20132 bool
20133 dependent_template_id_p (tree tmpl, tree args)
20135 return (dependent_template_p (tmpl)
20136 || any_dependent_template_arguments_p (args));
20139 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
20140 is dependent. */
20142 bool
20143 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
20145 int i;
20147 if (!processing_template_decl)
20148 return false;
20150 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
20152 tree decl = TREE_VEC_ELT (declv, i);
20153 tree init = TREE_VEC_ELT (initv, i);
20154 tree cond = TREE_VEC_ELT (condv, i);
20155 tree incr = TREE_VEC_ELT (incrv, i);
20157 if (type_dependent_expression_p (decl))
20158 return true;
20160 if (init && type_dependent_expression_p (init))
20161 return true;
20163 if (type_dependent_expression_p (cond))
20164 return true;
20166 if (COMPARISON_CLASS_P (cond)
20167 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
20168 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
20169 return true;
20171 if (TREE_CODE (incr) == MODOP_EXPR)
20173 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
20174 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
20175 return true;
20177 else if (type_dependent_expression_p (incr))
20178 return true;
20179 else if (TREE_CODE (incr) == MODIFY_EXPR)
20181 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
20182 return true;
20183 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
20185 tree t = TREE_OPERAND (incr, 1);
20186 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
20187 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
20188 return true;
20193 return false;
20196 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
20197 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
20198 no such TYPE can be found. Note that this function peers inside
20199 uninstantiated templates and therefore should be used only in
20200 extremely limited situations. ONLY_CURRENT_P restricts this
20201 peering to the currently open classes hierarchy (which is required
20202 when comparing types). */
20204 tree
20205 resolve_typename_type (tree type, bool only_current_p)
20207 tree scope;
20208 tree name;
20209 tree decl;
20210 int quals;
20211 tree pushed_scope;
20212 tree result;
20214 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
20216 scope = TYPE_CONTEXT (type);
20217 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
20218 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
20219 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
20220 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
20221 identifier of the TYPENAME_TYPE anymore.
20222 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
20223 TYPENAME_TYPE instead, we avoid messing up with a possible
20224 typedef variant case. */
20225 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
20227 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
20228 it first before we can figure out what NAME refers to. */
20229 if (TREE_CODE (scope) == TYPENAME_TYPE)
20231 if (TYPENAME_IS_RESOLVING_P (scope))
20232 /* Given a class template A with a dependent base with nested type C,
20233 typedef typename A::C::C C will land us here, as trying to resolve
20234 the initial A::C leads to the local C typedef, which leads back to
20235 A::C::C. So we break the recursion now. */
20236 return type;
20237 else
20238 scope = resolve_typename_type (scope, only_current_p);
20240 /* If we don't know what SCOPE refers to, then we cannot resolve the
20241 TYPENAME_TYPE. */
20242 if (TREE_CODE (scope) == TYPENAME_TYPE)
20243 return type;
20244 /* If the SCOPE is a template type parameter, we have no way of
20245 resolving the name. */
20246 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
20247 return type;
20248 /* If the SCOPE is not the current instantiation, there's no reason
20249 to look inside it. */
20250 if (only_current_p && !currently_open_class (scope))
20251 return type;
20252 /* If this is a typedef, we don't want to look inside (c++/11987). */
20253 if (typedef_variant_p (type))
20254 return type;
20255 /* If SCOPE isn't the template itself, it will not have a valid
20256 TYPE_FIELDS list. */
20257 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
20258 /* scope is either the template itself or a compatible instantiation
20259 like X<T>, so look up the name in the original template. */
20260 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
20261 else
20262 /* scope is a partial instantiation, so we can't do the lookup or we
20263 will lose the template arguments. */
20264 return type;
20265 /* Enter the SCOPE so that name lookup will be resolved as if we
20266 were in the class definition. In particular, SCOPE will no
20267 longer be considered a dependent type. */
20268 pushed_scope = push_scope (scope);
20269 /* Look up the declaration. */
20270 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
20271 tf_warning_or_error);
20273 result = NULL_TREE;
20275 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
20276 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
20277 if (!decl)
20278 /*nop*/;
20279 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == IDENTIFIER_NODE
20280 && TREE_CODE (decl) == TYPE_DECL)
20282 result = TREE_TYPE (decl);
20283 if (result == error_mark_node)
20284 result = NULL_TREE;
20286 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
20287 && DECL_CLASS_TEMPLATE_P (decl))
20289 tree tmpl;
20290 tree args;
20291 /* Obtain the template and the arguments. */
20292 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
20293 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
20294 /* Instantiate the template. */
20295 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
20296 /*entering_scope=*/0,
20297 tf_error | tf_user);
20298 if (result == error_mark_node)
20299 result = NULL_TREE;
20302 /* Leave the SCOPE. */
20303 if (pushed_scope)
20304 pop_scope (pushed_scope);
20306 /* If we failed to resolve it, return the original typename. */
20307 if (!result)
20308 return type;
20310 /* If lookup found a typename type, resolve that too. */
20311 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
20313 /* Ill-formed programs can cause infinite recursion here, so we
20314 must catch that. */
20315 TYPENAME_IS_RESOLVING_P (type) = 1;
20316 result = resolve_typename_type (result, only_current_p);
20317 TYPENAME_IS_RESOLVING_P (type) = 0;
20320 /* Qualify the resulting type. */
20321 quals = cp_type_quals (type);
20322 if (quals)
20323 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
20325 return result;
20328 /* EXPR is an expression which is not type-dependent. Return a proxy
20329 for EXPR that can be used to compute the types of larger
20330 expressions containing EXPR. */
20332 tree
20333 build_non_dependent_expr (tree expr)
20335 tree inner_expr;
20337 #ifdef ENABLE_CHECKING
20338 /* Try to get a constant value for all non-type-dependent expressions in
20339 order to expose bugs in *_dependent_expression_p and constexpr. */
20340 if (cxx_dialect >= cxx0x)
20341 maybe_constant_value (fold_non_dependent_expr_sfinae (expr, tf_none));
20342 #endif
20344 /* Preserve OVERLOADs; the functions must be available to resolve
20345 types. */
20346 inner_expr = expr;
20347 if (TREE_CODE (inner_expr) == STMT_EXPR)
20348 inner_expr = stmt_expr_value_expr (inner_expr);
20349 if (TREE_CODE (inner_expr) == ADDR_EXPR)
20350 inner_expr = TREE_OPERAND (inner_expr, 0);
20351 if (TREE_CODE (inner_expr) == COMPONENT_REF)
20352 inner_expr = TREE_OPERAND (inner_expr, 1);
20353 if (is_overloaded_fn (inner_expr)
20354 || TREE_CODE (inner_expr) == OFFSET_REF)
20355 return expr;
20356 /* There is no need to return a proxy for a variable. */
20357 if (TREE_CODE (expr) == VAR_DECL)
20358 return expr;
20359 /* Preserve string constants; conversions from string constants to
20360 "char *" are allowed, even though normally a "const char *"
20361 cannot be used to initialize a "char *". */
20362 if (TREE_CODE (expr) == STRING_CST)
20363 return expr;
20364 /* Preserve arithmetic constants, as an optimization -- there is no
20365 reason to create a new node. */
20366 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
20367 return expr;
20368 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
20369 There is at least one place where we want to know that a
20370 particular expression is a throw-expression: when checking a ?:
20371 expression, there are special rules if the second or third
20372 argument is a throw-expression. */
20373 if (TREE_CODE (expr) == THROW_EXPR)
20374 return expr;
20376 /* Don't wrap an initializer list, we need to be able to look inside. */
20377 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
20378 return expr;
20380 /* Don't wrap a dummy object, we need to be able to test for it. */
20381 if (is_dummy_object (expr))
20382 return expr;
20384 if (TREE_CODE (expr) == COND_EXPR)
20385 return build3 (COND_EXPR,
20386 TREE_TYPE (expr),
20387 TREE_OPERAND (expr, 0),
20388 (TREE_OPERAND (expr, 1)
20389 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
20390 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
20391 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
20392 if (TREE_CODE (expr) == COMPOUND_EXPR
20393 && !COMPOUND_EXPR_OVERLOADED (expr))
20394 return build2 (COMPOUND_EXPR,
20395 TREE_TYPE (expr),
20396 TREE_OPERAND (expr, 0),
20397 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
20399 /* If the type is unknown, it can't really be non-dependent */
20400 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
20402 /* Otherwise, build a NON_DEPENDENT_EXPR. */
20403 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
20406 /* ARGS is a vector of expressions as arguments to a function call.
20407 Replace the arguments with equivalent non-dependent expressions.
20408 This modifies ARGS in place. */
20410 void
20411 make_args_non_dependent (vec<tree, va_gc> *args)
20413 unsigned int ix;
20414 tree arg;
20416 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
20418 tree newarg = build_non_dependent_expr (arg);
20419 if (newarg != arg)
20420 (*args)[ix] = newarg;
20424 /* Returns a type which represents 'auto'. We use a TEMPLATE_TYPE_PARM
20425 with a level one deeper than the actual template parms. */
20427 tree
20428 make_auto (void)
20430 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
20431 TYPE_NAME (au) = build_decl (BUILTINS_LOCATION,
20432 TYPE_DECL, get_identifier ("auto"), au);
20433 TYPE_STUB_DECL (au) = TYPE_NAME (au);
20434 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
20435 (0, processing_template_decl + 1, processing_template_decl + 1,
20436 TYPE_NAME (au), NULL_TREE);
20437 TYPE_CANONICAL (au) = canonical_type_parameter (au);
20438 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
20439 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
20441 return au;
20444 /* Given type ARG, return std::initializer_list<ARG>. */
20446 static tree
20447 listify (tree arg)
20449 tree std_init_list = namespace_binding
20450 (get_identifier ("initializer_list"), std_node);
20451 tree argvec;
20452 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
20454 error ("deducing from brace-enclosed initializer list requires "
20455 "#include <initializer_list>");
20456 return error_mark_node;
20458 argvec = make_tree_vec (1);
20459 TREE_VEC_ELT (argvec, 0) = arg;
20460 return lookup_template_class (std_init_list, argvec, NULL_TREE,
20461 NULL_TREE, 0, tf_warning_or_error);
20464 /* Replace auto in TYPE with std::initializer_list<auto>. */
20466 static tree
20467 listify_autos (tree type, tree auto_node)
20469 tree init_auto = listify (auto_node);
20470 tree argvec = make_tree_vec (1);
20471 TREE_VEC_ELT (argvec, 0) = init_auto;
20472 if (processing_template_decl)
20473 argvec = add_to_template_args (current_template_args (), argvec);
20474 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20477 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
20478 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
20480 tree
20481 do_auto_deduction (tree type, tree init, tree auto_node)
20483 tree parms, tparms, targs;
20484 tree args[1];
20485 int val;
20487 if (init == error_mark_node)
20488 return error_mark_node;
20490 if (type_dependent_expression_p (init))
20491 /* Defining a subset of type-dependent expressions that we can deduce
20492 from ahead of time isn't worth the trouble. */
20493 return type;
20495 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
20496 with either a new invented type template parameter U or, if the
20497 initializer is a braced-init-list (8.5.4), with
20498 std::initializer_list<U>. */
20499 if (BRACE_ENCLOSED_INITIALIZER_P (init))
20500 type = listify_autos (type, auto_node);
20502 init = resolve_nondeduced_context (init);
20504 parms = build_tree_list (NULL_TREE, type);
20505 args[0] = init;
20506 tparms = make_tree_vec (1);
20507 targs = make_tree_vec (1);
20508 TREE_VEC_ELT (tparms, 0)
20509 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
20510 val = type_unification_real (tparms, targs, parms, args, 1, 0,
20511 DEDUCE_CALL, LOOKUP_NORMAL,
20512 /*explain_p=*/false);
20513 if (val > 0)
20515 if (processing_template_decl)
20516 /* Try again at instantiation time. */
20517 return type;
20518 if (type && type != error_mark_node)
20519 /* If type is error_mark_node a diagnostic must have been
20520 emitted by now. Also, having a mention to '<type error>'
20521 in the diagnostic is not really useful to the user. */
20523 if (cfun && auto_node == current_function_auto_return_pattern
20524 && LAMBDA_FUNCTION_P (current_function_decl))
20525 error ("unable to deduce lambda return type from %qE", init);
20526 else
20527 error ("unable to deduce %qT from %qE", type, init);
20529 return error_mark_node;
20532 /* If the list of declarators contains more than one declarator, the type
20533 of each declared variable is determined as described above. If the
20534 type deduced for the template parameter U is not the same in each
20535 deduction, the program is ill-formed. */
20536 if (TREE_TYPE (auto_node)
20537 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
20539 if (cfun && auto_node == current_function_auto_return_pattern
20540 && LAMBDA_FUNCTION_P (current_function_decl))
20541 error ("inconsistent types %qT and %qT deduced for "
20542 "lambda return type", TREE_TYPE (auto_node),
20543 TREE_VEC_ELT (targs, 0));
20544 else
20545 error ("inconsistent deduction for %qT: %qT and then %qT",
20546 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
20547 return error_mark_node;
20549 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
20551 if (processing_template_decl)
20552 targs = add_to_template_args (current_template_args (), targs);
20553 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
20556 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
20557 result. */
20559 tree
20560 splice_late_return_type (tree type, tree late_return_type)
20562 tree argvec;
20564 if (late_return_type == NULL_TREE)
20565 return type;
20566 argvec = make_tree_vec (1);
20567 TREE_VEC_ELT (argvec, 0) = late_return_type;
20568 if (processing_template_parmlist)
20569 /* For a late-specified return type in a template type-parameter, we
20570 need to add a dummy argument level for its parmlist. */
20571 argvec = add_to_template_args
20572 (make_tree_vec (processing_template_parmlist), argvec);
20573 if (current_template_parms)
20574 argvec = add_to_template_args (current_template_args (), argvec);
20575 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20578 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto'. */
20580 bool
20581 is_auto (const_tree type)
20583 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20584 && TYPE_IDENTIFIER (type) == get_identifier ("auto"))
20585 return true;
20586 else
20587 return false;
20590 /* Returns true iff TYPE contains a use of 'auto'. Since auto can only
20591 appear as a type-specifier for the declaration in question, we don't
20592 have to look through the whole type. */
20594 tree
20595 type_uses_auto (tree type)
20597 enum tree_code code;
20598 if (is_auto (type))
20599 return type;
20601 code = TREE_CODE (type);
20603 if (code == POINTER_TYPE || code == REFERENCE_TYPE
20604 || code == OFFSET_TYPE || code == FUNCTION_TYPE
20605 || code == METHOD_TYPE || code == ARRAY_TYPE)
20606 return type_uses_auto (TREE_TYPE (type));
20608 if (TYPE_PTRMEMFUNC_P (type))
20609 return type_uses_auto (TREE_TYPE (TREE_TYPE
20610 (TYPE_PTRMEMFUNC_FN_TYPE (type))));
20612 return NULL_TREE;
20615 /* For a given template T, return the vector of typedefs referenced
20616 in T for which access check is needed at T instantiation time.
20617 T is either a FUNCTION_DECL or a RECORD_TYPE.
20618 Those typedefs were added to T by the function
20619 append_type_to_template_for_access_check. */
20621 vec<qualified_typedef_usage_t, va_gc> *
20622 get_types_needing_access_check (tree t)
20624 tree ti;
20625 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
20627 if (!t || t == error_mark_node)
20628 return NULL;
20630 if (!(ti = get_template_info (t)))
20631 return NULL;
20633 if (CLASS_TYPE_P (t)
20634 || TREE_CODE (t) == FUNCTION_DECL)
20636 if (!TI_TEMPLATE (ti))
20637 return NULL;
20639 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
20642 return result;
20645 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
20646 tied to T. That list of typedefs will be access checked at
20647 T instantiation time.
20648 T is either a FUNCTION_DECL or a RECORD_TYPE.
20649 TYPE_DECL is a TYPE_DECL node representing a typedef.
20650 SCOPE is the scope through which TYPE_DECL is accessed.
20651 LOCATION is the location of the usage point of TYPE_DECL.
20653 This function is a subroutine of
20654 append_type_to_template_for_access_check. */
20656 static void
20657 append_type_to_template_for_access_check_1 (tree t,
20658 tree type_decl,
20659 tree scope,
20660 location_t location)
20662 qualified_typedef_usage_t typedef_usage;
20663 tree ti;
20665 if (!t || t == error_mark_node)
20666 return;
20668 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
20669 || CLASS_TYPE_P (t))
20670 && type_decl
20671 && TREE_CODE (type_decl) == TYPE_DECL
20672 && scope);
20674 if (!(ti = get_template_info (t)))
20675 return;
20677 gcc_assert (TI_TEMPLATE (ti));
20679 typedef_usage.typedef_decl = type_decl;
20680 typedef_usage.context = scope;
20681 typedef_usage.locus = location;
20683 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
20686 /* Append TYPE_DECL to the template TEMPL.
20687 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
20688 At TEMPL instanciation time, TYPE_DECL will be checked to see
20689 if it can be accessed through SCOPE.
20690 LOCATION is the location of the usage point of TYPE_DECL.
20692 e.g. consider the following code snippet:
20694 class C
20696 typedef int myint;
20699 template<class U> struct S
20701 C::myint mi; // <-- usage point of the typedef C::myint
20704 S<char> s;
20706 At S<char> instantiation time, we need to check the access of C::myint
20707 In other words, we need to check the access of the myint typedef through
20708 the C scope. For that purpose, this function will add the myint typedef
20709 and the scope C through which its being accessed to a list of typedefs
20710 tied to the template S. That list will be walked at template instantiation
20711 time and access check performed on each typedefs it contains.
20712 Note that this particular code snippet should yield an error because
20713 myint is private to C. */
20715 void
20716 append_type_to_template_for_access_check (tree templ,
20717 tree type_decl,
20718 tree scope,
20719 location_t location)
20721 qualified_typedef_usage_t *iter;
20722 unsigned i;
20724 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
20726 /* Make sure we don't append the type to the template twice. */
20727 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
20728 if (iter->typedef_decl == type_decl && scope == iter->context)
20729 return;
20731 append_type_to_template_for_access_check_1 (templ, type_decl,
20732 scope, location);
20735 /* Set up the hash tables for template instantiations. */
20737 void
20738 init_template_processing (void)
20740 decl_specializations = htab_create_ggc (37,
20741 hash_specialization,
20742 eq_specializations,
20743 ggc_free);
20744 type_specializations = htab_create_ggc (37,
20745 hash_specialization,
20746 eq_specializations,
20747 ggc_free);
20750 /* Print stats about the template hash tables for -fstats. */
20752 void
20753 print_template_statistics (void)
20755 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
20756 "%f collisions\n", (long) htab_size (decl_specializations),
20757 (long) htab_elements (decl_specializations),
20758 htab_collisions (decl_specializations));
20759 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
20760 "%f collisions\n", (long) htab_size (type_specializations),
20761 (long) htab_elements (type_specializations),
20762 htab_collisions (type_specializations));
20765 #include "gt-cp-pt.h"