2012-11-28 Oleg Raikhman <oleg@adapteva.com>
[official-gcc.git] / gcc / cp / pt.c
blobecb013ecaee5dab46c76f81ec44b9facb63397d3
1 /* Handle parameterized types (templates) for GNU C++.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012
4 Free Software Foundation, Inc.
5 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
6 Rewritten by Jason Merrill (jason@cygnus.com).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
13 any later version.
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 /* Known bugs or deficiencies include:
26 all methods must be provided in header files; can't use a source
27 file that contains only the method templates and "just win". */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include "tree.h"
34 #include "intl.h"
35 #include "pointer-set.h"
36 #include "flags.h"
37 #include "cp-tree.h"
38 #include "c-family/c-common.h"
39 #include "c-family/c-objc.h"
40 #include "cp-objcp-common.h"
41 #include "tree-inline.h"
42 #include "decl.h"
43 #include "toplev.h"
44 #include "timevar.h"
45 #include "tree-iterator.h"
47 /* The type of functions taking a tree, and some additional data, and
48 returning an int. */
49 typedef int (*tree_fn_t) (tree, void*);
51 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
52 instantiations have been deferred, either because their definitions
53 were not yet available, or because we were putting off doing the work. */
54 struct GTY ((chain_next ("%h.next"))) pending_template {
55 struct pending_template *next;
56 struct tinst_level *tinst;
59 static GTY(()) struct pending_template *pending_templates;
60 static GTY(()) struct pending_template *last_pending_template;
62 int processing_template_parmlist;
63 static int template_header_count;
65 static GTY(()) tree saved_trees;
66 static vec<int> inline_parm_levels;
68 static GTY(()) struct tinst_level *current_tinst_level;
70 static GTY(()) tree saved_access_scope;
72 /* Live only within one (recursive) call to tsubst_expr. We use
73 this to pass the statement expression node from the STMT_EXPR
74 to the EXPR_STMT that is its result. */
75 static tree cur_stmt_expr;
77 /* A map from local variable declarations in the body of the template
78 presently being instantiated to the corresponding instantiated
79 local variables. */
80 static struct pointer_map_t *local_specializations;
82 /* True if we've recursed into fn_type_unification too many times. */
83 static bool excessive_deduction_depth;
85 typedef struct GTY(()) spec_entry
87 tree tmpl;
88 tree args;
89 tree spec;
90 } spec_entry;
92 static GTY ((param_is (spec_entry)))
93 htab_t decl_specializations;
95 static GTY ((param_is (spec_entry)))
96 htab_t type_specializations;
98 /* Contains canonical template parameter types. The vector is indexed by
99 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
100 TREE_LIST, whose TREE_VALUEs contain the canonical template
101 parameters of various types and levels. */
102 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
104 #define UNIFY_ALLOW_NONE 0
105 #define UNIFY_ALLOW_MORE_CV_QUAL 1
106 #define UNIFY_ALLOW_LESS_CV_QUAL 2
107 #define UNIFY_ALLOW_DERIVED 4
108 #define UNIFY_ALLOW_INTEGER 8
109 #define UNIFY_ALLOW_OUTER_LEVEL 16
110 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
111 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
113 enum template_base_result {
114 tbr_incomplete_type,
115 tbr_ambiguous_baseclass,
116 tbr_success
119 static void push_access_scope (tree);
120 static void pop_access_scope (tree);
121 static bool resolve_overloaded_unification (tree, tree, tree, tree,
122 unification_kind_t, int,
123 bool);
124 static int try_one_overload (tree, tree, tree, tree, tree,
125 unification_kind_t, int, bool, bool);
126 static int unify (tree, tree, tree, tree, int, bool);
127 static void add_pending_template (tree);
128 static tree reopen_tinst_level (struct tinst_level *);
129 static tree tsubst_initializer_list (tree, tree);
130 static tree get_class_bindings (tree, tree, tree, tree);
131 static tree coerce_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 bool arg_from_parm_pack_p (tree, tree);
205 static tree current_template_args (void);
206 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
207 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
209 /* Make the current scope suitable for access checking when we are
210 processing T. T can be FUNCTION_DECL for instantiated function
211 template, VAR_DECL for static member variable, or TYPE_DECL for
212 alias template (needed by instantiate_decl). */
214 static void
215 push_access_scope (tree t)
217 gcc_assert (TREE_CODE (t) == FUNCTION_DECL
218 || TREE_CODE (t) == TYPE_DECL
219 || TREE_CODE (t) == VAR_DECL);
221 if (DECL_FRIEND_CONTEXT (t))
222 push_nested_class (DECL_FRIEND_CONTEXT (t));
223 else if (DECL_CLASS_SCOPE_P (t))
224 push_nested_class (DECL_CONTEXT (t));
225 else
226 push_to_top_level ();
228 if (TREE_CODE (t) == FUNCTION_DECL)
230 saved_access_scope = tree_cons
231 (NULL_TREE, current_function_decl, saved_access_scope);
232 current_function_decl = t;
236 /* Restore the scope set up by push_access_scope. T is the node we
237 are processing. */
239 static void
240 pop_access_scope (tree t)
242 if (TREE_CODE (t) == FUNCTION_DECL)
244 current_function_decl = TREE_VALUE (saved_access_scope);
245 saved_access_scope = TREE_CHAIN (saved_access_scope);
248 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
249 pop_nested_class ();
250 else
251 pop_from_top_level ();
254 /* Do any processing required when DECL (a member template
255 declaration) is finished. Returns the TEMPLATE_DECL corresponding
256 to DECL, unless it is a specialization, in which case the DECL
257 itself is returned. */
259 tree
260 finish_member_template_decl (tree decl)
262 if (decl == error_mark_node)
263 return error_mark_node;
265 gcc_assert (DECL_P (decl));
267 if (TREE_CODE (decl) == TYPE_DECL)
269 tree type;
271 type = TREE_TYPE (decl);
272 if (type == error_mark_node)
273 return error_mark_node;
274 if (MAYBE_CLASS_TYPE_P (type)
275 && CLASSTYPE_TEMPLATE_INFO (type)
276 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
278 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
279 check_member_template (tmpl);
280 return tmpl;
282 return NULL_TREE;
284 else if (TREE_CODE (decl) == FIELD_DECL)
285 error ("data member %qD cannot be a member template", decl);
286 else if (DECL_TEMPLATE_INFO (decl))
288 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
290 check_member_template (DECL_TI_TEMPLATE (decl));
291 return DECL_TI_TEMPLATE (decl);
293 else
294 return decl;
296 else
297 error ("invalid member template declaration %qD", decl);
299 return error_mark_node;
302 /* Create a template info node. */
304 tree
305 build_template_info (tree template_decl, tree template_args)
307 tree result = make_node (TEMPLATE_INFO);
308 TI_TEMPLATE (result) = template_decl;
309 TI_ARGS (result) = template_args;
310 return result;
313 /* Return the template info node corresponding to T, whatever T is. */
315 tree
316 get_template_info (const_tree t)
318 tree tinfo = NULL_TREE;
320 if (!t || t == error_mark_node)
321 return NULL;
323 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
324 tinfo = DECL_TEMPLATE_INFO (t);
326 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
327 t = TREE_TYPE (t);
329 if (TAGGED_TYPE_P (t))
330 tinfo = TYPE_TEMPLATE_INFO (t);
331 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
332 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
334 return tinfo;
337 /* Returns the template nesting level of the indicated class TYPE.
339 For example, in:
340 template <class T>
341 struct A
343 template <class U>
344 struct B {};
347 A<T>::B<U> has depth two, while A<T> has depth one.
348 Both A<T>::B<int> and A<int>::B<U> have depth one, if
349 they are instantiations, not specializations.
351 This function is guaranteed to return 0 if passed NULL_TREE so
352 that, for example, `template_class_depth (current_class_type)' is
353 always safe. */
356 template_class_depth (tree type)
358 int depth;
360 for (depth = 0;
361 type && TREE_CODE (type) != NAMESPACE_DECL;
362 type = (TREE_CODE (type) == FUNCTION_DECL)
363 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
365 tree tinfo = get_template_info (type);
367 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
368 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
369 ++depth;
372 return depth;
375 /* Subroutine of maybe_begin_member_template_processing.
376 Returns true if processing DECL needs us to push template parms. */
378 static bool
379 inline_needs_template_parms (tree decl)
381 if (! DECL_TEMPLATE_INFO (decl))
382 return false;
384 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
385 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
388 /* Subroutine of maybe_begin_member_template_processing.
389 Push the template parms in PARMS, starting from LEVELS steps into the
390 chain, and ending at the beginning, since template parms are listed
391 innermost first. */
393 static void
394 push_inline_template_parms_recursive (tree parmlist, int levels)
396 tree parms = TREE_VALUE (parmlist);
397 int i;
399 if (levels > 1)
400 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
402 ++processing_template_decl;
403 current_template_parms
404 = tree_cons (size_int (processing_template_decl),
405 parms, current_template_parms);
406 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
408 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
409 NULL);
410 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
412 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
414 if (parm == error_mark_node)
415 continue;
417 gcc_assert (DECL_P (parm));
419 switch (TREE_CODE (parm))
421 case TYPE_DECL:
422 case TEMPLATE_DECL:
423 pushdecl (parm);
424 break;
426 case PARM_DECL:
428 /* Make a CONST_DECL as is done in process_template_parm.
429 It is ugly that we recreate this here; the original
430 version built in process_template_parm is no longer
431 available. */
432 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
433 CONST_DECL, DECL_NAME (parm),
434 TREE_TYPE (parm));
435 DECL_ARTIFICIAL (decl) = 1;
436 TREE_CONSTANT (decl) = 1;
437 TREE_READONLY (decl) = 1;
438 DECL_INITIAL (decl) = DECL_INITIAL (parm);
439 SET_DECL_TEMPLATE_PARM_P (decl);
440 pushdecl (decl);
442 break;
444 default:
445 gcc_unreachable ();
450 /* Restore the template parameter context for a member template or
451 a friend template defined in a class definition. */
453 void
454 maybe_begin_member_template_processing (tree decl)
456 tree parms;
457 int levels = 0;
459 if (inline_needs_template_parms (decl))
461 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
462 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
464 if (DECL_TEMPLATE_SPECIALIZATION (decl))
466 --levels;
467 parms = TREE_CHAIN (parms);
470 push_inline_template_parms_recursive (parms, levels);
473 /* Remember how many levels of template parameters we pushed so that
474 we can pop them later. */
475 inline_parm_levels.safe_push (levels);
478 /* Undo the effects of maybe_begin_member_template_processing. */
480 void
481 maybe_end_member_template_processing (void)
483 int i;
484 int last;
486 if (inline_parm_levels.length () == 0)
487 return;
489 last = inline_parm_levels.pop ();
490 for (i = 0; i < last; ++i)
492 --processing_template_decl;
493 current_template_parms = TREE_CHAIN (current_template_parms);
494 poplevel (0, 0, 0);
498 /* Return a new template argument vector which contains all of ARGS,
499 but has as its innermost set of arguments the EXTRA_ARGS. */
501 static tree
502 add_to_template_args (tree args, tree extra_args)
504 tree new_args;
505 int extra_depth;
506 int i;
507 int j;
509 if (args == NULL_TREE || extra_args == error_mark_node)
510 return extra_args;
512 extra_depth = TMPL_ARGS_DEPTH (extra_args);
513 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
515 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
516 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
518 for (j = 1; j <= extra_depth; ++j, ++i)
519 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
521 return new_args;
524 /* Like add_to_template_args, but only the outermost ARGS are added to
525 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
526 (EXTRA_ARGS) levels are added. This function is used to combine
527 the template arguments from a partial instantiation with the
528 template arguments used to attain the full instantiation from the
529 partial instantiation. */
531 static tree
532 add_outermost_template_args (tree args, tree extra_args)
534 tree new_args;
536 /* If there are more levels of EXTRA_ARGS than there are ARGS,
537 something very fishy is going on. */
538 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
540 /* If *all* the new arguments will be the EXTRA_ARGS, just return
541 them. */
542 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
543 return extra_args;
545 /* For the moment, we make ARGS look like it contains fewer levels. */
546 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
548 new_args = add_to_template_args (args, extra_args);
550 /* Now, we restore ARGS to its full dimensions. */
551 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
553 return new_args;
556 /* Return the N levels of innermost template arguments from the ARGS. */
558 tree
559 get_innermost_template_args (tree args, int n)
561 tree new_args;
562 int extra_levels;
563 int i;
565 gcc_assert (n >= 0);
567 /* If N is 1, just return the innermost set of template arguments. */
568 if (n == 1)
569 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
571 /* If we're not removing anything, just return the arguments we were
572 given. */
573 extra_levels = TMPL_ARGS_DEPTH (args) - n;
574 gcc_assert (extra_levels >= 0);
575 if (extra_levels == 0)
576 return args;
578 /* Make a new set of arguments, not containing the outer arguments. */
579 new_args = make_tree_vec (n);
580 for (i = 1; i <= n; ++i)
581 SET_TMPL_ARGS_LEVEL (new_args, i,
582 TMPL_ARGS_LEVEL (args, i + extra_levels));
584 return new_args;
587 /* The inverse of get_innermost_template_args: Return all but the innermost
588 EXTRA_LEVELS levels of template arguments from the ARGS. */
590 static tree
591 strip_innermost_template_args (tree args, int extra_levels)
593 tree new_args;
594 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
595 int i;
597 gcc_assert (n >= 0);
599 /* If N is 1, just return the outermost set of template arguments. */
600 if (n == 1)
601 return TMPL_ARGS_LEVEL (args, 1);
603 /* If we're not removing anything, just return the arguments we were
604 given. */
605 gcc_assert (extra_levels >= 0);
606 if (extra_levels == 0)
607 return args;
609 /* Make a new set of arguments, not containing the inner arguments. */
610 new_args = make_tree_vec (n);
611 for (i = 1; i <= n; ++i)
612 SET_TMPL_ARGS_LEVEL (new_args, i,
613 TMPL_ARGS_LEVEL (args, i));
615 return new_args;
618 /* We've got a template header coming up; push to a new level for storing
619 the parms. */
621 void
622 begin_template_parm_list (void)
624 /* We use a non-tag-transparent scope here, which causes pushtag to
625 put tags in this scope, rather than in the enclosing class or
626 namespace scope. This is the right thing, since we want
627 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
628 global template class, push_template_decl handles putting the
629 TEMPLATE_DECL into top-level scope. For a nested template class,
630 e.g.:
632 template <class T> struct S1 {
633 template <class T> struct S2 {};
636 pushtag contains special code to call pushdecl_with_scope on the
637 TEMPLATE_DECL for S2. */
638 begin_scope (sk_template_parms, NULL);
639 ++processing_template_decl;
640 ++processing_template_parmlist;
641 note_template_header (0);
644 /* This routine is called when a specialization is declared. If it is
645 invalid to declare a specialization here, an error is reported and
646 false is returned, otherwise this routine will return true. */
648 static bool
649 check_specialization_scope (void)
651 tree scope = current_scope ();
653 /* [temp.expl.spec]
655 An explicit specialization shall be declared in the namespace of
656 which the template is a member, or, for member templates, in the
657 namespace of which the enclosing class or enclosing class
658 template is a member. An explicit specialization of a member
659 function, member class or static data member of a class template
660 shall be declared in the namespace of which the class template
661 is a member. */
662 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
664 error ("explicit specialization in non-namespace scope %qD", scope);
665 return false;
668 /* [temp.expl.spec]
670 In an explicit specialization declaration for a member of a class
671 template or a member template that appears in namespace scope,
672 the member template and some of its enclosing class templates may
673 remain unspecialized, except that the declaration shall not
674 explicitly specialize a class member template if its enclosing
675 class templates are not explicitly specialized as well. */
676 if (current_template_parms)
678 error ("enclosing class templates are not explicitly specialized");
679 return false;
682 return true;
685 /* We've just seen template <>. */
687 bool
688 begin_specialization (void)
690 begin_scope (sk_template_spec, NULL);
691 note_template_header (1);
692 return check_specialization_scope ();
695 /* Called at then end of processing a declaration preceded by
696 template<>. */
698 void
699 end_specialization (void)
701 finish_scope ();
702 reset_specialization ();
705 /* Any template <>'s that we have seen thus far are not referring to a
706 function specialization. */
708 void
709 reset_specialization (void)
711 processing_specialization = 0;
712 template_header_count = 0;
715 /* We've just seen a template header. If SPECIALIZATION is nonzero,
716 it was of the form template <>. */
718 static void
719 note_template_header (int specialization)
721 processing_specialization = specialization;
722 template_header_count++;
725 /* We're beginning an explicit instantiation. */
727 void
728 begin_explicit_instantiation (void)
730 gcc_assert (!processing_explicit_instantiation);
731 processing_explicit_instantiation = true;
735 void
736 end_explicit_instantiation (void)
738 gcc_assert (processing_explicit_instantiation);
739 processing_explicit_instantiation = false;
742 /* An explicit specialization or partial specialization of TMPL is being
743 declared. Check that the namespace in which the specialization is
744 occurring is permissible. Returns false iff it is invalid to
745 specialize TMPL in the current namespace. */
747 static bool
748 check_specialization_namespace (tree tmpl)
750 tree tpl_ns = decl_namespace_context (tmpl);
752 /* [tmpl.expl.spec]
754 An explicit specialization shall be declared in the namespace of
755 which the template is a member, or, for member templates, in the
756 namespace of which the enclosing class or enclosing class
757 template is a member. An explicit specialization of a member
758 function, member class or static data member of a class template
759 shall be declared in the namespace of which the class template is
760 a member. */
761 if (current_scope() != DECL_CONTEXT (tmpl)
762 && !at_namespace_scope_p ())
764 error ("specialization of %qD must appear at namespace scope", tmpl);
765 return false;
767 if (is_associated_namespace (current_namespace, tpl_ns))
768 /* Same or super-using namespace. */
769 return true;
770 else
772 permerror (input_location, "specialization of %qD in different namespace", tmpl);
773 permerror (input_location, " from definition of %q+#D", tmpl);
774 return false;
778 /* SPEC is an explicit instantiation. Check that it is valid to
779 perform this explicit instantiation in the current namespace. */
781 static void
782 check_explicit_instantiation_namespace (tree spec)
784 tree ns;
786 /* DR 275: An explicit instantiation shall appear in an enclosing
787 namespace of its template. */
788 ns = decl_namespace_context (spec);
789 if (!is_ancestor (current_namespace, ns))
790 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
791 "(which does not enclose namespace %qD)",
792 spec, current_namespace, ns);
795 /* The TYPE is being declared. If it is a template type, that means it
796 is a partial specialization. Do appropriate error-checking. */
798 tree
799 maybe_process_partial_specialization (tree type)
801 tree context;
803 if (type == error_mark_node)
804 return error_mark_node;
806 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
808 error ("name of class shadows template template parameter %qD",
809 TYPE_NAME (type));
810 return error_mark_node;
813 context = TYPE_CONTEXT (type);
815 if ((CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
816 /* Consider non-class instantiations of alias templates as
817 well. */
818 || (TYPE_P (type)
819 && TYPE_TEMPLATE_INFO (type)
820 && DECL_LANG_SPECIFIC (TYPE_NAME (type))
821 && DECL_USE_TEMPLATE (TYPE_NAME (type))))
823 /* This is for ordinary explicit specialization and partial
824 specialization of a template class such as:
826 template <> class C<int>;
830 template <class T> class C<T*>;
832 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
834 if (CLASS_TYPE_P (type)
835 && CLASSTYPE_IMPLICIT_INSTANTIATION (type)
836 && !COMPLETE_TYPE_P (type))
838 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
839 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
840 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
841 if (processing_template_decl)
843 if (push_template_decl (TYPE_MAIN_DECL (type))
844 == error_mark_node)
845 return error_mark_node;
848 else if (CLASS_TYPE_P (type)
849 && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
850 error ("specialization of %qT after instantiation", type);
852 if (DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
854 error ("partial specialization of alias template %qD",
855 TYPE_TI_TEMPLATE (type));
856 return error_mark_node;
859 else if (CLASS_TYPE_P (type)
860 && !CLASSTYPE_USE_TEMPLATE (type)
861 && CLASSTYPE_TEMPLATE_INFO (type)
862 && context && CLASS_TYPE_P (context)
863 && CLASSTYPE_TEMPLATE_INFO (context))
865 /* This is for an explicit specialization of member class
866 template according to [temp.expl.spec/18]:
868 template <> template <class U> class C<int>::D;
870 The context `C<int>' must be an implicit instantiation.
871 Otherwise this is just a member class template declared
872 earlier like:
874 template <> class C<int> { template <class U> class D; };
875 template <> template <class U> class C<int>::D;
877 In the first case, `C<int>::D' is a specialization of `C<T>::D'
878 while in the second case, `C<int>::D' is a primary template
879 and `C<T>::D' may not exist. */
881 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
882 && !COMPLETE_TYPE_P (type))
884 tree t;
885 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
887 if (current_namespace
888 != decl_namespace_context (tmpl))
890 permerror (input_location, "specializing %q#T in different namespace", type);
891 permerror (input_location, " from definition of %q+#D", tmpl);
894 /* Check for invalid specialization after instantiation:
896 template <> template <> class C<int>::D<int>;
897 template <> template <class U> class C<int>::D; */
899 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
900 t; t = TREE_CHAIN (t))
902 tree inst = TREE_VALUE (t);
903 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst))
905 /* We already have a full specialization of this partial
906 instantiation. Reassign it to the new member
907 specialization template. */
908 spec_entry elt;
909 spec_entry *entry;
910 void **slot;
912 elt.tmpl = most_general_template (tmpl);
913 elt.args = CLASSTYPE_TI_ARGS (inst);
914 elt.spec = inst;
916 htab_remove_elt (type_specializations, &elt);
918 elt.tmpl = tmpl;
919 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
921 slot = htab_find_slot (type_specializations, &elt, INSERT);
922 entry = ggc_alloc_spec_entry ();
923 *entry = elt;
924 *slot = entry;
926 else if (COMPLETE_OR_OPEN_TYPE_P (inst))
927 /* But if we've had an implicit instantiation, that's a
928 problem ([temp.expl.spec]/6). */
929 error ("specialization %qT after instantiation %qT",
930 type, inst);
933 /* Mark TYPE as a specialization. And as a result, we only
934 have one level of template argument for the innermost
935 class template. */
936 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
937 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
938 CLASSTYPE_TI_ARGS (type)
939 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
942 else if (processing_specialization)
944 /* Someday C++0x may allow for enum template specialization. */
945 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
946 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
947 pedwarn (input_location, OPT_Wpedantic, "template specialization "
948 "of %qD not allowed by ISO C++", type);
949 else
951 error ("explicit specialization of non-template %qT", type);
952 return error_mark_node;
956 return type;
959 /* Returns nonzero if we can optimize the retrieval of specializations
960 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
961 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
963 static inline bool
964 optimize_specialization_lookup_p (tree tmpl)
966 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
967 && DECL_CLASS_SCOPE_P (tmpl)
968 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
969 parameter. */
970 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
971 /* The optimized lookup depends on the fact that the
972 template arguments for the member function template apply
973 purely to the containing class, which is not true if the
974 containing class is an explicit or partial
975 specialization. */
976 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
977 && !DECL_MEMBER_TEMPLATE_P (tmpl)
978 && !DECL_CONV_FN_P (tmpl)
979 /* It is possible to have a template that is not a member
980 template and is not a member of a template class:
982 template <typename T>
983 struct S { friend A::f(); };
985 Here, the friend function is a template, but the context does
986 not have template information. The optimized lookup relies
987 on having ARGS be the template arguments for both the class
988 and the function template. */
989 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
992 /* Retrieve the specialization (in the sense of [temp.spec] - a
993 specialization is either an instantiation or an explicit
994 specialization) of TMPL for the given template ARGS. If there is
995 no such specialization, return NULL_TREE. The ARGS are a vector of
996 arguments, or a vector of vectors of arguments, in the case of
997 templates with more than one level of parameters.
999 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1000 then we search for a partial specialization matching ARGS. This
1001 parameter is ignored if TMPL is not a class template. */
1003 static tree
1004 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1006 if (args == error_mark_node)
1007 return NULL_TREE;
1009 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1011 /* There should be as many levels of arguments as there are
1012 levels of parameters. */
1013 gcc_assert (TMPL_ARGS_DEPTH (args)
1014 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
1016 if (optimize_specialization_lookup_p (tmpl))
1018 tree class_template;
1019 tree class_specialization;
1020 vec<tree, va_gc> *methods;
1021 tree fns;
1022 int idx;
1024 /* The template arguments actually apply to the containing
1025 class. Find the class specialization with those
1026 arguments. */
1027 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1028 class_specialization
1029 = retrieve_specialization (class_template, args, 0);
1030 if (!class_specialization)
1031 return NULL_TREE;
1032 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1033 for the specialization. */
1034 idx = class_method_index_for_fn (class_specialization, tmpl);
1035 if (idx == -1)
1036 return NULL_TREE;
1037 /* Iterate through the methods with the indicated name, looking
1038 for the one that has an instance of TMPL. */
1039 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1040 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1042 tree fn = OVL_CURRENT (fns);
1043 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1044 /* using-declarations can add base methods to the method vec,
1045 and we don't want those here. */
1046 && DECL_CONTEXT (fn) == class_specialization)
1047 return fn;
1049 return NULL_TREE;
1051 else
1053 spec_entry *found;
1054 spec_entry elt;
1055 htab_t specializations;
1057 elt.tmpl = tmpl;
1058 elt.args = args;
1059 elt.spec = NULL_TREE;
1061 if (DECL_CLASS_TEMPLATE_P (tmpl))
1062 specializations = type_specializations;
1063 else
1064 specializations = decl_specializations;
1066 if (hash == 0)
1067 hash = hash_specialization (&elt);
1068 found = (spec_entry *) htab_find_with_hash (specializations, &elt, hash);
1069 if (found)
1070 return found->spec;
1073 return NULL_TREE;
1076 /* Like retrieve_specialization, but for local declarations. */
1078 static tree
1079 retrieve_local_specialization (tree tmpl)
1081 void **slot;
1083 if (local_specializations == NULL)
1084 return NULL_TREE;
1086 slot = pointer_map_contains (local_specializations, tmpl);
1087 return slot ? (tree) *slot : NULL_TREE;
1090 /* Returns nonzero iff DECL is a specialization of TMPL. */
1093 is_specialization_of (tree decl, tree tmpl)
1095 tree t;
1097 if (TREE_CODE (decl) == FUNCTION_DECL)
1099 for (t = decl;
1100 t != NULL_TREE;
1101 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1102 if (t == tmpl)
1103 return 1;
1105 else
1107 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1109 for (t = TREE_TYPE (decl);
1110 t != NULL_TREE;
1111 t = CLASSTYPE_USE_TEMPLATE (t)
1112 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1113 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1114 return 1;
1117 return 0;
1120 /* Returns nonzero iff DECL is a specialization of friend declaration
1121 FRIEND_DECL according to [temp.friend]. */
1123 bool
1124 is_specialization_of_friend (tree decl, tree friend_decl)
1126 bool need_template = true;
1127 int template_depth;
1129 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1130 || TREE_CODE (decl) == TYPE_DECL);
1132 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1133 of a template class, we want to check if DECL is a specialization
1134 if this. */
1135 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1136 && DECL_TEMPLATE_INFO (friend_decl)
1137 && !DECL_USE_TEMPLATE (friend_decl))
1139 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1140 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1141 need_template = false;
1143 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1144 && !PRIMARY_TEMPLATE_P (friend_decl))
1145 need_template = false;
1147 /* There is nothing to do if this is not a template friend. */
1148 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1149 return false;
1151 if (is_specialization_of (decl, friend_decl))
1152 return true;
1154 /* [temp.friend/6]
1155 A member of a class template may be declared to be a friend of a
1156 non-template class. In this case, the corresponding member of
1157 every specialization of the class template is a friend of the
1158 class granting friendship.
1160 For example, given a template friend declaration
1162 template <class T> friend void A<T>::f();
1164 the member function below is considered a friend
1166 template <> struct A<int> {
1167 void f();
1170 For this type of template friend, TEMPLATE_DEPTH below will be
1171 nonzero. To determine if DECL is a friend of FRIEND, we first
1172 check if the enclosing class is a specialization of another. */
1174 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1175 if (template_depth
1176 && DECL_CLASS_SCOPE_P (decl)
1177 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1178 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1180 /* Next, we check the members themselves. In order to handle
1181 a few tricky cases, such as when FRIEND_DECL's are
1183 template <class T> friend void A<T>::g(T t);
1184 template <class T> template <T t> friend void A<T>::h();
1186 and DECL's are
1188 void A<int>::g(int);
1189 template <int> void A<int>::h();
1191 we need to figure out ARGS, the template arguments from
1192 the context of DECL. This is required for template substitution
1193 of `T' in the function parameter of `g' and template parameter
1194 of `h' in the above examples. Here ARGS corresponds to `int'. */
1196 tree context = DECL_CONTEXT (decl);
1197 tree args = NULL_TREE;
1198 int current_depth = 0;
1200 while (current_depth < template_depth)
1202 if (CLASSTYPE_TEMPLATE_INFO (context))
1204 if (current_depth == 0)
1205 args = TYPE_TI_ARGS (context);
1206 else
1207 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1208 current_depth++;
1210 context = TYPE_CONTEXT (context);
1213 if (TREE_CODE (decl) == FUNCTION_DECL)
1215 bool is_template;
1216 tree friend_type;
1217 tree decl_type;
1218 tree friend_args_type;
1219 tree decl_args_type;
1221 /* Make sure that both DECL and FRIEND_DECL are templates or
1222 non-templates. */
1223 is_template = DECL_TEMPLATE_INFO (decl)
1224 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1225 if (need_template ^ is_template)
1226 return false;
1227 else if (is_template)
1229 /* If both are templates, check template parameter list. */
1230 tree friend_parms
1231 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1232 args, tf_none);
1233 if (!comp_template_parms
1234 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1235 friend_parms))
1236 return false;
1238 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1240 else
1241 decl_type = TREE_TYPE (decl);
1243 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1244 tf_none, NULL_TREE);
1245 if (friend_type == error_mark_node)
1246 return false;
1248 /* Check if return types match. */
1249 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1250 return false;
1252 /* Check if function parameter types match, ignoring the
1253 `this' parameter. */
1254 friend_args_type = TYPE_ARG_TYPES (friend_type);
1255 decl_args_type = TYPE_ARG_TYPES (decl_type);
1256 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1257 friend_args_type = TREE_CHAIN (friend_args_type);
1258 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1259 decl_args_type = TREE_CHAIN (decl_args_type);
1261 return compparms (decl_args_type, friend_args_type);
1263 else
1265 /* DECL is a TYPE_DECL */
1266 bool is_template;
1267 tree decl_type = TREE_TYPE (decl);
1269 /* Make sure that both DECL and FRIEND_DECL are templates or
1270 non-templates. */
1271 is_template
1272 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1273 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1275 if (need_template ^ is_template)
1276 return false;
1277 else if (is_template)
1279 tree friend_parms;
1280 /* If both are templates, check the name of the two
1281 TEMPLATE_DECL's first because is_friend didn't. */
1282 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1283 != DECL_NAME (friend_decl))
1284 return false;
1286 /* Now check template parameter list. */
1287 friend_parms
1288 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1289 args, tf_none);
1290 return comp_template_parms
1291 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1292 friend_parms);
1294 else
1295 return (DECL_NAME (decl)
1296 == DECL_NAME (friend_decl));
1299 return false;
1302 /* Register the specialization SPEC as a specialization of TMPL with
1303 the indicated ARGS. IS_FRIEND indicates whether the specialization
1304 is actually just a friend declaration. Returns SPEC, or an
1305 equivalent prior declaration, if available. */
1307 static tree
1308 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1309 hashval_t hash)
1311 tree fn;
1312 void **slot = NULL;
1313 spec_entry elt;
1315 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec));
1317 if (TREE_CODE (spec) == FUNCTION_DECL
1318 && uses_template_parms (DECL_TI_ARGS (spec)))
1319 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1320 register it; we want the corresponding TEMPLATE_DECL instead.
1321 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1322 the more obvious `uses_template_parms (spec)' to avoid problems
1323 with default function arguments. In particular, given
1324 something like this:
1326 template <class T> void f(T t1, T t = T())
1328 the default argument expression is not substituted for in an
1329 instantiation unless and until it is actually needed. */
1330 return spec;
1332 if (optimize_specialization_lookup_p (tmpl))
1333 /* We don't put these specializations in the hash table, but we might
1334 want to give an error about a mismatch. */
1335 fn = retrieve_specialization (tmpl, args, 0);
1336 else
1338 elt.tmpl = tmpl;
1339 elt.args = args;
1340 elt.spec = spec;
1342 if (hash == 0)
1343 hash = hash_specialization (&elt);
1345 slot =
1346 htab_find_slot_with_hash (decl_specializations, &elt, hash, INSERT);
1347 if (*slot)
1348 fn = ((spec_entry *) *slot)->spec;
1349 else
1350 fn = NULL_TREE;
1353 /* We can sometimes try to re-register a specialization that we've
1354 already got. In particular, regenerate_decl_from_template calls
1355 duplicate_decls which will update the specialization list. But,
1356 we'll still get called again here anyhow. It's more convenient
1357 to simply allow this than to try to prevent it. */
1358 if (fn == spec)
1359 return spec;
1360 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1362 if (DECL_TEMPLATE_INSTANTIATION (fn))
1364 if (DECL_ODR_USED (fn)
1365 || DECL_EXPLICIT_INSTANTIATION (fn))
1367 error ("specialization of %qD after instantiation",
1368 fn);
1369 return error_mark_node;
1371 else
1373 tree clone;
1374 /* This situation should occur only if the first
1375 specialization is an implicit instantiation, the
1376 second is an explicit specialization, and the
1377 implicit instantiation has not yet been used. That
1378 situation can occur if we have implicitly
1379 instantiated a member function and then specialized
1380 it later.
1382 We can also wind up here if a friend declaration that
1383 looked like an instantiation turns out to be a
1384 specialization:
1386 template <class T> void foo(T);
1387 class S { friend void foo<>(int) };
1388 template <> void foo(int);
1390 We transform the existing DECL in place so that any
1391 pointers to it become pointers to the updated
1392 declaration.
1394 If there was a definition for the template, but not
1395 for the specialization, we want this to look as if
1396 there were no definition, and vice versa. */
1397 DECL_INITIAL (fn) = NULL_TREE;
1398 duplicate_decls (spec, fn, is_friend);
1399 /* The call to duplicate_decls will have applied
1400 [temp.expl.spec]:
1402 An explicit specialization of a function template
1403 is inline only if it is explicitly declared to be,
1404 and independently of whether its function template
1407 to the primary function; now copy the inline bits to
1408 the various clones. */
1409 FOR_EACH_CLONE (clone, fn)
1411 DECL_DECLARED_INLINE_P (clone)
1412 = DECL_DECLARED_INLINE_P (fn);
1413 DECL_SOURCE_LOCATION (clone)
1414 = DECL_SOURCE_LOCATION (fn);
1416 check_specialization_namespace (tmpl);
1418 return fn;
1421 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1423 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1424 /* Dup decl failed, but this is a new definition. Set the
1425 line number so any errors match this new
1426 definition. */
1427 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1429 return fn;
1432 else if (fn)
1433 return duplicate_decls (spec, fn, is_friend);
1435 /* A specialization must be declared in the same namespace as the
1436 template it is specializing. */
1437 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1438 && !check_specialization_namespace (tmpl))
1439 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1441 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1443 spec_entry *entry = ggc_alloc_spec_entry ();
1444 gcc_assert (tmpl && args && spec);
1445 *entry = elt;
1446 *slot = entry;
1447 if (TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1448 && PRIMARY_TEMPLATE_P (tmpl)
1449 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1450 /* TMPL is a forward declaration of a template function; keep a list
1451 of all specializations in case we need to reassign them to a friend
1452 template later in tsubst_friend_function. */
1453 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1454 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1457 return spec;
1460 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1461 TMPL and ARGS members, ignores SPEC. */
1463 static int
1464 eq_specializations (const void *p1, const void *p2)
1466 const spec_entry *e1 = (const spec_entry *)p1;
1467 const spec_entry *e2 = (const spec_entry *)p2;
1469 return (e1->tmpl == e2->tmpl
1470 && comp_template_args (e1->args, e2->args));
1473 /* Returns a hash for a template TMPL and template arguments ARGS. */
1475 static hashval_t
1476 hash_tmpl_and_args (tree tmpl, tree args)
1478 hashval_t val = DECL_UID (tmpl);
1479 return iterative_hash_template_arg (args, val);
1482 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1483 ignoring SPEC. */
1485 static hashval_t
1486 hash_specialization (const void *p)
1488 const spec_entry *e = (const spec_entry *)p;
1489 return hash_tmpl_and_args (e->tmpl, e->args);
1492 /* Recursively calculate a hash value for a template argument ARG, for use
1493 in the hash tables of template specializations. */
1495 hashval_t
1496 iterative_hash_template_arg (tree arg, hashval_t val)
1498 unsigned HOST_WIDE_INT i;
1499 enum tree_code code;
1500 char tclass;
1502 if (arg == NULL_TREE)
1503 return iterative_hash_object (arg, val);
1505 if (!TYPE_P (arg))
1506 STRIP_NOPS (arg);
1508 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1509 /* We can get one of these when re-hashing a previous entry in the middle
1510 of substituting into a pack expansion. Just look through it. */
1511 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1513 code = TREE_CODE (arg);
1514 tclass = TREE_CODE_CLASS (code);
1516 val = iterative_hash_object (code, val);
1518 switch (code)
1520 case ERROR_MARK:
1521 return val;
1523 case IDENTIFIER_NODE:
1524 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1526 case TREE_VEC:
1528 int i, len = TREE_VEC_LENGTH (arg);
1529 for (i = 0; i < len; ++i)
1530 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1531 return val;
1534 case TYPE_PACK_EXPANSION:
1535 case EXPR_PACK_EXPANSION:
1536 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1537 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1539 case TYPE_ARGUMENT_PACK:
1540 case NONTYPE_ARGUMENT_PACK:
1541 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1543 case TREE_LIST:
1544 for (; arg; arg = TREE_CHAIN (arg))
1545 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1546 return val;
1548 case OVERLOAD:
1549 for (; arg; arg = OVL_NEXT (arg))
1550 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1551 return val;
1553 case CONSTRUCTOR:
1555 tree field, value;
1556 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1558 val = iterative_hash_template_arg (field, val);
1559 val = iterative_hash_template_arg (value, val);
1561 return val;
1564 case PARM_DECL:
1565 if (!DECL_ARTIFICIAL (arg))
1567 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1568 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1570 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1572 case TARGET_EXPR:
1573 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1575 case PTRMEM_CST:
1576 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1577 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1579 case TEMPLATE_PARM_INDEX:
1580 val = iterative_hash_template_arg
1581 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1582 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1583 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1585 case TRAIT_EXPR:
1586 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1587 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1588 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1590 case BASELINK:
1591 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1592 val);
1593 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1594 val);
1596 case MODOP_EXPR:
1597 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1598 code = TREE_CODE (TREE_OPERAND (arg, 1));
1599 val = iterative_hash_object (code, val);
1600 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1602 case LAMBDA_EXPR:
1603 /* A lambda can't appear in a template arg, but don't crash on
1604 erroneous input. */
1605 gcc_assert (seen_error ());
1606 return val;
1608 case CAST_EXPR:
1609 case IMPLICIT_CONV_EXPR:
1610 case STATIC_CAST_EXPR:
1611 case REINTERPRET_CAST_EXPR:
1612 case CONST_CAST_EXPR:
1613 case DYNAMIC_CAST_EXPR:
1614 case NEW_EXPR:
1615 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1616 /* Now hash operands as usual. */
1617 break;
1619 default:
1620 break;
1623 switch (tclass)
1625 case tcc_type:
1626 if (TYPE_CANONICAL (arg))
1627 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1628 val);
1629 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1630 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1631 /* Otherwise just compare the types during lookup. */
1632 return val;
1634 case tcc_declaration:
1635 case tcc_constant:
1636 return iterative_hash_expr (arg, val);
1638 default:
1639 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1641 unsigned n = cp_tree_operand_length (arg);
1642 for (i = 0; i < n; ++i)
1643 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1644 return val;
1647 gcc_unreachable ();
1648 return 0;
1651 /* Unregister the specialization SPEC as a specialization of TMPL.
1652 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1653 if the SPEC was listed as a specialization of TMPL.
1655 Note that SPEC has been ggc_freed, so we can't look inside it. */
1657 bool
1658 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1660 spec_entry *entry;
1661 spec_entry elt;
1663 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1664 elt.args = TI_ARGS (tinfo);
1665 elt.spec = NULL_TREE;
1667 entry = (spec_entry *) htab_find (decl_specializations, &elt);
1668 if (entry != NULL)
1670 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1671 gcc_assert (new_spec != NULL_TREE);
1672 entry->spec = new_spec;
1673 return 1;
1676 return 0;
1679 /* Like register_specialization, but for local declarations. We are
1680 registering SPEC, an instantiation of TMPL. */
1682 static void
1683 register_local_specialization (tree spec, tree tmpl)
1685 void **slot;
1687 slot = pointer_map_insert (local_specializations, tmpl);
1688 *slot = spec;
1691 /* TYPE is a class type. Returns true if TYPE is an explicitly
1692 specialized class. */
1694 bool
1695 explicit_class_specialization_p (tree type)
1697 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1698 return false;
1699 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1702 /* Print the list of functions at FNS, going through all the overloads
1703 for each element of the list. Alternatively, FNS can not be a
1704 TREE_LIST, in which case it will be printed together with all the
1705 overloads.
1707 MORE and *STR should respectively be FALSE and NULL when the function
1708 is called from the outside. They are used internally on recursive
1709 calls. print_candidates manages the two parameters and leaves NULL
1710 in *STR when it ends. */
1712 static void
1713 print_candidates_1 (tree fns, bool more, const char **str)
1715 tree fn, fn2;
1716 char *spaces = NULL;
1718 for (fn = fns; fn; fn = OVL_NEXT (fn))
1719 if (TREE_CODE (fn) == TREE_LIST)
1721 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1722 print_candidates_1 (TREE_VALUE (fn2),
1723 TREE_CHAIN (fn2) || more, str);
1725 else
1727 tree cand = OVL_CURRENT (fn);
1728 if (!*str)
1730 /* Pick the prefix string. */
1731 if (!more && !OVL_NEXT (fns))
1733 inform (DECL_SOURCE_LOCATION (cand),
1734 "candidate is: %#D", cand);
1735 continue;
1738 *str = _("candidates are:");
1739 spaces = get_spaces (*str);
1741 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1742 *str = spaces ? spaces : *str;
1745 if (!more)
1747 free (spaces);
1748 *str = NULL;
1752 /* Print the list of candidate FNS in an error message. FNS can also
1753 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1755 void
1756 print_candidates (tree fns)
1758 const char *str = NULL;
1759 print_candidates_1 (fns, false, &str);
1760 gcc_assert (str == NULL);
1763 /* Returns the template (one of the functions given by TEMPLATE_ID)
1764 which can be specialized to match the indicated DECL with the
1765 explicit template args given in TEMPLATE_ID. The DECL may be
1766 NULL_TREE if none is available. In that case, the functions in
1767 TEMPLATE_ID are non-members.
1769 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1770 specialization of a member template.
1772 The TEMPLATE_COUNT is the number of references to qualifying
1773 template classes that appeared in the name of the function. See
1774 check_explicit_specialization for a more accurate description.
1776 TSK indicates what kind of template declaration (if any) is being
1777 declared. TSK_TEMPLATE indicates that the declaration given by
1778 DECL, though a FUNCTION_DECL, has template parameters, and is
1779 therefore a template function.
1781 The template args (those explicitly specified and those deduced)
1782 are output in a newly created vector *TARGS_OUT.
1784 If it is impossible to determine the result, an error message is
1785 issued. The error_mark_node is returned to indicate failure. */
1787 static tree
1788 determine_specialization (tree template_id,
1789 tree decl,
1790 tree* targs_out,
1791 int need_member_template,
1792 int template_count,
1793 tmpl_spec_kind tsk)
1795 tree fns;
1796 tree targs;
1797 tree explicit_targs;
1798 tree candidates = NULL_TREE;
1799 /* A TREE_LIST of templates of which DECL may be a specialization.
1800 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1801 corresponding TREE_PURPOSE is the set of template arguments that,
1802 when used to instantiate the template, would produce a function
1803 with the signature of DECL. */
1804 tree templates = NULL_TREE;
1805 int header_count;
1806 cp_binding_level *b;
1808 *targs_out = NULL_TREE;
1810 if (template_id == error_mark_node || decl == error_mark_node)
1811 return error_mark_node;
1813 /* We shouldn't be specializing a member template of an
1814 unspecialized class template; we already gave an error in
1815 check_specialization_scope, now avoid crashing. */
1816 if (template_count && DECL_CLASS_SCOPE_P (decl)
1817 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1819 gcc_assert (errorcount);
1820 return error_mark_node;
1823 fns = TREE_OPERAND (template_id, 0);
1824 explicit_targs = TREE_OPERAND (template_id, 1);
1826 if (fns == error_mark_node)
1827 return error_mark_node;
1829 /* Check for baselinks. */
1830 if (BASELINK_P (fns))
1831 fns = BASELINK_FUNCTIONS (fns);
1833 if (!is_overloaded_fn (fns))
1835 error ("%qD is not a function template", fns);
1836 return error_mark_node;
1839 /* Count the number of template headers specified for this
1840 specialization. */
1841 header_count = 0;
1842 for (b = current_binding_level;
1843 b->kind == sk_template_parms;
1844 b = b->level_chain)
1845 ++header_count;
1847 for (; fns; fns = OVL_NEXT (fns))
1849 tree fn = OVL_CURRENT (fns);
1851 if (TREE_CODE (fn) == TEMPLATE_DECL)
1853 tree decl_arg_types;
1854 tree fn_arg_types;
1855 tree insttype;
1857 /* In case of explicit specialization, we need to check if
1858 the number of template headers appearing in the specialization
1859 is correct. This is usually done in check_explicit_specialization,
1860 but the check done there cannot be exhaustive when specializing
1861 member functions. Consider the following code:
1863 template <> void A<int>::f(int);
1864 template <> template <> void A<int>::f(int);
1866 Assuming that A<int> is not itself an explicit specialization
1867 already, the first line specializes "f" which is a non-template
1868 member function, whilst the second line specializes "f" which
1869 is a template member function. So both lines are syntactically
1870 correct, and check_explicit_specialization does not reject
1871 them.
1873 Here, we can do better, as we are matching the specialization
1874 against the declarations. We count the number of template
1875 headers, and we check if they match TEMPLATE_COUNT + 1
1876 (TEMPLATE_COUNT is the number of qualifying template classes,
1877 plus there must be another header for the member template
1878 itself).
1880 Notice that if header_count is zero, this is not a
1881 specialization but rather a template instantiation, so there
1882 is no check we can perform here. */
1883 if (header_count && header_count != template_count + 1)
1884 continue;
1886 /* Check that the number of template arguments at the
1887 innermost level for DECL is the same as for FN. */
1888 if (current_binding_level->kind == sk_template_parms
1889 && !current_binding_level->explicit_spec_p
1890 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1891 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1892 (current_template_parms))))
1893 continue;
1895 /* DECL might be a specialization of FN. */
1896 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1897 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1899 /* For a non-static member function, we need to make sure
1900 that the const qualification is the same. Since
1901 get_bindings does not try to merge the "this" parameter,
1902 we must do the comparison explicitly. */
1903 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1904 && !same_type_p (TREE_VALUE (fn_arg_types),
1905 TREE_VALUE (decl_arg_types)))
1906 continue;
1908 /* Skip the "this" parameter and, for constructors of
1909 classes with virtual bases, the VTT parameter. A
1910 full specialization of a constructor will have a VTT
1911 parameter, but a template never will. */
1912 decl_arg_types
1913 = skip_artificial_parms_for (decl, decl_arg_types);
1914 fn_arg_types
1915 = skip_artificial_parms_for (fn, fn_arg_types);
1917 /* Function templates cannot be specializations; there are
1918 no partial specializations of functions. Therefore, if
1919 the type of DECL does not match FN, there is no
1920 match. */
1921 if (tsk == tsk_template)
1923 if (compparms (fn_arg_types, decl_arg_types))
1924 candidates = tree_cons (NULL_TREE, fn, candidates);
1925 continue;
1928 /* See whether this function might be a specialization of this
1929 template. Suppress access control because we might be trying
1930 to make this specialization a friend, and we have already done
1931 access control for the declaration of the specialization. */
1932 push_deferring_access_checks (dk_no_check);
1933 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1934 pop_deferring_access_checks ();
1936 if (!targs)
1937 /* We cannot deduce template arguments that when used to
1938 specialize TMPL will produce DECL. */
1939 continue;
1941 /* Make sure that the deduced arguments actually work. */
1942 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
1943 if (insttype == error_mark_node)
1944 continue;
1945 fn_arg_types
1946 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
1947 if (!compparms (fn_arg_types, decl_arg_types))
1948 continue;
1950 /* Save this template, and the arguments deduced. */
1951 templates = tree_cons (targs, fn, templates);
1953 else if (need_member_template)
1954 /* FN is an ordinary member function, and we need a
1955 specialization of a member template. */
1957 else if (TREE_CODE (fn) != FUNCTION_DECL)
1958 /* We can get IDENTIFIER_NODEs here in certain erroneous
1959 cases. */
1961 else if (!DECL_FUNCTION_MEMBER_P (fn))
1962 /* This is just an ordinary non-member function. Nothing can
1963 be a specialization of that. */
1965 else if (DECL_ARTIFICIAL (fn))
1966 /* Cannot specialize functions that are created implicitly. */
1968 else
1970 tree decl_arg_types;
1972 /* This is an ordinary member function. However, since
1973 we're here, we can assume it's enclosing class is a
1974 template class. For example,
1976 template <typename T> struct S { void f(); };
1977 template <> void S<int>::f() {}
1979 Here, S<int>::f is a non-template, but S<int> is a
1980 template class. If FN has the same type as DECL, we
1981 might be in business. */
1983 if (!DECL_TEMPLATE_INFO (fn))
1984 /* Its enclosing class is an explicit specialization
1985 of a template class. This is not a candidate. */
1986 continue;
1988 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1989 TREE_TYPE (TREE_TYPE (fn))))
1990 /* The return types differ. */
1991 continue;
1993 /* Adjust the type of DECL in case FN is a static member. */
1994 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1995 if (DECL_STATIC_FUNCTION_P (fn)
1996 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1997 decl_arg_types = TREE_CHAIN (decl_arg_types);
1999 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2000 decl_arg_types))
2001 /* They match! */
2002 candidates = tree_cons (NULL_TREE, fn, candidates);
2006 if (templates && TREE_CHAIN (templates))
2008 /* We have:
2010 [temp.expl.spec]
2012 It is possible for a specialization with a given function
2013 signature to be instantiated from more than one function
2014 template. In such cases, explicit specification of the
2015 template arguments must be used to uniquely identify the
2016 function template specialization being specialized.
2018 Note that here, there's no suggestion that we're supposed to
2019 determine which of the candidate templates is most
2020 specialized. However, we, also have:
2022 [temp.func.order]
2024 Partial ordering of overloaded function template
2025 declarations is used in the following contexts to select
2026 the function template to which a function template
2027 specialization refers:
2029 -- when an explicit specialization refers to a function
2030 template.
2032 So, we do use the partial ordering rules, at least for now.
2033 This extension can only serve to make invalid programs valid,
2034 so it's safe. And, there is strong anecdotal evidence that
2035 the committee intended the partial ordering rules to apply;
2036 the EDG front end has that behavior, and John Spicer claims
2037 that the committee simply forgot to delete the wording in
2038 [temp.expl.spec]. */
2039 tree tmpl = most_specialized_instantiation (templates);
2040 if (tmpl != error_mark_node)
2042 templates = tmpl;
2043 TREE_CHAIN (templates) = NULL_TREE;
2047 if (templates == NULL_TREE && candidates == NULL_TREE)
2049 error ("template-id %qD for %q+D does not match any template "
2050 "declaration", template_id, decl);
2051 if (header_count && header_count != template_count + 1)
2052 inform (input_location, "saw %d %<template<>%>, need %d for "
2053 "specializing a member function template",
2054 header_count, template_count + 1);
2055 return error_mark_node;
2057 else if ((templates && TREE_CHAIN (templates))
2058 || (candidates && TREE_CHAIN (candidates))
2059 || (templates && candidates))
2061 error ("ambiguous template specialization %qD for %q+D",
2062 template_id, decl);
2063 candidates = chainon (candidates, templates);
2064 print_candidates (candidates);
2065 return error_mark_node;
2068 /* We have one, and exactly one, match. */
2069 if (candidates)
2071 tree fn = TREE_VALUE (candidates);
2072 *targs_out = copy_node (DECL_TI_ARGS (fn));
2073 /* DECL is a re-declaration or partial instantiation of a template
2074 function. */
2075 if (TREE_CODE (fn) == TEMPLATE_DECL)
2076 return fn;
2077 /* It was a specialization of an ordinary member function in a
2078 template class. */
2079 return DECL_TI_TEMPLATE (fn);
2082 /* It was a specialization of a template. */
2083 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2084 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2086 *targs_out = copy_node (targs);
2087 SET_TMPL_ARGS_LEVEL (*targs_out,
2088 TMPL_ARGS_DEPTH (*targs_out),
2089 TREE_PURPOSE (templates));
2091 else
2092 *targs_out = TREE_PURPOSE (templates);
2093 return TREE_VALUE (templates);
2096 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2097 but with the default argument values filled in from those in the
2098 TMPL_TYPES. */
2100 static tree
2101 copy_default_args_to_explicit_spec_1 (tree spec_types,
2102 tree tmpl_types)
2104 tree new_spec_types;
2106 if (!spec_types)
2107 return NULL_TREE;
2109 if (spec_types == void_list_node)
2110 return void_list_node;
2112 /* Substitute into the rest of the list. */
2113 new_spec_types =
2114 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2115 TREE_CHAIN (tmpl_types));
2117 /* Add the default argument for this parameter. */
2118 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2119 TREE_VALUE (spec_types),
2120 new_spec_types);
2123 /* DECL is an explicit specialization. Replicate default arguments
2124 from the template it specializes. (That way, code like:
2126 template <class T> void f(T = 3);
2127 template <> void f(double);
2128 void g () { f (); }
2130 works, as required.) An alternative approach would be to look up
2131 the correct default arguments at the call-site, but this approach
2132 is consistent with how implicit instantiations are handled. */
2134 static void
2135 copy_default_args_to_explicit_spec (tree decl)
2137 tree tmpl;
2138 tree spec_types;
2139 tree tmpl_types;
2140 tree new_spec_types;
2141 tree old_type;
2142 tree new_type;
2143 tree t;
2144 tree object_type = NULL_TREE;
2145 tree in_charge = NULL_TREE;
2146 tree vtt = NULL_TREE;
2148 /* See if there's anything we need to do. */
2149 tmpl = DECL_TI_TEMPLATE (decl);
2150 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2151 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2152 if (TREE_PURPOSE (t))
2153 break;
2154 if (!t)
2155 return;
2157 old_type = TREE_TYPE (decl);
2158 spec_types = TYPE_ARG_TYPES (old_type);
2160 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2162 /* Remove the this pointer, but remember the object's type for
2163 CV quals. */
2164 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2165 spec_types = TREE_CHAIN (spec_types);
2166 tmpl_types = TREE_CHAIN (tmpl_types);
2168 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2170 /* DECL may contain more parameters than TMPL due to the extra
2171 in-charge parameter in constructors and destructors. */
2172 in_charge = spec_types;
2173 spec_types = TREE_CHAIN (spec_types);
2175 if (DECL_HAS_VTT_PARM_P (decl))
2177 vtt = spec_types;
2178 spec_types = TREE_CHAIN (spec_types);
2182 /* Compute the merged default arguments. */
2183 new_spec_types =
2184 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2186 /* Compute the new FUNCTION_TYPE. */
2187 if (object_type)
2189 if (vtt)
2190 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2191 TREE_VALUE (vtt),
2192 new_spec_types);
2194 if (in_charge)
2195 /* Put the in-charge parameter back. */
2196 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2197 TREE_VALUE (in_charge),
2198 new_spec_types);
2200 new_type = build_method_type_directly (object_type,
2201 TREE_TYPE (old_type),
2202 new_spec_types);
2204 else
2205 new_type = build_function_type (TREE_TYPE (old_type),
2206 new_spec_types);
2207 new_type = cp_build_type_attribute_variant (new_type,
2208 TYPE_ATTRIBUTES (old_type));
2209 new_type = build_exception_variant (new_type,
2210 TYPE_RAISES_EXCEPTIONS (old_type));
2211 TREE_TYPE (decl) = new_type;
2214 /* Return the number of template headers we expect to see for a definition
2215 or specialization of CTYPE or one of its non-template members. */
2218 num_template_headers_for_class (tree ctype)
2220 int num_templates = 0;
2222 while (ctype && CLASS_TYPE_P (ctype))
2224 /* You're supposed to have one `template <...>' for every
2225 template class, but you don't need one for a full
2226 specialization. For example:
2228 template <class T> struct S{};
2229 template <> struct S<int> { void f(); };
2230 void S<int>::f () {}
2232 is correct; there shouldn't be a `template <>' for the
2233 definition of `S<int>::f'. */
2234 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2235 /* If CTYPE does not have template information of any
2236 kind, then it is not a template, nor is it nested
2237 within a template. */
2238 break;
2239 if (explicit_class_specialization_p (ctype))
2240 break;
2241 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2242 ++num_templates;
2244 ctype = TYPE_CONTEXT (ctype);
2247 return num_templates;
2250 /* Do a simple sanity check on the template headers that precede the
2251 variable declaration DECL. */
2253 void
2254 check_template_variable (tree decl)
2256 tree ctx = CP_DECL_CONTEXT (decl);
2257 int wanted = num_template_headers_for_class (ctx);
2258 if (!TYPE_P (ctx) || !CLASSTYPE_TEMPLATE_INFO (ctx))
2259 permerror (DECL_SOURCE_LOCATION (decl),
2260 "%qD is not a static data member of a class template", decl);
2261 else if (template_header_count > wanted)
2263 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2264 "too many template headers for %D (should be %d)",
2265 decl, wanted);
2266 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2267 inform (DECL_SOURCE_LOCATION (decl),
2268 "members of an explicitly specialized class are defined "
2269 "without a template header");
2273 /* Check to see if the function just declared, as indicated in
2274 DECLARATOR, and in DECL, is a specialization of a function
2275 template. We may also discover that the declaration is an explicit
2276 instantiation at this point.
2278 Returns DECL, or an equivalent declaration that should be used
2279 instead if all goes well. Issues an error message if something is
2280 amiss. Returns error_mark_node if the error is not easily
2281 recoverable.
2283 FLAGS is a bitmask consisting of the following flags:
2285 2: The function has a definition.
2286 4: The function is a friend.
2288 The TEMPLATE_COUNT is the number of references to qualifying
2289 template classes that appeared in the name of the function. For
2290 example, in
2292 template <class T> struct S { void f(); };
2293 void S<int>::f();
2295 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2296 classes are not counted in the TEMPLATE_COUNT, so that in
2298 template <class T> struct S {};
2299 template <> struct S<int> { void f(); }
2300 template <> void S<int>::f();
2302 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2303 invalid; there should be no template <>.)
2305 If the function is a specialization, it is marked as such via
2306 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2307 is set up correctly, and it is added to the list of specializations
2308 for that template. */
2310 tree
2311 check_explicit_specialization (tree declarator,
2312 tree decl,
2313 int template_count,
2314 int flags)
2316 int have_def = flags & 2;
2317 int is_friend = flags & 4;
2318 int specialization = 0;
2319 int explicit_instantiation = 0;
2320 int member_specialization = 0;
2321 tree ctype = DECL_CLASS_CONTEXT (decl);
2322 tree dname = DECL_NAME (decl);
2323 tmpl_spec_kind tsk;
2325 if (is_friend)
2327 if (!processing_specialization)
2328 tsk = tsk_none;
2329 else
2330 tsk = tsk_excessive_parms;
2332 else
2333 tsk = current_tmpl_spec_kind (template_count);
2335 switch (tsk)
2337 case tsk_none:
2338 if (processing_specialization)
2340 specialization = 1;
2341 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2343 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2345 if (is_friend)
2346 /* This could be something like:
2348 template <class T> void f(T);
2349 class S { friend void f<>(int); } */
2350 specialization = 1;
2351 else
2353 /* This case handles bogus declarations like template <>
2354 template <class T> void f<int>(); */
2356 error ("template-id %qD in declaration of primary template",
2357 declarator);
2358 return decl;
2361 break;
2363 case tsk_invalid_member_spec:
2364 /* The error has already been reported in
2365 check_specialization_scope. */
2366 return error_mark_node;
2368 case tsk_invalid_expl_inst:
2369 error ("template parameter list used in explicit instantiation");
2371 /* Fall through. */
2373 case tsk_expl_inst:
2374 if (have_def)
2375 error ("definition provided for explicit instantiation");
2377 explicit_instantiation = 1;
2378 break;
2380 case tsk_excessive_parms:
2381 case tsk_insufficient_parms:
2382 if (tsk == tsk_excessive_parms)
2383 error ("too many template parameter lists in declaration of %qD",
2384 decl);
2385 else if (template_header_count)
2386 error("too few template parameter lists in declaration of %qD", decl);
2387 else
2388 error("explicit specialization of %qD must be introduced by "
2389 "%<template <>%>", decl);
2391 /* Fall through. */
2392 case tsk_expl_spec:
2393 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2394 if (ctype)
2395 member_specialization = 1;
2396 else
2397 specialization = 1;
2398 break;
2400 case tsk_template:
2401 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2403 /* This case handles bogus declarations like template <>
2404 template <class T> void f<int>(); */
2406 if (uses_template_parms (declarator))
2407 error ("function template partial specialization %qD "
2408 "is not allowed", declarator);
2409 else
2410 error ("template-id %qD in declaration of primary template",
2411 declarator);
2412 return decl;
2415 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2416 /* This is a specialization of a member template, without
2417 specialization the containing class. Something like:
2419 template <class T> struct S {
2420 template <class U> void f (U);
2422 template <> template <class U> void S<int>::f(U) {}
2424 That's a specialization -- but of the entire template. */
2425 specialization = 1;
2426 break;
2428 default:
2429 gcc_unreachable ();
2432 if (specialization || member_specialization)
2434 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2435 for (; t; t = TREE_CHAIN (t))
2436 if (TREE_PURPOSE (t))
2438 permerror (input_location,
2439 "default argument specified in explicit specialization");
2440 break;
2444 if (specialization || member_specialization || explicit_instantiation)
2446 tree tmpl = NULL_TREE;
2447 tree targs = NULL_TREE;
2449 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2450 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2452 tree fns;
2454 gcc_assert (TREE_CODE (declarator) == IDENTIFIER_NODE);
2455 if (ctype)
2456 fns = dname;
2457 else
2459 /* If there is no class context, the explicit instantiation
2460 must be at namespace scope. */
2461 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2463 /* Find the namespace binding, using the declaration
2464 context. */
2465 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2466 false, true);
2467 if (fns == error_mark_node || !is_overloaded_fn (fns))
2469 error ("%qD is not a template function", dname);
2470 fns = error_mark_node;
2472 else
2474 tree fn = OVL_CURRENT (fns);
2475 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2476 CP_DECL_CONTEXT (fn)))
2477 error ("%qD is not declared in %qD",
2478 decl, current_namespace);
2482 declarator = lookup_template_function (fns, NULL_TREE);
2485 if (declarator == error_mark_node)
2486 return error_mark_node;
2488 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2490 if (!explicit_instantiation)
2491 /* A specialization in class scope. This is invalid,
2492 but the error will already have been flagged by
2493 check_specialization_scope. */
2494 return error_mark_node;
2495 else
2497 /* It's not valid to write an explicit instantiation in
2498 class scope, e.g.:
2500 class C { template void f(); }
2502 This case is caught by the parser. However, on
2503 something like:
2505 template class C { void f(); };
2507 (which is invalid) we can get here. The error will be
2508 issued later. */
2512 return decl;
2514 else if (ctype != NULL_TREE
2515 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
2516 IDENTIFIER_NODE))
2518 /* Find the list of functions in ctype that have the same
2519 name as the declared function. */
2520 tree name = TREE_OPERAND (declarator, 0);
2521 tree fns = NULL_TREE;
2522 int idx;
2524 if (constructor_name_p (name, ctype))
2526 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2528 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2529 : !CLASSTYPE_DESTRUCTORS (ctype))
2531 /* From [temp.expl.spec]:
2533 If such an explicit specialization for the member
2534 of a class template names an implicitly-declared
2535 special member function (clause _special_), the
2536 program is ill-formed.
2538 Similar language is found in [temp.explicit]. */
2539 error ("specialization of implicitly-declared special member function");
2540 return error_mark_node;
2543 name = is_constructor ? ctor_identifier : dtor_identifier;
2546 if (!DECL_CONV_FN_P (decl))
2548 idx = lookup_fnfields_1 (ctype, name);
2549 if (idx >= 0)
2550 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2552 else
2554 vec<tree, va_gc> *methods;
2555 tree ovl;
2557 /* For a type-conversion operator, we cannot do a
2558 name-based lookup. We might be looking for `operator
2559 int' which will be a specialization of `operator T'.
2560 So, we find *all* the conversion operators, and then
2561 select from them. */
2562 fns = NULL_TREE;
2564 methods = CLASSTYPE_METHOD_VEC (ctype);
2565 if (methods)
2566 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2567 methods->iterate (idx, &ovl);
2568 ++idx)
2570 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2571 /* There are no more conversion functions. */
2572 break;
2574 /* Glue all these conversion functions together
2575 with those we already have. */
2576 for (; ovl; ovl = OVL_NEXT (ovl))
2577 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2581 if (fns == NULL_TREE)
2583 error ("no member function %qD declared in %qT", name, ctype);
2584 return error_mark_node;
2586 else
2587 TREE_OPERAND (declarator, 0) = fns;
2590 /* Figure out what exactly is being specialized at this point.
2591 Note that for an explicit instantiation, even one for a
2592 member function, we cannot tell apriori whether the
2593 instantiation is for a member template, or just a member
2594 function of a template class. Even if a member template is
2595 being instantiated, the member template arguments may be
2596 elided if they can be deduced from the rest of the
2597 declaration. */
2598 tmpl = determine_specialization (declarator, decl,
2599 &targs,
2600 member_specialization,
2601 template_count,
2602 tsk);
2604 if (!tmpl || tmpl == error_mark_node)
2605 /* We couldn't figure out what this declaration was
2606 specializing. */
2607 return error_mark_node;
2608 else
2610 tree gen_tmpl = most_general_template (tmpl);
2612 if (explicit_instantiation)
2614 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2615 is done by do_decl_instantiation later. */
2617 int arg_depth = TMPL_ARGS_DEPTH (targs);
2618 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2620 if (arg_depth > parm_depth)
2622 /* If TMPL is not the most general template (for
2623 example, if TMPL is a friend template that is
2624 injected into namespace scope), then there will
2625 be too many levels of TARGS. Remove some of them
2626 here. */
2627 int i;
2628 tree new_targs;
2630 new_targs = make_tree_vec (parm_depth);
2631 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2632 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2633 = TREE_VEC_ELT (targs, i);
2634 targs = new_targs;
2637 return instantiate_template (tmpl, targs, tf_error);
2640 /* If we thought that the DECL was a member function, but it
2641 turns out to be specializing a static member function,
2642 make DECL a static member function as well. */
2643 if (DECL_STATIC_FUNCTION_P (tmpl)
2644 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2645 revert_static_member_fn (decl);
2647 /* If this is a specialization of a member template of a
2648 template class, we want to return the TEMPLATE_DECL, not
2649 the specialization of it. */
2650 if (tsk == tsk_template)
2652 tree result = DECL_TEMPLATE_RESULT (tmpl);
2653 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2654 DECL_INITIAL (result) = NULL_TREE;
2655 if (have_def)
2657 tree parm;
2658 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2659 DECL_SOURCE_LOCATION (result)
2660 = DECL_SOURCE_LOCATION (decl);
2661 /* We want to use the argument list specified in the
2662 definition, not in the original declaration. */
2663 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2664 for (parm = DECL_ARGUMENTS (result); parm;
2665 parm = DECL_CHAIN (parm))
2666 DECL_CONTEXT (parm) = result;
2668 return register_specialization (tmpl, gen_tmpl, targs,
2669 is_friend, 0);
2672 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2673 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2675 /* Inherit default function arguments from the template
2676 DECL is specializing. */
2677 copy_default_args_to_explicit_spec (decl);
2679 /* This specialization has the same protection as the
2680 template it specializes. */
2681 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2682 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2684 /* 7.1.1-1 [dcl.stc]
2686 A storage-class-specifier shall not be specified in an
2687 explicit specialization...
2689 The parser rejects these, so unless action is taken here,
2690 explicit function specializations will always appear with
2691 global linkage.
2693 The action recommended by the C++ CWG in response to C++
2694 defect report 605 is to make the storage class and linkage
2695 of the explicit specialization match the templated function:
2697 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2699 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2701 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2702 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2704 /* This specialization has the same linkage and visibility as
2705 the function template it specializes. */
2706 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2707 if (! TREE_PUBLIC (decl))
2709 DECL_INTERFACE_KNOWN (decl) = 1;
2710 DECL_NOT_REALLY_EXTERN (decl) = 1;
2712 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2713 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2715 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2716 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2720 /* If DECL is a friend declaration, declared using an
2721 unqualified name, the namespace associated with DECL may
2722 have been set incorrectly. For example, in:
2724 template <typename T> void f(T);
2725 namespace N {
2726 struct S { friend void f<int>(int); }
2729 we will have set the DECL_CONTEXT for the friend
2730 declaration to N, rather than to the global namespace. */
2731 if (DECL_NAMESPACE_SCOPE_P (decl))
2732 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2734 if (is_friend && !have_def)
2735 /* This is not really a declaration of a specialization.
2736 It's just the name of an instantiation. But, it's not
2737 a request for an instantiation, either. */
2738 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2739 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2740 /* This is indeed a specialization. In case of constructors
2741 and destructors, we need in-charge and not-in-charge
2742 versions in V3 ABI. */
2743 clone_function_decl (decl, /*update_method_vec_p=*/0);
2745 /* Register this specialization so that we can find it
2746 again. */
2747 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2751 return decl;
2754 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2755 parameters. These are represented in the same format used for
2756 DECL_TEMPLATE_PARMS. */
2759 comp_template_parms (const_tree parms1, const_tree parms2)
2761 const_tree p1;
2762 const_tree p2;
2764 if (parms1 == parms2)
2765 return 1;
2767 for (p1 = parms1, p2 = parms2;
2768 p1 != NULL_TREE && p2 != NULL_TREE;
2769 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2771 tree t1 = TREE_VALUE (p1);
2772 tree t2 = TREE_VALUE (p2);
2773 int i;
2775 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2776 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2778 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2779 return 0;
2781 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2783 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2784 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2786 /* If either of the template parameters are invalid, assume
2787 they match for the sake of error recovery. */
2788 if (parm1 == error_mark_node || parm2 == error_mark_node)
2789 return 1;
2791 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2792 return 0;
2794 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2795 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2796 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2797 continue;
2798 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2799 return 0;
2803 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2804 /* One set of parameters has more parameters lists than the
2805 other. */
2806 return 0;
2808 return 1;
2811 /* Determine whether PARM is a parameter pack. */
2813 bool
2814 template_parameter_pack_p (const_tree parm)
2816 /* Determine if we have a non-type template parameter pack. */
2817 if (TREE_CODE (parm) == PARM_DECL)
2818 return (DECL_TEMPLATE_PARM_P (parm)
2819 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2820 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2821 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2823 /* If this is a list of template parameters, we could get a
2824 TYPE_DECL or a TEMPLATE_DECL. */
2825 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2826 parm = TREE_TYPE (parm);
2828 /* Otherwise it must be a type template parameter. */
2829 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2830 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2831 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2834 /* Determine if T is a function parameter pack. */
2836 bool
2837 function_parameter_pack_p (const_tree t)
2839 if (t && TREE_CODE (t) == PARM_DECL)
2840 return FUNCTION_PARAMETER_PACK_P (t);
2841 return false;
2844 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2845 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2847 tree
2848 get_function_template_decl (const_tree primary_func_tmpl_inst)
2850 if (! primary_func_tmpl_inst
2851 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2852 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2853 return NULL;
2855 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2858 /* Return true iff the function parameter PARAM_DECL was expanded
2859 from the function parameter pack PACK. */
2861 bool
2862 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2864 if (DECL_ARTIFICIAL (param_decl)
2865 || !function_parameter_pack_p (pack))
2866 return false;
2868 /* The parameter pack and its pack arguments have the same
2869 DECL_PARM_INDEX. */
2870 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2873 /* Determine whether ARGS describes a variadic template args list,
2874 i.e., one that is terminated by a template argument pack. */
2876 static bool
2877 template_args_variadic_p (tree args)
2879 int nargs;
2880 tree last_parm;
2882 if (args == NULL_TREE)
2883 return false;
2885 args = INNERMOST_TEMPLATE_ARGS (args);
2886 nargs = TREE_VEC_LENGTH (args);
2888 if (nargs == 0)
2889 return false;
2891 last_parm = TREE_VEC_ELT (args, nargs - 1);
2893 return ARGUMENT_PACK_P (last_parm);
2896 /* Generate a new name for the parameter pack name NAME (an
2897 IDENTIFIER_NODE) that incorporates its */
2899 static tree
2900 make_ith_pack_parameter_name (tree name, int i)
2902 /* Munge the name to include the parameter index. */
2903 #define NUMBUF_LEN 128
2904 char numbuf[NUMBUF_LEN];
2905 char* newname;
2906 int newname_len;
2908 snprintf (numbuf, NUMBUF_LEN, "%i", i);
2909 newname_len = IDENTIFIER_LENGTH (name)
2910 + strlen (numbuf) + 2;
2911 newname = (char*)alloca (newname_len);
2912 snprintf (newname, newname_len,
2913 "%s#%i", IDENTIFIER_POINTER (name), i);
2914 return get_identifier (newname);
2917 /* Return true if T is a primary function, class or alias template
2918 instantiation. */
2920 bool
2921 primary_template_instantiation_p (const_tree t)
2923 if (!t)
2924 return false;
2926 if (TREE_CODE (t) == FUNCTION_DECL)
2927 return DECL_LANG_SPECIFIC (t)
2928 && DECL_TEMPLATE_INSTANTIATION (t)
2929 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
2930 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
2931 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
2932 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
2933 else if (alias_template_specialization_p (t))
2934 return true;
2935 return false;
2938 /* Return true if PARM is a template template parameter. */
2940 bool
2941 template_template_parameter_p (const_tree parm)
2943 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
2946 /* Return true iff PARM is a DECL representing a type template
2947 parameter. */
2949 bool
2950 template_type_parameter_p (const_tree parm)
2952 return (parm
2953 && (TREE_CODE (parm) == TYPE_DECL
2954 || TREE_CODE (parm) == TEMPLATE_DECL)
2955 && DECL_TEMPLATE_PARM_P (parm));
2958 /* Return the template parameters of T if T is a
2959 primary template instantiation, NULL otherwise. */
2961 tree
2962 get_primary_template_innermost_parameters (const_tree t)
2964 tree parms = NULL, template_info = NULL;
2966 if ((template_info = get_template_info (t))
2967 && primary_template_instantiation_p (t))
2968 parms = INNERMOST_TEMPLATE_PARMS
2969 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
2971 return parms;
2974 /* Return the template parameters of the LEVELth level from the full list
2975 of template parameters PARMS. */
2977 tree
2978 get_template_parms_at_level (tree parms, int level)
2980 tree p;
2981 if (!parms
2982 || TREE_CODE (parms) != TREE_LIST
2983 || level > TMPL_PARMS_DEPTH (parms))
2984 return NULL_TREE;
2986 for (p = parms; p; p = TREE_CHAIN (p))
2987 if (TMPL_PARMS_DEPTH (p) == level)
2988 return p;
2990 return NULL_TREE;
2993 /* Returns the template arguments of T if T is a template instantiation,
2994 NULL otherwise. */
2996 tree
2997 get_template_innermost_arguments (const_tree t)
2999 tree args = NULL, template_info = NULL;
3001 if ((template_info = get_template_info (t))
3002 && TI_ARGS (template_info))
3003 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3005 return args;
3008 /* Return the argument pack elements of T if T is a template argument pack,
3009 NULL otherwise. */
3011 tree
3012 get_template_argument_pack_elems (const_tree t)
3014 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3015 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3016 return NULL;
3018 return ARGUMENT_PACK_ARGS (t);
3021 /* Structure used to track the progress of find_parameter_packs_r. */
3022 struct find_parameter_pack_data
3024 /* TREE_LIST that will contain all of the parameter packs found by
3025 the traversal. */
3026 tree* parameter_packs;
3028 /* Set of AST nodes that have been visited by the traversal. */
3029 struct pointer_set_t *visited;
3032 /* Identifies all of the argument packs that occur in a template
3033 argument and appends them to the TREE_LIST inside DATA, which is a
3034 find_parameter_pack_data structure. This is a subroutine of
3035 make_pack_expansion and uses_parameter_packs. */
3036 static tree
3037 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3039 tree t = *tp;
3040 struct find_parameter_pack_data* ppd =
3041 (struct find_parameter_pack_data*)data;
3042 bool parameter_pack_p = false;
3044 /* Handle type aliases/typedefs. */
3045 if (TYPE_P (t)
3046 && TYPE_NAME (t)
3047 && TREE_CODE (TYPE_NAME (t)) == TYPE_DECL
3048 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3050 if (TYPE_TEMPLATE_INFO (t))
3051 cp_walk_tree (&TYPE_TI_ARGS (t),
3052 &find_parameter_packs_r,
3053 ppd, ppd->visited);
3054 *walk_subtrees = 0;
3055 return NULL_TREE;
3058 /* Identify whether this is a parameter pack or not. */
3059 switch (TREE_CODE (t))
3061 case TEMPLATE_PARM_INDEX:
3062 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3063 parameter_pack_p = true;
3064 break;
3066 case TEMPLATE_TYPE_PARM:
3067 t = TYPE_MAIN_VARIANT (t);
3068 case TEMPLATE_TEMPLATE_PARM:
3069 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3070 parameter_pack_p = true;
3071 break;
3073 case PARM_DECL:
3074 if (FUNCTION_PARAMETER_PACK_P (t))
3076 /* We don't want to walk into the type of a PARM_DECL,
3077 because we don't want to see the type parameter pack. */
3078 *walk_subtrees = 0;
3079 parameter_pack_p = true;
3081 break;
3083 case BASES:
3084 parameter_pack_p = true;
3085 break;
3086 default:
3087 /* Not a parameter pack. */
3088 break;
3091 if (parameter_pack_p)
3093 /* Add this parameter pack to the list. */
3094 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3097 if (TYPE_P (t))
3098 cp_walk_tree (&TYPE_CONTEXT (t),
3099 &find_parameter_packs_r, ppd, ppd->visited);
3101 /* This switch statement will return immediately if we don't find a
3102 parameter pack. */
3103 switch (TREE_CODE (t))
3105 case TEMPLATE_PARM_INDEX:
3106 return NULL_TREE;
3108 case BOUND_TEMPLATE_TEMPLATE_PARM:
3109 /* Check the template itself. */
3110 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3111 &find_parameter_packs_r, ppd, ppd->visited);
3112 /* Check the template arguments. */
3113 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3114 ppd->visited);
3115 *walk_subtrees = 0;
3116 return NULL_TREE;
3118 case TEMPLATE_TYPE_PARM:
3119 case TEMPLATE_TEMPLATE_PARM:
3120 return NULL_TREE;
3122 case PARM_DECL:
3123 return NULL_TREE;
3125 case RECORD_TYPE:
3126 if (TYPE_PTRMEMFUNC_P (t))
3127 return NULL_TREE;
3128 /* Fall through. */
3130 case UNION_TYPE:
3131 case ENUMERAL_TYPE:
3132 if (TYPE_TEMPLATE_INFO (t))
3133 cp_walk_tree (&TI_ARGS (TYPE_TEMPLATE_INFO (t)),
3134 &find_parameter_packs_r, ppd, ppd->visited);
3136 *walk_subtrees = 0;
3137 return NULL_TREE;
3139 case CONSTRUCTOR:
3140 case TEMPLATE_DECL:
3141 cp_walk_tree (&TREE_TYPE (t),
3142 &find_parameter_packs_r, ppd, ppd->visited);
3143 return NULL_TREE;
3145 case TYPENAME_TYPE:
3146 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3147 ppd, ppd->visited);
3148 *walk_subtrees = 0;
3149 return NULL_TREE;
3151 case TYPE_PACK_EXPANSION:
3152 case EXPR_PACK_EXPANSION:
3153 *walk_subtrees = 0;
3154 return NULL_TREE;
3156 case INTEGER_TYPE:
3157 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3158 ppd, ppd->visited);
3159 *walk_subtrees = 0;
3160 return NULL_TREE;
3162 case IDENTIFIER_NODE:
3163 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3164 ppd->visited);
3165 *walk_subtrees = 0;
3166 return NULL_TREE;
3168 default:
3169 return NULL_TREE;
3172 return NULL_TREE;
3175 /* Determines if the expression or type T uses any parameter packs. */
3176 bool
3177 uses_parameter_packs (tree t)
3179 tree parameter_packs = NULL_TREE;
3180 struct find_parameter_pack_data ppd;
3181 ppd.parameter_packs = &parameter_packs;
3182 ppd.visited = pointer_set_create ();
3183 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3184 pointer_set_destroy (ppd.visited);
3185 return parameter_packs != NULL_TREE;
3188 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3189 representation a base-class initializer into a parameter pack
3190 expansion. If all goes well, the resulting node will be an
3191 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3192 respectively. */
3193 tree
3194 make_pack_expansion (tree arg)
3196 tree result;
3197 tree parameter_packs = NULL_TREE;
3198 bool for_types = false;
3199 struct find_parameter_pack_data ppd;
3201 if (!arg || arg == error_mark_node)
3202 return arg;
3204 if (TREE_CODE (arg) == TREE_LIST)
3206 /* The only time we will see a TREE_LIST here is for a base
3207 class initializer. In this case, the TREE_PURPOSE will be a
3208 _TYPE node (representing the base class expansion we're
3209 initializing) and the TREE_VALUE will be a TREE_LIST
3210 containing the initialization arguments.
3212 The resulting expansion looks somewhat different from most
3213 expansions. Rather than returning just one _EXPANSION, we
3214 return a TREE_LIST whose TREE_PURPOSE is a
3215 TYPE_PACK_EXPANSION containing the bases that will be
3216 initialized. The TREE_VALUE will be identical to the
3217 original TREE_VALUE, which is a list of arguments that will
3218 be passed to each base. We do not introduce any new pack
3219 expansion nodes into the TREE_VALUE (although it is possible
3220 that some already exist), because the TREE_PURPOSE and
3221 TREE_VALUE all need to be expanded together with the same
3222 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3223 resulting TREE_PURPOSE will mention the parameter packs in
3224 both the bases and the arguments to the bases. */
3225 tree purpose;
3226 tree value;
3227 tree parameter_packs = NULL_TREE;
3229 /* Determine which parameter packs will be used by the base
3230 class expansion. */
3231 ppd.visited = pointer_set_create ();
3232 ppd.parameter_packs = &parameter_packs;
3233 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3234 &ppd, ppd.visited);
3236 if (parameter_packs == NULL_TREE)
3238 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3239 pointer_set_destroy (ppd.visited);
3240 return error_mark_node;
3243 if (TREE_VALUE (arg) != void_type_node)
3245 /* Collect the sets of parameter packs used in each of the
3246 initialization arguments. */
3247 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3249 /* Determine which parameter packs will be expanded in this
3250 argument. */
3251 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3252 &ppd, ppd.visited);
3256 pointer_set_destroy (ppd.visited);
3258 /* Create the pack expansion type for the base type. */
3259 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3260 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3261 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3263 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3264 they will rarely be compared to anything. */
3265 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3267 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3270 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3271 for_types = true;
3273 /* Build the PACK_EXPANSION_* node. */
3274 result = for_types
3275 ? cxx_make_type (TYPE_PACK_EXPANSION)
3276 : make_node (EXPR_PACK_EXPANSION);
3277 SET_PACK_EXPANSION_PATTERN (result, arg);
3278 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3280 /* Propagate type and const-expression information. */
3281 TREE_TYPE (result) = TREE_TYPE (arg);
3282 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3284 else
3285 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3286 they will rarely be compared to anything. */
3287 SET_TYPE_STRUCTURAL_EQUALITY (result);
3289 /* Determine which parameter packs will be expanded. */
3290 ppd.parameter_packs = &parameter_packs;
3291 ppd.visited = pointer_set_create ();
3292 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3293 pointer_set_destroy (ppd.visited);
3295 /* Make sure we found some parameter packs. */
3296 if (parameter_packs == NULL_TREE)
3298 if (TYPE_P (arg))
3299 error ("expansion pattern %<%T%> contains no argument packs", arg);
3300 else
3301 error ("expansion pattern %<%E%> contains no argument packs", arg);
3302 return error_mark_node;
3304 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3306 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3308 return result;
3311 /* Checks T for any "bare" parameter packs, which have not yet been
3312 expanded, and issues an error if any are found. This operation can
3313 only be done on full expressions or types (e.g., an expression
3314 statement, "if" condition, etc.), because we could have expressions like:
3316 foo(f(g(h(args)))...)
3318 where "args" is a parameter pack. check_for_bare_parameter_packs
3319 should not be called for the subexpressions args, h(args),
3320 g(h(args)), or f(g(h(args))), because we would produce erroneous
3321 error messages.
3323 Returns TRUE and emits an error if there were bare parameter packs,
3324 returns FALSE otherwise. */
3325 bool
3326 check_for_bare_parameter_packs (tree t)
3328 tree parameter_packs = NULL_TREE;
3329 struct find_parameter_pack_data ppd;
3331 if (!processing_template_decl || !t || t == error_mark_node)
3332 return false;
3334 if (TREE_CODE (t) == TYPE_DECL)
3335 t = TREE_TYPE (t);
3337 ppd.parameter_packs = &parameter_packs;
3338 ppd.visited = pointer_set_create ();
3339 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3340 pointer_set_destroy (ppd.visited);
3342 if (parameter_packs)
3344 error ("parameter packs not expanded with %<...%>:");
3345 while (parameter_packs)
3347 tree pack = TREE_VALUE (parameter_packs);
3348 tree name = NULL_TREE;
3350 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3351 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3352 name = TYPE_NAME (pack);
3353 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3354 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3355 else
3356 name = DECL_NAME (pack);
3358 if (name)
3359 inform (input_location, " %qD", name);
3360 else
3361 inform (input_location, " <anonymous>");
3363 parameter_packs = TREE_CHAIN (parameter_packs);
3366 return true;
3369 return false;
3372 /* Expand any parameter packs that occur in the template arguments in
3373 ARGS. */
3374 tree
3375 expand_template_argument_pack (tree args)
3377 tree result_args = NULL_TREE;
3378 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3379 int num_result_args = -1;
3380 int non_default_args_count = -1;
3382 /* First, determine if we need to expand anything, and the number of
3383 slots we'll need. */
3384 for (in_arg = 0; in_arg < nargs; ++in_arg)
3386 tree arg = TREE_VEC_ELT (args, in_arg);
3387 if (arg == NULL_TREE)
3388 return args;
3389 if (ARGUMENT_PACK_P (arg))
3391 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3392 if (num_result_args < 0)
3393 num_result_args = in_arg + num_packed;
3394 else
3395 num_result_args += num_packed;
3397 else
3399 if (num_result_args >= 0)
3400 num_result_args++;
3404 /* If no expansion is necessary, we're done. */
3405 if (num_result_args < 0)
3406 return args;
3408 /* Expand arguments. */
3409 result_args = make_tree_vec (num_result_args);
3410 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3411 non_default_args_count =
3412 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3413 for (in_arg = 0; in_arg < nargs; ++in_arg)
3415 tree arg = TREE_VEC_ELT (args, in_arg);
3416 if (ARGUMENT_PACK_P (arg))
3418 tree packed = ARGUMENT_PACK_ARGS (arg);
3419 int i, num_packed = TREE_VEC_LENGTH (packed);
3420 for (i = 0; i < num_packed; ++i, ++out_arg)
3421 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3422 if (non_default_args_count > 0)
3423 non_default_args_count += num_packed;
3425 else
3427 TREE_VEC_ELT (result_args, out_arg) = arg;
3428 ++out_arg;
3431 if (non_default_args_count >= 0)
3432 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3433 return result_args;
3436 /* Checks if DECL shadows a template parameter.
3438 [temp.local]: A template-parameter shall not be redeclared within its
3439 scope (including nested scopes).
3441 Emits an error and returns TRUE if the DECL shadows a parameter,
3442 returns FALSE otherwise. */
3444 bool
3445 check_template_shadow (tree decl)
3447 tree olddecl;
3449 /* If we're not in a template, we can't possibly shadow a template
3450 parameter. */
3451 if (!current_template_parms)
3452 return true;
3454 /* Figure out what we're shadowing. */
3455 if (TREE_CODE (decl) == OVERLOAD)
3456 decl = OVL_CURRENT (decl);
3457 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3459 /* If there's no previous binding for this name, we're not shadowing
3460 anything, let alone a template parameter. */
3461 if (!olddecl)
3462 return true;
3464 /* If we're not shadowing a template parameter, we're done. Note
3465 that OLDDECL might be an OVERLOAD (or perhaps even an
3466 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3467 node. */
3468 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3469 return true;
3471 /* We check for decl != olddecl to avoid bogus errors for using a
3472 name inside a class. We check TPFI to avoid duplicate errors for
3473 inline member templates. */
3474 if (decl == olddecl
3475 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
3476 return true;
3478 error ("declaration of %q+#D", decl);
3479 error (" shadows template parm %q+#D", olddecl);
3480 return false;
3483 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3484 ORIG_LEVEL, DECL, and TYPE. */
3486 static tree
3487 build_template_parm_index (int index,
3488 int level,
3489 int orig_level,
3490 tree decl,
3491 tree type)
3493 tree t = make_node (TEMPLATE_PARM_INDEX);
3494 TEMPLATE_PARM_IDX (t) = index;
3495 TEMPLATE_PARM_LEVEL (t) = level;
3496 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3497 TEMPLATE_PARM_DECL (t) = decl;
3498 TREE_TYPE (t) = type;
3499 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3500 TREE_READONLY (t) = TREE_READONLY (decl);
3502 return t;
3505 /* Find the canonical type parameter for the given template type
3506 parameter. Returns the canonical type parameter, which may be TYPE
3507 if no such parameter existed. */
3509 static tree
3510 canonical_type_parameter (tree type)
3512 tree list;
3513 int idx = TEMPLATE_TYPE_IDX (type);
3514 if (!canonical_template_parms)
3515 vec_alloc (canonical_template_parms, idx+1);
3517 while (canonical_template_parms->length () <= (unsigned)idx)
3518 vec_safe_push (canonical_template_parms, NULL_TREE);
3520 list = (*canonical_template_parms)[idx];
3521 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3522 list = TREE_CHAIN (list);
3524 if (list)
3525 return TREE_VALUE (list);
3526 else
3528 (*canonical_template_parms)[idx]
3529 = tree_cons (NULL_TREE, type,
3530 (*canonical_template_parms)[idx]);
3531 return type;
3535 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3536 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3537 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3538 new one is created. */
3540 static tree
3541 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3542 tsubst_flags_t complain)
3544 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3545 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3546 != TEMPLATE_PARM_LEVEL (index) - levels)
3547 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3549 tree orig_decl = TEMPLATE_PARM_DECL (index);
3550 tree decl, t;
3552 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3553 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3554 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3555 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3556 DECL_ARTIFICIAL (decl) = 1;
3557 SET_DECL_TEMPLATE_PARM_P (decl);
3559 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3560 TEMPLATE_PARM_LEVEL (index) - levels,
3561 TEMPLATE_PARM_ORIG_LEVEL (index),
3562 decl, type);
3563 TEMPLATE_PARM_DESCENDANTS (index) = t;
3564 TEMPLATE_PARM_PARAMETER_PACK (t)
3565 = TEMPLATE_PARM_PARAMETER_PACK (index);
3567 /* Template template parameters need this. */
3568 if (TREE_CODE (decl) == TEMPLATE_DECL)
3569 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3570 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3571 args, complain);
3574 return TEMPLATE_PARM_DESCENDANTS (index);
3577 /* Process information from new template parameter PARM and append it
3578 to the LIST being built. This new parameter is a non-type
3579 parameter iff IS_NON_TYPE is true. This new parameter is a
3580 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3581 is in PARM_LOC. NUM_TEMPLATE_PARMS is the size of the template
3582 parameter list PARM belongs to. This is used used to create a
3583 proper canonical type for the type of PARM that is to be created,
3584 iff PARM is a type. If the size is not known, this parameter shall
3585 be set to 0. */
3587 tree
3588 process_template_parm (tree list, location_t parm_loc, tree parm,
3589 bool is_non_type, bool is_parameter_pack)
3591 tree decl = 0;
3592 tree defval;
3593 tree err_parm_list;
3594 int idx = 0;
3596 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3597 defval = TREE_PURPOSE (parm);
3599 if (list)
3601 tree p = tree_last (list);
3603 if (p && TREE_VALUE (p) != error_mark_node)
3605 p = TREE_VALUE (p);
3606 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3607 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3608 else
3609 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3612 ++idx;
3614 else
3615 idx = 0;
3617 if (is_non_type)
3619 parm = TREE_VALUE (parm);
3621 SET_DECL_TEMPLATE_PARM_P (parm);
3623 if (TREE_TYPE (parm) == error_mark_node)
3625 err_parm_list = build_tree_list (defval, parm);
3626 TREE_VALUE (err_parm_list) = error_mark_node;
3627 return chainon (list, err_parm_list);
3629 else
3631 /* [temp.param]
3633 The top-level cv-qualifiers on the template-parameter are
3634 ignored when determining its type. */
3635 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3636 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3638 err_parm_list = build_tree_list (defval, parm);
3639 TREE_VALUE (err_parm_list) = error_mark_node;
3640 return chainon (list, err_parm_list);
3643 if (uses_parameter_packs (TREE_TYPE (parm)) && !is_parameter_pack)
3645 /* This template parameter is not a parameter pack, but it
3646 should be. Complain about "bare" parameter packs. */
3647 check_for_bare_parameter_packs (TREE_TYPE (parm));
3649 /* Recover by calling this a parameter pack. */
3650 is_parameter_pack = true;
3654 /* A template parameter is not modifiable. */
3655 TREE_CONSTANT (parm) = 1;
3656 TREE_READONLY (parm) = 1;
3657 decl = build_decl (parm_loc,
3658 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3659 TREE_CONSTANT (decl) = 1;
3660 TREE_READONLY (decl) = 1;
3661 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3662 = build_template_parm_index (idx, processing_template_decl,
3663 processing_template_decl,
3664 decl, TREE_TYPE (parm));
3666 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3667 = is_parameter_pack;
3669 else
3671 tree t;
3672 parm = TREE_VALUE (TREE_VALUE (parm));
3674 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3676 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3677 /* This is for distinguishing between real templates and template
3678 template parameters */
3679 TREE_TYPE (parm) = t;
3680 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3681 decl = parm;
3683 else
3685 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3686 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3687 decl = build_decl (parm_loc,
3688 TYPE_DECL, parm, t);
3691 TYPE_NAME (t) = decl;
3692 TYPE_STUB_DECL (t) = decl;
3693 parm = decl;
3694 TEMPLATE_TYPE_PARM_INDEX (t)
3695 = build_template_parm_index (idx, processing_template_decl,
3696 processing_template_decl,
3697 decl, TREE_TYPE (parm));
3698 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3699 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3701 DECL_ARTIFICIAL (decl) = 1;
3702 SET_DECL_TEMPLATE_PARM_P (decl);
3703 pushdecl (decl);
3704 parm = build_tree_list (defval, parm);
3705 return chainon (list, parm);
3708 /* The end of a template parameter list has been reached. Process the
3709 tree list into a parameter vector, converting each parameter into a more
3710 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3711 as PARM_DECLs. */
3713 tree
3714 end_template_parm_list (tree parms)
3716 int nparms;
3717 tree parm, next;
3718 tree saved_parmlist = make_tree_vec (list_length (parms));
3720 current_template_parms
3721 = tree_cons (size_int (processing_template_decl),
3722 saved_parmlist, current_template_parms);
3724 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3726 next = TREE_CHAIN (parm);
3727 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3728 TREE_CHAIN (parm) = NULL_TREE;
3731 --processing_template_parmlist;
3733 return saved_parmlist;
3736 /* end_template_decl is called after a template declaration is seen. */
3738 void
3739 end_template_decl (void)
3741 reset_specialization ();
3743 if (! processing_template_decl)
3744 return;
3746 /* This matches the pushlevel in begin_template_parm_list. */
3747 finish_scope ();
3749 --processing_template_decl;
3750 current_template_parms = TREE_CHAIN (current_template_parms);
3753 /* Takes a TREE_LIST representing a template parameter and convert it
3754 into an argument suitable to be passed to the type substitution
3755 functions. Note that If the TREE_LIST contains an error_mark
3756 node, the returned argument is error_mark_node. */
3758 static tree
3759 template_parm_to_arg (tree t)
3762 if (t == NULL_TREE
3763 || TREE_CODE (t) != TREE_LIST)
3764 return t;
3766 if (error_operand_p (TREE_VALUE (t)))
3767 return error_mark_node;
3769 t = TREE_VALUE (t);
3771 if (TREE_CODE (t) == TYPE_DECL
3772 || TREE_CODE (t) == TEMPLATE_DECL)
3774 t = TREE_TYPE (t);
3776 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3778 /* Turn this argument into a TYPE_ARGUMENT_PACK
3779 with a single element, which expands T. */
3780 tree vec = make_tree_vec (1);
3781 #ifdef ENABLE_CHECKING
3782 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3783 (vec, TREE_VEC_LENGTH (vec));
3784 #endif
3785 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3787 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3788 SET_ARGUMENT_PACK_ARGS (t, vec);
3791 else
3793 t = DECL_INITIAL (t);
3795 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3797 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3798 with a single element, which expands T. */
3799 tree vec = make_tree_vec (1);
3800 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3801 #ifdef ENABLE_CHECKING
3802 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3803 (vec, TREE_VEC_LENGTH (vec));
3804 #endif
3805 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3807 t = make_node (NONTYPE_ARGUMENT_PACK);
3808 SET_ARGUMENT_PACK_ARGS (t, vec);
3809 TREE_TYPE (t) = type;
3812 return t;
3815 /* This function returns TRUE if PARM_PACK is a template parameter
3816 pack and if ARG_PACK is what template_parm_to_arg returned when
3817 passed PARM_PACK. */
3819 static bool
3820 arg_from_parm_pack_p (tree arg_pack, tree parm_pack)
3822 /* For clarity in the comments below let's use the representation
3823 argument_pack<elements>' to denote an argument pack and its
3824 elements.
3826 In the 'if' block below, we want to detect cases where
3827 ARG_PACK is argument_pack<PARM_PACK...>. I.e, we want to
3828 check if ARG_PACK is an argument pack which sole element is
3829 the expansion of PARM_PACK. That argument pack is typically
3830 created by template_parm_to_arg when passed a parameter
3831 pack. */
3833 if (arg_pack
3834 && TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack)) == 1
3835 && PACK_EXPANSION_P (TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack), 0)))
3837 tree expansion = TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack), 0);
3838 tree pattern = PACK_EXPANSION_PATTERN (expansion);
3839 if ((TYPE_P (pattern) && same_type_p (pattern, parm_pack))
3840 || (!TYPE_P (pattern) && cp_tree_equal (parm_pack, pattern)))
3841 /* The argument pack that the parameter maps to is just an
3842 expansion of the parameter itself, such as one would
3843 find in the implicit typedef of a class inside the
3844 class itself. Consider this parameter "unsubstituted",
3845 so that we will maintain the outer pack expansion. */
3846 return true;
3848 return false;
3851 /* Given a set of template parameters, return them as a set of template
3852 arguments. The template parameters are represented as a TREE_VEC, in
3853 the form documented in cp-tree.h for template arguments. */
3855 static tree
3856 template_parms_to_args (tree parms)
3858 tree header;
3859 tree args = NULL_TREE;
3860 int length = TMPL_PARMS_DEPTH (parms);
3861 int l = length;
3863 /* If there is only one level of template parameters, we do not
3864 create a TREE_VEC of TREE_VECs. Instead, we return a single
3865 TREE_VEC containing the arguments. */
3866 if (length > 1)
3867 args = make_tree_vec (length);
3869 for (header = parms; header; header = TREE_CHAIN (header))
3871 tree a = copy_node (TREE_VALUE (header));
3872 int i;
3874 TREE_TYPE (a) = NULL_TREE;
3875 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3876 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3878 #ifdef ENABLE_CHECKING
3879 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3880 #endif
3882 if (length > 1)
3883 TREE_VEC_ELT (args, --l) = a;
3884 else
3885 args = a;
3888 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3889 /* This can happen for template parms of a template template
3890 parameter, e.g:
3892 template<template<class T, class U> class TT> struct S;
3894 Consider the level of the parms of TT; T and U both have
3895 level 2; TT has no template parm of level 1. So in this case
3896 the first element of full_template_args is NULL_TREE. If we
3897 leave it like this TMPL_ARG_DEPTH on args returns 1 instead
3898 of 2. This will make tsubst wrongly consider that T and U
3899 have level 1. Instead, let's create a dummy vector as the
3900 first element of full_template_args so that TMPL_ARG_DEPTH
3901 returns the correct depth for args. */
3902 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3903 return args;
3906 /* Within the declaration of a template, return the currently active
3907 template parameters as an argument TREE_VEC. */
3909 static tree
3910 current_template_args (void)
3912 return template_parms_to_args (current_template_parms);
3915 /* Update the declared TYPE by doing any lookups which were thought to be
3916 dependent, but are not now that we know the SCOPE of the declarator. */
3918 tree
3919 maybe_update_decl_type (tree orig_type, tree scope)
3921 tree type = orig_type;
3923 if (type == NULL_TREE)
3924 return type;
3926 if (TREE_CODE (orig_type) == TYPE_DECL)
3927 type = TREE_TYPE (type);
3929 if (scope && TYPE_P (scope) && dependent_type_p (scope)
3930 && dependent_type_p (type)
3931 /* Don't bother building up the args in this case. */
3932 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
3934 /* tsubst in the args corresponding to the template parameters,
3935 including auto if present. Most things will be unchanged, but
3936 make_typename_type and tsubst_qualified_id will resolve
3937 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
3938 tree args = current_template_args ();
3939 tree auto_node = type_uses_auto (type);
3940 tree pushed;
3941 if (auto_node)
3943 tree auto_vec = make_tree_vec (1);
3944 TREE_VEC_ELT (auto_vec, 0) = auto_node;
3945 args = add_to_template_args (args, auto_vec);
3947 pushed = push_scope (scope);
3948 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
3949 if (pushed)
3950 pop_scope (scope);
3953 if (type == error_mark_node)
3954 return orig_type;
3956 if (TREE_CODE (orig_type) == TYPE_DECL)
3958 if (same_type_p (type, TREE_TYPE (orig_type)))
3959 type = orig_type;
3960 else
3961 type = TYPE_NAME (type);
3963 return type;
3966 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
3967 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
3968 a member template. Used by push_template_decl below. */
3970 static tree
3971 build_template_decl (tree decl, tree parms, bool member_template_p)
3973 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
3974 DECL_TEMPLATE_PARMS (tmpl) = parms;
3975 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
3976 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3977 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
3979 return tmpl;
3982 struct template_parm_data
3984 /* The level of the template parameters we are currently
3985 processing. */
3986 int level;
3988 /* The index of the specialization argument we are currently
3989 processing. */
3990 int current_arg;
3992 /* An array whose size is the number of template parameters. The
3993 elements are nonzero if the parameter has been used in any one
3994 of the arguments processed so far. */
3995 int* parms;
3997 /* An array whose size is the number of template arguments. The
3998 elements are nonzero if the argument makes use of template
3999 parameters of this level. */
4000 int* arg_uses_template_parms;
4003 /* Subroutine of push_template_decl used to see if each template
4004 parameter in a partial specialization is used in the explicit
4005 argument list. If T is of the LEVEL given in DATA (which is
4006 treated as a template_parm_data*), then DATA->PARMS is marked
4007 appropriately. */
4009 static int
4010 mark_template_parm (tree t, void* data)
4012 int level;
4013 int idx;
4014 struct template_parm_data* tpd = (struct template_parm_data*) data;
4016 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4018 level = TEMPLATE_PARM_LEVEL (t);
4019 idx = TEMPLATE_PARM_IDX (t);
4021 else
4023 level = TEMPLATE_TYPE_LEVEL (t);
4024 idx = TEMPLATE_TYPE_IDX (t);
4027 if (level == tpd->level)
4029 tpd->parms[idx] = 1;
4030 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4033 /* Return zero so that for_each_template_parm will continue the
4034 traversal of the tree; we want to mark *every* template parm. */
4035 return 0;
4038 /* Process the partial specialization DECL. */
4040 static tree
4041 process_partial_specialization (tree decl)
4043 tree type = TREE_TYPE (decl);
4044 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
4045 tree specargs = CLASSTYPE_TI_ARGS (type);
4046 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4047 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4048 tree inner_parms;
4049 tree inst;
4050 int nargs = TREE_VEC_LENGTH (inner_args);
4051 int ntparms;
4052 int i;
4053 bool did_error_intro = false;
4054 struct template_parm_data tpd;
4055 struct template_parm_data tpd2;
4057 gcc_assert (current_template_parms);
4059 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4060 ntparms = TREE_VEC_LENGTH (inner_parms);
4062 /* We check that each of the template parameters given in the
4063 partial specialization is used in the argument list to the
4064 specialization. For example:
4066 template <class T> struct S;
4067 template <class T> struct S<T*>;
4069 The second declaration is OK because `T*' uses the template
4070 parameter T, whereas
4072 template <class T> struct S<int>;
4074 is no good. Even trickier is:
4076 template <class T>
4077 struct S1
4079 template <class U>
4080 struct S2;
4081 template <class U>
4082 struct S2<T>;
4085 The S2<T> declaration is actually invalid; it is a
4086 full-specialization. Of course,
4088 template <class U>
4089 struct S2<T (*)(U)>;
4091 or some such would have been OK. */
4092 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4093 tpd.parms = XALLOCAVEC (int, ntparms);
4094 memset (tpd.parms, 0, sizeof (int) * ntparms);
4096 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4097 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4098 for (i = 0; i < nargs; ++i)
4100 tpd.current_arg = i;
4101 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4102 &mark_template_parm,
4103 &tpd,
4104 NULL,
4105 /*include_nondeduced_p=*/false);
4107 for (i = 0; i < ntparms; ++i)
4108 if (tpd.parms[i] == 0)
4110 /* One of the template parms was not used in the
4111 specialization. */
4112 if (!did_error_intro)
4114 error ("template parameters not used in partial specialization:");
4115 did_error_intro = true;
4118 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4121 if (did_error_intro)
4122 return error_mark_node;
4124 /* [temp.class.spec]
4126 The argument list of the specialization shall not be identical to
4127 the implicit argument list of the primary template. */
4128 if (comp_template_args
4129 (inner_args,
4130 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
4131 (maintmpl)))))
4132 error ("partial specialization %qT does not specialize any template arguments", type);
4134 /* A partial specialization that replaces multiple parameters of the
4135 primary template with a pack expansion is less specialized for those
4136 parameters. */
4137 if (nargs < DECL_NTPARMS (maintmpl))
4139 error ("partial specialization is not more specialized than the "
4140 "primary template because it replaces multiple parameters "
4141 "with a pack expansion");
4142 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4143 return decl;
4146 /* [temp.class.spec]
4148 A partially specialized non-type argument expression shall not
4149 involve template parameters of the partial specialization except
4150 when the argument expression is a simple identifier.
4152 The type of a template parameter corresponding to a specialized
4153 non-type argument shall not be dependent on a parameter of the
4154 specialization.
4156 Also, we verify that pack expansions only occur at the
4157 end of the argument list. */
4158 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4159 tpd2.parms = 0;
4160 for (i = 0; i < nargs; ++i)
4162 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4163 tree arg = TREE_VEC_ELT (inner_args, i);
4164 tree packed_args = NULL_TREE;
4165 int j, len = 1;
4167 if (ARGUMENT_PACK_P (arg))
4169 /* Extract the arguments from the argument pack. We'll be
4170 iterating over these in the following loop. */
4171 packed_args = ARGUMENT_PACK_ARGS (arg);
4172 len = TREE_VEC_LENGTH (packed_args);
4175 for (j = 0; j < len; j++)
4177 if (packed_args)
4178 /* Get the Jth argument in the parameter pack. */
4179 arg = TREE_VEC_ELT (packed_args, j);
4181 if (PACK_EXPANSION_P (arg))
4183 /* Pack expansions must come at the end of the
4184 argument list. */
4185 if ((packed_args && j < len - 1)
4186 || (!packed_args && i < nargs - 1))
4188 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4189 error ("parameter pack argument %qE must be at the "
4190 "end of the template argument list", arg);
4191 else
4192 error ("parameter pack argument %qT must be at the "
4193 "end of the template argument list", arg);
4197 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4198 /* We only care about the pattern. */
4199 arg = PACK_EXPANSION_PATTERN (arg);
4201 if (/* These first two lines are the `non-type' bit. */
4202 !TYPE_P (arg)
4203 && TREE_CODE (arg) != TEMPLATE_DECL
4204 /* This next line is the `argument expression is not just a
4205 simple identifier' condition and also the `specialized
4206 non-type argument' bit. */
4207 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
4209 if ((!packed_args && tpd.arg_uses_template_parms[i])
4210 || (packed_args && uses_template_parms (arg)))
4211 error ("template argument %qE involves template parameter(s)",
4212 arg);
4213 else
4215 /* Look at the corresponding template parameter,
4216 marking which template parameters its type depends
4217 upon. */
4218 tree type = TREE_TYPE (parm);
4220 if (!tpd2.parms)
4222 /* We haven't yet initialized TPD2. Do so now. */
4223 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4224 /* The number of parameters here is the number in the
4225 main template, which, as checked in the assertion
4226 above, is NARGS. */
4227 tpd2.parms = XALLOCAVEC (int, nargs);
4228 tpd2.level =
4229 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4232 /* Mark the template parameters. But this time, we're
4233 looking for the template parameters of the main
4234 template, not in the specialization. */
4235 tpd2.current_arg = i;
4236 tpd2.arg_uses_template_parms[i] = 0;
4237 memset (tpd2.parms, 0, sizeof (int) * nargs);
4238 for_each_template_parm (type,
4239 &mark_template_parm,
4240 &tpd2,
4241 NULL,
4242 /*include_nondeduced_p=*/false);
4244 if (tpd2.arg_uses_template_parms [i])
4246 /* The type depended on some template parameters.
4247 If they are fully specialized in the
4248 specialization, that's OK. */
4249 int j;
4250 int count = 0;
4251 for (j = 0; j < nargs; ++j)
4252 if (tpd2.parms[j] != 0
4253 && tpd.arg_uses_template_parms [j])
4254 ++count;
4255 if (count != 0)
4256 error_n (input_location, count,
4257 "type %qT of template argument %qE depends "
4258 "on a template parameter",
4259 "type %qT of template argument %qE depends "
4260 "on template parameters",
4261 type,
4262 arg);
4269 /* We should only get here once. */
4270 gcc_assert (!COMPLETE_TYPE_P (type));
4272 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4273 = tree_cons (specargs, inner_parms,
4274 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4275 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4277 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4278 inst = TREE_CHAIN (inst))
4280 tree inst_type = TREE_VALUE (inst);
4281 if (COMPLETE_TYPE_P (inst_type)
4282 && CLASSTYPE_IMPLICIT_INSTANTIATION (inst_type))
4284 tree spec = most_specialized_class (inst_type, maintmpl, tf_none);
4285 if (spec && TREE_TYPE (spec) == type)
4286 permerror (input_location,
4287 "partial specialization of %qT after instantiation "
4288 "of %qT", type, inst_type);
4292 return decl;
4295 /* Check that a template declaration's use of default arguments and
4296 parameter packs is not invalid. Here, PARMS are the template
4297 parameters. IS_PRIMARY is true if DECL is the thing declared by
4298 a primary template. IS_PARTIAL is true if DECL is a partial
4299 specialization.
4301 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4302 declaration (but not a definition); 1 indicates a declaration, 2
4303 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4304 emitted for extraneous default arguments.
4306 Returns TRUE if there were no errors found, FALSE otherwise. */
4308 bool
4309 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4310 bool is_partial, int is_friend_decl)
4312 const char *msg;
4313 int last_level_to_check;
4314 tree parm_level;
4315 bool no_errors = true;
4317 /* [temp.param]
4319 A default template-argument shall not be specified in a
4320 function template declaration or a function template definition, nor
4321 in the template-parameter-list of the definition of a member of a
4322 class template. */
4324 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
4325 /* You can't have a function template declaration in a local
4326 scope, nor you can you define a member of a class template in a
4327 local scope. */
4328 return true;
4330 if (current_class_type
4331 && !TYPE_BEING_DEFINED (current_class_type)
4332 && DECL_LANG_SPECIFIC (decl)
4333 && DECL_DECLARES_FUNCTION_P (decl)
4334 /* If this is either a friend defined in the scope of the class
4335 or a member function. */
4336 && (DECL_FUNCTION_MEMBER_P (decl)
4337 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4338 : DECL_FRIEND_CONTEXT (decl)
4339 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4340 : false)
4341 /* And, if it was a member function, it really was defined in
4342 the scope of the class. */
4343 && (!DECL_FUNCTION_MEMBER_P (decl)
4344 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4345 /* We already checked these parameters when the template was
4346 declared, so there's no need to do it again now. This function
4347 was defined in class scope, but we're processing it's body now
4348 that the class is complete. */
4349 return true;
4351 /* Core issue 226 (C++0x only): the following only applies to class
4352 templates. */
4353 if (is_primary
4354 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4356 /* [temp.param]
4358 If a template-parameter has a default template-argument, all
4359 subsequent template-parameters shall have a default
4360 template-argument supplied. */
4361 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4363 tree inner_parms = TREE_VALUE (parm_level);
4364 int ntparms = TREE_VEC_LENGTH (inner_parms);
4365 int seen_def_arg_p = 0;
4366 int i;
4368 for (i = 0; i < ntparms; ++i)
4370 tree parm = TREE_VEC_ELT (inner_parms, i);
4372 if (parm == error_mark_node)
4373 continue;
4375 if (TREE_PURPOSE (parm))
4376 seen_def_arg_p = 1;
4377 else if (seen_def_arg_p
4378 && !template_parameter_pack_p (TREE_VALUE (parm)))
4380 error ("no default argument for %qD", TREE_VALUE (parm));
4381 /* For better subsequent error-recovery, we indicate that
4382 there should have been a default argument. */
4383 TREE_PURPOSE (parm) = error_mark_node;
4384 no_errors = false;
4386 else if (!is_partial
4387 && !is_friend_decl
4388 /* Don't complain about an enclosing partial
4389 specialization. */
4390 && parm_level == parms
4391 && TREE_CODE (decl) == TYPE_DECL
4392 && i < ntparms - 1
4393 && template_parameter_pack_p (TREE_VALUE (parm)))
4395 /* A primary class template can only have one
4396 parameter pack, at the end of the template
4397 parameter list. */
4399 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4400 error ("parameter pack %qE must be at the end of the"
4401 " template parameter list", TREE_VALUE (parm));
4402 else
4403 error ("parameter pack %qT must be at the end of the"
4404 " template parameter list",
4405 TREE_TYPE (TREE_VALUE (parm)));
4407 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4408 = error_mark_node;
4409 no_errors = false;
4415 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4416 || is_partial
4417 || !is_primary
4418 || is_friend_decl)
4419 /* For an ordinary class template, default template arguments are
4420 allowed at the innermost level, e.g.:
4421 template <class T = int>
4422 struct S {};
4423 but, in a partial specialization, they're not allowed even
4424 there, as we have in [temp.class.spec]:
4426 The template parameter list of a specialization shall not
4427 contain default template argument values.
4429 So, for a partial specialization, or for a function template
4430 (in C++98/C++03), we look at all of them. */
4432 else
4433 /* But, for a primary class template that is not a partial
4434 specialization we look at all template parameters except the
4435 innermost ones. */
4436 parms = TREE_CHAIN (parms);
4438 /* Figure out what error message to issue. */
4439 if (is_friend_decl == 2)
4440 msg = G_("default template arguments may not be used in function template "
4441 "friend re-declaration");
4442 else if (is_friend_decl)
4443 msg = G_("default template arguments may not be used in function template "
4444 "friend declarations");
4445 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4446 msg = G_("default template arguments may not be used in function templates "
4447 "without -std=c++11 or -std=gnu++11");
4448 else if (is_partial)
4449 msg = G_("default template arguments may not be used in "
4450 "partial specializations");
4451 else
4452 msg = G_("default argument for template parameter for class enclosing %qD");
4454 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4455 /* If we're inside a class definition, there's no need to
4456 examine the parameters to the class itself. On the one
4457 hand, they will be checked when the class is defined, and,
4458 on the other, default arguments are valid in things like:
4459 template <class T = double>
4460 struct S { template <class U> void f(U); };
4461 Here the default argument for `S' has no bearing on the
4462 declaration of `f'. */
4463 last_level_to_check = template_class_depth (current_class_type) + 1;
4464 else
4465 /* Check everything. */
4466 last_level_to_check = 0;
4468 for (parm_level = parms;
4469 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4470 parm_level = TREE_CHAIN (parm_level))
4472 tree inner_parms = TREE_VALUE (parm_level);
4473 int i;
4474 int ntparms;
4476 ntparms = TREE_VEC_LENGTH (inner_parms);
4477 for (i = 0; i < ntparms; ++i)
4479 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4480 continue;
4482 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4484 if (msg)
4486 no_errors = false;
4487 if (is_friend_decl == 2)
4488 return no_errors;
4490 error (msg, decl);
4491 msg = 0;
4494 /* Clear out the default argument so that we are not
4495 confused later. */
4496 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4500 /* At this point, if we're still interested in issuing messages,
4501 they must apply to classes surrounding the object declared. */
4502 if (msg)
4503 msg = G_("default argument for template parameter for class "
4504 "enclosing %qD");
4507 return no_errors;
4510 /* Worker for push_template_decl_real, called via
4511 for_each_template_parm. DATA is really an int, indicating the
4512 level of the parameters we are interested in. If T is a template
4513 parameter of that level, return nonzero. */
4515 static int
4516 template_parm_this_level_p (tree t, void* data)
4518 int this_level = *(int *)data;
4519 int level;
4521 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4522 level = TEMPLATE_PARM_LEVEL (t);
4523 else
4524 level = TEMPLATE_TYPE_LEVEL (t);
4525 return level == this_level;
4528 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4529 parameters given by current_template_args, or reuses a
4530 previously existing one, if appropriate. Returns the DECL, or an
4531 equivalent one, if it is replaced via a call to duplicate_decls.
4533 If IS_FRIEND is true, DECL is a friend declaration. */
4535 tree
4536 push_template_decl_real (tree decl, bool is_friend)
4538 tree tmpl;
4539 tree args;
4540 tree info;
4541 tree ctx;
4542 bool is_primary;
4543 bool is_partial;
4544 int new_template_p = 0;
4545 /* True if the template is a member template, in the sense of
4546 [temp.mem]. */
4547 bool member_template_p = false;
4549 if (decl == error_mark_node || !current_template_parms)
4550 return error_mark_node;
4552 /* See if this is a partial specialization. */
4553 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
4554 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4555 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
4557 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4558 is_friend = true;
4560 if (is_friend)
4561 /* For a friend, we want the context of the friend function, not
4562 the type of which it is a friend. */
4563 ctx = CP_DECL_CONTEXT (decl);
4564 else if (CP_DECL_CONTEXT (decl)
4565 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4566 /* In the case of a virtual function, we want the class in which
4567 it is defined. */
4568 ctx = CP_DECL_CONTEXT (decl);
4569 else
4570 /* Otherwise, if we're currently defining some class, the DECL
4571 is assumed to be a member of the class. */
4572 ctx = current_scope ();
4574 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4575 ctx = NULL_TREE;
4577 if (!DECL_CONTEXT (decl))
4578 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4580 /* See if this is a primary template. */
4581 if (is_friend && ctx)
4582 /* A friend template that specifies a class context, i.e.
4583 template <typename T> friend void A<T>::f();
4584 is not primary. */
4585 is_primary = false;
4586 else
4587 is_primary = template_parm_scope_p ();
4589 if (is_primary)
4591 if (DECL_CLASS_SCOPE_P (decl))
4592 member_template_p = true;
4593 if (TREE_CODE (decl) == TYPE_DECL
4594 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4596 error ("template class without a name");
4597 return error_mark_node;
4599 else if (TREE_CODE (decl) == FUNCTION_DECL)
4601 if (DECL_DESTRUCTOR_P (decl))
4603 /* [temp.mem]
4605 A destructor shall not be a member template. */
4606 error ("destructor %qD declared as member template", decl);
4607 return error_mark_node;
4609 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4610 && (!prototype_p (TREE_TYPE (decl))
4611 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4612 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4613 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4614 == void_list_node)))
4616 /* [basic.stc.dynamic.allocation]
4618 An allocation function can be a function
4619 template. ... Template allocation functions shall
4620 have two or more parameters. */
4621 error ("invalid template declaration of %qD", decl);
4622 return error_mark_node;
4625 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4626 && CLASS_TYPE_P (TREE_TYPE (decl)))
4627 /* OK */;
4628 else if (TREE_CODE (decl) == TYPE_DECL
4629 && TYPE_DECL_ALIAS_P (decl))
4630 /* alias-declaration */
4631 gcc_assert (!DECL_ARTIFICIAL (decl));
4632 else
4634 error ("template declaration of %q#D", decl);
4635 return error_mark_node;
4639 /* Check to see that the rules regarding the use of default
4640 arguments are not being violated. */
4641 check_default_tmpl_args (decl, current_template_parms,
4642 is_primary, is_partial, /*is_friend_decl=*/0);
4644 /* Ensure that there are no parameter packs in the type of this
4645 declaration that have not been expanded. */
4646 if (TREE_CODE (decl) == FUNCTION_DECL)
4648 /* Check each of the arguments individually to see if there are
4649 any bare parameter packs. */
4650 tree type = TREE_TYPE (decl);
4651 tree arg = DECL_ARGUMENTS (decl);
4652 tree argtype = TYPE_ARG_TYPES (type);
4654 while (arg && argtype)
4656 if (!FUNCTION_PARAMETER_PACK_P (arg)
4657 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4659 /* This is a PARM_DECL that contains unexpanded parameter
4660 packs. We have already complained about this in the
4661 check_for_bare_parameter_packs call, so just replace
4662 these types with ERROR_MARK_NODE. */
4663 TREE_TYPE (arg) = error_mark_node;
4664 TREE_VALUE (argtype) = error_mark_node;
4667 arg = DECL_CHAIN (arg);
4668 argtype = TREE_CHAIN (argtype);
4671 /* Check for bare parameter packs in the return type and the
4672 exception specifiers. */
4673 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4674 /* Errors were already issued, set return type to int
4675 as the frontend doesn't expect error_mark_node as
4676 the return type. */
4677 TREE_TYPE (type) = integer_type_node;
4678 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4679 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4681 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4682 && TYPE_DECL_ALIAS_P (decl))
4683 ? DECL_ORIGINAL_TYPE (decl)
4684 : TREE_TYPE (decl)))
4686 TREE_TYPE (decl) = error_mark_node;
4687 return error_mark_node;
4690 if (is_partial)
4691 return process_partial_specialization (decl);
4693 args = current_template_args ();
4695 if (!ctx
4696 || TREE_CODE (ctx) == FUNCTION_DECL
4697 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4698 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4700 if (DECL_LANG_SPECIFIC (decl)
4701 && DECL_TEMPLATE_INFO (decl)
4702 && DECL_TI_TEMPLATE (decl))
4703 tmpl = DECL_TI_TEMPLATE (decl);
4704 /* If DECL is a TYPE_DECL for a class-template, then there won't
4705 be DECL_LANG_SPECIFIC. The information equivalent to
4706 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4707 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4708 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4709 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4711 /* Since a template declaration already existed for this
4712 class-type, we must be redeclaring it here. Make sure
4713 that the redeclaration is valid. */
4714 redeclare_class_template (TREE_TYPE (decl),
4715 current_template_parms);
4716 /* We don't need to create a new TEMPLATE_DECL; just use the
4717 one we already had. */
4718 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4720 else
4722 tmpl = build_template_decl (decl, current_template_parms,
4723 member_template_p);
4724 new_template_p = 1;
4726 if (DECL_LANG_SPECIFIC (decl)
4727 && DECL_TEMPLATE_SPECIALIZATION (decl))
4729 /* A specialization of a member template of a template
4730 class. */
4731 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4732 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4733 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4737 else
4739 tree a, t, current, parms;
4740 int i;
4741 tree tinfo = get_template_info (decl);
4743 if (!tinfo)
4745 error ("template definition of non-template %q#D", decl);
4746 return error_mark_node;
4749 tmpl = TI_TEMPLATE (tinfo);
4751 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4752 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4753 && DECL_TEMPLATE_SPECIALIZATION (decl)
4754 && DECL_MEMBER_TEMPLATE_P (tmpl))
4756 tree new_tmpl;
4758 /* The declaration is a specialization of a member
4759 template, declared outside the class. Therefore, the
4760 innermost template arguments will be NULL, so we
4761 replace them with the arguments determined by the
4762 earlier call to check_explicit_specialization. */
4763 args = DECL_TI_ARGS (decl);
4765 new_tmpl
4766 = build_template_decl (decl, current_template_parms,
4767 member_template_p);
4768 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4769 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4770 DECL_TI_TEMPLATE (decl) = new_tmpl;
4771 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4772 DECL_TEMPLATE_INFO (new_tmpl)
4773 = build_template_info (tmpl, args);
4775 register_specialization (new_tmpl,
4776 most_general_template (tmpl),
4777 args,
4778 is_friend, 0);
4779 return decl;
4782 /* Make sure the template headers we got make sense. */
4784 parms = DECL_TEMPLATE_PARMS (tmpl);
4785 i = TMPL_PARMS_DEPTH (parms);
4786 if (TMPL_ARGS_DEPTH (args) != i)
4788 error ("expected %d levels of template parms for %q#D, got %d",
4789 i, decl, TMPL_ARGS_DEPTH (args));
4791 else
4792 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4794 a = TMPL_ARGS_LEVEL (args, i);
4795 t = INNERMOST_TEMPLATE_PARMS (parms);
4797 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
4799 if (current == decl)
4800 error ("got %d template parameters for %q#D",
4801 TREE_VEC_LENGTH (a), decl);
4802 else
4803 error ("got %d template parameters for %q#T",
4804 TREE_VEC_LENGTH (a), current);
4805 error (" but %d required", TREE_VEC_LENGTH (t));
4806 return error_mark_node;
4809 if (current == decl)
4810 current = ctx;
4811 else if (current == NULL_TREE)
4812 /* Can happen in erroneous input. */
4813 break;
4814 else
4815 current = (TYPE_P (current)
4816 ? TYPE_CONTEXT (current)
4817 : DECL_CONTEXT (current));
4820 /* Check that the parms are used in the appropriate qualifying scopes
4821 in the declarator. */
4822 if (!comp_template_args
4823 (TI_ARGS (tinfo),
4824 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
4826 error ("\
4827 template arguments to %qD do not match original template %qD",
4828 decl, DECL_TEMPLATE_RESULT (tmpl));
4829 if (!uses_template_parms (TI_ARGS (tinfo)))
4830 inform (input_location, "use template<> for an explicit specialization");
4831 /* Avoid crash in import_export_decl. */
4832 DECL_INTERFACE_KNOWN (decl) = 1;
4833 return error_mark_node;
4837 DECL_TEMPLATE_RESULT (tmpl) = decl;
4838 TREE_TYPE (tmpl) = TREE_TYPE (decl);
4840 /* Push template declarations for global functions and types. Note
4841 that we do not try to push a global template friend declared in a
4842 template class; such a thing may well depend on the template
4843 parameters of the class. */
4844 if (new_template_p && !ctx
4845 && !(is_friend && template_class_depth (current_class_type) > 0))
4847 tmpl = pushdecl_namespace_level (tmpl, is_friend);
4848 if (tmpl == error_mark_node)
4849 return error_mark_node;
4851 /* Hide template friend classes that haven't been declared yet. */
4852 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
4854 DECL_ANTICIPATED (tmpl) = 1;
4855 DECL_FRIEND_P (tmpl) = 1;
4859 if (is_primary)
4861 tree parms = DECL_TEMPLATE_PARMS (tmpl);
4862 int i;
4864 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4865 if (DECL_CONV_FN_P (tmpl))
4867 int depth = TMPL_PARMS_DEPTH (parms);
4869 /* It is a conversion operator. See if the type converted to
4870 depends on innermost template operands. */
4872 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
4873 depth))
4874 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
4877 /* Give template template parms a DECL_CONTEXT of the template
4878 for which they are a parameter. */
4879 parms = INNERMOST_TEMPLATE_PARMS (parms);
4880 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
4882 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4883 if (TREE_CODE (parm) == TEMPLATE_DECL)
4884 DECL_CONTEXT (parm) = tmpl;
4888 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
4889 back to its most general template. If TMPL is a specialization,
4890 ARGS may only have the innermost set of arguments. Add the missing
4891 argument levels if necessary. */
4892 if (DECL_TEMPLATE_INFO (tmpl))
4893 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
4895 info = build_template_info (tmpl, args);
4897 if (DECL_IMPLICIT_TYPEDEF_P (decl))
4898 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
4899 else
4901 if (is_primary && !DECL_LANG_SPECIFIC (decl))
4902 retrofit_lang_decl (decl);
4903 if (DECL_LANG_SPECIFIC (decl))
4904 DECL_TEMPLATE_INFO (decl) = info;
4907 return DECL_TEMPLATE_RESULT (tmpl);
4910 tree
4911 push_template_decl (tree decl)
4913 return push_template_decl_real (decl, false);
4916 /* FN is an inheriting constructor that inherits from the constructor
4917 template INHERITED; turn FN into a constructor template with a matching
4918 template header. */
4920 tree
4921 add_inherited_template_parms (tree fn, tree inherited)
4923 tree inner_parms
4924 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
4925 inner_parms = copy_node (inner_parms);
4926 tree parms
4927 = tree_cons (size_int (processing_template_decl + 1),
4928 inner_parms, current_template_parms);
4929 tree tmpl = build_template_decl (fn, parms, /*member*/true);
4930 tree args = template_parms_to_args (parms);
4931 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
4932 TREE_TYPE (tmpl) = TREE_TYPE (fn);
4933 DECL_TEMPLATE_RESULT (tmpl) = fn;
4934 DECL_ARTIFICIAL (tmpl) = true;
4935 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4936 return tmpl;
4939 /* Called when a class template TYPE is redeclared with the indicated
4940 template PARMS, e.g.:
4942 template <class T> struct S;
4943 template <class T> struct S {}; */
4945 bool
4946 redeclare_class_template (tree type, tree parms)
4948 tree tmpl;
4949 tree tmpl_parms;
4950 int i;
4952 if (!TYPE_TEMPLATE_INFO (type))
4954 error ("%qT is not a template type", type);
4955 return false;
4958 tmpl = TYPE_TI_TEMPLATE (type);
4959 if (!PRIMARY_TEMPLATE_P (tmpl))
4960 /* The type is nested in some template class. Nothing to worry
4961 about here; there are no new template parameters for the nested
4962 type. */
4963 return true;
4965 if (!parms)
4967 error ("template specifiers not specified in declaration of %qD",
4968 tmpl);
4969 return false;
4972 parms = INNERMOST_TEMPLATE_PARMS (parms);
4973 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
4975 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
4977 error_n (input_location, TREE_VEC_LENGTH (parms),
4978 "redeclared with %d template parameter",
4979 "redeclared with %d template parameters",
4980 TREE_VEC_LENGTH (parms));
4981 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
4982 "previous declaration %q+D used %d template parameter",
4983 "previous declaration %q+D used %d template parameters",
4984 tmpl, TREE_VEC_LENGTH (tmpl_parms));
4985 return false;
4988 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
4990 tree tmpl_parm;
4991 tree parm;
4992 tree tmpl_default;
4993 tree parm_default;
4995 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
4996 || TREE_VEC_ELT (parms, i) == error_mark_node)
4997 continue;
4999 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5000 if (tmpl_parm == error_mark_node)
5001 return false;
5003 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5004 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5005 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5007 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5008 TEMPLATE_DECL. */
5009 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5010 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5011 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5012 || (TREE_CODE (tmpl_parm) != PARM_DECL
5013 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5014 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5015 || (TREE_CODE (tmpl_parm) == PARM_DECL
5016 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5017 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5019 error ("template parameter %q+#D", tmpl_parm);
5020 error ("redeclared here as %q#D", parm);
5021 return false;
5024 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5026 /* We have in [temp.param]:
5028 A template-parameter may not be given default arguments
5029 by two different declarations in the same scope. */
5030 error_at (input_location, "redefinition of default argument for %q#D", parm);
5031 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5032 "original definition appeared here");
5033 return false;
5036 if (parm_default != NULL_TREE)
5037 /* Update the previous template parameters (which are the ones
5038 that will really count) with the new default value. */
5039 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5040 else if (tmpl_default != NULL_TREE)
5041 /* Update the new parameters, too; they'll be used as the
5042 parameters for any members. */
5043 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5046 return true;
5049 /* Simplify EXPR if it is a non-dependent expression. Returns the
5050 (possibly simplified) expression. */
5052 tree
5053 fold_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5055 if (expr == NULL_TREE)
5056 return NULL_TREE;
5058 /* If we're in a template, but EXPR isn't value dependent, simplify
5059 it. We're supposed to treat:
5061 template <typename T> void f(T[1 + 1]);
5062 template <typename T> void f(T[2]);
5064 as two declarations of the same function, for example. */
5065 if (processing_template_decl
5066 && !type_dependent_expression_p (expr)
5067 && potential_constant_expression (expr)
5068 && !value_dependent_expression_p (expr))
5070 HOST_WIDE_INT saved_processing_template_decl;
5072 saved_processing_template_decl = processing_template_decl;
5073 processing_template_decl = 0;
5074 expr = tsubst_copy_and_build (expr,
5075 /*args=*/NULL_TREE,
5076 complain,
5077 /*in_decl=*/NULL_TREE,
5078 /*function_p=*/false,
5079 /*integral_constant_expression_p=*/true);
5080 processing_template_decl = saved_processing_template_decl;
5082 return expr;
5085 tree
5086 fold_non_dependent_expr (tree expr)
5088 return fold_non_dependent_expr_sfinae (expr, tf_error);
5091 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5092 template declaration, or a TYPE_DECL for an alias declaration. */
5094 bool
5095 alias_type_or_template_p (tree t)
5097 if (t == NULL_TREE)
5098 return false;
5099 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5100 || (TYPE_P (t)
5101 && TYPE_NAME (t)
5102 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5103 || DECL_ALIAS_TEMPLATE_P (t));
5106 /* Return TRUE iff is a specialization of an alias template. */
5108 bool
5109 alias_template_specialization_p (const_tree t)
5111 if (t == NULL_TREE)
5112 return false;
5114 return (TYPE_P (t)
5115 && TYPE_TEMPLATE_INFO (t)
5116 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
5117 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5120 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5121 must be a function or a pointer-to-function type, as specified
5122 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5123 and check that the resulting function has external linkage. */
5125 static tree
5126 convert_nontype_argument_function (tree type, tree expr)
5128 tree fns = expr;
5129 tree fn, fn_no_ptr;
5130 linkage_kind linkage;
5132 fn = instantiate_type (type, fns, tf_none);
5133 if (fn == error_mark_node)
5134 return error_mark_node;
5136 fn_no_ptr = fn;
5137 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5138 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5139 if (BASELINK_P (fn_no_ptr))
5140 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5142 /* [temp.arg.nontype]/1
5144 A template-argument for a non-type, non-template template-parameter
5145 shall be one of:
5146 [...]
5147 -- the address of an object or function with external [C++11: or
5148 internal] linkage. */
5149 linkage = decl_linkage (fn_no_ptr);
5150 if (cxx_dialect >= cxx0x ? linkage == lk_none : linkage != lk_external)
5152 if (cxx_dialect >= cxx0x)
5153 error ("%qE is not a valid template argument for type %qT "
5154 "because %qD has no linkage",
5155 expr, type, fn_no_ptr);
5156 else
5157 error ("%qE is not a valid template argument for type %qT "
5158 "because %qD does not have external linkage",
5159 expr, type, fn_no_ptr);
5160 return NULL_TREE;
5163 return fn;
5166 /* Subroutine of convert_nontype_argument.
5167 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5168 Emit an error otherwise. */
5170 static bool
5171 check_valid_ptrmem_cst_expr (tree type, tree expr,
5172 tsubst_flags_t complain)
5174 STRIP_NOPS (expr);
5175 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5176 return true;
5177 if (cxx_dialect >= cxx0x && null_member_pointer_value_p (expr))
5178 return true;
5179 if (complain & tf_error)
5181 error ("%qE is not a valid template argument for type %qT",
5182 expr, type);
5183 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5185 return false;
5188 /* Returns TRUE iff the address of OP is value-dependent.
5190 14.6.2.4 [temp.dep.temp]:
5191 A non-integral non-type template-argument is dependent if its type is
5192 dependent or it has either of the following forms
5193 qualified-id
5194 & qualified-id
5195 and contains a nested-name-specifier which specifies a class-name that
5196 names a dependent type.
5198 We generalize this to just say that the address of a member of a
5199 dependent class is value-dependent; the above doesn't cover the
5200 address of a static data member named with an unqualified-id. */
5202 static bool
5203 has_value_dependent_address (tree op)
5205 /* We could use get_inner_reference here, but there's no need;
5206 this is only relevant for template non-type arguments, which
5207 can only be expressed as &id-expression. */
5208 if (DECL_P (op))
5210 tree ctx = CP_DECL_CONTEXT (op);
5211 if (TYPE_P (ctx) && dependent_type_p (ctx))
5212 return true;
5215 return false;
5218 /* The next set of functions are used for providing helpful explanatory
5219 diagnostics for failed overload resolution. Their messages should be
5220 indented by two spaces for consistency with the messages in
5221 call.c */
5223 static int
5224 unify_success (bool /*explain_p*/)
5226 return 0;
5229 static int
5230 unify_parameter_deduction_failure (bool explain_p, tree parm)
5232 if (explain_p)
5233 inform (input_location,
5234 " couldn't deduce template parameter %qD", parm);
5235 return 1;
5238 static int
5239 unify_invalid (bool /*explain_p*/)
5241 return 1;
5244 static int
5245 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5247 if (explain_p)
5248 inform (input_location,
5249 " types %qT and %qT have incompatible cv-qualifiers",
5250 parm, arg);
5251 return 1;
5254 static int
5255 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5257 if (explain_p)
5258 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5259 return 1;
5262 static int
5263 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5265 if (explain_p)
5266 inform (input_location,
5267 " template parameter %qD is not a parameter pack, but "
5268 "argument %qD is",
5269 parm, arg);
5270 return 1;
5273 static int
5274 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5276 if (explain_p)
5277 inform (input_location,
5278 " template argument %qE does not match "
5279 "pointer-to-member constant %qE",
5280 arg, parm);
5281 return 1;
5284 static int
5285 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5287 if (explain_p)
5288 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5289 return 1;
5292 static int
5293 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5295 if (explain_p)
5296 inform (input_location,
5297 " inconsistent parameter pack deduction with %qT and %qT",
5298 old_arg, new_arg);
5299 return 1;
5302 static int
5303 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5305 if (explain_p)
5307 if (TYPE_P (parm))
5308 inform (input_location,
5309 " deduced conflicting types for parameter %qT (%qT and %qT)",
5310 parm, first, second);
5311 else
5312 inform (input_location,
5313 " deduced conflicting values for non-type parameter "
5314 "%qE (%qE and %qE)", parm, first, second);
5316 return 1;
5319 static int
5320 unify_vla_arg (bool explain_p, tree arg)
5322 if (explain_p)
5323 inform (input_location,
5324 " variable-sized array type %qT is not "
5325 "a valid template argument",
5326 arg);
5327 return 1;
5330 static int
5331 unify_method_type_error (bool explain_p, tree arg)
5333 if (explain_p)
5334 inform (input_location,
5335 " member function type %qT is not a valid template argument",
5336 arg);
5337 return 1;
5340 static int
5341 unify_arity (bool explain_p, int have, int wanted)
5343 if (explain_p)
5344 inform_n (input_location, wanted,
5345 " candidate expects %d argument, %d provided",
5346 " candidate expects %d arguments, %d provided",
5347 wanted, have);
5348 return 1;
5351 static int
5352 unify_too_many_arguments (bool explain_p, int have, int wanted)
5354 return unify_arity (explain_p, have, wanted);
5357 static int
5358 unify_too_few_arguments (bool explain_p, int have, int wanted)
5360 return unify_arity (explain_p, have, wanted);
5363 static int
5364 unify_arg_conversion (bool explain_p, tree to_type,
5365 tree from_type, tree arg)
5367 if (explain_p)
5368 inform (input_location, " cannot convert %qE (type %qT) to type %qT",
5369 arg, from_type, to_type);
5370 return 1;
5373 static int
5374 unify_no_common_base (bool explain_p, enum template_base_result r,
5375 tree parm, tree arg)
5377 if (explain_p)
5378 switch (r)
5380 case tbr_ambiguous_baseclass:
5381 inform (input_location, " %qT is an ambiguous base class of %qT",
5382 arg, parm);
5383 break;
5384 default:
5385 inform (input_location, " %qT is not derived from %qT", arg, parm);
5386 break;
5388 return 1;
5391 static int
5392 unify_inconsistent_template_template_parameters (bool explain_p)
5394 if (explain_p)
5395 inform (input_location,
5396 " template parameters of a template template argument are "
5397 "inconsistent with other deduced template arguments");
5398 return 1;
5401 static int
5402 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5404 if (explain_p)
5405 inform (input_location,
5406 " can't deduce a template for %qT from non-template type %qT",
5407 parm, arg);
5408 return 1;
5411 static int
5412 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5414 if (explain_p)
5415 inform (input_location,
5416 " template argument %qE does not match %qD", arg, parm);
5417 return 1;
5420 static int
5421 unify_overload_resolution_failure (bool explain_p, tree arg)
5423 if (explain_p)
5424 inform (input_location,
5425 " could not resolve address from overloaded function %qE",
5426 arg);
5427 return 1;
5430 /* Attempt to convert the non-type template parameter EXPR to the
5431 indicated TYPE. If the conversion is successful, return the
5432 converted value. If the conversion is unsuccessful, return
5433 NULL_TREE if we issued an error message, or error_mark_node if we
5434 did not. We issue error messages for out-and-out bad template
5435 parameters, but not simply because the conversion failed, since we
5436 might be just trying to do argument deduction. Both TYPE and EXPR
5437 must be non-dependent.
5439 The conversion follows the special rules described in
5440 [temp.arg.nontype], and it is much more strict than an implicit
5441 conversion.
5443 This function is called twice for each template argument (see
5444 lookup_template_class for a more accurate description of this
5445 problem). This means that we need to handle expressions which
5446 are not valid in a C++ source, but can be created from the
5447 first call (for instance, casts to perform conversions). These
5448 hacks can go away after we fix the double coercion problem. */
5450 static tree
5451 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5453 tree expr_type;
5455 /* Detect immediately string literals as invalid non-type argument.
5456 This special-case is not needed for correctness (we would easily
5457 catch this later), but only to provide better diagnostic for this
5458 common user mistake. As suggested by DR 100, we do not mention
5459 linkage issues in the diagnostic as this is not the point. */
5460 /* FIXME we're making this OK. */
5461 if (TREE_CODE (expr) == STRING_CST)
5463 if (complain & tf_error)
5464 error ("%qE is not a valid template argument for type %qT "
5465 "because string literals can never be used in this context",
5466 expr, type);
5467 return NULL_TREE;
5470 /* Add the ADDR_EXPR now for the benefit of
5471 value_dependent_expression_p. */
5472 if (TYPE_PTROBV_P (type)
5473 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5475 expr = decay_conversion (expr, complain);
5476 if (expr == error_mark_node)
5477 return error_mark_node;
5480 /* If we are in a template, EXPR may be non-dependent, but still
5481 have a syntactic, rather than semantic, form. For example, EXPR
5482 might be a SCOPE_REF, rather than the VAR_DECL to which the
5483 SCOPE_REF refers. Preserving the qualifying scope is necessary
5484 so that access checking can be performed when the template is
5485 instantiated -- but here we need the resolved form so that we can
5486 convert the argument. */
5487 if (TYPE_REF_OBJ_P (type)
5488 && has_value_dependent_address (expr))
5489 /* If we want the address and it's value-dependent, don't fold. */;
5490 else if (!type_unknown_p (expr))
5491 expr = fold_non_dependent_expr_sfinae (expr, complain);
5492 if (error_operand_p (expr))
5493 return error_mark_node;
5494 expr_type = TREE_TYPE (expr);
5495 if (TREE_CODE (type) == REFERENCE_TYPE)
5496 expr = mark_lvalue_use (expr);
5497 else
5498 expr = mark_rvalue_use (expr);
5500 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5501 to a non-type argument of "nullptr". */
5502 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5503 expr = convert (type, expr);
5505 /* In C++11, integral or enumeration non-type template arguments can be
5506 arbitrary constant expressions. Pointer and pointer to
5507 member arguments can be general constant expressions that evaluate
5508 to a null value, but otherwise still need to be of a specific form. */
5509 if (cxx_dialect >= cxx0x)
5511 if (TREE_CODE (expr) == PTRMEM_CST)
5512 /* A PTRMEM_CST is already constant, and a valid template
5513 argument for a parameter of pointer to member type, we just want
5514 to leave it in that form rather than lower it to a
5515 CONSTRUCTOR. */;
5516 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5517 expr = maybe_constant_value (expr);
5518 else if (TYPE_PTR_OR_PTRMEM_P (type))
5520 tree folded = maybe_constant_value (expr);
5521 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5522 : null_member_pointer_value_p (folded))
5523 expr = folded;
5527 /* HACK: Due to double coercion, we can get a
5528 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5529 which is the tree that we built on the first call (see
5530 below when coercing to reference to object or to reference to
5531 function). We just strip everything and get to the arg.
5532 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5533 for examples. */
5534 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5536 tree probe_type, probe = expr;
5537 if (REFERENCE_REF_P (probe))
5538 probe = TREE_OPERAND (probe, 0);
5539 probe_type = TREE_TYPE (probe);
5540 if (TREE_CODE (probe) == NOP_EXPR)
5542 /* ??? Maybe we could use convert_from_reference here, but we
5543 would need to relax its constraints because the NOP_EXPR
5544 could actually change the type to something more cv-qualified,
5545 and this is not folded by convert_from_reference. */
5546 tree addr = TREE_OPERAND (probe, 0);
5547 gcc_assert (TREE_CODE (probe_type) == REFERENCE_TYPE);
5548 gcc_assert (TREE_CODE (addr) == ADDR_EXPR);
5549 gcc_assert (TREE_CODE (TREE_TYPE (addr)) == POINTER_TYPE);
5550 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5551 (TREE_TYPE (probe_type),
5552 TREE_TYPE (TREE_TYPE (addr))));
5554 expr = TREE_OPERAND (addr, 0);
5555 expr_type = TREE_TYPE (expr);
5559 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5560 parameter is a pointer to object, through decay and
5561 qualification conversion. Let's strip everything. */
5562 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5564 STRIP_NOPS (expr);
5565 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
5566 gcc_assert (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE);
5567 /* Skip the ADDR_EXPR only if it is part of the decay for
5568 an array. Otherwise, it is part of the original argument
5569 in the source code. */
5570 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == ARRAY_TYPE)
5571 expr = TREE_OPERAND (expr, 0);
5572 expr_type = TREE_TYPE (expr);
5575 /* [temp.arg.nontype]/5, bullet 1
5577 For a non-type template-parameter of integral or enumeration type,
5578 integral promotions (_conv.prom_) and integral conversions
5579 (_conv.integral_) are applied. */
5580 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5582 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5583 t = maybe_constant_value (t);
5584 if (t != error_mark_node)
5585 expr = t;
5587 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5588 return error_mark_node;
5590 /* Notice that there are constant expressions like '4 % 0' which
5591 do not fold into integer constants. */
5592 if (TREE_CODE (expr) != INTEGER_CST)
5594 if (complain & tf_error)
5596 int errs = errorcount, warns = warningcount;
5597 if (processing_template_decl
5598 && !require_potential_constant_expression (expr))
5599 return NULL_TREE;
5600 expr = cxx_constant_value (expr);
5601 if (errorcount > errs || warningcount > warns)
5602 inform (EXPR_LOC_OR_HERE (expr),
5603 "in template argument for type %qT ", type);
5604 if (expr == error_mark_node)
5605 return NULL_TREE;
5606 /* else cxx_constant_value complained but gave us
5607 a real constant, so go ahead. */
5608 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5610 else
5611 return NULL_TREE;
5614 /* [temp.arg.nontype]/5, bullet 2
5616 For a non-type template-parameter of type pointer to object,
5617 qualification conversions (_conv.qual_) and the array-to-pointer
5618 conversion (_conv.array_) are applied. */
5619 else if (TYPE_PTROBV_P (type))
5621 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5623 A template-argument for a non-type, non-template template-parameter
5624 shall be one of: [...]
5626 -- the name of a non-type template-parameter;
5627 -- the address of an object or function with external linkage, [...]
5628 expressed as "& id-expression" where the & is optional if the name
5629 refers to a function or array, or if the corresponding
5630 template-parameter is a reference.
5632 Here, we do not care about functions, as they are invalid anyway
5633 for a parameter of type pointer-to-object. */
5635 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5636 /* Non-type template parameters are OK. */
5638 else if (cxx_dialect >= cxx0x && integer_zerop (expr))
5639 /* Null pointer values are OK in C++11. */;
5640 else if (TREE_CODE (expr) != ADDR_EXPR
5641 && TREE_CODE (expr_type) != ARRAY_TYPE)
5643 if (TREE_CODE (expr) == VAR_DECL)
5645 error ("%qD is not a valid template argument "
5646 "because %qD is a variable, not the address of "
5647 "a variable",
5648 expr, expr);
5649 return NULL_TREE;
5651 /* Other values, like integer constants, might be valid
5652 non-type arguments of some other type. */
5653 return error_mark_node;
5655 else
5657 tree decl;
5659 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5660 ? TREE_OPERAND (expr, 0) : expr);
5661 if (TREE_CODE (decl) != VAR_DECL)
5663 error ("%qE is not a valid template argument of type %qT "
5664 "because %qE is not a variable",
5665 expr, type, decl);
5666 return NULL_TREE;
5668 else if (cxx_dialect < cxx0x && !DECL_EXTERNAL_LINKAGE_P (decl))
5670 error ("%qE is not a valid template argument of type %qT "
5671 "because %qD does not have external linkage",
5672 expr, type, decl);
5673 return NULL_TREE;
5675 else if (cxx_dialect >= cxx0x && decl_linkage (decl) == lk_none)
5677 error ("%qE is not a valid template argument of type %qT "
5678 "because %qD has no linkage",
5679 expr, type, decl);
5680 return NULL_TREE;
5684 expr = decay_conversion (expr, complain);
5685 if (expr == error_mark_node)
5686 return error_mark_node;
5688 expr = perform_qualification_conversions (type, expr);
5689 if (expr == error_mark_node)
5690 return error_mark_node;
5692 /* [temp.arg.nontype]/5, bullet 3
5694 For a non-type template-parameter of type reference to object, no
5695 conversions apply. The type referred to by the reference may be more
5696 cv-qualified than the (otherwise identical) type of the
5697 template-argument. The template-parameter is bound directly to the
5698 template-argument, which must be an lvalue. */
5699 else if (TYPE_REF_OBJ_P (type))
5701 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
5702 expr_type))
5703 return error_mark_node;
5705 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
5707 error ("%qE is not a valid template argument for type %qT "
5708 "because of conflicts in cv-qualification", expr, type);
5709 return NULL_TREE;
5712 if (!real_lvalue_p (expr))
5714 error ("%qE is not a valid template argument for type %qT "
5715 "because it is not an lvalue", expr, type);
5716 return NULL_TREE;
5719 /* [temp.arg.nontype]/1
5721 A template-argument for a non-type, non-template template-parameter
5722 shall be one of: [...]
5724 -- the address of an object or function with external linkage. */
5725 if (TREE_CODE (expr) == INDIRECT_REF
5726 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
5728 expr = TREE_OPERAND (expr, 0);
5729 if (DECL_P (expr))
5731 error ("%q#D is not a valid template argument for type %qT "
5732 "because a reference variable does not have a constant "
5733 "address", expr, type);
5734 return NULL_TREE;
5738 if (!DECL_P (expr))
5740 error ("%qE is not a valid template argument for type %qT "
5741 "because it is not an object with external linkage",
5742 expr, type);
5743 return NULL_TREE;
5746 if (!DECL_EXTERNAL_LINKAGE_P (expr))
5748 error ("%qE is not a valid template argument for type %qT "
5749 "because object %qD has not external linkage",
5750 expr, type, expr);
5751 return NULL_TREE;
5754 expr = build_nop (type, build_address (expr));
5756 /* [temp.arg.nontype]/5, bullet 4
5758 For a non-type template-parameter of type pointer to function, only
5759 the function-to-pointer conversion (_conv.func_) is applied. If the
5760 template-argument represents a set of overloaded functions (or a
5761 pointer to such), the matching function is selected from the set
5762 (_over.over_). */
5763 else if (TYPE_PTRFN_P (type))
5765 /* If the argument is a template-id, we might not have enough
5766 context information to decay the pointer. */
5767 if (!type_unknown_p (expr_type))
5769 expr = decay_conversion (expr, complain);
5770 if (expr == error_mark_node)
5771 return error_mark_node;
5774 if (cxx_dialect >= cxx0x && integer_zerop (expr))
5775 /* Null pointer values are OK in C++11. */
5776 return perform_qualification_conversions (type, expr);
5778 expr = convert_nontype_argument_function (type, expr);
5779 if (!expr || expr == error_mark_node)
5780 return expr;
5782 if (TREE_CODE (expr) != ADDR_EXPR)
5784 error ("%qE is not a valid template argument for type %qT", expr, type);
5785 error ("it must be the address of a function with external linkage");
5786 return NULL_TREE;
5789 /* [temp.arg.nontype]/5, bullet 5
5791 For a non-type template-parameter of type reference to function, no
5792 conversions apply. If the template-argument represents a set of
5793 overloaded functions, the matching function is selected from the set
5794 (_over.over_). */
5795 else if (TYPE_REFFN_P (type))
5797 if (TREE_CODE (expr) == ADDR_EXPR)
5799 error ("%qE is not a valid template argument for type %qT "
5800 "because it is a pointer", expr, type);
5801 inform (input_location, "try using %qE instead", TREE_OPERAND (expr, 0));
5802 return NULL_TREE;
5805 expr = convert_nontype_argument_function (TREE_TYPE (type), expr);
5806 if (!expr || expr == error_mark_node)
5807 return expr;
5809 expr = build_nop (type, build_address (expr));
5811 /* [temp.arg.nontype]/5, bullet 6
5813 For a non-type template-parameter of type pointer to member function,
5814 no conversions apply. If the template-argument represents a set of
5815 overloaded member functions, the matching member function is selected
5816 from the set (_over.over_). */
5817 else if (TYPE_PTRMEMFUNC_P (type))
5819 expr = instantiate_type (type, expr, tf_none);
5820 if (expr == error_mark_node)
5821 return error_mark_node;
5823 /* [temp.arg.nontype] bullet 1 says the pointer to member
5824 expression must be a pointer-to-member constant. */
5825 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5826 return error_mark_node;
5828 /* There is no way to disable standard conversions in
5829 resolve_address_of_overloaded_function (called by
5830 instantiate_type). It is possible that the call succeeded by
5831 converting &B::I to &D::I (where B is a base of D), so we need
5832 to reject this conversion here.
5834 Actually, even if there was a way to disable standard conversions,
5835 it would still be better to reject them here so that we can
5836 provide a superior diagnostic. */
5837 if (!same_type_p (TREE_TYPE (expr), type))
5839 error ("%qE is not a valid template argument for type %qT "
5840 "because it is of type %qT", expr, type,
5841 TREE_TYPE (expr));
5842 /* If we are just one standard conversion off, explain. */
5843 if (can_convert (type, TREE_TYPE (expr), complain))
5844 inform (input_location,
5845 "standard conversions are not allowed in this context");
5846 return NULL_TREE;
5849 /* [temp.arg.nontype]/5, bullet 7
5851 For a non-type template-parameter of type pointer to data member,
5852 qualification conversions (_conv.qual_) are applied. */
5853 else if (TYPE_PTRDATAMEM_P (type))
5855 /* [temp.arg.nontype] bullet 1 says the pointer to member
5856 expression must be a pointer-to-member constant. */
5857 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5858 return error_mark_node;
5860 expr = perform_qualification_conversions (type, expr);
5861 if (expr == error_mark_node)
5862 return expr;
5864 else if (NULLPTR_TYPE_P (type))
5866 if (expr != nullptr_node)
5868 error ("%qE is not a valid template argument for type %qT "
5869 "because it is of type %qT", expr, type, TREE_TYPE (expr));
5870 return NULL_TREE;
5872 return expr;
5874 /* A template non-type parameter must be one of the above. */
5875 else
5876 gcc_unreachable ();
5878 /* Sanity check: did we actually convert the argument to the
5879 right type? */
5880 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5881 (type, TREE_TYPE (expr)));
5882 return expr;
5885 /* Subroutine of coerce_template_template_parms, which returns 1 if
5886 PARM_PARM and ARG_PARM match using the rule for the template
5887 parameters of template template parameters. Both PARM and ARG are
5888 template parameters; the rest of the arguments are the same as for
5889 coerce_template_template_parms.
5891 static int
5892 coerce_template_template_parm (tree parm,
5893 tree arg,
5894 tsubst_flags_t complain,
5895 tree in_decl,
5896 tree outer_args)
5898 if (arg == NULL_TREE || arg == error_mark_node
5899 || parm == NULL_TREE || parm == error_mark_node)
5900 return 0;
5902 if (TREE_CODE (arg) != TREE_CODE (parm))
5903 return 0;
5905 switch (TREE_CODE (parm))
5907 case TEMPLATE_DECL:
5908 /* We encounter instantiations of templates like
5909 template <template <template <class> class> class TT>
5910 class C; */
5912 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
5913 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
5915 if (!coerce_template_template_parms
5916 (parmparm, argparm, complain, in_decl, outer_args))
5917 return 0;
5919 /* Fall through. */
5921 case TYPE_DECL:
5922 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
5923 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
5924 /* Argument is a parameter pack but parameter is not. */
5925 return 0;
5926 break;
5928 case PARM_DECL:
5929 /* The tsubst call is used to handle cases such as
5931 template <int> class C {};
5932 template <class T, template <T> class TT> class D {};
5933 D<int, C> d;
5935 i.e. the parameter list of TT depends on earlier parameters. */
5936 if (!uses_template_parms (TREE_TYPE (arg))
5937 && !same_type_p
5938 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
5939 TREE_TYPE (arg)))
5940 return 0;
5942 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
5943 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
5944 /* Argument is a parameter pack but parameter is not. */
5945 return 0;
5947 break;
5949 default:
5950 gcc_unreachable ();
5953 return 1;
5957 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
5958 template template parameters. Both PARM_PARMS and ARG_PARMS are
5959 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
5960 or PARM_DECL.
5962 Consider the example:
5963 template <class T> class A;
5964 template<template <class U> class TT> class B;
5966 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
5967 the parameters to A, and OUTER_ARGS contains A. */
5969 static int
5970 coerce_template_template_parms (tree parm_parms,
5971 tree arg_parms,
5972 tsubst_flags_t complain,
5973 tree in_decl,
5974 tree outer_args)
5976 int nparms, nargs, i;
5977 tree parm, arg;
5978 int variadic_p = 0;
5980 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
5981 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
5983 nparms = TREE_VEC_LENGTH (parm_parms);
5984 nargs = TREE_VEC_LENGTH (arg_parms);
5986 /* Determine whether we have a parameter pack at the end of the
5987 template template parameter's template parameter list. */
5988 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
5990 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
5992 if (parm == error_mark_node)
5993 return 0;
5995 switch (TREE_CODE (parm))
5997 case TEMPLATE_DECL:
5998 case TYPE_DECL:
5999 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6000 variadic_p = 1;
6001 break;
6003 case PARM_DECL:
6004 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6005 variadic_p = 1;
6006 break;
6008 default:
6009 gcc_unreachable ();
6013 if (nargs != nparms
6014 && !(variadic_p && nargs >= nparms - 1))
6015 return 0;
6017 /* Check all of the template parameters except the parameter pack at
6018 the end (if any). */
6019 for (i = 0; i < nparms - variadic_p; ++i)
6021 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6022 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6023 continue;
6025 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6026 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6028 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6029 outer_args))
6030 return 0;
6034 if (variadic_p)
6036 /* Check each of the template parameters in the template
6037 argument against the template parameter pack at the end of
6038 the template template parameter. */
6039 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6040 return 0;
6042 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6044 for (; i < nargs; ++i)
6046 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6047 continue;
6049 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6051 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6052 outer_args))
6053 return 0;
6057 return 1;
6060 /* Verifies that the deduced template arguments (in TARGS) for the
6061 template template parameters (in TPARMS) represent valid bindings,
6062 by comparing the template parameter list of each template argument
6063 to the template parameter list of its corresponding template
6064 template parameter, in accordance with DR150. This
6065 routine can only be called after all template arguments have been
6066 deduced. It will return TRUE if all of the template template
6067 parameter bindings are okay, FALSE otherwise. */
6068 bool
6069 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6071 int i, ntparms = TREE_VEC_LENGTH (tparms);
6072 bool ret = true;
6074 /* We're dealing with template parms in this process. */
6075 ++processing_template_decl;
6077 targs = INNERMOST_TEMPLATE_ARGS (targs);
6079 for (i = 0; i < ntparms; ++i)
6081 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6082 tree targ = TREE_VEC_ELT (targs, i);
6084 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6086 tree packed_args = NULL_TREE;
6087 int idx, len = 1;
6089 if (ARGUMENT_PACK_P (targ))
6091 /* Look inside the argument pack. */
6092 packed_args = ARGUMENT_PACK_ARGS (targ);
6093 len = TREE_VEC_LENGTH (packed_args);
6096 for (idx = 0; idx < len; ++idx)
6098 tree targ_parms = NULL_TREE;
6100 if (packed_args)
6101 /* Extract the next argument from the argument
6102 pack. */
6103 targ = TREE_VEC_ELT (packed_args, idx);
6105 if (PACK_EXPANSION_P (targ))
6106 /* Look at the pattern of the pack expansion. */
6107 targ = PACK_EXPANSION_PATTERN (targ);
6109 /* Extract the template parameters from the template
6110 argument. */
6111 if (TREE_CODE (targ) == TEMPLATE_DECL)
6112 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6113 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6114 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6116 /* Verify that we can coerce the template template
6117 parameters from the template argument to the template
6118 parameter. This requires an exact match. */
6119 if (targ_parms
6120 && !coerce_template_template_parms
6121 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6122 targ_parms,
6123 tf_none,
6124 tparm,
6125 targs))
6127 ret = false;
6128 goto out;
6134 out:
6136 --processing_template_decl;
6137 return ret;
6140 /* Since type attributes aren't mangled, we need to strip them from
6141 template type arguments. */
6143 static tree
6144 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6146 tree mv;
6147 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6148 return arg;
6149 mv = TYPE_MAIN_VARIANT (arg);
6150 arg = strip_typedefs (arg);
6151 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6152 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6154 if (complain & tf_warning)
6155 warning (0, "ignoring attributes on template argument %qT", arg);
6156 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6157 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6159 return arg;
6162 /* Convert the indicated template ARG as necessary to match the
6163 indicated template PARM. Returns the converted ARG, or
6164 error_mark_node if the conversion was unsuccessful. Error and
6165 warning messages are issued under control of COMPLAIN. This
6166 conversion is for the Ith parameter in the parameter list. ARGS is
6167 the full set of template arguments deduced so far. */
6169 static tree
6170 convert_template_argument (tree parm,
6171 tree arg,
6172 tree args,
6173 tsubst_flags_t complain,
6174 int i,
6175 tree in_decl)
6177 tree orig_arg;
6178 tree val;
6179 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6181 if (TREE_CODE (arg) == TREE_LIST
6182 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6184 /* The template argument was the name of some
6185 member function. That's usually
6186 invalid, but static members are OK. In any
6187 case, grab the underlying fields/functions
6188 and issue an error later if required. */
6189 orig_arg = TREE_VALUE (arg);
6190 TREE_TYPE (arg) = unknown_type_node;
6193 orig_arg = arg;
6195 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6196 requires_type = (TREE_CODE (parm) == TYPE_DECL
6197 || requires_tmpl_type);
6199 /* When determining whether an argument pack expansion is a template,
6200 look at the pattern. */
6201 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6202 arg = PACK_EXPANSION_PATTERN (arg);
6204 /* Deal with an injected-class-name used as a template template arg. */
6205 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6207 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6208 if (TREE_CODE (t) == TEMPLATE_DECL)
6210 if (cxx_dialect >= cxx0x)
6211 /* OK under DR 1004. */;
6212 else if (complain & tf_warning_or_error)
6213 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6214 " used as template template argument", TYPE_NAME (arg));
6215 else if (flag_pedantic_errors)
6216 t = arg;
6218 arg = t;
6222 is_tmpl_type =
6223 ((TREE_CODE (arg) == TEMPLATE_DECL
6224 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6225 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6226 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6227 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6229 if (is_tmpl_type
6230 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6231 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6232 arg = TYPE_STUB_DECL (arg);
6234 is_type = TYPE_P (arg) || is_tmpl_type;
6236 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6237 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6239 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6241 if (complain & tf_error)
6242 error ("invalid use of destructor %qE as a type", orig_arg);
6243 return error_mark_node;
6246 permerror (input_location,
6247 "to refer to a type member of a template parameter, "
6248 "use %<typename %E%>", orig_arg);
6250 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6251 TREE_OPERAND (arg, 1),
6252 typename_type,
6253 complain);
6254 arg = orig_arg;
6255 is_type = 1;
6257 if (is_type != requires_type)
6259 if (in_decl)
6261 if (complain & tf_error)
6263 error ("type/value mismatch at argument %d in template "
6264 "parameter list for %qD",
6265 i + 1, in_decl);
6266 if (is_type)
6267 error (" expected a constant of type %qT, got %qT",
6268 TREE_TYPE (parm),
6269 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6270 else if (requires_tmpl_type)
6271 error (" expected a class template, got %qE", orig_arg);
6272 else
6273 error (" expected a type, got %qE", orig_arg);
6276 return error_mark_node;
6278 if (is_tmpl_type ^ requires_tmpl_type)
6280 if (in_decl && (complain & tf_error))
6282 error ("type/value mismatch at argument %d in template "
6283 "parameter list for %qD",
6284 i + 1, in_decl);
6285 if (is_tmpl_type)
6286 error (" expected a type, got %qT", DECL_NAME (arg));
6287 else
6288 error (" expected a class template, got %qT", orig_arg);
6290 return error_mark_node;
6293 if (is_type)
6295 if (requires_tmpl_type)
6297 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6298 val = orig_arg;
6299 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6300 /* The number of argument required is not known yet.
6301 Just accept it for now. */
6302 val = TREE_TYPE (arg);
6303 else
6305 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6306 tree argparm;
6308 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6310 if (coerce_template_template_parms (parmparm, argparm,
6311 complain, in_decl,
6312 args))
6314 val = arg;
6316 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6317 TEMPLATE_DECL. */
6318 if (val != error_mark_node)
6320 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6321 val = TREE_TYPE (val);
6322 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6323 val = make_pack_expansion (val);
6326 else
6328 if (in_decl && (complain & tf_error))
6330 error ("type/value mismatch at argument %d in "
6331 "template parameter list for %qD",
6332 i + 1, in_decl);
6333 error (" expected a template of type %qD, got %qT",
6334 parm, orig_arg);
6337 val = error_mark_node;
6341 else
6342 val = orig_arg;
6343 /* We only form one instance of each template specialization.
6344 Therefore, if we use a non-canonical variant (i.e., a
6345 typedef), any future messages referring to the type will use
6346 the typedef, which is confusing if those future uses do not
6347 themselves also use the typedef. */
6348 if (TYPE_P (val))
6349 val = canonicalize_type_argument (val, complain);
6351 else
6353 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6355 if (invalid_nontype_parm_type_p (t, complain))
6356 return error_mark_node;
6358 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6360 if (same_type_p (t, TREE_TYPE (orig_arg)))
6361 val = orig_arg;
6362 else
6364 /* Not sure if this is reachable, but it doesn't hurt
6365 to be robust. */
6366 error ("type mismatch in nontype parameter pack");
6367 val = error_mark_node;
6370 else if (!uses_template_parms (orig_arg) && !uses_template_parms (t))
6371 /* We used to call digest_init here. However, digest_init
6372 will report errors, which we don't want when complain
6373 is zero. More importantly, digest_init will try too
6374 hard to convert things: for example, `0' should not be
6375 converted to pointer type at this point according to
6376 the standard. Accepting this is not merely an
6377 extension, since deciding whether or not these
6378 conversions can occur is part of determining which
6379 function template to call, or whether a given explicit
6380 argument specification is valid. */
6381 val = convert_nontype_argument (t, orig_arg, complain);
6382 else
6383 val = strip_typedefs_expr (orig_arg);
6385 if (val == NULL_TREE)
6386 val = error_mark_node;
6387 else if (val == error_mark_node && (complain & tf_error))
6388 error ("could not convert template argument %qE to %qT", orig_arg, t);
6390 if (TREE_CODE (val) == SCOPE_REF)
6392 /* Strip typedefs from the SCOPE_REF. */
6393 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6394 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6395 complain);
6396 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6397 QUALIFIED_NAME_IS_TEMPLATE (val));
6401 return val;
6404 /* Coerces the remaining template arguments in INNER_ARGS (from
6405 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6406 Returns the coerced argument pack. PARM_IDX is the position of this
6407 parameter in the template parameter list. ARGS is the original
6408 template argument list. */
6409 static tree
6410 coerce_template_parameter_pack (tree parms,
6411 int parm_idx,
6412 tree args,
6413 tree inner_args,
6414 int arg_idx,
6415 tree new_args,
6416 int* lost,
6417 tree in_decl,
6418 tsubst_flags_t complain)
6420 tree parm = TREE_VEC_ELT (parms, parm_idx);
6421 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6422 tree packed_args;
6423 tree argument_pack;
6424 tree packed_types = NULL_TREE;
6426 if (arg_idx > nargs)
6427 arg_idx = nargs;
6429 packed_args = make_tree_vec (nargs - arg_idx);
6431 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL
6432 && uses_parameter_packs (TREE_TYPE (TREE_VALUE (parm))))
6434 /* When the template parameter is a non-type template
6435 parameter pack whose type uses parameter packs, we need
6436 to look at each of the template arguments
6437 separately. Build a vector of the types for these
6438 non-type template parameters in PACKED_TYPES. */
6439 tree expansion
6440 = make_pack_expansion (TREE_TYPE (TREE_VALUE (parm)));
6441 packed_types = tsubst_pack_expansion (expansion, args,
6442 complain, in_decl);
6444 if (packed_types == error_mark_node)
6445 return error_mark_node;
6447 /* Check that we have the right number of arguments. */
6448 if (arg_idx < nargs
6449 && !PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx))
6450 && nargs - arg_idx != TREE_VEC_LENGTH (packed_types))
6452 int needed_parms
6453 = TREE_VEC_LENGTH (parms) - 1 + TREE_VEC_LENGTH (packed_types);
6454 error ("wrong number of template arguments (%d, should be %d)",
6455 nargs, needed_parms);
6456 return error_mark_node;
6459 /* If we aren't able to check the actual arguments now
6460 (because they haven't been expanded yet), we can at least
6461 verify that all of the types used for the non-type
6462 template parameter pack are, in fact, valid for non-type
6463 template parameters. */
6464 if (arg_idx < nargs
6465 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6467 int j, len = TREE_VEC_LENGTH (packed_types);
6468 for (j = 0; j < len; ++j)
6470 tree t = TREE_VEC_ELT (packed_types, j);
6471 if (invalid_nontype_parm_type_p (t, complain))
6472 return error_mark_node;
6477 /* Convert the remaining arguments, which will be a part of the
6478 parameter pack "parm". */
6479 for (; arg_idx < nargs; ++arg_idx)
6481 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6482 tree actual_parm = TREE_VALUE (parm);
6484 if (packed_types && !PACK_EXPANSION_P (arg))
6486 /* When we have a vector of types (corresponding to the
6487 non-type template parameter pack that uses parameter
6488 packs in its type, as mention above), and the
6489 argument is not an expansion (which expands to a
6490 currently unknown number of arguments), clone the
6491 parm and give it the next type in PACKED_TYPES. */
6492 actual_parm = copy_node (actual_parm);
6493 TREE_TYPE (actual_parm) =
6494 TREE_VEC_ELT (packed_types, arg_idx - parm_idx);
6497 if (arg == error_mark_node)
6499 if (complain & tf_error)
6500 error ("template argument %d is invalid", arg_idx + 1);
6502 else
6503 arg = convert_template_argument (actual_parm,
6504 arg, new_args, complain, parm_idx,
6505 in_decl);
6506 if (arg == error_mark_node)
6507 (*lost)++;
6508 TREE_VEC_ELT (packed_args, arg_idx - parm_idx) = arg;
6511 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6512 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6513 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6514 else
6516 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6517 TREE_TYPE (argument_pack)
6518 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6519 TREE_CONSTANT (argument_pack) = 1;
6522 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6523 #ifdef ENABLE_CHECKING
6524 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6525 TREE_VEC_LENGTH (packed_args));
6526 #endif
6527 return argument_pack;
6530 /* Returns true if the template argument vector ARGS contains
6531 any pack expansions, false otherwise. */
6533 static bool
6534 any_pack_expanson_args_p (tree args)
6536 int i;
6537 if (args)
6538 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6539 if (PACK_EXPANSION_P (TREE_VEC_ELT (args, i)))
6540 return true;
6541 return false;
6544 /* Convert all template arguments to their appropriate types, and
6545 return a vector containing the innermost resulting template
6546 arguments. If any error occurs, return error_mark_node. Error and
6547 warning messages are issued under control of COMPLAIN.
6549 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6550 for arguments not specified in ARGS. Otherwise, if
6551 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6552 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6553 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6554 ARGS. */
6556 static tree
6557 coerce_template_parms (tree parms,
6558 tree args,
6559 tree in_decl,
6560 tsubst_flags_t complain,
6561 bool require_all_args,
6562 bool use_default_args)
6564 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6565 tree inner_args;
6566 tree new_args;
6567 tree new_inner_args;
6568 int saved_unevaluated_operand;
6569 int saved_inhibit_evaluation_warnings;
6571 /* When used as a boolean value, indicates whether this is a
6572 variadic template parameter list. Since it's an int, we can also
6573 subtract it from nparms to get the number of non-variadic
6574 parameters. */
6575 int variadic_p = 0;
6576 int post_variadic_parms = 0;
6578 if (args == error_mark_node)
6579 return error_mark_node;
6581 nparms = TREE_VEC_LENGTH (parms);
6583 /* Determine if there are any parameter packs. */
6584 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6586 tree tparm = TREE_VALUE (TREE_VEC_ELT (parms, parm_idx));
6587 if (variadic_p)
6588 ++post_variadic_parms;
6589 if (template_parameter_pack_p (tparm))
6590 ++variadic_p;
6593 inner_args = INNERMOST_TEMPLATE_ARGS (args);
6594 /* If there are no parameters that follow a parameter pack, we need to
6595 expand any argument packs so that we can deduce a parameter pack from
6596 some non-packed args followed by an argument pack, as in variadic85.C.
6597 If there are such parameters, we need to leave argument packs intact
6598 so the arguments are assigned properly. This can happen when dealing
6599 with a nested class inside a partial specialization of a class
6600 template, as in variadic92.C, or when deducing a template parameter pack
6601 from a sub-declarator, as in variadic114.C. */
6602 if (!post_variadic_parms)
6603 inner_args = expand_template_argument_pack (inner_args);
6605 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6606 if ((nargs > nparms && !variadic_p)
6607 || (nargs < nparms - variadic_p
6608 && require_all_args
6609 && !any_pack_expanson_args_p (inner_args)
6610 && (!use_default_args
6611 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6612 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6614 if (complain & tf_error)
6616 if (variadic_p)
6618 nparms -= variadic_p;
6619 error ("wrong number of template arguments "
6620 "(%d, should be %d or more)", nargs, nparms);
6622 else
6623 error ("wrong number of template arguments "
6624 "(%d, should be %d)", nargs, nparms);
6626 if (in_decl)
6627 error ("provided for %q+D", in_decl);
6630 return error_mark_node;
6633 /* We need to evaluate the template arguments, even though this
6634 template-id may be nested within a "sizeof". */
6635 saved_unevaluated_operand = cp_unevaluated_operand;
6636 cp_unevaluated_operand = 0;
6637 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
6638 c_inhibit_evaluation_warnings = 0;
6639 new_inner_args = make_tree_vec (nparms);
6640 new_args = add_outermost_template_args (args, new_inner_args);
6641 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
6643 tree arg;
6644 tree parm;
6646 /* Get the Ith template parameter. */
6647 parm = TREE_VEC_ELT (parms, parm_idx);
6649 if (parm == error_mark_node)
6651 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
6652 continue;
6655 /* Calculate the next argument. */
6656 if (arg_idx < nargs)
6657 arg = TREE_VEC_ELT (inner_args, arg_idx);
6658 else
6659 arg = NULL_TREE;
6661 if (template_parameter_pack_p (TREE_VALUE (parm))
6662 && !(arg && ARGUMENT_PACK_P (arg)))
6664 /* All remaining arguments will be placed in the
6665 template parameter pack PARM. */
6666 arg = coerce_template_parameter_pack (parms, parm_idx, args,
6667 inner_args, arg_idx,
6668 new_args, &lost,
6669 in_decl, complain);
6671 /* Store this argument. */
6672 if (arg == error_mark_node)
6673 lost++;
6674 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
6676 /* We are done with all of the arguments. */
6677 arg_idx = nargs;
6679 continue;
6681 else if (arg)
6683 if (PACK_EXPANSION_P (arg))
6685 /* We don't know how many args we have yet, just
6686 use the unconverted ones for now. */
6687 new_inner_args = inner_args;
6688 break;
6691 else if (require_all_args)
6693 /* There must be a default arg in this case. */
6694 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
6695 complain, in_decl);
6696 /* The position of the first default template argument,
6697 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
6698 Record that. */
6699 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6700 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args, arg_idx);
6702 else
6703 break;
6705 if (arg == error_mark_node)
6707 if (complain & tf_error)
6708 error ("template argument %d is invalid", arg_idx + 1);
6710 else if (!arg)
6711 /* This only occurs if there was an error in the template
6712 parameter list itself (which we would already have
6713 reported) that we are trying to recover from, e.g., a class
6714 template with a parameter list such as
6715 template<typename..., typename>. */
6716 ++lost;
6717 else
6718 arg = convert_template_argument (TREE_VALUE (parm),
6719 arg, new_args, complain,
6720 parm_idx, in_decl);
6722 if (arg == error_mark_node)
6723 lost++;
6724 TREE_VEC_ELT (new_inner_args, arg_idx) = arg;
6726 cp_unevaluated_operand = saved_unevaluated_operand;
6727 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
6729 if (lost)
6730 return error_mark_node;
6732 #ifdef ENABLE_CHECKING
6733 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6734 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
6735 TREE_VEC_LENGTH (new_inner_args));
6736 #endif
6738 return new_inner_args;
6741 /* Returns 1 if template args OT and NT are equivalent. */
6743 static int
6744 template_args_equal (tree ot, tree nt)
6746 if (nt == ot)
6747 return 1;
6748 if (nt == NULL_TREE || ot == NULL_TREE)
6749 return false;
6751 if (TREE_CODE (nt) == TREE_VEC)
6752 /* For member templates */
6753 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
6754 else if (PACK_EXPANSION_P (ot))
6755 return (PACK_EXPANSION_P (nt)
6756 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
6757 PACK_EXPANSION_PATTERN (nt))
6758 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
6759 PACK_EXPANSION_EXTRA_ARGS (nt)));
6760 else if (ARGUMENT_PACK_P (ot))
6762 int i, len;
6763 tree opack, npack;
6765 if (!ARGUMENT_PACK_P (nt))
6766 return 0;
6768 opack = ARGUMENT_PACK_ARGS (ot);
6769 npack = ARGUMENT_PACK_ARGS (nt);
6770 len = TREE_VEC_LENGTH (opack);
6771 if (TREE_VEC_LENGTH (npack) != len)
6772 return 0;
6773 for (i = 0; i < len; ++i)
6774 if (!template_args_equal (TREE_VEC_ELT (opack, i),
6775 TREE_VEC_ELT (npack, i)))
6776 return 0;
6777 return 1;
6779 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
6781 /* We get here probably because we are in the middle of substituting
6782 into the pattern of a pack expansion. In that case the
6783 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
6784 interested in. So we want to use the initial pack argument for
6785 the comparison. */
6786 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
6787 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
6788 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
6789 return template_args_equal (ot, nt);
6791 else if (TYPE_P (nt))
6792 return TYPE_P (ot) && same_type_p (ot, nt);
6793 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
6794 return 0;
6795 else
6796 return cp_tree_equal (ot, nt);
6799 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
6800 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
6801 NEWARG_PTR with the offending arguments if they are non-NULL. */
6803 static int
6804 comp_template_args_with_info (tree oldargs, tree newargs,
6805 tree *oldarg_ptr, tree *newarg_ptr)
6807 int i;
6809 if (oldargs == newargs)
6810 return 1;
6812 if (!oldargs || !newargs)
6813 return 0;
6815 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
6816 return 0;
6818 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
6820 tree nt = TREE_VEC_ELT (newargs, i);
6821 tree ot = TREE_VEC_ELT (oldargs, i);
6823 if (! template_args_equal (ot, nt))
6825 if (oldarg_ptr != NULL)
6826 *oldarg_ptr = ot;
6827 if (newarg_ptr != NULL)
6828 *newarg_ptr = nt;
6829 return 0;
6832 return 1;
6835 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
6836 of template arguments. Returns 0 otherwise. */
6839 comp_template_args (tree oldargs, tree newargs)
6841 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
6844 static void
6845 add_pending_template (tree d)
6847 tree ti = (TYPE_P (d)
6848 ? CLASSTYPE_TEMPLATE_INFO (d)
6849 : DECL_TEMPLATE_INFO (d));
6850 struct pending_template *pt;
6851 int level;
6853 if (TI_PENDING_TEMPLATE_FLAG (ti))
6854 return;
6856 /* We are called both from instantiate_decl, where we've already had a
6857 tinst_level pushed, and instantiate_template, where we haven't.
6858 Compensate. */
6859 level = !current_tinst_level || current_tinst_level->decl != d;
6861 if (level)
6862 push_tinst_level (d);
6864 pt = ggc_alloc_pending_template ();
6865 pt->next = NULL;
6866 pt->tinst = current_tinst_level;
6867 if (last_pending_template)
6868 last_pending_template->next = pt;
6869 else
6870 pending_templates = pt;
6872 last_pending_template = pt;
6874 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
6876 if (level)
6877 pop_tinst_level ();
6881 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
6882 ARGLIST. Valid choices for FNS are given in the cp-tree.def
6883 documentation for TEMPLATE_ID_EXPR. */
6885 tree
6886 lookup_template_function (tree fns, tree arglist)
6888 tree type;
6890 if (fns == error_mark_node || arglist == error_mark_node)
6891 return error_mark_node;
6893 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
6895 if (!is_overloaded_fn (fns) && TREE_CODE (fns) != IDENTIFIER_NODE)
6897 error ("%q#D is not a function template", fns);
6898 return error_mark_node;
6901 if (BASELINK_P (fns))
6903 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
6904 unknown_type_node,
6905 BASELINK_FUNCTIONS (fns),
6906 arglist);
6907 return fns;
6910 type = TREE_TYPE (fns);
6911 if (TREE_CODE (fns) == OVERLOAD || !type)
6912 type = unknown_type_node;
6914 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
6917 /* Within the scope of a template class S<T>, the name S gets bound
6918 (in build_self_reference) to a TYPE_DECL for the class, not a
6919 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
6920 or one of its enclosing classes, and that type is a template,
6921 return the associated TEMPLATE_DECL. Otherwise, the original
6922 DECL is returned.
6924 Also handle the case when DECL is a TREE_LIST of ambiguous
6925 injected-class-names from different bases. */
6927 tree
6928 maybe_get_template_decl_from_type_decl (tree decl)
6930 if (decl == NULL_TREE)
6931 return decl;
6933 /* DR 176: A lookup that finds an injected-class-name (10.2
6934 [class.member.lookup]) can result in an ambiguity in certain cases
6935 (for example, if it is found in more than one base class). If all of
6936 the injected-class-names that are found refer to specializations of
6937 the same class template, and if the name is followed by a
6938 template-argument-list, the reference refers to the class template
6939 itself and not a specialization thereof, and is not ambiguous. */
6940 if (TREE_CODE (decl) == TREE_LIST)
6942 tree t, tmpl = NULL_TREE;
6943 for (t = decl; t; t = TREE_CHAIN (t))
6945 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
6946 if (!tmpl)
6947 tmpl = elt;
6948 else if (tmpl != elt)
6949 break;
6951 if (tmpl && t == NULL_TREE)
6952 return tmpl;
6953 else
6954 return decl;
6957 return (decl != NULL_TREE
6958 && DECL_SELF_REFERENCE_P (decl)
6959 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
6960 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
6963 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
6964 parameters, find the desired type.
6966 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
6968 IN_DECL, if non-NULL, is the template declaration we are trying to
6969 instantiate.
6971 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
6972 the class we are looking up.
6974 Issue error and warning messages under control of COMPLAIN.
6976 If the template class is really a local class in a template
6977 function, then the FUNCTION_CONTEXT is the function in which it is
6978 being instantiated.
6980 ??? Note that this function is currently called *twice* for each
6981 template-id: the first time from the parser, while creating the
6982 incomplete type (finish_template_type), and the second type during the
6983 real instantiation (instantiate_template_class). This is surely something
6984 that we want to avoid. It also causes some problems with argument
6985 coercion (see convert_nontype_argument for more information on this). */
6987 static tree
6988 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
6989 int entering_scope, tsubst_flags_t complain)
6991 tree templ = NULL_TREE, parmlist;
6992 tree t;
6993 void **slot;
6994 spec_entry *entry;
6995 spec_entry elt;
6996 hashval_t hash;
6998 if (TREE_CODE (d1) == IDENTIFIER_NODE)
7000 tree value = innermost_non_namespace_value (d1);
7001 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7002 templ = value;
7003 else
7005 if (context)
7006 push_decl_namespace (context);
7007 templ = lookup_name (d1);
7008 templ = maybe_get_template_decl_from_type_decl (templ);
7009 if (context)
7010 pop_decl_namespace ();
7012 if (templ)
7013 context = DECL_CONTEXT (templ);
7015 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7017 tree type = TREE_TYPE (d1);
7019 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7020 an implicit typename for the second A. Deal with it. */
7021 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7022 type = TREE_TYPE (type);
7024 if (CLASSTYPE_TEMPLATE_INFO (type))
7026 templ = CLASSTYPE_TI_TEMPLATE (type);
7027 d1 = DECL_NAME (templ);
7030 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7031 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7033 templ = TYPE_TI_TEMPLATE (d1);
7034 d1 = DECL_NAME (templ);
7036 else if (TREE_CODE (d1) == TEMPLATE_DECL
7037 && DECL_TEMPLATE_RESULT (d1)
7038 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
7040 templ = d1;
7041 d1 = DECL_NAME (templ);
7042 context = DECL_CONTEXT (templ);
7045 /* Issue an error message if we didn't find a template. */
7046 if (! templ)
7048 if (complain & tf_error)
7049 error ("%qT is not a template", d1);
7050 return error_mark_node;
7053 if (TREE_CODE (templ) != TEMPLATE_DECL
7054 /* Make sure it's a user visible template, if it was named by
7055 the user. */
7056 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7057 && !PRIMARY_TEMPLATE_P (templ)))
7059 if (complain & tf_error)
7061 error ("non-template type %qT used as a template", d1);
7062 if (in_decl)
7063 error ("for template declaration %q+D", in_decl);
7065 return error_mark_node;
7068 complain &= ~tf_user;
7070 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7072 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7073 template arguments */
7075 tree parm;
7076 tree arglist2;
7077 tree outer;
7079 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7081 /* Consider an example where a template template parameter declared as
7083 template <class T, class U = std::allocator<T> > class TT
7085 The template parameter level of T and U are one level larger than
7086 of TT. To proper process the default argument of U, say when an
7087 instantiation `TT<int>' is seen, we need to build the full
7088 arguments containing {int} as the innermost level. Outer levels,
7089 available when not appearing as default template argument, can be
7090 obtained from the arguments of the enclosing template.
7092 Suppose that TT is later substituted with std::vector. The above
7093 instantiation is `TT<int, std::allocator<T> >' with TT at
7094 level 1, and T at level 2, while the template arguments at level 1
7095 becomes {std::vector} and the inner level 2 is {int}. */
7097 outer = DECL_CONTEXT (templ);
7098 if (outer)
7099 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7100 else if (current_template_parms)
7101 /* This is an argument of the current template, so we haven't set
7102 DECL_CONTEXT yet. */
7103 outer = current_template_args ();
7105 if (outer)
7106 arglist = add_to_template_args (outer, arglist);
7108 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7109 complain,
7110 /*require_all_args=*/true,
7111 /*use_default_args=*/true);
7112 if (arglist2 == error_mark_node
7113 || (!uses_template_parms (arglist2)
7114 && check_instantiated_args (templ, arglist2, complain)))
7115 return error_mark_node;
7117 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7118 return parm;
7120 else
7122 tree template_type = TREE_TYPE (templ);
7123 tree gen_tmpl;
7124 tree type_decl;
7125 tree found = NULL_TREE;
7126 int arg_depth;
7127 int parm_depth;
7128 int is_dependent_type;
7129 int use_partial_inst_tmpl = false;
7131 if (template_type == error_mark_node)
7132 /* An error occured while building the template TEMPL, and a
7133 diagnostic has most certainly been emitted for that
7134 already. Let's propagate that error. */
7135 return error_mark_node;
7137 gen_tmpl = most_general_template (templ);
7138 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7139 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7140 arg_depth = TMPL_ARGS_DEPTH (arglist);
7142 if (arg_depth == 1 && parm_depth > 1)
7144 /* We've been given an incomplete set of template arguments.
7145 For example, given:
7147 template <class T> struct S1 {
7148 template <class U> struct S2 {};
7149 template <class U> struct S2<U*> {};
7152 we will be called with an ARGLIST of `U*', but the
7153 TEMPLATE will be `template <class T> template
7154 <class U> struct S1<T>::S2'. We must fill in the missing
7155 arguments. */
7156 arglist
7157 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7158 arglist);
7159 arg_depth = TMPL_ARGS_DEPTH (arglist);
7162 /* Now we should have enough arguments. */
7163 gcc_assert (parm_depth == arg_depth);
7165 /* From here on, we're only interested in the most general
7166 template. */
7168 /* Calculate the BOUND_ARGS. These will be the args that are
7169 actually tsubst'd into the definition to create the
7170 instantiation. */
7171 if (parm_depth > 1)
7173 /* We have multiple levels of arguments to coerce, at once. */
7174 int i;
7175 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7177 tree bound_args = make_tree_vec (parm_depth);
7179 for (i = saved_depth,
7180 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7181 i > 0 && t != NULL_TREE;
7182 --i, t = TREE_CHAIN (t))
7184 tree a;
7185 if (i == saved_depth)
7186 a = coerce_template_parms (TREE_VALUE (t),
7187 arglist, gen_tmpl,
7188 complain,
7189 /*require_all_args=*/true,
7190 /*use_default_args=*/true);
7191 else
7192 /* Outer levels should have already been coerced. */
7193 a = TMPL_ARGS_LEVEL (arglist, i);
7195 /* Don't process further if one of the levels fails. */
7196 if (a == error_mark_node)
7198 /* Restore the ARGLIST to its full size. */
7199 TREE_VEC_LENGTH (arglist) = saved_depth;
7200 return error_mark_node;
7203 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7205 /* We temporarily reduce the length of the ARGLIST so
7206 that coerce_template_parms will see only the arguments
7207 corresponding to the template parameters it is
7208 examining. */
7209 TREE_VEC_LENGTH (arglist)--;
7212 /* Restore the ARGLIST to its full size. */
7213 TREE_VEC_LENGTH (arglist) = saved_depth;
7215 arglist = bound_args;
7217 else
7218 arglist
7219 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7220 INNERMOST_TEMPLATE_ARGS (arglist),
7221 gen_tmpl,
7222 complain,
7223 /*require_all_args=*/true,
7224 /*use_default_args=*/true);
7226 if (arglist == error_mark_node)
7227 /* We were unable to bind the arguments. */
7228 return error_mark_node;
7230 /* In the scope of a template class, explicit references to the
7231 template class refer to the type of the template, not any
7232 instantiation of it. For example, in:
7234 template <class T> class C { void f(C<T>); }
7236 the `C<T>' is just the same as `C'. Outside of the
7237 class, however, such a reference is an instantiation. */
7238 if ((entering_scope
7239 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7240 || currently_open_class (template_type))
7241 /* comp_template_args is expensive, check it last. */
7242 && comp_template_args (TYPE_TI_ARGS (template_type),
7243 arglist))
7244 return template_type;
7246 /* If we already have this specialization, return it. */
7247 elt.tmpl = gen_tmpl;
7248 elt.args = arglist;
7249 hash = hash_specialization (&elt);
7250 entry = (spec_entry *) htab_find_with_hash (type_specializations,
7251 &elt, hash);
7253 if (entry)
7254 return entry->spec;
7256 is_dependent_type = uses_template_parms (arglist);
7258 /* If the deduced arguments are invalid, then the binding
7259 failed. */
7260 if (!is_dependent_type
7261 && check_instantiated_args (gen_tmpl,
7262 INNERMOST_TEMPLATE_ARGS (arglist),
7263 complain))
7264 return error_mark_node;
7266 if (!is_dependent_type
7267 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7268 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7269 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7271 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7272 DECL_NAME (gen_tmpl),
7273 /*tag_scope=*/ts_global);
7274 return found;
7277 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7278 complain, in_decl);
7279 if (context == error_mark_node)
7280 return error_mark_node;
7282 if (!context)
7283 context = global_namespace;
7285 /* Create the type. */
7286 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7288 if (!is_dependent_type)
7290 set_current_access_from_decl (TYPE_NAME (template_type));
7291 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7292 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7293 arglist, complain, in_decl),
7294 SCOPED_ENUM_P (template_type), NULL);
7296 else
7298 /* We don't want to call start_enum for this type, since
7299 the values for the enumeration constants may involve
7300 template parameters. And, no one should be interested
7301 in the enumeration constants for such a type. */
7302 t = cxx_make_type (ENUMERAL_TYPE);
7303 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7305 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7306 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7307 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7309 else if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7311 /* The user referred to a specialization of an alias
7312 template represented by GEN_TMPL.
7314 [temp.alias]/2 says:
7316 When a template-id refers to the specialization of an
7317 alias template, it is equivalent to the associated
7318 type obtained by substitution of its
7319 template-arguments for the template-parameters in the
7320 type-id of the alias template. */
7322 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7323 /* Note that the call above (by indirectly calling
7324 register_specialization in tsubst_decl) registers the
7325 TYPE_DECL representing the specialization of the alias
7326 template. So next time someone substitutes ARGLIST for
7327 the template parms into the alias template (GEN_TMPL),
7328 she'll get that TYPE_DECL back. */
7330 if (t == error_mark_node)
7331 return t;
7333 else if (CLASS_TYPE_P (template_type))
7335 t = make_class_type (TREE_CODE (template_type));
7336 CLASSTYPE_DECLARED_CLASS (t)
7337 = CLASSTYPE_DECLARED_CLASS (template_type);
7338 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7339 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7341 /* A local class. Make sure the decl gets registered properly. */
7342 if (context == current_function_decl)
7343 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7345 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7346 /* This instantiation is another name for the primary
7347 template type. Set the TYPE_CANONICAL field
7348 appropriately. */
7349 TYPE_CANONICAL (t) = template_type;
7350 else if (any_template_arguments_need_structural_equality_p (arglist))
7351 /* Some of the template arguments require structural
7352 equality testing, so this template class requires
7353 structural equality testing. */
7354 SET_TYPE_STRUCTURAL_EQUALITY (t);
7356 else
7357 gcc_unreachable ();
7359 /* If we called start_enum or pushtag above, this information
7360 will already be set up. */
7361 if (!TYPE_NAME (t))
7363 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7365 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7366 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7367 DECL_SOURCE_LOCATION (type_decl)
7368 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7370 else
7371 type_decl = TYPE_NAME (t);
7373 if (CLASS_TYPE_P (template_type))
7375 TREE_PRIVATE (type_decl)
7376 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7377 TREE_PROTECTED (type_decl)
7378 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7379 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7381 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7382 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7386 /* Let's consider the explicit specialization of a member
7387 of a class template specialization that is implicitely instantiated,
7388 e.g.:
7389 template<class T>
7390 struct S
7392 template<class U> struct M {}; //#0
7395 template<>
7396 template<>
7397 struct S<int>::M<char> //#1
7399 int i;
7401 [temp.expl.spec]/4 says this is valid.
7403 In this case, when we write:
7404 S<int>::M<char> m;
7406 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7407 the one of #0.
7409 When we encounter #1, we want to store the partial instantiation
7410 of M (template<class T> S<int>::M<T>) in it's CLASSTYPE_TI_TEMPLATE.
7412 For all cases other than this "explicit specialization of member of a
7413 class template", we just want to store the most general template into
7414 the CLASSTYPE_TI_TEMPLATE of M.
7416 This case of "explicit specialization of member of a class template"
7417 only happens when:
7418 1/ the enclosing class is an instantiation of, and therefore not
7419 the same as, the context of the most general template, and
7420 2/ we aren't looking at the partial instantiation itself, i.e.
7421 the innermost arguments are not the same as the innermost parms of
7422 the most general template.
7424 So it's only when 1/ and 2/ happens that we want to use the partial
7425 instantiation of the member template in lieu of its most general
7426 template. */
7428 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7429 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7430 /* the enclosing class must be an instantiation... */
7431 && CLASS_TYPE_P (context)
7432 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7434 tree partial_inst_args;
7435 TREE_VEC_LENGTH (arglist)--;
7436 ++processing_template_decl;
7437 partial_inst_args =
7438 tsubst (INNERMOST_TEMPLATE_ARGS
7439 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7440 arglist, complain, NULL_TREE);
7441 --processing_template_decl;
7442 TREE_VEC_LENGTH (arglist)++;
7443 use_partial_inst_tmpl =
7444 /*...and we must not be looking at the partial instantiation
7445 itself. */
7446 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7447 partial_inst_args);
7450 if (!use_partial_inst_tmpl)
7451 /* This case is easy; there are no member templates involved. */
7452 found = gen_tmpl;
7453 else
7455 /* This is a full instantiation of a member template. Find
7456 the partial instantiation of which this is an instance. */
7458 /* Temporarily reduce by one the number of levels in the ARGLIST
7459 so as to avoid comparing the last set of arguments. */
7460 TREE_VEC_LENGTH (arglist)--;
7461 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7462 TREE_VEC_LENGTH (arglist)++;
7463 /* FOUND is either a proper class type, or an alias
7464 template specialization. In the later case, it's a
7465 TYPE_DECL, resulting from the substituting of arguments
7466 for parameters in the TYPE_DECL of the alias template
7467 done earlier. So be careful while getting the template
7468 of FOUND. */
7469 found = TREE_CODE (found) == TYPE_DECL
7470 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
7471 : CLASSTYPE_TI_TEMPLATE (found);
7474 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
7476 elt.spec = t;
7477 slot = htab_find_slot_with_hash (type_specializations,
7478 &elt, hash, INSERT);
7479 entry = ggc_alloc_spec_entry ();
7480 *entry = elt;
7481 *slot = entry;
7483 /* Note this use of the partial instantiation so we can check it
7484 later in maybe_process_partial_specialization. */
7485 DECL_TEMPLATE_INSTANTIATIONS (templ)
7486 = tree_cons (arglist, t,
7487 DECL_TEMPLATE_INSTANTIATIONS (templ));
7489 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type)
7490 /* Now that the type has been registered on the instantiations
7491 list, we set up the enumerators. Because the enumeration
7492 constants may involve the enumeration type itself, we make
7493 sure to register the type first, and then create the
7494 constants. That way, doing tsubst_expr for the enumeration
7495 constants won't result in recursive calls here; we'll find
7496 the instantiation and exit above. */
7497 tsubst_enum (template_type, t, arglist);
7499 if (CLASS_TYPE_P (template_type) && is_dependent_type)
7500 /* If the type makes use of template parameters, the
7501 code that generates debugging information will crash. */
7502 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
7504 /* Possibly limit visibility based on template args. */
7505 TREE_PUBLIC (type_decl) = 1;
7506 determine_visibility (type_decl);
7508 return t;
7512 /* Wrapper for lookup_template_class_1. */
7514 tree
7515 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
7516 int entering_scope, tsubst_flags_t complain)
7518 tree ret;
7519 timevar_push (TV_TEMPLATE_INST);
7520 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
7521 entering_scope, complain);
7522 timevar_pop (TV_TEMPLATE_INST);
7523 return ret;
7526 struct pair_fn_data
7528 tree_fn_t fn;
7529 void *data;
7530 /* True when we should also visit template parameters that occur in
7531 non-deduced contexts. */
7532 bool include_nondeduced_p;
7533 struct pointer_set_t *visited;
7536 /* Called from for_each_template_parm via walk_tree. */
7538 static tree
7539 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
7541 tree t = *tp;
7542 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
7543 tree_fn_t fn = pfd->fn;
7544 void *data = pfd->data;
7546 if (TYPE_P (t)
7547 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
7548 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
7549 pfd->include_nondeduced_p))
7550 return error_mark_node;
7552 switch (TREE_CODE (t))
7554 case RECORD_TYPE:
7555 if (TYPE_PTRMEMFUNC_P (t))
7556 break;
7557 /* Fall through. */
7559 case UNION_TYPE:
7560 case ENUMERAL_TYPE:
7561 if (!TYPE_TEMPLATE_INFO (t))
7562 *walk_subtrees = 0;
7563 else if (for_each_template_parm (TI_ARGS (TYPE_TEMPLATE_INFO (t)),
7564 fn, data, pfd->visited,
7565 pfd->include_nondeduced_p))
7566 return error_mark_node;
7567 break;
7569 case INTEGER_TYPE:
7570 if (for_each_template_parm (TYPE_MIN_VALUE (t),
7571 fn, data, pfd->visited,
7572 pfd->include_nondeduced_p)
7573 || for_each_template_parm (TYPE_MAX_VALUE (t),
7574 fn, data, pfd->visited,
7575 pfd->include_nondeduced_p))
7576 return error_mark_node;
7577 break;
7579 case METHOD_TYPE:
7580 /* Since we're not going to walk subtrees, we have to do this
7581 explicitly here. */
7582 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
7583 pfd->visited, pfd->include_nondeduced_p))
7584 return error_mark_node;
7585 /* Fall through. */
7587 case FUNCTION_TYPE:
7588 /* Check the return type. */
7589 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7590 pfd->include_nondeduced_p))
7591 return error_mark_node;
7593 /* Check the parameter types. Since default arguments are not
7594 instantiated until they are needed, the TYPE_ARG_TYPES may
7595 contain expressions that involve template parameters. But,
7596 no-one should be looking at them yet. And, once they're
7597 instantiated, they don't contain template parameters, so
7598 there's no point in looking at them then, either. */
7600 tree parm;
7602 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
7603 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
7604 pfd->visited, pfd->include_nondeduced_p))
7605 return error_mark_node;
7607 /* Since we've already handled the TYPE_ARG_TYPES, we don't
7608 want walk_tree walking into them itself. */
7609 *walk_subtrees = 0;
7611 break;
7613 case TYPEOF_TYPE:
7614 case UNDERLYING_TYPE:
7615 if (pfd->include_nondeduced_p
7616 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
7617 pfd->visited,
7618 pfd->include_nondeduced_p))
7619 return error_mark_node;
7620 break;
7622 case FUNCTION_DECL:
7623 case VAR_DECL:
7624 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
7625 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
7626 pfd->visited, pfd->include_nondeduced_p))
7627 return error_mark_node;
7628 /* Fall through. */
7630 case PARM_DECL:
7631 case CONST_DECL:
7632 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
7633 && for_each_template_parm (DECL_INITIAL (t), fn, data,
7634 pfd->visited, pfd->include_nondeduced_p))
7635 return error_mark_node;
7636 if (DECL_CONTEXT (t)
7637 && pfd->include_nondeduced_p
7638 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
7639 pfd->visited, pfd->include_nondeduced_p))
7640 return error_mark_node;
7641 break;
7643 case BOUND_TEMPLATE_TEMPLATE_PARM:
7644 /* Record template parameters such as `T' inside `TT<T>'. */
7645 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
7646 pfd->include_nondeduced_p))
7647 return error_mark_node;
7648 /* Fall through. */
7650 case TEMPLATE_TEMPLATE_PARM:
7651 case TEMPLATE_TYPE_PARM:
7652 case TEMPLATE_PARM_INDEX:
7653 if (fn && (*fn)(t, data))
7654 return error_mark_node;
7655 else if (!fn)
7656 return error_mark_node;
7657 break;
7659 case TEMPLATE_DECL:
7660 /* A template template parameter is encountered. */
7661 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
7662 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7663 pfd->include_nondeduced_p))
7664 return error_mark_node;
7666 /* Already substituted template template parameter */
7667 *walk_subtrees = 0;
7668 break;
7670 case TYPENAME_TYPE:
7671 if (!fn
7672 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
7673 data, pfd->visited,
7674 pfd->include_nondeduced_p))
7675 return error_mark_node;
7676 break;
7678 case CONSTRUCTOR:
7679 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
7680 && pfd->include_nondeduced_p
7681 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
7682 (TREE_TYPE (t)), fn, data,
7683 pfd->visited, pfd->include_nondeduced_p))
7684 return error_mark_node;
7685 break;
7687 case INDIRECT_REF:
7688 case COMPONENT_REF:
7689 /* If there's no type, then this thing must be some expression
7690 involving template parameters. */
7691 if (!fn && !TREE_TYPE (t))
7692 return error_mark_node;
7693 break;
7695 case MODOP_EXPR:
7696 case CAST_EXPR:
7697 case IMPLICIT_CONV_EXPR:
7698 case REINTERPRET_CAST_EXPR:
7699 case CONST_CAST_EXPR:
7700 case STATIC_CAST_EXPR:
7701 case DYNAMIC_CAST_EXPR:
7702 case ARROW_EXPR:
7703 case DOTSTAR_EXPR:
7704 case TYPEID_EXPR:
7705 case PSEUDO_DTOR_EXPR:
7706 if (!fn)
7707 return error_mark_node;
7708 break;
7710 default:
7711 break;
7714 /* We didn't find any template parameters we liked. */
7715 return NULL_TREE;
7718 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
7719 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
7720 call FN with the parameter and the DATA.
7721 If FN returns nonzero, the iteration is terminated, and
7722 for_each_template_parm returns 1. Otherwise, the iteration
7723 continues. If FN never returns a nonzero value, the value
7724 returned by for_each_template_parm is 0. If FN is NULL, it is
7725 considered to be the function which always returns 1.
7727 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
7728 parameters that occur in non-deduced contexts. When false, only
7729 visits those template parameters that can be deduced. */
7731 static int
7732 for_each_template_parm (tree t, tree_fn_t fn, void* data,
7733 struct pointer_set_t *visited,
7734 bool include_nondeduced_p)
7736 struct pair_fn_data pfd;
7737 int result;
7739 /* Set up. */
7740 pfd.fn = fn;
7741 pfd.data = data;
7742 pfd.include_nondeduced_p = include_nondeduced_p;
7744 /* Walk the tree. (Conceptually, we would like to walk without
7745 duplicates, but for_each_template_parm_r recursively calls
7746 for_each_template_parm, so we would need to reorganize a fair
7747 bit to use walk_tree_without_duplicates, so we keep our own
7748 visited list.) */
7749 if (visited)
7750 pfd.visited = visited;
7751 else
7752 pfd.visited = pointer_set_create ();
7753 result = cp_walk_tree (&t,
7754 for_each_template_parm_r,
7755 &pfd,
7756 pfd.visited) != NULL_TREE;
7758 /* Clean up. */
7759 if (!visited)
7761 pointer_set_destroy (pfd.visited);
7762 pfd.visited = 0;
7765 return result;
7768 /* Returns true if T depends on any template parameter. */
7771 uses_template_parms (tree t)
7773 bool dependent_p;
7774 int saved_processing_template_decl;
7776 saved_processing_template_decl = processing_template_decl;
7777 if (!saved_processing_template_decl)
7778 processing_template_decl = 1;
7779 if (TYPE_P (t))
7780 dependent_p = dependent_type_p (t);
7781 else if (TREE_CODE (t) == TREE_VEC)
7782 dependent_p = any_dependent_template_arguments_p (t);
7783 else if (TREE_CODE (t) == TREE_LIST)
7784 dependent_p = (uses_template_parms (TREE_VALUE (t))
7785 || uses_template_parms (TREE_CHAIN (t)));
7786 else if (TREE_CODE (t) == TYPE_DECL)
7787 dependent_p = dependent_type_p (TREE_TYPE (t));
7788 else if (DECL_P (t)
7789 || EXPR_P (t)
7790 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
7791 || TREE_CODE (t) == OVERLOAD
7792 || BASELINK_P (t)
7793 || TREE_CODE (t) == IDENTIFIER_NODE
7794 || TREE_CODE (t) == TRAIT_EXPR
7795 || TREE_CODE (t) == CONSTRUCTOR
7796 || CONSTANT_CLASS_P (t))
7797 dependent_p = (type_dependent_expression_p (t)
7798 || value_dependent_expression_p (t));
7799 else
7801 gcc_assert (t == error_mark_node);
7802 dependent_p = false;
7805 processing_template_decl = saved_processing_template_decl;
7807 return dependent_p;
7810 /* Returns true iff current_function_decl is an incompletely instantiated
7811 template. Useful instead of processing_template_decl because the latter
7812 is set to 0 during fold_non_dependent_expr. */
7814 bool
7815 in_template_function (void)
7817 tree fn = current_function_decl;
7818 bool ret;
7819 ++processing_template_decl;
7820 ret = (fn && DECL_LANG_SPECIFIC (fn)
7821 && DECL_TEMPLATE_INFO (fn)
7822 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
7823 --processing_template_decl;
7824 return ret;
7827 /* Returns true if T depends on any template parameter with level LEVEL. */
7830 uses_template_parms_level (tree t, int level)
7832 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
7833 /*include_nondeduced_p=*/true);
7836 /* Returns TRUE iff INST is an instantiation we don't need to do in an
7837 ill-formed translation unit, i.e. a variable or function that isn't
7838 usable in a constant expression. */
7840 static inline bool
7841 neglectable_inst_p (tree d)
7843 return (DECL_P (d)
7844 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
7845 : decl_maybe_constant_var_p (d)));
7848 /* Returns TRUE iff we should refuse to instantiate DECL because it's
7849 neglectable and instantiated from within an erroneous instantiation. */
7851 static bool
7852 limit_bad_template_recursion (tree decl)
7854 struct tinst_level *lev = current_tinst_level;
7855 int errs = errorcount + sorrycount;
7856 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
7857 return false;
7859 for (; lev; lev = lev->next)
7860 if (neglectable_inst_p (lev->decl))
7861 break;
7863 return (lev && errs > lev->errors);
7866 static int tinst_depth;
7867 extern int max_tinst_depth;
7868 int depth_reached;
7870 static GTY(()) struct tinst_level *last_error_tinst_level;
7872 /* We're starting to instantiate D; record the template instantiation context
7873 for diagnostics and to restore it later. */
7876 push_tinst_level (tree d)
7878 struct tinst_level *new_level;
7880 if (tinst_depth >= max_tinst_depth)
7882 last_error_tinst_level = current_tinst_level;
7883 if (TREE_CODE (d) == TREE_LIST)
7884 error ("template instantiation depth exceeds maximum of %d (use "
7885 "-ftemplate-depth= to increase the maximum) substituting %qS",
7886 max_tinst_depth, d);
7887 else
7888 error ("template instantiation depth exceeds maximum of %d (use "
7889 "-ftemplate-depth= to increase the maximum) instantiating %qD",
7890 max_tinst_depth, d);
7892 print_instantiation_context ();
7894 return 0;
7897 /* If the current instantiation caused problems, don't let it instantiate
7898 anything else. Do allow deduction substitution and decls usable in
7899 constant expressions. */
7900 if (limit_bad_template_recursion (d))
7901 return 0;
7903 new_level = ggc_alloc_tinst_level ();
7904 new_level->decl = d;
7905 new_level->locus = input_location;
7906 new_level->errors = errorcount+sorrycount;
7907 new_level->in_system_header_p = in_system_header;
7908 new_level->next = current_tinst_level;
7909 current_tinst_level = new_level;
7911 ++tinst_depth;
7912 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
7913 depth_reached = tinst_depth;
7915 return 1;
7918 /* We're done instantiating this template; return to the instantiation
7919 context. */
7921 void
7922 pop_tinst_level (void)
7924 /* Restore the filename and line number stashed away when we started
7925 this instantiation. */
7926 input_location = current_tinst_level->locus;
7927 current_tinst_level = current_tinst_level->next;
7928 --tinst_depth;
7931 /* We're instantiating a deferred template; restore the template
7932 instantiation context in which the instantiation was requested, which
7933 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
7935 static tree
7936 reopen_tinst_level (struct tinst_level *level)
7938 struct tinst_level *t;
7940 tinst_depth = 0;
7941 for (t = level; t; t = t->next)
7942 ++tinst_depth;
7944 current_tinst_level = level;
7945 pop_tinst_level ();
7946 if (current_tinst_level)
7947 current_tinst_level->errors = errorcount+sorrycount;
7948 return level->decl;
7951 /* Returns the TINST_LEVEL which gives the original instantiation
7952 context. */
7954 struct tinst_level *
7955 outermost_tinst_level (void)
7957 struct tinst_level *level = current_tinst_level;
7958 if (level)
7959 while (level->next)
7960 level = level->next;
7961 return level;
7964 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
7965 vector of template arguments, as for tsubst.
7967 Returns an appropriate tsubst'd friend declaration. */
7969 static tree
7970 tsubst_friend_function (tree decl, tree args)
7972 tree new_friend;
7974 if (TREE_CODE (decl) == FUNCTION_DECL
7975 && DECL_TEMPLATE_INSTANTIATION (decl)
7976 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
7977 /* This was a friend declared with an explicit template
7978 argument list, e.g.:
7980 friend void f<>(T);
7982 to indicate that f was a template instantiation, not a new
7983 function declaration. Now, we have to figure out what
7984 instantiation of what template. */
7986 tree template_id, arglist, fns;
7987 tree new_args;
7988 tree tmpl;
7989 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
7991 /* Friend functions are looked up in the containing namespace scope.
7992 We must enter that scope, to avoid finding member functions of the
7993 current class with same name. */
7994 push_nested_namespace (ns);
7995 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
7996 tf_warning_or_error, NULL_TREE,
7997 /*integral_constant_expression_p=*/false);
7998 pop_nested_namespace (ns);
7999 arglist = tsubst (DECL_TI_ARGS (decl), args,
8000 tf_warning_or_error, NULL_TREE);
8001 template_id = lookup_template_function (fns, arglist);
8003 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8004 tmpl = determine_specialization (template_id, new_friend,
8005 &new_args,
8006 /*need_member_template=*/0,
8007 TREE_VEC_LENGTH (args),
8008 tsk_none);
8009 return instantiate_template (tmpl, new_args, tf_error);
8012 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8014 /* The NEW_FRIEND will look like an instantiation, to the
8015 compiler, but is not an instantiation from the point of view of
8016 the language. For example, we might have had:
8018 template <class T> struct S {
8019 template <class U> friend void f(T, U);
8022 Then, in S<int>, template <class U> void f(int, U) is not an
8023 instantiation of anything. */
8024 if (new_friend == error_mark_node)
8025 return error_mark_node;
8027 DECL_USE_TEMPLATE (new_friend) = 0;
8028 if (TREE_CODE (decl) == TEMPLATE_DECL)
8030 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8031 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8032 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8035 /* The mangled name for the NEW_FRIEND is incorrect. The function
8036 is not a template instantiation and should not be mangled like
8037 one. Therefore, we forget the mangling here; we'll recompute it
8038 later if we need it. */
8039 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8041 SET_DECL_RTL (new_friend, NULL);
8042 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8045 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8047 tree old_decl;
8048 tree new_friend_template_info;
8049 tree new_friend_result_template_info;
8050 tree ns;
8051 int new_friend_is_defn;
8053 /* We must save some information from NEW_FRIEND before calling
8054 duplicate decls since that function will free NEW_FRIEND if
8055 possible. */
8056 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8057 new_friend_is_defn =
8058 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8059 (template_for_substitution (new_friend)))
8060 != NULL_TREE);
8061 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8063 /* This declaration is a `primary' template. */
8064 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8066 new_friend_result_template_info
8067 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8069 else
8070 new_friend_result_template_info = NULL_TREE;
8072 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8073 if (new_friend_is_defn)
8074 DECL_INITIAL (new_friend) = error_mark_node;
8076 /* Inside pushdecl_namespace_level, we will push into the
8077 current namespace. However, the friend function should go
8078 into the namespace of the template. */
8079 ns = decl_namespace_context (new_friend);
8080 push_nested_namespace (ns);
8081 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8082 pop_nested_namespace (ns);
8084 if (old_decl == error_mark_node)
8085 return error_mark_node;
8087 if (old_decl != new_friend)
8089 /* This new friend declaration matched an existing
8090 declaration. For example, given:
8092 template <class T> void f(T);
8093 template <class U> class C {
8094 template <class T> friend void f(T) {}
8097 the friend declaration actually provides the definition
8098 of `f', once C has been instantiated for some type. So,
8099 old_decl will be the out-of-class template declaration,
8100 while new_friend is the in-class definition.
8102 But, if `f' was called before this point, the
8103 instantiation of `f' will have DECL_TI_ARGS corresponding
8104 to `T' but not to `U', references to which might appear
8105 in the definition of `f'. Previously, the most general
8106 template for an instantiation of `f' was the out-of-class
8107 version; now it is the in-class version. Therefore, we
8108 run through all specialization of `f', adding to their
8109 DECL_TI_ARGS appropriately. In particular, they need a
8110 new set of outer arguments, corresponding to the
8111 arguments for this class instantiation.
8113 The same situation can arise with something like this:
8115 friend void f(int);
8116 template <class T> class C {
8117 friend void f(T) {}
8120 when `C<int>' is instantiated. Now, `f(int)' is defined
8121 in the class. */
8123 if (!new_friend_is_defn)
8124 /* On the other hand, if the in-class declaration does
8125 *not* provide a definition, then we don't want to alter
8126 existing definitions. We can just leave everything
8127 alone. */
8129 else
8131 tree new_template = TI_TEMPLATE (new_friend_template_info);
8132 tree new_args = TI_ARGS (new_friend_template_info);
8134 /* Overwrite whatever template info was there before, if
8135 any, with the new template information pertaining to
8136 the declaration. */
8137 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8139 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8141 /* We should have called reregister_specialization in
8142 duplicate_decls. */
8143 gcc_assert (retrieve_specialization (new_template,
8144 new_args, 0)
8145 == old_decl);
8147 /* Instantiate it if the global has already been used. */
8148 if (DECL_ODR_USED (old_decl))
8149 instantiate_decl (old_decl, /*defer_ok=*/true,
8150 /*expl_inst_class_mem_p=*/false);
8152 else
8154 tree t;
8156 /* Indicate that the old function template is a partial
8157 instantiation. */
8158 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8159 = new_friend_result_template_info;
8161 gcc_assert (new_template
8162 == most_general_template (new_template));
8163 gcc_assert (new_template != old_decl);
8165 /* Reassign any specializations already in the hash table
8166 to the new more general template, and add the
8167 additional template args. */
8168 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8169 t != NULL_TREE;
8170 t = TREE_CHAIN (t))
8172 tree spec = TREE_VALUE (t);
8173 spec_entry elt;
8175 elt.tmpl = old_decl;
8176 elt.args = DECL_TI_ARGS (spec);
8177 elt.spec = NULL_TREE;
8179 htab_remove_elt (decl_specializations, &elt);
8181 DECL_TI_ARGS (spec)
8182 = add_outermost_template_args (new_args,
8183 DECL_TI_ARGS (spec));
8185 register_specialization
8186 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8189 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8193 /* The information from NEW_FRIEND has been merged into OLD_DECL
8194 by duplicate_decls. */
8195 new_friend = old_decl;
8198 else
8200 tree context = DECL_CONTEXT (new_friend);
8201 bool dependent_p;
8203 /* In the code
8204 template <class T> class C {
8205 template <class U> friend void C1<U>::f (); // case 1
8206 friend void C2<T>::f (); // case 2
8208 we only need to make sure CONTEXT is a complete type for
8209 case 2. To distinguish between the two cases, we note that
8210 CONTEXT of case 1 remains dependent type after tsubst while
8211 this isn't true for case 2. */
8212 ++processing_template_decl;
8213 dependent_p = dependent_type_p (context);
8214 --processing_template_decl;
8216 if (!dependent_p
8217 && !complete_type_or_else (context, NULL_TREE))
8218 return error_mark_node;
8220 if (COMPLETE_TYPE_P (context))
8222 /* Check to see that the declaration is really present, and,
8223 possibly obtain an improved declaration. */
8224 tree fn = check_classfn (context,
8225 new_friend, NULL_TREE);
8227 if (fn)
8228 new_friend = fn;
8232 return new_friend;
8235 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8236 template arguments, as for tsubst.
8238 Returns an appropriate tsubst'd friend type or error_mark_node on
8239 failure. */
8241 static tree
8242 tsubst_friend_class (tree friend_tmpl, tree args)
8244 tree friend_type;
8245 tree tmpl;
8246 tree context;
8248 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8250 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8251 return TREE_TYPE (t);
8254 context = CP_DECL_CONTEXT (friend_tmpl);
8256 if (context != global_namespace)
8258 if (TREE_CODE (context) == NAMESPACE_DECL)
8259 push_nested_namespace (context);
8260 else
8261 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8264 /* Look for a class template declaration. We look for hidden names
8265 because two friend declarations of the same template are the
8266 same. For example, in:
8268 struct A {
8269 template <typename> friend class F;
8271 template <typename> struct B {
8272 template <typename> friend class F;
8275 both F templates are the same. */
8276 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8277 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8279 /* But, if we don't find one, it might be because we're in a
8280 situation like this:
8282 template <class T>
8283 struct S {
8284 template <class U>
8285 friend struct S;
8288 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8289 for `S<int>', not the TEMPLATE_DECL. */
8290 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8292 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8293 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8296 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8298 /* The friend template has already been declared. Just
8299 check to see that the declarations match, and install any new
8300 default parameters. We must tsubst the default parameters,
8301 of course. We only need the innermost template parameters
8302 because that is all that redeclare_class_template will look
8303 at. */
8304 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8305 > TMPL_ARGS_DEPTH (args))
8307 tree parms;
8308 location_t saved_input_location;
8309 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8310 args, tf_warning_or_error);
8312 saved_input_location = input_location;
8313 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8314 redeclare_class_template (TREE_TYPE (tmpl), parms);
8315 input_location = saved_input_location;
8319 friend_type = TREE_TYPE (tmpl);
8321 else
8323 /* The friend template has not already been declared. In this
8324 case, the instantiation of the template class will cause the
8325 injection of this template into the global scope. */
8326 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8327 if (tmpl == error_mark_node)
8328 return error_mark_node;
8330 /* The new TMPL is not an instantiation of anything, so we
8331 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8332 the new type because that is supposed to be the corresponding
8333 template decl, i.e., TMPL. */
8334 DECL_USE_TEMPLATE (tmpl) = 0;
8335 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8336 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8337 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8338 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8340 /* Inject this template into the global scope. */
8341 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8344 if (context != global_namespace)
8346 if (TREE_CODE (context) == NAMESPACE_DECL)
8347 pop_nested_namespace (context);
8348 else
8349 pop_nested_class ();
8352 return friend_type;
8355 /* Returns zero if TYPE cannot be completed later due to circularity.
8356 Otherwise returns one. */
8358 static int
8359 can_complete_type_without_circularity (tree type)
8361 if (type == NULL_TREE || type == error_mark_node)
8362 return 0;
8363 else if (COMPLETE_TYPE_P (type))
8364 return 1;
8365 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8366 return can_complete_type_without_circularity (TREE_TYPE (type));
8367 else if (CLASS_TYPE_P (type)
8368 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8369 return 0;
8370 else
8371 return 1;
8374 /* Apply any attributes which had to be deferred until instantiation
8375 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8376 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8378 static void
8379 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8380 tree args, tsubst_flags_t complain, tree in_decl)
8382 tree last_dep = NULL_TREE;
8383 tree t;
8384 tree *p;
8386 for (t = attributes; t; t = TREE_CHAIN (t))
8387 if (ATTR_IS_DEPENDENT (t))
8389 last_dep = t;
8390 attributes = copy_list (attributes);
8391 break;
8394 if (DECL_P (*decl_p))
8396 if (TREE_TYPE (*decl_p) == error_mark_node)
8397 return;
8398 p = &DECL_ATTRIBUTES (*decl_p);
8400 else
8401 p = &TYPE_ATTRIBUTES (*decl_p);
8403 if (last_dep)
8405 tree late_attrs = NULL_TREE;
8406 tree *q = &late_attrs;
8408 for (*p = attributes; *p; )
8410 t = *p;
8411 if (ATTR_IS_DEPENDENT (t))
8413 *p = TREE_CHAIN (t);
8414 TREE_CHAIN (t) = NULL_TREE;
8415 /* If the first attribute argument is an identifier, don't
8416 pass it through tsubst. Attributes like mode, format,
8417 cleanup and several target specific attributes expect it
8418 unmodified. */
8419 if (TREE_VALUE (t)
8420 && TREE_CODE (TREE_VALUE (t)) == TREE_LIST
8421 && TREE_VALUE (TREE_VALUE (t))
8422 && (TREE_CODE (TREE_VALUE (TREE_VALUE (t)))
8423 == IDENTIFIER_NODE))
8425 tree chain
8426 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
8427 in_decl,
8428 /*integral_constant_expression_p=*/false);
8429 if (chain != TREE_CHAIN (TREE_VALUE (t)))
8430 TREE_VALUE (t)
8431 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
8432 chain);
8434 else
8435 TREE_VALUE (t)
8436 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
8437 /*integral_constant_expression_p=*/false);
8438 *q = t;
8439 q = &TREE_CHAIN (t);
8441 else
8442 p = &TREE_CHAIN (t);
8445 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
8449 /* Perform (or defer) access check for typedefs that were referenced
8450 from within the template TMPL code.
8451 This is a subroutine of instantiate_decl and instantiate_class_template.
8452 TMPL is the template to consider and TARGS is the list of arguments of
8453 that template. */
8455 static void
8456 perform_typedefs_access_check (tree tmpl, tree targs)
8458 location_t saved_location;
8459 unsigned i;
8460 qualified_typedef_usage_t *iter;
8462 if (!tmpl
8463 || (!CLASS_TYPE_P (tmpl)
8464 && TREE_CODE (tmpl) != FUNCTION_DECL))
8465 return;
8467 saved_location = input_location;
8468 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
8470 tree type_decl = iter->typedef_decl;
8471 tree type_scope = iter->context;
8473 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
8474 continue;
8476 if (uses_template_parms (type_decl))
8477 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
8478 if (uses_template_parms (type_scope))
8479 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
8481 /* Make access check error messages point to the location
8482 of the use of the typedef. */
8483 input_location = iter->locus;
8484 perform_or_defer_access_check (TYPE_BINFO (type_scope),
8485 type_decl, type_decl,
8486 tf_warning_or_error);
8488 input_location = saved_location;
8491 static tree
8492 instantiate_class_template_1 (tree type)
8494 tree templ, args, pattern, t, member;
8495 tree typedecl;
8496 tree pbinfo;
8497 tree base_list;
8498 unsigned int saved_maximum_field_alignment;
8499 tree fn_context;
8501 if (type == error_mark_node)
8502 return error_mark_node;
8504 if (COMPLETE_OR_OPEN_TYPE_P (type)
8505 || uses_template_parms (type))
8506 return type;
8508 /* Figure out which template is being instantiated. */
8509 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
8510 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
8512 /* Determine what specialization of the original template to
8513 instantiate. */
8514 t = most_specialized_class (type, templ, tf_warning_or_error);
8515 if (t == error_mark_node)
8517 TYPE_BEING_DEFINED (type) = 1;
8518 return error_mark_node;
8520 else if (t)
8522 /* This TYPE is actually an instantiation of a partial
8523 specialization. We replace the innermost set of ARGS with
8524 the arguments appropriate for substitution. For example,
8525 given:
8527 template <class T> struct S {};
8528 template <class T> struct S<T*> {};
8530 and supposing that we are instantiating S<int*>, ARGS will
8531 presently be {int*} -- but we need {int}. */
8532 pattern = TREE_TYPE (t);
8533 args = TREE_PURPOSE (t);
8535 else
8537 pattern = TREE_TYPE (templ);
8538 args = CLASSTYPE_TI_ARGS (type);
8541 /* If the template we're instantiating is incomplete, then clearly
8542 there's nothing we can do. */
8543 if (!COMPLETE_TYPE_P (pattern))
8544 return type;
8546 /* If we've recursively instantiated too many templates, stop. */
8547 if (! push_tinst_level (type))
8548 return type;
8550 /* Now we're really doing the instantiation. Mark the type as in
8551 the process of being defined. */
8552 TYPE_BEING_DEFINED (type) = 1;
8554 /* We may be in the middle of deferred access check. Disable
8555 it now. */
8556 push_deferring_access_checks (dk_no_deferred);
8558 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
8559 if (!fn_context)
8560 push_to_top_level ();
8561 /* Use #pragma pack from the template context. */
8562 saved_maximum_field_alignment = maximum_field_alignment;
8563 maximum_field_alignment = TYPE_PRECISION (pattern);
8565 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
8567 /* Set the input location to the most specialized template definition.
8568 This is needed if tsubsting causes an error. */
8569 typedecl = TYPE_MAIN_DECL (pattern);
8570 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
8571 DECL_SOURCE_LOCATION (typedecl);
8573 TYPE_PACKED (type) = TYPE_PACKED (pattern);
8574 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
8575 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
8576 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
8577 if (ANON_AGGR_TYPE_P (pattern))
8578 SET_ANON_AGGR_TYPE_P (type);
8579 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
8581 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
8582 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
8583 /* Adjust visibility for template arguments. */
8584 determine_visibility (TYPE_MAIN_DECL (type));
8586 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
8588 pbinfo = TYPE_BINFO (pattern);
8590 /* We should never instantiate a nested class before its enclosing
8591 class; we need to look up the nested class by name before we can
8592 instantiate it, and that lookup should instantiate the enclosing
8593 class. */
8594 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
8595 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
8597 base_list = NULL_TREE;
8598 if (BINFO_N_BASE_BINFOS (pbinfo))
8600 tree pbase_binfo;
8601 tree pushed_scope;
8602 int i;
8604 /* We must enter the scope containing the type, as that is where
8605 the accessibility of types named in dependent bases are
8606 looked up from. */
8607 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
8609 /* Substitute into each of the bases to determine the actual
8610 basetypes. */
8611 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
8613 tree base;
8614 tree access = BINFO_BASE_ACCESS (pbinfo, i);
8615 tree expanded_bases = NULL_TREE;
8616 int idx, len = 1;
8618 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
8620 expanded_bases =
8621 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
8622 args, tf_error, NULL_TREE);
8623 if (expanded_bases == error_mark_node)
8624 continue;
8626 len = TREE_VEC_LENGTH (expanded_bases);
8629 for (idx = 0; idx < len; idx++)
8631 if (expanded_bases)
8632 /* Extract the already-expanded base class. */
8633 base = TREE_VEC_ELT (expanded_bases, idx);
8634 else
8635 /* Substitute to figure out the base class. */
8636 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
8637 NULL_TREE);
8639 if (base == error_mark_node)
8640 continue;
8642 base_list = tree_cons (access, base, base_list);
8643 if (BINFO_VIRTUAL_P (pbase_binfo))
8644 TREE_TYPE (base_list) = integer_type_node;
8648 /* The list is now in reverse order; correct that. */
8649 base_list = nreverse (base_list);
8651 if (pushed_scope)
8652 pop_scope (pushed_scope);
8654 /* Now call xref_basetypes to set up all the base-class
8655 information. */
8656 xref_basetypes (type, base_list);
8658 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
8659 (int) ATTR_FLAG_TYPE_IN_PLACE,
8660 args, tf_error, NULL_TREE);
8661 fixup_attribute_variants (type);
8663 /* Now that our base classes are set up, enter the scope of the
8664 class, so that name lookups into base classes, etc. will work
8665 correctly. This is precisely analogous to what we do in
8666 begin_class_definition when defining an ordinary non-template
8667 class, except we also need to push the enclosing classes. */
8668 push_nested_class (type);
8670 /* Now members are processed in the order of declaration. */
8671 for (member = CLASSTYPE_DECL_LIST (pattern);
8672 member; member = TREE_CHAIN (member))
8674 tree t = TREE_VALUE (member);
8676 if (TREE_PURPOSE (member))
8678 if (TYPE_P (t))
8680 /* Build new CLASSTYPE_NESTED_UTDS. */
8682 tree newtag;
8683 bool class_template_p;
8685 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
8686 && TYPE_LANG_SPECIFIC (t)
8687 && CLASSTYPE_IS_TEMPLATE (t));
8688 /* If the member is a class template, then -- even after
8689 substitution -- there may be dependent types in the
8690 template argument list for the class. We increment
8691 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
8692 that function will assume that no types are dependent
8693 when outside of a template. */
8694 if (class_template_p)
8695 ++processing_template_decl;
8696 newtag = tsubst (t, args, tf_error, NULL_TREE);
8697 if (class_template_p)
8698 --processing_template_decl;
8699 if (newtag == error_mark_node)
8700 continue;
8702 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
8704 tree name = TYPE_IDENTIFIER (t);
8706 if (class_template_p)
8707 /* Unfortunately, lookup_template_class sets
8708 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
8709 instantiation (i.e., for the type of a member
8710 template class nested within a template class.)
8711 This behavior is required for
8712 maybe_process_partial_specialization to work
8713 correctly, but is not accurate in this case;
8714 the TAG is not an instantiation of anything.
8715 (The corresponding TEMPLATE_DECL is an
8716 instantiation, but the TYPE is not.) */
8717 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
8719 /* Now, we call pushtag to put this NEWTAG into the scope of
8720 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
8721 pushtag calling push_template_decl. We don't have to do
8722 this for enums because it will already have been done in
8723 tsubst_enum. */
8724 if (name)
8725 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
8726 pushtag (name, newtag, /*tag_scope=*/ts_current);
8729 else if (TREE_CODE (t) == FUNCTION_DECL
8730 || DECL_FUNCTION_TEMPLATE_P (t))
8732 /* Build new TYPE_METHODS. */
8733 tree r;
8735 if (TREE_CODE (t) == TEMPLATE_DECL)
8736 ++processing_template_decl;
8737 r = tsubst (t, args, tf_error, NULL_TREE);
8738 if (TREE_CODE (t) == TEMPLATE_DECL)
8739 --processing_template_decl;
8740 set_current_access_from_decl (r);
8741 finish_member_declaration (r);
8742 /* Instantiate members marked with attribute used. */
8743 if (r != error_mark_node && DECL_PRESERVE_P (r))
8744 mark_used (r);
8746 else
8748 /* Build new TYPE_FIELDS. */
8749 if (TREE_CODE (t) == STATIC_ASSERT)
8751 tree condition;
8753 ++c_inhibit_evaluation_warnings;
8754 condition =
8755 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
8756 tf_warning_or_error, NULL_TREE,
8757 /*integral_constant_expression_p=*/true);
8758 --c_inhibit_evaluation_warnings;
8760 finish_static_assert (condition,
8761 STATIC_ASSERT_MESSAGE (t),
8762 STATIC_ASSERT_SOURCE_LOCATION (t),
8763 /*member_p=*/true);
8765 else if (TREE_CODE (t) != CONST_DECL)
8767 tree r;
8769 /* The file and line for this declaration, to
8770 assist in error message reporting. Since we
8771 called push_tinst_level above, we don't need to
8772 restore these. */
8773 input_location = DECL_SOURCE_LOCATION (t);
8775 if (TREE_CODE (t) == TEMPLATE_DECL)
8776 ++processing_template_decl;
8777 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
8778 if (TREE_CODE (t) == TEMPLATE_DECL)
8779 --processing_template_decl;
8780 if (TREE_CODE (r) == VAR_DECL)
8782 /* In [temp.inst]:
8784 [t]he initialization (and any associated
8785 side-effects) of a static data member does
8786 not occur unless the static data member is
8787 itself used in a way that requires the
8788 definition of the static data member to
8789 exist.
8791 Therefore, we do not substitute into the
8792 initialized for the static data member here. */
8793 finish_static_data_member_decl
8795 /*init=*/NULL_TREE,
8796 /*init_const_expr_p=*/false,
8797 /*asmspec_tree=*/NULL_TREE,
8798 /*flags=*/0);
8799 /* Instantiate members marked with attribute used. */
8800 if (r != error_mark_node && DECL_PRESERVE_P (r))
8801 mark_used (r);
8803 else if (TREE_CODE (r) == FIELD_DECL)
8805 /* Determine whether R has a valid type and can be
8806 completed later. If R is invalid, then it is
8807 replaced by error_mark_node so that it will not be
8808 added to TYPE_FIELDS. */
8809 tree rtype = TREE_TYPE (r);
8810 if (can_complete_type_without_circularity (rtype))
8811 complete_type (rtype);
8813 if (!COMPLETE_TYPE_P (rtype))
8815 cxx_incomplete_type_error (r, rtype);
8816 r = error_mark_node;
8820 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
8821 such a thing will already have been added to the field
8822 list by tsubst_enum in finish_member_declaration in the
8823 CLASSTYPE_NESTED_UTDS case above. */
8824 if (!(TREE_CODE (r) == TYPE_DECL
8825 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
8826 && DECL_ARTIFICIAL (r)))
8828 set_current_access_from_decl (r);
8829 finish_member_declaration (r);
8834 else
8836 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
8837 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8839 /* Build new CLASSTYPE_FRIEND_CLASSES. */
8841 tree friend_type = t;
8842 bool adjust_processing_template_decl = false;
8844 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8846 /* template <class T> friend class C; */
8847 friend_type = tsubst_friend_class (friend_type, args);
8848 adjust_processing_template_decl = true;
8850 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
8852 /* template <class T> friend class C::D; */
8853 friend_type = tsubst (friend_type, args,
8854 tf_warning_or_error, NULL_TREE);
8855 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8856 friend_type = TREE_TYPE (friend_type);
8857 adjust_processing_template_decl = true;
8859 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
8860 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
8862 /* This could be either
8864 friend class T::C;
8866 when dependent_type_p is false or
8868 template <class U> friend class T::C;
8870 otherwise. */
8871 friend_type = tsubst (friend_type, args,
8872 tf_warning_or_error, NULL_TREE);
8873 /* Bump processing_template_decl for correct
8874 dependent_type_p calculation. */
8875 ++processing_template_decl;
8876 if (dependent_type_p (friend_type))
8877 adjust_processing_template_decl = true;
8878 --processing_template_decl;
8880 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
8881 && hidden_name_p (TYPE_NAME (friend_type)))
8883 /* friend class C;
8885 where C hasn't been declared yet. Let's lookup name
8886 from namespace scope directly, bypassing any name that
8887 come from dependent base class. */
8888 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
8890 /* The call to xref_tag_from_type does injection for friend
8891 classes. */
8892 push_nested_namespace (ns);
8893 friend_type =
8894 xref_tag_from_type (friend_type, NULL_TREE,
8895 /*tag_scope=*/ts_current);
8896 pop_nested_namespace (ns);
8898 else if (uses_template_parms (friend_type))
8899 /* friend class C<T>; */
8900 friend_type = tsubst (friend_type, args,
8901 tf_warning_or_error, NULL_TREE);
8902 /* Otherwise it's
8904 friend class C;
8906 where C is already declared or
8908 friend class C<int>;
8910 We don't have to do anything in these cases. */
8912 if (adjust_processing_template_decl)
8913 /* Trick make_friend_class into realizing that the friend
8914 we're adding is a template, not an ordinary class. It's
8915 important that we use make_friend_class since it will
8916 perform some error-checking and output cross-reference
8917 information. */
8918 ++processing_template_decl;
8920 if (friend_type != error_mark_node)
8921 make_friend_class (type, friend_type, /*complain=*/false);
8923 if (adjust_processing_template_decl)
8924 --processing_template_decl;
8926 else
8928 /* Build new DECL_FRIENDLIST. */
8929 tree r;
8931 /* The file and line for this declaration, to
8932 assist in error message reporting. Since we
8933 called push_tinst_level above, we don't need to
8934 restore these. */
8935 input_location = DECL_SOURCE_LOCATION (t);
8937 if (TREE_CODE (t) == TEMPLATE_DECL)
8939 ++processing_template_decl;
8940 push_deferring_access_checks (dk_no_check);
8943 r = tsubst_friend_function (t, args);
8944 add_friend (type, r, /*complain=*/false);
8945 if (TREE_CODE (t) == TEMPLATE_DECL)
8947 pop_deferring_access_checks ();
8948 --processing_template_decl;
8954 if (CLASSTYPE_LAMBDA_EXPR (type))
8956 tree decl = lambda_function (type);
8957 if (decl)
8959 tree lam = CLASSTYPE_LAMBDA_EXPR (type);
8960 LAMBDA_EXPR_THIS_CAPTURE (lam)
8961 = lookup_field_1 (type, get_identifier ("__this"), false);
8963 instantiate_decl (decl, false, false);
8964 maybe_add_lambda_conv_op (type);
8966 LAMBDA_EXPR_THIS_CAPTURE (lam) = NULL_TREE;
8968 else
8969 gcc_assert (errorcount);
8972 /* Set the file and line number information to whatever is given for
8973 the class itself. This puts error messages involving generated
8974 implicit functions at a predictable point, and the same point
8975 that would be used for non-template classes. */
8976 input_location = DECL_SOURCE_LOCATION (typedecl);
8978 unreverse_member_declarations (type);
8979 finish_struct_1 (type);
8980 TYPE_BEING_DEFINED (type) = 0;
8982 /* We don't instantiate default arguments for member functions. 14.7.1:
8984 The implicit instantiation of a class template specialization causes
8985 the implicit instantiation of the declarations, but not of the
8986 definitions or default arguments, of the class member functions,
8987 member classes, static data members and member templates.... */
8989 /* Some typedefs referenced from within the template code need to be access
8990 checked at template instantiation time, i.e now. These types were
8991 added to the template at parsing time. Let's get those and perform
8992 the access checks then. */
8993 perform_typedefs_access_check (pattern, args);
8994 perform_deferred_access_checks (tf_warning_or_error);
8995 pop_nested_class ();
8996 maximum_field_alignment = saved_maximum_field_alignment;
8997 if (!fn_context)
8998 pop_from_top_level ();
8999 pop_deferring_access_checks ();
9000 pop_tinst_level ();
9002 /* The vtable for a template class can be emitted in any translation
9003 unit in which the class is instantiated. When there is no key
9004 method, however, finish_struct_1 will already have added TYPE to
9005 the keyed_classes list. */
9006 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9007 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9009 return type;
9012 /* Wrapper for instantiate_class_template_1. */
9014 tree
9015 instantiate_class_template (tree type)
9017 tree ret;
9018 timevar_push (TV_TEMPLATE_INST);
9019 ret = instantiate_class_template_1 (type);
9020 timevar_pop (TV_TEMPLATE_INST);
9021 return ret;
9024 static tree
9025 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9027 tree r;
9029 if (!t)
9030 r = t;
9031 else if (TYPE_P (t))
9032 r = tsubst (t, args, complain, in_decl);
9033 else
9035 if (!(complain & tf_warning))
9036 ++c_inhibit_evaluation_warnings;
9037 r = tsubst_expr (t, args, complain, in_decl,
9038 /*integral_constant_expression_p=*/true);
9039 if (!(complain & tf_warning))
9040 --c_inhibit_evaluation_warnings;
9041 /* Preserve the raw-reference nature of T. */
9042 if (TREE_TYPE (t) && TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
9043 && REFERENCE_REF_P (r))
9044 r = TREE_OPERAND (r, 0);
9046 return r;
9049 /* Given a function parameter pack TMPL_PARM and some function parameters
9050 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9051 and set *SPEC_P to point at the next point in the list. */
9053 static tree
9054 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9056 /* Collect all of the extra "packed" parameters into an
9057 argument pack. */
9058 tree parmvec;
9059 tree parmtypevec;
9060 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9061 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9062 tree spec_parm = *spec_p;
9063 int i, len;
9065 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9066 if (tmpl_parm
9067 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9068 break;
9070 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9071 parmvec = make_tree_vec (len);
9072 parmtypevec = make_tree_vec (len);
9073 spec_parm = *spec_p;
9074 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9076 TREE_VEC_ELT (parmvec, i) = spec_parm;
9077 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9080 /* Build the argument packs. */
9081 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9082 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9083 TREE_TYPE (argpack) = argtypepack;
9084 *spec_p = spec_parm;
9086 return argpack;
9089 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9090 NONTYPE_ARGUMENT_PACK. */
9092 static tree
9093 make_fnparm_pack (tree spec_parm)
9095 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9098 /* Substitute ARGS into T, which is an pack expansion
9099 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9100 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9101 (if only a partial substitution could be performed) or
9102 ERROR_MARK_NODE if there was an error. */
9103 tree
9104 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9105 tree in_decl)
9107 tree pattern;
9108 tree pack, packs = NULL_TREE;
9109 bool unsubstituted_packs = false;
9110 bool real_packs = false;
9111 int missing_level = 0;
9112 int i, len = -1;
9113 tree result;
9114 struct pointer_map_t *saved_local_specializations = NULL;
9115 bool need_local_specializations = false;
9116 int levels;
9118 gcc_assert (PACK_EXPANSION_P (t));
9119 pattern = PACK_EXPANSION_PATTERN (t);
9121 /* Add in any args remembered from an earlier partial instantiation. */
9122 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9124 levels = TMPL_ARGS_DEPTH (args);
9126 /* Determine the argument packs that will instantiate the parameter
9127 packs used in the expansion expression. While we're at it,
9128 compute the number of arguments to be expanded and make sure it
9129 is consistent. */
9130 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9131 pack = TREE_CHAIN (pack))
9133 tree parm_pack = TREE_VALUE (pack);
9134 tree arg_pack = NULL_TREE;
9135 tree orig_arg = NULL_TREE;
9136 int level = 0;
9138 if (TREE_CODE (parm_pack) == BASES)
9140 if (BASES_DIRECT (parm_pack))
9141 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9142 args, complain, in_decl, false));
9143 else
9144 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9145 args, complain, in_decl, false));
9147 if (TREE_CODE (parm_pack) == PARM_DECL)
9149 if (PACK_EXPANSION_LOCAL_P (t))
9150 arg_pack = retrieve_local_specialization (parm_pack);
9151 else
9153 /* We can't rely on local_specializations for a parameter
9154 name used later in a function declaration (such as in a
9155 late-specified return type). Even if it exists, it might
9156 have the wrong value for a recursive call. Just make a
9157 dummy decl, since it's only used for its type. */
9158 arg_pack = tsubst_decl (parm_pack, args, complain);
9159 if (arg_pack && FUNCTION_PARAMETER_PACK_P (arg_pack))
9160 /* Partial instantiation of the parm_pack, we can't build
9161 up an argument pack yet. */
9162 arg_pack = NULL_TREE;
9163 else
9164 arg_pack = make_fnparm_pack (arg_pack);
9165 need_local_specializations = true;
9168 else
9170 int idx;
9171 template_parm_level_and_index (parm_pack, &level, &idx);
9173 if (level <= levels)
9174 arg_pack = TMPL_ARG (args, level, idx);
9177 orig_arg = arg_pack;
9178 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9179 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9181 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9182 /* This can only happen if we forget to expand an argument
9183 pack somewhere else. Just return an error, silently. */
9185 result = make_tree_vec (1);
9186 TREE_VEC_ELT (result, 0) = error_mark_node;
9187 return result;
9190 if (arg_from_parm_pack_p (arg_pack, parm_pack))
9191 /* The argument pack that the parameter maps to is just an
9192 expansion of the parameter itself, such as one would find
9193 in the implicit typedef of a class inside the class itself.
9194 Consider this parameter "unsubstituted", so that we will
9195 maintain the outer pack expansion. */
9196 arg_pack = NULL_TREE;
9198 if (arg_pack)
9200 int my_len =
9201 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9203 /* Don't bother trying to do a partial substitution with
9204 incomplete packs; we'll try again after deduction. */
9205 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9206 return t;
9208 if (len < 0)
9209 len = my_len;
9210 else if (len != my_len)
9212 if (!(complain & tf_error))
9213 /* Fail quietly. */;
9214 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9215 error ("mismatched argument pack lengths while expanding "
9216 "%<%T%>",
9217 pattern);
9218 else
9219 error ("mismatched argument pack lengths while expanding "
9220 "%<%E%>",
9221 pattern);
9222 return error_mark_node;
9225 if (TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack)) == 1
9226 && PACK_EXPANSION_P (TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack),
9227 0)))
9228 /* This isn't a real argument pack yet. */;
9229 else
9230 real_packs = true;
9232 /* Keep track of the parameter packs and their corresponding
9233 argument packs. */
9234 packs = tree_cons (parm_pack, arg_pack, packs);
9235 TREE_TYPE (packs) = orig_arg;
9237 else
9239 /* We can't substitute for this parameter pack. We use a flag as
9240 well as the missing_level counter because function parameter
9241 packs don't have a level. */
9242 unsubstituted_packs = true;
9243 if (!missing_level || missing_level > level)
9244 missing_level = level;
9248 /* We cannot expand this expansion expression, because we don't have
9249 all of the argument packs we need. */
9250 if (unsubstituted_packs)
9252 if (real_packs)
9254 /* We got some full packs, but we can't substitute them in until we
9255 have values for all the packs. So remember these until then. */
9256 tree save_args;
9258 t = make_pack_expansion (pattern);
9260 /* The call to add_to_template_args above assumes no overlap
9261 between saved args and new args, so prune away any fake
9262 args, i.e. those that satisfied arg_from_parm_pack_p above. */
9263 if (missing_level && levels >= missing_level)
9265 gcc_assert (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args)
9266 && missing_level > 1);
9267 TREE_VEC_LENGTH (args) = missing_level - 1;
9268 save_args = copy_node (args);
9269 TREE_VEC_LENGTH (args) = levels;
9271 else
9272 save_args = args;
9274 PACK_EXPANSION_EXTRA_ARGS (t) = save_args;
9276 else
9278 /* There were no real arguments, we're just replacing a parameter
9279 pack with another version of itself. Substitute into the
9280 pattern and return a PACK_EXPANSION_*. The caller will need to
9281 deal with that. */
9282 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
9283 t = tsubst_expr (pattern, args, complain, in_decl,
9284 /*integral_constant_expression_p=*/false);
9285 else
9286 t = tsubst (pattern, args, complain, in_decl);
9287 t = make_pack_expansion (t);
9289 return t;
9292 /* We could not find any argument packs that work. */
9293 if (len < 0)
9294 return error_mark_node;
9296 if (need_local_specializations)
9298 /* We're in a late-specified return type, so create our own local
9299 specializations map; the current map is either NULL or (in the
9300 case of recursive unification) might have bindings that we don't
9301 want to use or alter. */
9302 saved_local_specializations = local_specializations;
9303 local_specializations = pointer_map_create ();
9306 /* For each argument in each argument pack, substitute into the
9307 pattern. */
9308 result = make_tree_vec (len);
9309 for (i = 0; i < len; ++i)
9311 /* For parameter pack, change the substitution of the parameter
9312 pack to the ith argument in its argument pack, then expand
9313 the pattern. */
9314 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9316 tree parm = TREE_PURPOSE (pack);
9317 tree arg;
9319 /* Select the Ith argument from the pack. */
9320 if (TREE_CODE (parm) == PARM_DECL)
9322 if (i == 0)
9324 arg = make_node (ARGUMENT_PACK_SELECT);
9325 ARGUMENT_PACK_SELECT_FROM_PACK (arg) = TREE_VALUE (pack);
9326 mark_used (parm);
9327 register_local_specialization (arg, parm);
9329 else
9330 arg = retrieve_local_specialization (parm);
9332 else
9334 int idx, level;
9335 template_parm_level_and_index (parm, &level, &idx);
9337 if (i == 0)
9339 arg = make_node (ARGUMENT_PACK_SELECT);
9340 ARGUMENT_PACK_SELECT_FROM_PACK (arg) = TREE_VALUE (pack);
9341 /* Update the corresponding argument. */
9342 TMPL_ARG (args, level, idx) = arg;
9344 else
9345 /* Re-use the ARGUMENT_PACK_SELECT. */
9346 arg = TMPL_ARG (args, level, idx);
9348 ARGUMENT_PACK_SELECT_INDEX (arg) = i;
9351 /* Substitute into the PATTERN with the altered arguments. */
9352 if (!TYPE_P (pattern))
9353 TREE_VEC_ELT (result, i) =
9354 tsubst_expr (pattern, args, complain, in_decl,
9355 /*integral_constant_expression_p=*/false);
9356 else
9357 TREE_VEC_ELT (result, i) = tsubst (pattern, args, complain, in_decl);
9359 if (TREE_VEC_ELT (result, i) == error_mark_node)
9361 result = error_mark_node;
9362 break;
9366 /* Update ARGS to restore the substitution from parameter packs to
9367 their argument packs. */
9368 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9370 tree parm = TREE_PURPOSE (pack);
9372 if (TREE_CODE (parm) == PARM_DECL)
9373 register_local_specialization (TREE_TYPE (pack), parm);
9374 else
9376 int idx, level;
9377 template_parm_level_and_index (parm, &level, &idx);
9379 /* Update the corresponding argument. */
9380 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
9381 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
9382 TREE_TYPE (pack);
9383 else
9384 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
9388 if (need_local_specializations)
9390 pointer_map_destroy (local_specializations);
9391 local_specializations = saved_local_specializations;
9394 return result;
9397 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
9398 TMPL. We do this using DECL_PARM_INDEX, which should work even with
9399 parameter packs; all parms generated from a function parameter pack will
9400 have the same DECL_PARM_INDEX. */
9402 tree
9403 get_pattern_parm (tree parm, tree tmpl)
9405 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
9406 tree patparm;
9408 if (DECL_ARTIFICIAL (parm))
9410 for (patparm = DECL_ARGUMENTS (pattern);
9411 patparm; patparm = DECL_CHAIN (patparm))
9412 if (DECL_ARTIFICIAL (patparm)
9413 && DECL_NAME (parm) == DECL_NAME (patparm))
9414 break;
9416 else
9418 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
9419 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
9420 gcc_assert (DECL_PARM_INDEX (patparm)
9421 == DECL_PARM_INDEX (parm));
9424 return patparm;
9427 /* Substitute ARGS into the vector or list of template arguments T. */
9429 static tree
9430 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9432 tree orig_t = t;
9433 int len, need_new = 0, i, expanded_len_adjust = 0, out;
9434 tree *elts;
9436 if (t == error_mark_node)
9437 return error_mark_node;
9439 len = TREE_VEC_LENGTH (t);
9440 elts = XALLOCAVEC (tree, len);
9442 for (i = 0; i < len; i++)
9444 tree orig_arg = TREE_VEC_ELT (t, i);
9445 tree new_arg;
9447 if (TREE_CODE (orig_arg) == TREE_VEC)
9448 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
9449 else if (PACK_EXPANSION_P (orig_arg))
9451 /* Substitute into an expansion expression. */
9452 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
9454 if (TREE_CODE (new_arg) == TREE_VEC)
9455 /* Add to the expanded length adjustment the number of
9456 expanded arguments. We subtract one from this
9457 measurement, because the argument pack expression
9458 itself is already counted as 1 in
9459 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
9460 the argument pack is empty. */
9461 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
9463 else if (ARGUMENT_PACK_P (orig_arg))
9465 /* Substitute into each of the arguments. */
9466 new_arg = TYPE_P (orig_arg)
9467 ? cxx_make_type (TREE_CODE (orig_arg))
9468 : make_node (TREE_CODE (orig_arg));
9470 SET_ARGUMENT_PACK_ARGS (
9471 new_arg,
9472 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
9473 args, complain, in_decl));
9475 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
9476 new_arg = error_mark_node;
9478 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
9479 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
9480 complain, in_decl);
9481 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
9483 if (TREE_TYPE (new_arg) == error_mark_node)
9484 new_arg = error_mark_node;
9487 else
9488 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
9490 if (new_arg == error_mark_node)
9491 return error_mark_node;
9493 elts[i] = new_arg;
9494 if (new_arg != orig_arg)
9495 need_new = 1;
9498 if (!need_new)
9499 return t;
9501 /* Make space for the expanded arguments coming from template
9502 argument packs. */
9503 t = make_tree_vec (len + expanded_len_adjust);
9504 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
9505 arguments for a member template.
9506 In that case each TREE_VEC in ORIG_T represents a level of template
9507 arguments, and ORIG_T won't carry any non defaulted argument count.
9508 It will rather be the nested TREE_VECs that will carry one.
9509 In other words, ORIG_T carries a non defaulted argument count only
9510 if it doesn't contain any nested TREE_VEC. */
9511 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
9513 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
9514 count += expanded_len_adjust;
9515 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
9517 for (i = 0, out = 0; i < len; i++)
9519 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
9520 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
9521 && TREE_CODE (elts[i]) == TREE_VEC)
9523 int idx;
9525 /* Now expand the template argument pack "in place". */
9526 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
9527 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
9529 else
9531 TREE_VEC_ELT (t, out) = elts[i];
9532 out++;
9536 return t;
9539 /* Return the result of substituting ARGS into the template parameters
9540 given by PARMS. If there are m levels of ARGS and m + n levels of
9541 PARMS, then the result will contain n levels of PARMS. For
9542 example, if PARMS is `template <class T> template <class U>
9543 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
9544 result will be `template <int*, double, class V>'. */
9546 static tree
9547 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
9549 tree r = NULL_TREE;
9550 tree* new_parms;
9552 /* When substituting into a template, we must set
9553 PROCESSING_TEMPLATE_DECL as the template parameters may be
9554 dependent if they are based on one-another, and the dependency
9555 predicates are short-circuit outside of templates. */
9556 ++processing_template_decl;
9558 for (new_parms = &r;
9559 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
9560 new_parms = &(TREE_CHAIN (*new_parms)),
9561 parms = TREE_CHAIN (parms))
9563 tree new_vec =
9564 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
9565 int i;
9567 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
9569 tree tuple;
9571 if (parms == error_mark_node)
9572 continue;
9574 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
9576 if (tuple == error_mark_node)
9577 continue;
9579 TREE_VEC_ELT (new_vec, i) =
9580 tsubst_template_parm (tuple, args, complain);
9583 *new_parms =
9584 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
9585 - TMPL_ARGS_DEPTH (args)),
9586 new_vec, NULL_TREE);
9589 --processing_template_decl;
9591 return r;
9594 /* Return the result of substituting ARGS into one template parameter
9595 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
9596 parameter and which TREE_PURPOSE is the default argument of the
9597 template parameter. */
9599 static tree
9600 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
9602 tree default_value, parm_decl;
9604 if (args == NULL_TREE
9605 || t == NULL_TREE
9606 || t == error_mark_node)
9607 return t;
9609 gcc_assert (TREE_CODE (t) == TREE_LIST);
9611 default_value = TREE_PURPOSE (t);
9612 parm_decl = TREE_VALUE (t);
9614 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
9615 if (TREE_CODE (parm_decl) == PARM_DECL
9616 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
9617 parm_decl = error_mark_node;
9618 default_value = tsubst_template_arg (default_value, args,
9619 complain, NULL_TREE);
9621 return build_tree_list (default_value, parm_decl);
9624 /* Substitute the ARGS into the indicated aggregate (or enumeration)
9625 type T. If T is not an aggregate or enumeration type, it is
9626 handled as if by tsubst. IN_DECL is as for tsubst. If
9627 ENTERING_SCOPE is nonzero, T is the context for a template which
9628 we are presently tsubst'ing. Return the substituted value. */
9630 static tree
9631 tsubst_aggr_type (tree t,
9632 tree args,
9633 tsubst_flags_t complain,
9634 tree in_decl,
9635 int entering_scope)
9637 if (t == NULL_TREE)
9638 return NULL_TREE;
9640 switch (TREE_CODE (t))
9642 case RECORD_TYPE:
9643 if (TYPE_PTRMEMFUNC_P (t))
9644 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
9646 /* Else fall through. */
9647 case ENUMERAL_TYPE:
9648 case UNION_TYPE:
9649 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
9651 tree argvec;
9652 tree context;
9653 tree r;
9654 int saved_unevaluated_operand;
9655 int saved_inhibit_evaluation_warnings;
9657 /* In "sizeof(X<I>)" we need to evaluate "I". */
9658 saved_unevaluated_operand = cp_unevaluated_operand;
9659 cp_unevaluated_operand = 0;
9660 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9661 c_inhibit_evaluation_warnings = 0;
9663 /* First, determine the context for the type we are looking
9664 up. */
9665 context = TYPE_CONTEXT (t);
9666 if (context && TYPE_P (context))
9668 context = tsubst_aggr_type (context, args, complain,
9669 in_decl, /*entering_scope=*/1);
9670 /* If context is a nested class inside a class template,
9671 it may still need to be instantiated (c++/33959). */
9672 context = complete_type (context);
9675 /* Then, figure out what arguments are appropriate for the
9676 type we are trying to find. For example, given:
9678 template <class T> struct S;
9679 template <class T, class U> void f(T, U) { S<U> su; }
9681 and supposing that we are instantiating f<int, double>,
9682 then our ARGS will be {int, double}, but, when looking up
9683 S we only want {double}. */
9684 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
9685 complain, in_decl);
9686 if (argvec == error_mark_node)
9687 r = error_mark_node;
9688 else
9690 r = lookup_template_class (t, argvec, in_decl, context,
9691 entering_scope, complain);
9692 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
9695 cp_unevaluated_operand = saved_unevaluated_operand;
9696 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
9698 return r;
9700 else
9701 /* This is not a template type, so there's nothing to do. */
9702 return t;
9704 default:
9705 return tsubst (t, args, complain, in_decl);
9709 /* Substitute into the default argument ARG (a default argument for
9710 FN), which has the indicated TYPE. */
9712 tree
9713 tsubst_default_argument (tree fn, tree type, tree arg)
9715 tree saved_class_ptr = NULL_TREE;
9716 tree saved_class_ref = NULL_TREE;
9717 int errs = errorcount + sorrycount;
9719 /* This can happen in invalid code. */
9720 if (TREE_CODE (arg) == DEFAULT_ARG)
9721 return arg;
9723 /* This default argument came from a template. Instantiate the
9724 default argument here, not in tsubst. In the case of
9725 something like:
9727 template <class T>
9728 struct S {
9729 static T t();
9730 void f(T = t());
9733 we must be careful to do name lookup in the scope of S<T>,
9734 rather than in the current class. */
9735 push_access_scope (fn);
9736 /* The "this" pointer is not valid in a default argument. */
9737 if (cfun)
9739 saved_class_ptr = current_class_ptr;
9740 cp_function_chain->x_current_class_ptr = NULL_TREE;
9741 saved_class_ref = current_class_ref;
9742 cp_function_chain->x_current_class_ref = NULL_TREE;
9745 push_deferring_access_checks(dk_no_deferred);
9746 /* The default argument expression may cause implicitly defined
9747 member functions to be synthesized, which will result in garbage
9748 collection. We must treat this situation as if we were within
9749 the body of function so as to avoid collecting live data on the
9750 stack. */
9751 ++function_depth;
9752 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
9753 tf_warning_or_error, NULL_TREE,
9754 /*integral_constant_expression_p=*/false);
9755 --function_depth;
9756 pop_deferring_access_checks();
9758 /* Restore the "this" pointer. */
9759 if (cfun)
9761 cp_function_chain->x_current_class_ptr = saved_class_ptr;
9762 cp_function_chain->x_current_class_ref = saved_class_ref;
9765 if (errorcount+sorrycount > errs)
9766 inform (input_location,
9767 " when instantiating default argument for call to %D", fn);
9769 /* Make sure the default argument is reasonable. */
9770 arg = check_default_argument (type, arg);
9772 pop_access_scope (fn);
9774 return arg;
9777 /* Substitute into all the default arguments for FN. */
9779 static void
9780 tsubst_default_arguments (tree fn)
9782 tree arg;
9783 tree tmpl_args;
9785 tmpl_args = DECL_TI_ARGS (fn);
9787 /* If this function is not yet instantiated, we certainly don't need
9788 its default arguments. */
9789 if (uses_template_parms (tmpl_args))
9790 return;
9791 /* Don't do this again for clones. */
9792 if (DECL_CLONED_FUNCTION_P (fn))
9793 return;
9795 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
9796 arg;
9797 arg = TREE_CHAIN (arg))
9798 if (TREE_PURPOSE (arg))
9799 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
9800 TREE_VALUE (arg),
9801 TREE_PURPOSE (arg));
9804 /* Substitute the ARGS into the T, which is a _DECL. Return the
9805 result of the substitution. Issue error and warning messages under
9806 control of COMPLAIN. */
9808 static tree
9809 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
9811 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
9812 location_t saved_loc;
9813 tree r = NULL_TREE;
9814 tree in_decl = t;
9815 hashval_t hash = 0;
9817 /* Set the filename and linenumber to improve error-reporting. */
9818 saved_loc = input_location;
9819 input_location = DECL_SOURCE_LOCATION (t);
9821 switch (TREE_CODE (t))
9823 case TEMPLATE_DECL:
9825 /* We can get here when processing a member function template,
9826 member class template, or template template parameter. */
9827 tree decl = DECL_TEMPLATE_RESULT (t);
9828 tree spec;
9829 tree tmpl_args;
9830 tree full_args;
9832 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9834 /* Template template parameter is treated here. */
9835 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
9836 if (new_type == error_mark_node)
9837 RETURN (error_mark_node);
9839 r = copy_decl (t);
9840 DECL_CHAIN (r) = NULL_TREE;
9841 TREE_TYPE (r) = new_type;
9842 DECL_TEMPLATE_RESULT (r)
9843 = build_decl (DECL_SOURCE_LOCATION (decl),
9844 TYPE_DECL, DECL_NAME (decl), new_type);
9845 DECL_TEMPLATE_PARMS (r)
9846 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
9847 complain);
9848 TYPE_NAME (new_type) = r;
9849 break;
9852 /* We might already have an instance of this template.
9853 The ARGS are for the surrounding class type, so the
9854 full args contain the tsubst'd args for the context,
9855 plus the innermost args from the template decl. */
9856 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
9857 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
9858 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
9859 /* Because this is a template, the arguments will still be
9860 dependent, even after substitution. If
9861 PROCESSING_TEMPLATE_DECL is not set, the dependency
9862 predicates will short-circuit. */
9863 ++processing_template_decl;
9864 full_args = tsubst_template_args (tmpl_args, args,
9865 complain, in_decl);
9866 --processing_template_decl;
9867 if (full_args == error_mark_node)
9868 RETURN (error_mark_node);
9870 /* If this is a default template template argument,
9871 tsubst might not have changed anything. */
9872 if (full_args == tmpl_args)
9873 RETURN (t);
9875 hash = hash_tmpl_and_args (t, full_args);
9876 spec = retrieve_specialization (t, full_args, hash);
9877 if (spec != NULL_TREE)
9879 r = spec;
9880 break;
9883 /* Make a new template decl. It will be similar to the
9884 original, but will record the current template arguments.
9885 We also create a new function declaration, which is just
9886 like the old one, but points to this new template, rather
9887 than the old one. */
9888 r = copy_decl (t);
9889 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
9890 DECL_CHAIN (r) = NULL_TREE;
9892 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
9894 if (TREE_CODE (decl) == TYPE_DECL
9895 && !TYPE_DECL_ALIAS_P (decl))
9897 tree new_type;
9898 ++processing_template_decl;
9899 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
9900 --processing_template_decl;
9901 if (new_type == error_mark_node)
9902 RETURN (error_mark_node);
9904 TREE_TYPE (r) = new_type;
9905 CLASSTYPE_TI_TEMPLATE (new_type) = r;
9906 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
9907 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
9908 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
9910 else
9912 tree new_decl;
9913 ++processing_template_decl;
9914 new_decl = tsubst (decl, args, complain, in_decl);
9915 --processing_template_decl;
9916 if (new_decl == error_mark_node)
9917 RETURN (error_mark_node);
9919 DECL_TEMPLATE_RESULT (r) = new_decl;
9920 DECL_TI_TEMPLATE (new_decl) = r;
9921 TREE_TYPE (r) = TREE_TYPE (new_decl);
9922 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
9923 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
9926 SET_DECL_IMPLICIT_INSTANTIATION (r);
9927 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
9928 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
9930 /* The template parameters for this new template are all the
9931 template parameters for the old template, except the
9932 outermost level of parameters. */
9933 DECL_TEMPLATE_PARMS (r)
9934 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
9935 complain);
9937 if (PRIMARY_TEMPLATE_P (t))
9938 DECL_PRIMARY_TEMPLATE (r) = r;
9940 if (TREE_CODE (decl) != TYPE_DECL)
9941 /* Record this non-type partial instantiation. */
9942 register_specialization (r, t,
9943 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
9944 false, hash);
9946 break;
9948 case FUNCTION_DECL:
9950 tree ctx;
9951 tree argvec = NULL_TREE;
9952 tree *friends;
9953 tree gen_tmpl;
9954 tree type;
9955 int member;
9956 int args_depth;
9957 int parms_depth;
9959 /* Nobody should be tsubst'ing into non-template functions. */
9960 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
9962 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
9964 tree spec;
9965 bool dependent_p;
9967 /* If T is not dependent, just return it. We have to
9968 increment PROCESSING_TEMPLATE_DECL because
9969 value_dependent_expression_p assumes that nothing is
9970 dependent when PROCESSING_TEMPLATE_DECL is zero. */
9971 ++processing_template_decl;
9972 dependent_p = value_dependent_expression_p (t);
9973 --processing_template_decl;
9974 if (!dependent_p)
9975 RETURN (t);
9977 /* Calculate the most general template of which R is a
9978 specialization, and the complete set of arguments used to
9979 specialize R. */
9980 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
9981 argvec = tsubst_template_args (DECL_TI_ARGS
9982 (DECL_TEMPLATE_RESULT
9983 (DECL_TI_TEMPLATE (t))),
9984 args, complain, in_decl);
9985 if (argvec == error_mark_node)
9986 RETURN (error_mark_node);
9988 /* Check to see if we already have this specialization. */
9989 hash = hash_tmpl_and_args (gen_tmpl, argvec);
9990 spec = retrieve_specialization (gen_tmpl, argvec, hash);
9992 if (spec)
9994 r = spec;
9995 break;
9998 /* We can see more levels of arguments than parameters if
9999 there was a specialization of a member template, like
10000 this:
10002 template <class T> struct S { template <class U> void f(); }
10003 template <> template <class U> void S<int>::f(U);
10005 Here, we'll be substituting into the specialization,
10006 because that's where we can find the code we actually
10007 want to generate, but we'll have enough arguments for
10008 the most general template.
10010 We also deal with the peculiar case:
10012 template <class T> struct S {
10013 template <class U> friend void f();
10015 template <class U> void f() {}
10016 template S<int>;
10017 template void f<double>();
10019 Here, the ARGS for the instantiation of will be {int,
10020 double}. But, we only need as many ARGS as there are
10021 levels of template parameters in CODE_PATTERN. We are
10022 careful not to get fooled into reducing the ARGS in
10023 situations like:
10025 template <class T> struct S { template <class U> void f(U); }
10026 template <class T> template <> void S<T>::f(int) {}
10028 which we can spot because the pattern will be a
10029 specialization in this case. */
10030 args_depth = TMPL_ARGS_DEPTH (args);
10031 parms_depth =
10032 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10033 if (args_depth > parms_depth
10034 && !DECL_TEMPLATE_SPECIALIZATION (t))
10035 args = get_innermost_template_args (args, parms_depth);
10037 else
10039 /* This special case arises when we have something like this:
10041 template <class T> struct S {
10042 friend void f<int>(int, double);
10045 Here, the DECL_TI_TEMPLATE for the friend declaration
10046 will be an IDENTIFIER_NODE. We are being called from
10047 tsubst_friend_function, and we want only to create a
10048 new decl (R) with appropriate types so that we can call
10049 determine_specialization. */
10050 gen_tmpl = NULL_TREE;
10053 if (DECL_CLASS_SCOPE_P (t))
10055 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10056 member = 2;
10057 else
10058 member = 1;
10059 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10060 complain, t, /*entering_scope=*/1);
10062 else
10064 member = 0;
10065 ctx = DECL_CONTEXT (t);
10067 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10068 if (type == error_mark_node)
10069 RETURN (error_mark_node);
10071 /* If we hit excessive deduction depth, the type is bogus even if
10072 it isn't error_mark_node, so don't build a decl. */
10073 if (excessive_deduction_depth)
10074 RETURN (error_mark_node);
10076 /* We do NOT check for matching decls pushed separately at this
10077 point, as they may not represent instantiations of this
10078 template, and in any case are considered separate under the
10079 discrete model. */
10080 r = copy_decl (t);
10081 DECL_USE_TEMPLATE (r) = 0;
10082 TREE_TYPE (r) = type;
10083 /* Clear out the mangled name and RTL for the instantiation. */
10084 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10085 SET_DECL_RTL (r, NULL);
10086 /* Leave DECL_INITIAL set on deleted instantiations. */
10087 if (!DECL_DELETED_FN (r))
10088 DECL_INITIAL (r) = NULL_TREE;
10089 DECL_CONTEXT (r) = ctx;
10091 if (member && DECL_CONV_FN_P (r))
10092 /* Type-conversion operator. Reconstruct the name, in
10093 case it's the name of one of the template's parameters. */
10094 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10096 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10097 complain, t);
10098 DECL_RESULT (r) = NULL_TREE;
10100 TREE_STATIC (r) = 0;
10101 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10102 DECL_EXTERNAL (r) = 1;
10103 /* If this is an instantiation of a function with internal
10104 linkage, we already know what object file linkage will be
10105 assigned to the instantiation. */
10106 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10107 DECL_DEFER_OUTPUT (r) = 0;
10108 DECL_CHAIN (r) = NULL_TREE;
10109 DECL_PENDING_INLINE_INFO (r) = 0;
10110 DECL_PENDING_INLINE_P (r) = 0;
10111 DECL_SAVED_TREE (r) = NULL_TREE;
10112 DECL_STRUCT_FUNCTION (r) = NULL;
10113 TREE_USED (r) = 0;
10114 /* We'll re-clone as appropriate in instantiate_template. */
10115 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10117 /* If we aren't complaining now, return on error before we register
10118 the specialization so that we'll complain eventually. */
10119 if ((complain & tf_error) == 0
10120 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10121 && !grok_op_properties (r, /*complain=*/false))
10122 RETURN (error_mark_node);
10124 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10125 this in the special friend case mentioned above where
10126 GEN_TMPL is NULL. */
10127 if (gen_tmpl)
10129 DECL_TEMPLATE_INFO (r)
10130 = build_template_info (gen_tmpl, argvec);
10131 SET_DECL_IMPLICIT_INSTANTIATION (r);
10132 register_specialization (r, gen_tmpl, argvec, false, hash);
10134 /* We're not supposed to instantiate default arguments
10135 until they are called, for a template. But, for a
10136 declaration like:
10138 template <class T> void f ()
10139 { extern void g(int i = T()); }
10141 we should do the substitution when the template is
10142 instantiated. We handle the member function case in
10143 instantiate_class_template since the default arguments
10144 might refer to other members of the class. */
10145 if (!member
10146 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10147 && !uses_template_parms (argvec))
10148 tsubst_default_arguments (r);
10150 else
10151 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10153 /* Copy the list of befriending classes. */
10154 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10155 *friends;
10156 friends = &TREE_CHAIN (*friends))
10158 *friends = copy_node (*friends);
10159 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10160 args, complain,
10161 in_decl);
10164 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10166 maybe_retrofit_in_chrg (r);
10167 if (DECL_CONSTRUCTOR_P (r))
10168 grok_ctor_properties (ctx, r);
10169 if (DECL_INHERITED_CTOR_BASE (r))
10170 deduce_inheriting_ctor (r);
10171 /* If this is an instantiation of a member template, clone it.
10172 If it isn't, that'll be handled by
10173 clone_constructors_and_destructors. */
10174 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10175 clone_function_decl (r, /*update_method_vec_p=*/0);
10177 else if ((complain & tf_error) != 0
10178 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10179 && !grok_op_properties (r, /*complain=*/true))
10180 RETURN (error_mark_node);
10182 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10183 SET_DECL_FRIEND_CONTEXT (r,
10184 tsubst (DECL_FRIEND_CONTEXT (t),
10185 args, complain, in_decl));
10187 /* Possibly limit visibility based on template args. */
10188 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10189 if (DECL_VISIBILITY_SPECIFIED (t))
10191 DECL_VISIBILITY_SPECIFIED (r) = 0;
10192 DECL_ATTRIBUTES (r)
10193 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10195 determine_visibility (r);
10196 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10197 && !processing_template_decl)
10198 defaulted_late_check (r);
10200 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10201 args, complain, in_decl);
10203 break;
10205 case PARM_DECL:
10207 tree type = NULL_TREE;
10208 int i, len = 1;
10209 tree expanded_types = NULL_TREE;
10210 tree prev_r = NULL_TREE;
10211 tree first_r = NULL_TREE;
10213 if (FUNCTION_PARAMETER_PACK_P (t))
10215 /* If there is a local specialization that isn't a
10216 parameter pack, it means that we're doing a "simple"
10217 substitution from inside tsubst_pack_expansion. Just
10218 return the local specialization (which will be a single
10219 parm). */
10220 tree spec = retrieve_local_specialization (t);
10221 if (spec
10222 && TREE_CODE (spec) == PARM_DECL
10223 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10224 RETURN (spec);
10226 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10227 the parameters in this function parameter pack. */
10228 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10229 complain, in_decl);
10230 if (TREE_CODE (expanded_types) == TREE_VEC)
10232 len = TREE_VEC_LENGTH (expanded_types);
10234 /* Zero-length parameter packs are boring. Just substitute
10235 into the chain. */
10236 if (len == 0)
10237 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10238 TREE_CHAIN (t)));
10240 else
10242 /* All we did was update the type. Make a note of that. */
10243 type = expanded_types;
10244 expanded_types = NULL_TREE;
10248 /* Loop through all of the parameter's we'll build. When T is
10249 a function parameter pack, LEN is the number of expanded
10250 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10251 r = NULL_TREE;
10252 for (i = 0; i < len; ++i)
10254 prev_r = r;
10255 r = copy_node (t);
10256 if (DECL_TEMPLATE_PARM_P (t))
10257 SET_DECL_TEMPLATE_PARM_P (r);
10259 if (expanded_types)
10260 /* We're on the Ith parameter of the function parameter
10261 pack. */
10263 /* An argument of a function parameter pack is not a parameter
10264 pack. */
10265 FUNCTION_PARAMETER_PACK_P (r) = false;
10267 /* Get the Ith type. */
10268 type = TREE_VEC_ELT (expanded_types, i);
10270 if (DECL_NAME (r))
10271 /* Rename the parameter to include the index. */
10272 DECL_NAME (r) =
10273 make_ith_pack_parameter_name (DECL_NAME (r), i);
10275 else if (!type)
10276 /* We're dealing with a normal parameter. */
10277 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10279 type = type_decays_to (type);
10280 TREE_TYPE (r) = type;
10281 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10283 if (DECL_INITIAL (r))
10285 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
10286 DECL_INITIAL (r) = TREE_TYPE (r);
10287 else
10288 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
10289 complain, in_decl);
10292 DECL_CONTEXT (r) = NULL_TREE;
10294 if (!DECL_TEMPLATE_PARM_P (r))
10295 DECL_ARG_TYPE (r) = type_passed_as (type);
10297 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10298 args, complain, in_decl);
10300 /* Keep track of the first new parameter we
10301 generate. That's what will be returned to the
10302 caller. */
10303 if (!first_r)
10304 first_r = r;
10306 /* Build a proper chain of parameters when substituting
10307 into a function parameter pack. */
10308 if (prev_r)
10309 DECL_CHAIN (prev_r) = r;
10312 /* If cp_unevaluated_operand is set, we're just looking for a
10313 single dummy parameter, so don't keep going. */
10314 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
10315 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
10316 complain, DECL_CHAIN (t));
10318 /* FIRST_R contains the start of the chain we've built. */
10319 r = first_r;
10321 break;
10323 case FIELD_DECL:
10325 tree type;
10327 r = copy_decl (t);
10328 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10329 if (type == error_mark_node)
10330 RETURN (error_mark_node);
10331 TREE_TYPE (r) = type;
10332 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10334 if (DECL_C_BIT_FIELD (r))
10335 /* For bit-fields, DECL_INITIAL gives the number of bits. For
10336 non-bit-fields DECL_INITIAL is a non-static data member
10337 initializer, which gets deferred instantiation. */
10338 DECL_INITIAL (r)
10339 = tsubst_expr (DECL_INITIAL (t), args,
10340 complain, in_decl,
10341 /*integral_constant_expression_p=*/true);
10342 else if (DECL_INITIAL (t))
10344 /* Set up DECL_TEMPLATE_INFO so that we can get at the
10345 NSDMI in perform_member_init. Still set DECL_INITIAL
10346 so that we know there is one. */
10347 DECL_INITIAL (r) = void_zero_node;
10348 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
10349 retrofit_lang_decl (r);
10350 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10352 /* We don't have to set DECL_CONTEXT here; it is set by
10353 finish_member_declaration. */
10354 DECL_CHAIN (r) = NULL_TREE;
10355 if (VOID_TYPE_P (type))
10356 error ("instantiation of %q+D as type %qT", r, type);
10358 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10359 args, complain, in_decl);
10361 break;
10363 case USING_DECL:
10364 /* We reach here only for member using decls. We also need to check
10365 uses_template_parms because DECL_DEPENDENT_P is not set for a
10366 using-declaration that designates a member of the current
10367 instantiation (c++/53549). */
10368 if (DECL_DEPENDENT_P (t)
10369 || uses_template_parms (USING_DECL_SCOPE (t)))
10371 tree scope = USING_DECL_SCOPE (t);
10372 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
10373 complain, in_decl);
10374 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
10375 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM
10376 && name == TYPE_IDENTIFIER (scope))
10377 name = TYPE_IDENTIFIER (inst_scope);
10378 r = do_class_using_decl (inst_scope, name);
10379 if (!r)
10380 r = error_mark_node;
10381 else
10383 TREE_PROTECTED (r) = TREE_PROTECTED (t);
10384 TREE_PRIVATE (r) = TREE_PRIVATE (t);
10387 else
10389 r = copy_node (t);
10390 DECL_CHAIN (r) = NULL_TREE;
10392 break;
10394 case TYPE_DECL:
10395 case VAR_DECL:
10397 tree argvec = NULL_TREE;
10398 tree gen_tmpl = NULL_TREE;
10399 tree spec;
10400 tree tmpl = NULL_TREE;
10401 tree ctx;
10402 tree type = NULL_TREE;
10403 bool local_p;
10405 if (TREE_CODE (t) == TYPE_DECL
10406 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
10408 /* If this is the canonical decl, we don't have to
10409 mess with instantiations, and often we can't (for
10410 typename, template type parms and such). Note that
10411 TYPE_NAME is not correct for the above test if
10412 we've copied the type for a typedef. */
10413 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10414 if (type == error_mark_node)
10415 RETURN (error_mark_node);
10416 r = TYPE_NAME (type);
10417 break;
10420 /* Check to see if we already have the specialization we
10421 need. */
10422 spec = NULL_TREE;
10423 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
10425 /* T is a static data member or namespace-scope entity.
10426 We have to substitute into namespace-scope variables
10427 (even though such entities are never templates) because
10428 of cases like:
10430 template <class T> void f() { extern T t; }
10432 where the entity referenced is not known until
10433 instantiation time. */
10434 local_p = false;
10435 ctx = DECL_CONTEXT (t);
10436 if (DECL_CLASS_SCOPE_P (t))
10438 ctx = tsubst_aggr_type (ctx, args,
10439 complain,
10440 in_decl, /*entering_scope=*/1);
10441 /* If CTX is unchanged, then T is in fact the
10442 specialization we want. That situation occurs when
10443 referencing a static data member within in its own
10444 class. We can use pointer equality, rather than
10445 same_type_p, because DECL_CONTEXT is always
10446 canonical... */
10447 if (ctx == DECL_CONTEXT (t)
10448 && (TREE_CODE (t) != TYPE_DECL
10449 /* ... unless T is a member template; in which
10450 case our caller can be willing to create a
10451 specialization of that template represented
10452 by T. */
10453 || !(DECL_TI_TEMPLATE (t)
10454 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t)))))
10455 spec = t;
10458 if (!spec)
10460 tmpl = DECL_TI_TEMPLATE (t);
10461 gen_tmpl = most_general_template (tmpl);
10462 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
10463 if (argvec == error_mark_node)
10464 RETURN (error_mark_node);
10465 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10466 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10469 else
10471 /* A local variable. */
10472 local_p = true;
10473 /* Subsequent calls to pushdecl will fill this in. */
10474 ctx = NULL_TREE;
10475 spec = retrieve_local_specialization (t);
10477 /* If we already have the specialization we need, there is
10478 nothing more to do. */
10479 if (spec)
10481 r = spec;
10482 break;
10485 if (TREE_CODE (t) == VAR_DECL && DECL_ANON_UNION_VAR_P (t))
10487 /* Just use name lookup to find a member alias for an anonymous
10488 union, but then add it to the hash table. */
10489 r = lookup_name (DECL_NAME (t));
10490 gcc_assert (DECL_ANON_UNION_VAR_P (r));
10491 register_local_specialization (r, t);
10492 break;
10495 /* Create a new node for the specialization we need. */
10496 r = copy_decl (t);
10497 if (type == NULL_TREE)
10499 if (is_typedef_decl (t))
10500 type = DECL_ORIGINAL_TYPE (t);
10501 else
10502 type = TREE_TYPE (t);
10503 if (TREE_CODE (t) == VAR_DECL
10504 && VAR_HAD_UNKNOWN_BOUND (t)
10505 && type != error_mark_node)
10506 type = strip_array_domain (type);
10507 type = tsubst (type, args, complain, in_decl);
10509 if (TREE_CODE (r) == VAR_DECL)
10511 /* Even if the original location is out of scope, the
10512 newly substituted one is not. */
10513 DECL_DEAD_FOR_LOCAL (r) = 0;
10514 DECL_INITIALIZED_P (r) = 0;
10515 DECL_TEMPLATE_INSTANTIATED (r) = 0;
10516 if (type == error_mark_node)
10517 RETURN (error_mark_node);
10518 if (TREE_CODE (type) == FUNCTION_TYPE)
10520 /* It may seem that this case cannot occur, since:
10522 typedef void f();
10523 void g() { f x; }
10525 declares a function, not a variable. However:
10527 typedef void f();
10528 template <typename T> void g() { T t; }
10529 template void g<f>();
10531 is an attempt to declare a variable with function
10532 type. */
10533 error ("variable %qD has function type",
10534 /* R is not yet sufficiently initialized, so we
10535 just use its name. */
10536 DECL_NAME (r));
10537 RETURN (error_mark_node);
10539 type = complete_type (type);
10540 /* Wait until cp_finish_decl to set this again, to handle
10541 circular dependency (template/instantiate6.C). */
10542 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
10543 type = check_var_type (DECL_NAME (r), type);
10545 if (DECL_HAS_VALUE_EXPR_P (t))
10547 tree ve = DECL_VALUE_EXPR (t);
10548 ve = tsubst_expr (ve, args, complain, in_decl,
10549 /*constant_expression_p=*/false);
10550 if (REFERENCE_REF_P (ve))
10552 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
10553 ve = TREE_OPERAND (ve, 0);
10555 SET_DECL_VALUE_EXPR (r, ve);
10558 else if (DECL_SELF_REFERENCE_P (t))
10559 SET_DECL_SELF_REFERENCE_P (r);
10560 TREE_TYPE (r) = type;
10561 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10562 DECL_CONTEXT (r) = ctx;
10563 /* Clear out the mangled name and RTL for the instantiation. */
10564 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10565 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10566 SET_DECL_RTL (r, NULL);
10567 /* The initializer must not be expanded until it is required;
10568 see [temp.inst]. */
10569 DECL_INITIAL (r) = NULL_TREE;
10570 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10571 SET_DECL_RTL (r, NULL);
10572 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
10573 if (TREE_CODE (r) == VAR_DECL)
10575 /* Possibly limit visibility based on template args. */
10576 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10577 if (DECL_VISIBILITY_SPECIFIED (t))
10579 DECL_VISIBILITY_SPECIFIED (r) = 0;
10580 DECL_ATTRIBUTES (r)
10581 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10583 determine_visibility (r);
10586 if (!local_p)
10588 /* A static data member declaration is always marked
10589 external when it is declared in-class, even if an
10590 initializer is present. We mimic the non-template
10591 processing here. */
10592 DECL_EXTERNAL (r) = 1;
10594 register_specialization (r, gen_tmpl, argvec, false, hash);
10595 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
10596 SET_DECL_IMPLICIT_INSTANTIATION (r);
10598 else if (cp_unevaluated_operand)
10600 /* We're substituting this var in a decltype outside of its
10601 scope, such as for a lambda return type. Don't add it to
10602 local_specializations, do perform auto deduction. */
10603 tree auto_node = type_uses_auto (type);
10604 if (auto_node)
10606 tree init
10607 = tsubst_expr (DECL_INITIAL (t), args, complain, in_decl,
10608 /*constant_expression_p=*/false);
10609 init = resolve_nondeduced_context (init);
10610 TREE_TYPE (r) = type
10611 = do_auto_deduction (type, init, auto_node);
10614 else
10615 register_local_specialization (r, t);
10617 DECL_CHAIN (r) = NULL_TREE;
10619 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
10620 /*flags=*/0,
10621 args, complain, in_decl);
10623 /* Preserve a typedef that names a type. */
10624 if (is_typedef_decl (r))
10626 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
10627 set_underlying_type (r);
10630 layout_decl (r, 0);
10632 break;
10634 default:
10635 gcc_unreachable ();
10637 #undef RETURN
10639 out:
10640 /* Restore the file and line information. */
10641 input_location = saved_loc;
10643 return r;
10646 /* Substitute into the ARG_TYPES of a function type.
10647 If END is a TREE_CHAIN, leave it and any following types
10648 un-substituted. */
10650 static tree
10651 tsubst_arg_types (tree arg_types,
10652 tree args,
10653 tree end,
10654 tsubst_flags_t complain,
10655 tree in_decl)
10657 tree remaining_arg_types;
10658 tree type = NULL_TREE;
10659 int i = 1;
10660 tree expanded_args = NULL_TREE;
10661 tree default_arg;
10663 if (!arg_types || arg_types == void_list_node || arg_types == end)
10664 return arg_types;
10666 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
10667 args, end, complain, in_decl);
10668 if (remaining_arg_types == error_mark_node)
10669 return error_mark_node;
10671 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
10673 /* For a pack expansion, perform substitution on the
10674 entire expression. Later on, we'll handle the arguments
10675 one-by-one. */
10676 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
10677 args, complain, in_decl);
10679 if (TREE_CODE (expanded_args) == TREE_VEC)
10680 /* So that we'll spin through the parameters, one by one. */
10681 i = TREE_VEC_LENGTH (expanded_args);
10682 else
10684 /* We only partially substituted into the parameter
10685 pack. Our type is TYPE_PACK_EXPANSION. */
10686 type = expanded_args;
10687 expanded_args = NULL_TREE;
10691 while (i > 0) {
10692 --i;
10694 if (expanded_args)
10695 type = TREE_VEC_ELT (expanded_args, i);
10696 else if (!type)
10697 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
10699 if (type == error_mark_node)
10700 return error_mark_node;
10701 if (VOID_TYPE_P (type))
10703 if (complain & tf_error)
10705 error ("invalid parameter type %qT", type);
10706 if (in_decl)
10707 error ("in declaration %q+D", in_decl);
10709 return error_mark_node;
10712 /* Do array-to-pointer, function-to-pointer conversion, and ignore
10713 top-level qualifiers as required. */
10714 type = cv_unqualified (type_decays_to (type));
10716 /* We do not substitute into default arguments here. The standard
10717 mandates that they be instantiated only when needed, which is
10718 done in build_over_call. */
10719 default_arg = TREE_PURPOSE (arg_types);
10721 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
10723 /* We've instantiated a template before its default arguments
10724 have been parsed. This can happen for a nested template
10725 class, and is not an error unless we require the default
10726 argument in a call of this function. */
10727 remaining_arg_types =
10728 tree_cons (default_arg, type, remaining_arg_types);
10729 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
10731 else
10732 remaining_arg_types =
10733 hash_tree_cons (default_arg, type, remaining_arg_types);
10736 return remaining_arg_types;
10739 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
10740 *not* handle the exception-specification for FNTYPE, because the
10741 initial substitution of explicitly provided template parameters
10742 during argument deduction forbids substitution into the
10743 exception-specification:
10745 [temp.deduct]
10747 All references in the function type of the function template to the
10748 corresponding template parameters are replaced by the specified tem-
10749 plate argument values. If a substitution in a template parameter or
10750 in the function type of the function template results in an invalid
10751 type, type deduction fails. [Note: The equivalent substitution in
10752 exception specifications is done only when the function is instanti-
10753 ated, at which point a program is ill-formed if the substitution
10754 results in an invalid type.] */
10756 static tree
10757 tsubst_function_type (tree t,
10758 tree args,
10759 tsubst_flags_t complain,
10760 tree in_decl)
10762 tree return_type;
10763 tree arg_types;
10764 tree fntype;
10766 /* The TYPE_CONTEXT is not used for function/method types. */
10767 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
10769 /* Substitute the return type. */
10770 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10771 if (return_type == error_mark_node)
10772 return error_mark_node;
10773 /* The standard does not presently indicate that creation of a
10774 function type with an invalid return type is a deduction failure.
10775 However, that is clearly analogous to creating an array of "void"
10776 or a reference to a reference. This is core issue #486. */
10777 if (TREE_CODE (return_type) == ARRAY_TYPE
10778 || TREE_CODE (return_type) == FUNCTION_TYPE)
10780 if (complain & tf_error)
10782 if (TREE_CODE (return_type) == ARRAY_TYPE)
10783 error ("function returning an array");
10784 else
10785 error ("function returning a function");
10787 return error_mark_node;
10790 /* Substitute the argument types. */
10791 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
10792 complain, in_decl);
10793 if (arg_types == error_mark_node)
10794 return error_mark_node;
10796 /* Construct a new type node and return it. */
10797 if (TREE_CODE (t) == FUNCTION_TYPE)
10799 fntype = build_function_type (return_type, arg_types);
10800 fntype = apply_memfn_quals (fntype, type_memfn_quals (t));
10802 else
10804 tree r = TREE_TYPE (TREE_VALUE (arg_types));
10805 if (! MAYBE_CLASS_TYPE_P (r))
10807 /* [temp.deduct]
10809 Type deduction may fail for any of the following
10810 reasons:
10812 -- Attempting to create "pointer to member of T" when T
10813 is not a class type. */
10814 if (complain & tf_error)
10815 error ("creating pointer to member function of non-class type %qT",
10817 return error_mark_node;
10820 fntype = build_method_type_directly (r, return_type,
10821 TREE_CHAIN (arg_types));
10823 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
10825 return fntype;
10828 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
10829 ARGS into that specification, and return the substituted
10830 specification. If there is no specification, return NULL_TREE. */
10832 static tree
10833 tsubst_exception_specification (tree fntype,
10834 tree args,
10835 tsubst_flags_t complain,
10836 tree in_decl,
10837 bool defer_ok)
10839 tree specs;
10840 tree new_specs;
10842 specs = TYPE_RAISES_EXCEPTIONS (fntype);
10843 new_specs = NULL_TREE;
10844 if (specs && TREE_PURPOSE (specs))
10846 /* A noexcept-specifier. */
10847 tree expr = TREE_PURPOSE (specs);
10848 if (expr == boolean_true_node || expr == boolean_false_node)
10849 new_specs = expr;
10850 else if (defer_ok)
10852 /* Defer instantiation of noexcept-specifiers to avoid
10853 excessive instantiations (c++/49107). */
10854 new_specs = make_node (DEFERRED_NOEXCEPT);
10855 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
10857 /* We already partially instantiated this member template,
10858 so combine the new args with the old. */
10859 DEFERRED_NOEXCEPT_PATTERN (new_specs)
10860 = DEFERRED_NOEXCEPT_PATTERN (expr);
10861 DEFERRED_NOEXCEPT_ARGS (new_specs)
10862 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
10864 else
10866 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
10867 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
10870 else
10871 new_specs = tsubst_copy_and_build
10872 (expr, args, complain, in_decl, /*function_p=*/false,
10873 /*integral_constant_expression_p=*/true);
10874 new_specs = build_noexcept_spec (new_specs, complain);
10876 else if (specs)
10878 if (! TREE_VALUE (specs))
10879 new_specs = specs;
10880 else
10881 while (specs)
10883 tree spec;
10884 int i, len = 1;
10885 tree expanded_specs = NULL_TREE;
10887 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
10889 /* Expand the pack expansion type. */
10890 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
10891 args, complain,
10892 in_decl);
10894 if (expanded_specs == error_mark_node)
10895 return error_mark_node;
10896 else if (TREE_CODE (expanded_specs) == TREE_VEC)
10897 len = TREE_VEC_LENGTH (expanded_specs);
10898 else
10900 /* We're substituting into a member template, so
10901 we got a TYPE_PACK_EXPANSION back. Add that
10902 expansion and move on. */
10903 gcc_assert (TREE_CODE (expanded_specs)
10904 == TYPE_PACK_EXPANSION);
10905 new_specs = add_exception_specifier (new_specs,
10906 expanded_specs,
10907 complain);
10908 specs = TREE_CHAIN (specs);
10909 continue;
10913 for (i = 0; i < len; ++i)
10915 if (expanded_specs)
10916 spec = TREE_VEC_ELT (expanded_specs, i);
10917 else
10918 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
10919 if (spec == error_mark_node)
10920 return spec;
10921 new_specs = add_exception_specifier (new_specs, spec,
10922 complain);
10925 specs = TREE_CHAIN (specs);
10928 return new_specs;
10931 /* Take the tree structure T and replace template parameters used
10932 therein with the argument vector ARGS. IN_DECL is an associated
10933 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
10934 Issue error and warning messages under control of COMPLAIN. Note
10935 that we must be relatively non-tolerant of extensions here, in
10936 order to preserve conformance; if we allow substitutions that
10937 should not be allowed, we may allow argument deductions that should
10938 not succeed, and therefore report ambiguous overload situations
10939 where there are none. In theory, we could allow the substitution,
10940 but indicate that it should have failed, and allow our caller to
10941 make sure that the right thing happens, but we don't try to do this
10942 yet.
10944 This function is used for dealing with types, decls and the like;
10945 for expressions, use tsubst_expr or tsubst_copy. */
10947 tree
10948 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10950 enum tree_code code;
10951 tree type, r = NULL_TREE;
10953 if (t == NULL_TREE || t == error_mark_node
10954 || t == integer_type_node
10955 || t == void_type_node
10956 || t == char_type_node
10957 || t == unknown_type_node
10958 || TREE_CODE (t) == NAMESPACE_DECL
10959 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
10960 return t;
10962 if (DECL_P (t))
10963 return tsubst_decl (t, args, complain);
10965 if (args == NULL_TREE)
10966 return t;
10968 code = TREE_CODE (t);
10970 if (code == IDENTIFIER_NODE)
10971 type = IDENTIFIER_TYPE_VALUE (t);
10972 else
10973 type = TREE_TYPE (t);
10975 gcc_assert (type != unknown_type_node);
10977 /* Reuse typedefs. We need to do this to handle dependent attributes,
10978 such as attribute aligned. */
10979 if (TYPE_P (t)
10980 && typedef_variant_p (t))
10982 tree decl = TYPE_NAME (t);
10984 if (alias_template_specialization_p (t))
10986 /* DECL represents an alias template and we want to
10987 instantiate it. */
10988 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
10989 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
10990 r = instantiate_alias_template (tmpl, gen_args, complain);
10992 else if (DECL_CLASS_SCOPE_P (decl)
10993 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
10994 && uses_template_parms (DECL_CONTEXT (decl)))
10996 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
10997 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
10998 r = retrieve_specialization (tmpl, gen_args, 0);
11000 else if (DECL_FUNCTION_SCOPE_P (decl)
11001 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11002 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11003 r = retrieve_local_specialization (decl);
11004 else
11005 /* The typedef is from a non-template context. */
11006 return t;
11008 if (r)
11010 r = TREE_TYPE (r);
11011 r = cp_build_qualified_type_real
11012 (r, cp_type_quals (t) | cp_type_quals (r),
11013 complain | tf_ignore_bad_quals);
11014 return r;
11016 else
11017 /* We don't have an instantiation yet, so drop the typedef. */
11018 t = DECL_ORIGINAL_TYPE (decl);
11021 if (type
11022 && code != TYPENAME_TYPE
11023 && code != TEMPLATE_TYPE_PARM
11024 && code != IDENTIFIER_NODE
11025 && code != FUNCTION_TYPE
11026 && code != METHOD_TYPE)
11027 type = tsubst (type, args, complain, in_decl);
11028 if (type == error_mark_node)
11029 return error_mark_node;
11031 switch (code)
11033 case RECORD_TYPE:
11034 case UNION_TYPE:
11035 case ENUMERAL_TYPE:
11036 return tsubst_aggr_type (t, args, complain, in_decl,
11037 /*entering_scope=*/0);
11039 case ERROR_MARK:
11040 case IDENTIFIER_NODE:
11041 case VOID_TYPE:
11042 case REAL_TYPE:
11043 case COMPLEX_TYPE:
11044 case VECTOR_TYPE:
11045 case BOOLEAN_TYPE:
11046 case NULLPTR_TYPE:
11047 case LANG_TYPE:
11048 return t;
11050 case INTEGER_TYPE:
11051 if (t == integer_type_node)
11052 return t;
11054 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11055 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11056 return t;
11059 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11061 max = tsubst_expr (omax, args, complain, in_decl,
11062 /*integral_constant_expression_p=*/false);
11064 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11065 needed. */
11066 if (TREE_CODE (max) == NOP_EXPR
11067 && TREE_SIDE_EFFECTS (omax)
11068 && !TREE_TYPE (max))
11069 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11071 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11072 with TREE_SIDE_EFFECTS that indicates this is not an integral
11073 constant expression. */
11074 if (processing_template_decl
11075 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11077 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11078 TREE_SIDE_EFFECTS (max) = 1;
11081 return compute_array_index_type (NULL_TREE, max, complain);
11084 case TEMPLATE_TYPE_PARM:
11085 case TEMPLATE_TEMPLATE_PARM:
11086 case BOUND_TEMPLATE_TEMPLATE_PARM:
11087 case TEMPLATE_PARM_INDEX:
11089 int idx;
11090 int level;
11091 int levels;
11092 tree arg = NULL_TREE;
11094 r = NULL_TREE;
11096 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11097 template_parm_level_and_index (t, &level, &idx);
11099 levels = TMPL_ARGS_DEPTH (args);
11100 if (level <= levels)
11102 arg = TMPL_ARG (args, level, idx);
11104 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11105 /* See through ARGUMENT_PACK_SELECT arguments. */
11106 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11109 if (arg == error_mark_node)
11110 return error_mark_node;
11111 else if (arg != NULL_TREE)
11113 if (ARGUMENT_PACK_P (arg))
11114 /* If ARG is an argument pack, we don't actually want to
11115 perform a substitution here, because substitutions
11116 for argument packs are only done
11117 element-by-element. We can get to this point when
11118 substituting the type of a non-type template
11119 parameter pack, when that type actually contains
11120 template parameter packs from an outer template, e.g.,
11122 template<typename... Types> struct A {
11123 template<Types... Values> struct B { };
11124 }; */
11125 return t;
11127 if (code == TEMPLATE_TYPE_PARM)
11129 int quals;
11130 gcc_assert (TYPE_P (arg));
11132 quals = cp_type_quals (arg) | cp_type_quals (t);
11134 return cp_build_qualified_type_real
11135 (arg, quals, complain | tf_ignore_bad_quals);
11137 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11139 /* We are processing a type constructed from a
11140 template template parameter. */
11141 tree argvec = tsubst (TYPE_TI_ARGS (t),
11142 args, complain, in_decl);
11143 if (argvec == error_mark_node)
11144 return error_mark_node;
11146 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11147 || TREE_CODE (arg) == TEMPLATE_DECL
11148 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11150 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11151 /* Consider this code:
11153 template <template <class> class Template>
11154 struct Internal {
11155 template <class Arg> using Bind = Template<Arg>;
11158 template <template <class> class Template, class Arg>
11159 using Instantiate = Template<Arg>; //#0
11161 template <template <class> class Template,
11162 class Argument>
11163 using Bind =
11164 Instantiate<Internal<Template>::template Bind,
11165 Argument>; //#1
11167 When #1 is parsed, the
11168 BOUND_TEMPLATE_TEMPLATE_PARM representing the
11169 parameter `Template' in #0 matches the
11170 UNBOUND_CLASS_TEMPLATE representing the argument
11171 `Internal<Template>::template Bind'; We then want
11172 to assemble the type `Bind<Argument>' that can't
11173 be fully created right now, because
11174 `Internal<Template>' not being complete, the Bind
11175 template cannot be looked up in that context. So
11176 we need to "store" `Bind<Argument>' for later
11177 when the context of Bind becomes complete. Let's
11178 store that in a TYPENAME_TYPE. */
11179 return make_typename_type (TYPE_CONTEXT (arg),
11180 build_nt (TEMPLATE_ID_EXPR,
11181 TYPE_IDENTIFIER (arg),
11182 argvec),
11183 typename_type,
11184 complain);
11186 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
11187 are resolving nested-types in the signature of a
11188 member function templates. Otherwise ARG is a
11189 TEMPLATE_DECL and is the real template to be
11190 instantiated. */
11191 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11192 arg = TYPE_NAME (arg);
11194 r = lookup_template_class (arg,
11195 argvec, in_decl,
11196 DECL_CONTEXT (arg),
11197 /*entering_scope=*/0,
11198 complain);
11199 return cp_build_qualified_type_real
11200 (r, cp_type_quals (t), complain);
11202 else
11203 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
11204 return convert_from_reference (unshare_expr (arg));
11207 if (level == 1)
11208 /* This can happen during the attempted tsubst'ing in
11209 unify. This means that we don't yet have any information
11210 about the template parameter in question. */
11211 return t;
11213 /* Early in template argument deduction substitution, we don't
11214 want to reduce the level of 'auto', or it will be confused
11215 with a normal template parm in subsequent deduction. */
11216 if (is_auto (t) && (complain & tf_partial))
11217 return t;
11219 /* If we get here, we must have been looking at a parm for a
11220 more deeply nested template. Make a new version of this
11221 template parameter, but with a lower level. */
11222 switch (code)
11224 case TEMPLATE_TYPE_PARM:
11225 case TEMPLATE_TEMPLATE_PARM:
11226 case BOUND_TEMPLATE_TEMPLATE_PARM:
11227 if (cp_type_quals (t))
11229 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
11230 r = cp_build_qualified_type_real
11231 (r, cp_type_quals (t),
11232 complain | (code == TEMPLATE_TYPE_PARM
11233 ? tf_ignore_bad_quals : 0));
11235 else
11237 r = copy_type (t);
11238 TEMPLATE_TYPE_PARM_INDEX (r)
11239 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
11240 r, levels, args, complain);
11241 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
11242 TYPE_MAIN_VARIANT (r) = r;
11243 TYPE_POINTER_TO (r) = NULL_TREE;
11244 TYPE_REFERENCE_TO (r) = NULL_TREE;
11246 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
11247 /* We have reduced the level of the template
11248 template parameter, but not the levels of its
11249 template parameters, so canonical_type_parameter
11250 will not be able to find the canonical template
11251 template parameter for this level. Thus, we
11252 require structural equality checking to compare
11253 TEMPLATE_TEMPLATE_PARMs. */
11254 SET_TYPE_STRUCTURAL_EQUALITY (r);
11255 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
11256 SET_TYPE_STRUCTURAL_EQUALITY (r);
11257 else
11258 TYPE_CANONICAL (r) = canonical_type_parameter (r);
11260 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11262 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
11263 complain, in_decl);
11264 if (argvec == error_mark_node)
11265 return error_mark_node;
11267 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
11268 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
11271 break;
11273 case TEMPLATE_PARM_INDEX:
11274 r = reduce_template_parm_level (t, type, levels, args, complain);
11275 break;
11277 default:
11278 gcc_unreachable ();
11281 return r;
11284 case TREE_LIST:
11286 tree purpose, value, chain;
11288 if (t == void_list_node)
11289 return t;
11291 purpose = TREE_PURPOSE (t);
11292 if (purpose)
11294 purpose = tsubst (purpose, args, complain, in_decl);
11295 if (purpose == error_mark_node)
11296 return error_mark_node;
11298 value = TREE_VALUE (t);
11299 if (value)
11301 value = tsubst (value, args, complain, in_decl);
11302 if (value == error_mark_node)
11303 return error_mark_node;
11305 chain = TREE_CHAIN (t);
11306 if (chain && chain != void_type_node)
11308 chain = tsubst (chain, args, complain, in_decl);
11309 if (chain == error_mark_node)
11310 return error_mark_node;
11312 if (purpose == TREE_PURPOSE (t)
11313 && value == TREE_VALUE (t)
11314 && chain == TREE_CHAIN (t))
11315 return t;
11316 return hash_tree_cons (purpose, value, chain);
11319 case TREE_BINFO:
11320 /* We should never be tsubsting a binfo. */
11321 gcc_unreachable ();
11323 case TREE_VEC:
11324 /* A vector of template arguments. */
11325 gcc_assert (!type);
11326 return tsubst_template_args (t, args, complain, in_decl);
11328 case POINTER_TYPE:
11329 case REFERENCE_TYPE:
11331 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
11332 return t;
11334 /* [temp.deduct]
11336 Type deduction may fail for any of the following
11337 reasons:
11339 -- Attempting to create a pointer to reference type.
11340 -- Attempting to create a reference to a reference type or
11341 a reference to void.
11343 Core issue 106 says that creating a reference to a reference
11344 during instantiation is no longer a cause for failure. We
11345 only enforce this check in strict C++98 mode. */
11346 if ((TREE_CODE (type) == REFERENCE_TYPE
11347 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
11348 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
11350 static location_t last_loc;
11352 /* We keep track of the last time we issued this error
11353 message to avoid spewing a ton of messages during a
11354 single bad template instantiation. */
11355 if (complain & tf_error
11356 && last_loc != input_location)
11358 if (TREE_CODE (type) == VOID_TYPE)
11359 error ("forming reference to void");
11360 else if (code == POINTER_TYPE)
11361 error ("forming pointer to reference type %qT", type);
11362 else
11363 error ("forming reference to reference type %qT", type);
11364 last_loc = input_location;
11367 return error_mark_node;
11369 else if (code == POINTER_TYPE)
11371 r = build_pointer_type (type);
11372 if (TREE_CODE (type) == METHOD_TYPE)
11373 r = build_ptrmemfunc_type (r);
11375 else if (TREE_CODE (type) == REFERENCE_TYPE)
11376 /* In C++0x, during template argument substitution, when there is an
11377 attempt to create a reference to a reference type, reference
11378 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
11380 "If a template-argument for a template-parameter T names a type
11381 that is a reference to a type A, an attempt to create the type
11382 'lvalue reference to cv T' creates the type 'lvalue reference to
11383 A,' while an attempt to create the type type rvalue reference to
11384 cv T' creates the type T"
11386 r = cp_build_reference_type
11387 (TREE_TYPE (type),
11388 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
11389 else
11390 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
11391 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11393 if (r != error_mark_node)
11394 /* Will this ever be needed for TYPE_..._TO values? */
11395 layout_type (r);
11397 return r;
11399 case OFFSET_TYPE:
11401 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
11402 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
11404 /* [temp.deduct]
11406 Type deduction may fail for any of the following
11407 reasons:
11409 -- Attempting to create "pointer to member of T" when T
11410 is not a class type. */
11411 if (complain & tf_error)
11412 error ("creating pointer to member of non-class type %qT", r);
11413 return error_mark_node;
11415 if (TREE_CODE (type) == REFERENCE_TYPE)
11417 if (complain & tf_error)
11418 error ("creating pointer to member reference type %qT", type);
11419 return error_mark_node;
11421 if (TREE_CODE (type) == VOID_TYPE)
11423 if (complain & tf_error)
11424 error ("creating pointer to member of type void");
11425 return error_mark_node;
11427 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11428 if (TREE_CODE (type) == FUNCTION_TYPE)
11430 /* The type of the implicit object parameter gets its
11431 cv-qualifiers from the FUNCTION_TYPE. */
11432 tree memptr;
11433 tree method_type = build_memfn_type (type, r, type_memfn_quals (type));
11434 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
11435 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
11436 complain);
11438 else
11439 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
11440 cp_type_quals (t),
11441 complain);
11443 case FUNCTION_TYPE:
11444 case METHOD_TYPE:
11446 tree fntype;
11447 tree specs;
11448 fntype = tsubst_function_type (t, args, complain, in_decl);
11449 if (fntype == error_mark_node)
11450 return error_mark_node;
11452 /* Substitute the exception specification. */
11453 specs = tsubst_exception_specification (t, args, complain,
11454 in_decl, /*defer_ok*/true);
11455 if (specs == error_mark_node)
11456 return error_mark_node;
11457 if (specs)
11458 fntype = build_exception_variant (fntype, specs);
11459 return fntype;
11461 case ARRAY_TYPE:
11463 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
11464 if (domain == error_mark_node)
11465 return error_mark_node;
11467 /* As an optimization, we avoid regenerating the array type if
11468 it will obviously be the same as T. */
11469 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
11470 return t;
11472 /* These checks should match the ones in grokdeclarator.
11474 [temp.deduct]
11476 The deduction may fail for any of the following reasons:
11478 -- Attempting to create an array with an element type that
11479 is void, a function type, or a reference type, or [DR337]
11480 an abstract class type. */
11481 if (TREE_CODE (type) == VOID_TYPE
11482 || TREE_CODE (type) == FUNCTION_TYPE
11483 || TREE_CODE (type) == REFERENCE_TYPE)
11485 if (complain & tf_error)
11486 error ("creating array of %qT", type);
11487 return error_mark_node;
11489 if (ABSTRACT_CLASS_TYPE_P (type))
11491 if (complain & tf_error)
11492 error ("creating array of %qT, which is an abstract class type",
11493 type);
11494 return error_mark_node;
11497 r = build_cplus_array_type (type, domain);
11499 if (TYPE_USER_ALIGN (t))
11501 TYPE_ALIGN (r) = TYPE_ALIGN (t);
11502 TYPE_USER_ALIGN (r) = 1;
11505 return r;
11508 case TYPENAME_TYPE:
11510 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11511 in_decl, /*entering_scope=*/1);
11512 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
11513 complain, in_decl);
11515 if (ctx == error_mark_node || f == error_mark_node)
11516 return error_mark_node;
11518 if (!MAYBE_CLASS_TYPE_P (ctx))
11520 if (complain & tf_error)
11521 error ("%qT is not a class, struct, or union type", ctx);
11522 return error_mark_node;
11524 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
11526 /* Normally, make_typename_type does not require that the CTX
11527 have complete type in order to allow things like:
11529 template <class T> struct S { typename S<T>::X Y; };
11531 But, such constructs have already been resolved by this
11532 point, so here CTX really should have complete type, unless
11533 it's a partial instantiation. */
11534 ctx = complete_type (ctx);
11535 if (!COMPLETE_TYPE_P (ctx))
11537 if (complain & tf_error)
11538 cxx_incomplete_type_error (NULL_TREE, ctx);
11539 return error_mark_node;
11543 f = make_typename_type (ctx, f, typename_type,
11544 complain | tf_keep_type_decl);
11545 if (f == error_mark_node)
11546 return f;
11547 if (TREE_CODE (f) == TYPE_DECL)
11549 complain |= tf_ignore_bad_quals;
11550 f = TREE_TYPE (f);
11553 if (TREE_CODE (f) != TYPENAME_TYPE)
11555 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
11557 if (complain & tf_error)
11558 error ("%qT resolves to %qT, which is not an enumeration type",
11559 t, f);
11560 else
11561 return error_mark_node;
11563 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
11565 if (complain & tf_error)
11566 error ("%qT resolves to %qT, which is is not a class type",
11567 t, f);
11568 else
11569 return error_mark_node;
11573 return cp_build_qualified_type_real
11574 (f, cp_type_quals (f) | cp_type_quals (t), complain);
11577 case UNBOUND_CLASS_TEMPLATE:
11579 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11580 in_decl, /*entering_scope=*/1);
11581 tree name = TYPE_IDENTIFIER (t);
11582 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
11584 if (ctx == error_mark_node || name == error_mark_node)
11585 return error_mark_node;
11587 if (parm_list)
11588 parm_list = tsubst_template_parms (parm_list, args, complain);
11589 return make_unbound_class_template (ctx, name, parm_list, complain);
11592 case TYPEOF_TYPE:
11594 tree type;
11596 ++cp_unevaluated_operand;
11597 ++c_inhibit_evaluation_warnings;
11599 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
11600 complain, in_decl,
11601 /*integral_constant_expression_p=*/false);
11603 --cp_unevaluated_operand;
11604 --c_inhibit_evaluation_warnings;
11606 type = finish_typeof (type);
11607 return cp_build_qualified_type_real (type,
11608 cp_type_quals (t)
11609 | cp_type_quals (type),
11610 complain);
11613 case DECLTYPE_TYPE:
11615 tree type;
11617 ++cp_unevaluated_operand;
11618 ++c_inhibit_evaluation_warnings;
11620 type = tsubst_expr (DECLTYPE_TYPE_EXPR (t), args,
11621 complain, in_decl,
11622 /*integral_constant_expression_p=*/false);
11624 --cp_unevaluated_operand;
11625 --c_inhibit_evaluation_warnings;
11627 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
11628 type = lambda_capture_field_type (type);
11629 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
11630 type = lambda_proxy_type (type);
11631 else
11632 type = finish_decltype_type
11633 (type, DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t), complain);
11634 return cp_build_qualified_type_real (type,
11635 cp_type_quals (t)
11636 | cp_type_quals (type),
11637 complain);
11640 case UNDERLYING_TYPE:
11642 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
11643 complain, in_decl);
11644 return finish_underlying_type (type);
11647 case TYPE_ARGUMENT_PACK:
11648 case NONTYPE_ARGUMENT_PACK:
11650 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
11651 tree packed_out =
11652 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
11653 args,
11654 complain,
11655 in_decl);
11656 SET_ARGUMENT_PACK_ARGS (r, packed_out);
11658 /* For template nontype argument packs, also substitute into
11659 the type. */
11660 if (code == NONTYPE_ARGUMENT_PACK)
11661 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
11663 return r;
11665 break;
11667 case INTEGER_CST:
11668 case REAL_CST:
11669 case STRING_CST:
11670 case PLUS_EXPR:
11671 case MINUS_EXPR:
11672 case NEGATE_EXPR:
11673 case NOP_EXPR:
11674 case INDIRECT_REF:
11675 case ADDR_EXPR:
11676 case CALL_EXPR:
11677 case ARRAY_REF:
11678 case SCOPE_REF:
11679 /* We should use one of the expression tsubsts for these codes. */
11680 gcc_unreachable ();
11682 default:
11683 sorry ("use of %qs in template", tree_code_name [(int) code]);
11684 return error_mark_node;
11688 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
11689 type of the expression on the left-hand side of the "." or "->"
11690 operator. */
11692 static tree
11693 tsubst_baselink (tree baselink, tree object_type,
11694 tree args, tsubst_flags_t complain, tree in_decl)
11696 tree name;
11697 tree qualifying_scope;
11698 tree fns;
11699 tree optype;
11700 tree template_args = 0;
11701 bool template_id_p = false;
11702 bool qualified = BASELINK_QUALIFIED_P (baselink);
11704 /* A baselink indicates a function from a base class. Both the
11705 BASELINK_ACCESS_BINFO and the base class referenced may
11706 indicate bases of the template class, rather than the
11707 instantiated class. In addition, lookups that were not
11708 ambiguous before may be ambiguous now. Therefore, we perform
11709 the lookup again. */
11710 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
11711 qualifying_scope = tsubst (qualifying_scope, args,
11712 complain, in_decl);
11713 fns = BASELINK_FUNCTIONS (baselink);
11714 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
11715 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
11717 template_id_p = true;
11718 template_args = TREE_OPERAND (fns, 1);
11719 fns = TREE_OPERAND (fns, 0);
11720 if (template_args)
11721 template_args = tsubst_template_args (template_args, args,
11722 complain, in_decl);
11724 name = DECL_NAME (get_first_fn (fns));
11725 if (IDENTIFIER_TYPENAME_P (name))
11726 name = mangle_conv_op_name_for_type (optype);
11727 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
11728 if (!baselink)
11729 return error_mark_node;
11731 /* If lookup found a single function, mark it as used at this
11732 point. (If it lookup found multiple functions the one selected
11733 later by overload resolution will be marked as used at that
11734 point.) */
11735 if (BASELINK_P (baselink))
11736 fns = BASELINK_FUNCTIONS (baselink);
11737 if (!template_id_p && !really_overloaded_fn (fns))
11738 mark_used (OVL_CURRENT (fns));
11740 /* Add back the template arguments, if present. */
11741 if (BASELINK_P (baselink) && template_id_p)
11742 BASELINK_FUNCTIONS (baselink)
11743 = build_nt (TEMPLATE_ID_EXPR,
11744 BASELINK_FUNCTIONS (baselink),
11745 template_args);
11746 /* Update the conversion operator type. */
11747 BASELINK_OPTYPE (baselink) = optype;
11749 if (!object_type)
11750 object_type = current_class_type;
11752 if (qualified)
11753 baselink = adjust_result_of_qualified_name_lookup (baselink,
11754 qualifying_scope,
11755 object_type);
11756 return baselink;
11759 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
11760 true if the qualified-id will be a postfix-expression in-and-of
11761 itself; false if more of the postfix-expression follows the
11762 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
11763 of "&". */
11765 static tree
11766 tsubst_qualified_id (tree qualified_id, tree args,
11767 tsubst_flags_t complain, tree in_decl,
11768 bool done, bool address_p)
11770 tree expr;
11771 tree scope;
11772 tree name;
11773 bool is_template;
11774 tree template_args;
11775 location_t loc = UNKNOWN_LOCATION;
11777 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
11779 /* Figure out what name to look up. */
11780 name = TREE_OPERAND (qualified_id, 1);
11781 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
11783 is_template = true;
11784 loc = EXPR_LOCATION (name);
11785 template_args = TREE_OPERAND (name, 1);
11786 if (template_args)
11787 template_args = tsubst_template_args (template_args, args,
11788 complain, in_decl);
11789 name = TREE_OPERAND (name, 0);
11791 else
11793 is_template = false;
11794 template_args = NULL_TREE;
11797 /* Substitute into the qualifying scope. When there are no ARGS, we
11798 are just trying to simplify a non-dependent expression. In that
11799 case the qualifying scope may be dependent, and, in any case,
11800 substituting will not help. */
11801 scope = TREE_OPERAND (qualified_id, 0);
11802 if (args)
11804 scope = tsubst (scope, args, complain, in_decl);
11805 expr = tsubst_copy (name, args, complain, in_decl);
11807 else
11808 expr = name;
11810 if (dependent_scope_p (scope))
11812 if (is_template)
11813 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
11814 return build_qualified_name (NULL_TREE, scope, expr,
11815 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
11818 if (!BASELINK_P (name) && !DECL_P (expr))
11820 if (TREE_CODE (expr) == BIT_NOT_EXPR)
11822 /* A BIT_NOT_EXPR is used to represent a destructor. */
11823 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
11825 error ("qualifying type %qT does not match destructor name ~%qT",
11826 scope, TREE_OPERAND (expr, 0));
11827 expr = error_mark_node;
11829 else
11830 expr = lookup_qualified_name (scope, complete_dtor_identifier,
11831 /*is_type_p=*/0, false);
11833 else
11834 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
11835 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
11836 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
11838 if (complain & tf_error)
11840 error ("dependent-name %qE is parsed as a non-type, but "
11841 "instantiation yields a type", qualified_id);
11842 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
11844 return error_mark_node;
11848 if (DECL_P (expr))
11850 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
11851 scope);
11852 /* Remember that there was a reference to this entity. */
11853 mark_used (expr);
11856 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
11858 if (complain & tf_error)
11859 qualified_name_lookup_error (scope,
11860 TREE_OPERAND (qualified_id, 1),
11861 expr, input_location);
11862 return error_mark_node;
11865 if (is_template)
11866 expr = lookup_template_function (expr, template_args);
11868 if (expr == error_mark_node && complain & tf_error)
11869 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
11870 expr, input_location);
11871 else if (TYPE_P (scope))
11873 expr = (adjust_result_of_qualified_name_lookup
11874 (expr, scope, current_class_type));
11875 expr = (finish_qualified_id_expr
11876 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
11877 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
11878 /*template_arg_p=*/false));
11881 /* Expressions do not generally have reference type. */
11882 if (TREE_CODE (expr) != SCOPE_REF
11883 /* However, if we're about to form a pointer-to-member, we just
11884 want the referenced member referenced. */
11885 && TREE_CODE (expr) != OFFSET_REF)
11886 expr = convert_from_reference (expr);
11888 return expr;
11891 /* Like tsubst, but deals with expressions. This function just replaces
11892 template parms; to finish processing the resultant expression, use
11893 tsubst_copy_and_build or tsubst_expr. */
11895 static tree
11896 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11898 enum tree_code code;
11899 tree r;
11901 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
11902 return t;
11904 code = TREE_CODE (t);
11906 switch (code)
11908 case PARM_DECL:
11909 r = retrieve_local_specialization (t);
11911 if (r == NULL_TREE)
11913 /* We get here for a use of 'this' in an NSDMI. */
11914 if (DECL_NAME (t) == this_identifier
11915 && at_function_scope_p ()
11916 && DECL_CONSTRUCTOR_P (current_function_decl))
11917 return current_class_ptr;
11919 /* This can happen for a parameter name used later in a function
11920 declaration (such as in a late-specified return type). Just
11921 make a dummy decl, since it's only used for its type. */
11922 gcc_assert (cp_unevaluated_operand != 0);
11923 r = tsubst_decl (t, args, complain);
11924 /* Give it the template pattern as its context; its true context
11925 hasn't been instantiated yet and this is good enough for
11926 mangling. */
11927 DECL_CONTEXT (r) = DECL_CONTEXT (t);
11930 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
11931 r = ARGUMENT_PACK_SELECT_ARG (r);
11932 mark_used (r);
11933 return r;
11935 case CONST_DECL:
11937 tree enum_type;
11938 tree v;
11940 if (DECL_TEMPLATE_PARM_P (t))
11941 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
11942 /* There is no need to substitute into namespace-scope
11943 enumerators. */
11944 if (DECL_NAMESPACE_SCOPE_P (t))
11945 return t;
11946 /* If ARGS is NULL, then T is known to be non-dependent. */
11947 if (args == NULL_TREE)
11948 return integral_constant_value (t);
11950 /* Unfortunately, we cannot just call lookup_name here.
11951 Consider:
11953 template <int I> int f() {
11954 enum E { a = I };
11955 struct S { void g() { E e = a; } };
11958 When we instantiate f<7>::S::g(), say, lookup_name is not
11959 clever enough to find f<7>::a. */
11960 enum_type
11961 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
11962 /*entering_scope=*/0);
11964 for (v = TYPE_VALUES (enum_type);
11965 v != NULL_TREE;
11966 v = TREE_CHAIN (v))
11967 if (TREE_PURPOSE (v) == DECL_NAME (t))
11968 return TREE_VALUE (v);
11970 /* We didn't find the name. That should never happen; if
11971 name-lookup found it during preliminary parsing, we
11972 should find it again here during instantiation. */
11973 gcc_unreachable ();
11975 return t;
11977 case FIELD_DECL:
11978 if (DECL_CONTEXT (t))
11980 tree ctx;
11982 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
11983 /*entering_scope=*/1);
11984 if (ctx != DECL_CONTEXT (t))
11986 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
11987 if (!r)
11989 if (complain & tf_error)
11990 error ("using invalid field %qD", t);
11991 return error_mark_node;
11993 return r;
11997 return t;
11999 case VAR_DECL:
12000 case FUNCTION_DECL:
12001 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12002 || local_variable_p (t))
12003 t = tsubst (t, args, complain, in_decl);
12004 mark_used (t);
12005 return t;
12007 case NAMESPACE_DECL:
12008 return t;
12010 case OVERLOAD:
12011 /* An OVERLOAD will always be a non-dependent overload set; an
12012 overload set from function scope will just be represented with an
12013 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12014 gcc_assert (!uses_template_parms (t));
12015 return t;
12017 case BASELINK:
12018 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
12020 case TEMPLATE_DECL:
12021 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12022 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
12023 args, complain, in_decl);
12024 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
12025 return tsubst (t, args, complain, in_decl);
12026 else if (DECL_CLASS_SCOPE_P (t)
12027 && uses_template_parms (DECL_CONTEXT (t)))
12029 /* Template template argument like the following example need
12030 special treatment:
12032 template <template <class> class TT> struct C {};
12033 template <class T> struct D {
12034 template <class U> struct E {};
12035 C<E> c; // #1
12037 D<int> d; // #2
12039 We are processing the template argument `E' in #1 for
12040 the template instantiation #2. Originally, `E' is a
12041 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
12042 have to substitute this with one having context `D<int>'. */
12044 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12045 return lookup_field (context, DECL_NAME(t), 0, false);
12047 else
12048 /* Ordinary template template argument. */
12049 return t;
12051 case CAST_EXPR:
12052 case REINTERPRET_CAST_EXPR:
12053 case CONST_CAST_EXPR:
12054 case STATIC_CAST_EXPR:
12055 case DYNAMIC_CAST_EXPR:
12056 case IMPLICIT_CONV_EXPR:
12057 case CONVERT_EXPR:
12058 case NOP_EXPR:
12059 return build1
12060 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12061 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12063 case SIZEOF_EXPR:
12064 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
12067 tree expanded, op = TREE_OPERAND (t, 0);
12068 int len = 0;
12070 if (SIZEOF_EXPR_TYPE_P (t))
12071 op = TREE_TYPE (op);
12073 ++cp_unevaluated_operand;
12074 ++c_inhibit_evaluation_warnings;
12075 /* We only want to compute the number of arguments. */
12076 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
12077 --cp_unevaluated_operand;
12078 --c_inhibit_evaluation_warnings;
12080 if (TREE_CODE (expanded) == TREE_VEC)
12081 len = TREE_VEC_LENGTH (expanded);
12083 if (expanded == error_mark_node)
12084 return error_mark_node;
12085 else if (PACK_EXPANSION_P (expanded)
12086 || (TREE_CODE (expanded) == TREE_VEC
12087 && len > 0
12088 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
12090 if (TREE_CODE (expanded) == TREE_VEC)
12091 expanded = TREE_VEC_ELT (expanded, len - 1);
12093 if (TYPE_P (expanded))
12094 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
12095 complain & tf_error);
12096 else
12097 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
12098 complain & tf_error);
12100 else
12101 return build_int_cst (size_type_node, len);
12103 if (SIZEOF_EXPR_TYPE_P (t))
12105 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
12106 args, complain, in_decl);
12107 r = build1 (NOP_EXPR, r, error_mark_node);
12108 r = build1 (SIZEOF_EXPR,
12109 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
12110 SIZEOF_EXPR_TYPE_P (r) = 1;
12111 return r;
12113 /* Fall through */
12115 case INDIRECT_REF:
12116 case NEGATE_EXPR:
12117 case TRUTH_NOT_EXPR:
12118 case BIT_NOT_EXPR:
12119 case ADDR_EXPR:
12120 case UNARY_PLUS_EXPR: /* Unary + */
12121 case ALIGNOF_EXPR:
12122 case AT_ENCODE_EXPR:
12123 case ARROW_EXPR:
12124 case THROW_EXPR:
12125 case TYPEID_EXPR:
12126 case REALPART_EXPR:
12127 case IMAGPART_EXPR:
12128 return build1
12129 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12130 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12132 case COMPONENT_REF:
12134 tree object;
12135 tree name;
12137 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
12138 name = TREE_OPERAND (t, 1);
12139 if (TREE_CODE (name) == BIT_NOT_EXPR)
12141 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12142 complain, in_decl);
12143 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12145 else if (TREE_CODE (name) == SCOPE_REF
12146 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
12148 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
12149 complain, in_decl);
12150 name = TREE_OPERAND (name, 1);
12151 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12152 complain, in_decl);
12153 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12154 name = build_qualified_name (/*type=*/NULL_TREE,
12155 base, name,
12156 /*template_p=*/false);
12158 else if (BASELINK_P (name))
12159 name = tsubst_baselink (name,
12160 non_reference (TREE_TYPE (object)),
12161 args, complain,
12162 in_decl);
12163 else
12164 name = tsubst_copy (name, args, complain, in_decl);
12165 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
12168 case PLUS_EXPR:
12169 case MINUS_EXPR:
12170 case MULT_EXPR:
12171 case TRUNC_DIV_EXPR:
12172 case CEIL_DIV_EXPR:
12173 case FLOOR_DIV_EXPR:
12174 case ROUND_DIV_EXPR:
12175 case EXACT_DIV_EXPR:
12176 case BIT_AND_EXPR:
12177 case BIT_IOR_EXPR:
12178 case BIT_XOR_EXPR:
12179 case TRUNC_MOD_EXPR:
12180 case FLOOR_MOD_EXPR:
12181 case TRUTH_ANDIF_EXPR:
12182 case TRUTH_ORIF_EXPR:
12183 case TRUTH_AND_EXPR:
12184 case TRUTH_OR_EXPR:
12185 case RSHIFT_EXPR:
12186 case LSHIFT_EXPR:
12187 case RROTATE_EXPR:
12188 case LROTATE_EXPR:
12189 case EQ_EXPR:
12190 case NE_EXPR:
12191 case MAX_EXPR:
12192 case MIN_EXPR:
12193 case LE_EXPR:
12194 case GE_EXPR:
12195 case LT_EXPR:
12196 case GT_EXPR:
12197 case COMPOUND_EXPR:
12198 case DOTSTAR_EXPR:
12199 case MEMBER_REF:
12200 case PREDECREMENT_EXPR:
12201 case PREINCREMENT_EXPR:
12202 case POSTDECREMENT_EXPR:
12203 case POSTINCREMENT_EXPR:
12204 return build_nt
12205 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12206 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12208 case SCOPE_REF:
12209 return build_qualified_name (/*type=*/NULL_TREE,
12210 tsubst_copy (TREE_OPERAND (t, 0),
12211 args, complain, in_decl),
12212 tsubst_copy (TREE_OPERAND (t, 1),
12213 args, complain, in_decl),
12214 QUALIFIED_NAME_IS_TEMPLATE (t));
12216 case ARRAY_REF:
12217 return build_nt
12218 (ARRAY_REF,
12219 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12220 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12221 NULL_TREE, NULL_TREE);
12223 case CALL_EXPR:
12225 int n = VL_EXP_OPERAND_LENGTH (t);
12226 tree result = build_vl_exp (CALL_EXPR, n);
12227 int i;
12228 for (i = 0; i < n; i++)
12229 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
12230 complain, in_decl);
12231 return result;
12234 case COND_EXPR:
12235 case MODOP_EXPR:
12236 case PSEUDO_DTOR_EXPR:
12238 r = build_nt
12239 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12240 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12241 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12242 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
12243 return r;
12246 case NEW_EXPR:
12248 r = build_nt
12249 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12250 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12251 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12252 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
12253 return r;
12256 case DELETE_EXPR:
12258 r = build_nt
12259 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12260 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12261 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
12262 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
12263 return r;
12266 case TEMPLATE_ID_EXPR:
12268 /* Substituted template arguments */
12269 tree fn = TREE_OPERAND (t, 0);
12270 tree targs = TREE_OPERAND (t, 1);
12272 fn = tsubst_copy (fn, args, complain, in_decl);
12273 if (targs)
12274 targs = tsubst_template_args (targs, args, complain, in_decl);
12276 return lookup_template_function (fn, targs);
12279 case TREE_LIST:
12281 tree purpose, value, chain;
12283 if (t == void_list_node)
12284 return t;
12286 purpose = TREE_PURPOSE (t);
12287 if (purpose)
12288 purpose = tsubst_copy (purpose, args, complain, in_decl);
12289 value = TREE_VALUE (t);
12290 if (value)
12291 value = tsubst_copy (value, args, complain, in_decl);
12292 chain = TREE_CHAIN (t);
12293 if (chain && chain != void_type_node)
12294 chain = tsubst_copy (chain, args, complain, in_decl);
12295 if (purpose == TREE_PURPOSE (t)
12296 && value == TREE_VALUE (t)
12297 && chain == TREE_CHAIN (t))
12298 return t;
12299 return tree_cons (purpose, value, chain);
12302 case RECORD_TYPE:
12303 case UNION_TYPE:
12304 case ENUMERAL_TYPE:
12305 case INTEGER_TYPE:
12306 case TEMPLATE_TYPE_PARM:
12307 case TEMPLATE_TEMPLATE_PARM:
12308 case BOUND_TEMPLATE_TEMPLATE_PARM:
12309 case TEMPLATE_PARM_INDEX:
12310 case POINTER_TYPE:
12311 case REFERENCE_TYPE:
12312 case OFFSET_TYPE:
12313 case FUNCTION_TYPE:
12314 case METHOD_TYPE:
12315 case ARRAY_TYPE:
12316 case TYPENAME_TYPE:
12317 case UNBOUND_CLASS_TEMPLATE:
12318 case TYPEOF_TYPE:
12319 case DECLTYPE_TYPE:
12320 case TYPE_DECL:
12321 return tsubst (t, args, complain, in_decl);
12323 case IDENTIFIER_NODE:
12324 if (IDENTIFIER_TYPENAME_P (t))
12326 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12327 return mangle_conv_op_name_for_type (new_type);
12329 else
12330 return t;
12332 case CONSTRUCTOR:
12333 /* This is handled by tsubst_copy_and_build. */
12334 gcc_unreachable ();
12336 case VA_ARG_EXPR:
12337 return build_x_va_arg (EXPR_LOCATION (t),
12338 tsubst_copy (TREE_OPERAND (t, 0), args, complain,
12339 in_decl),
12340 tsubst (TREE_TYPE (t), args, complain, in_decl));
12342 case CLEANUP_POINT_EXPR:
12343 /* We shouldn't have built any of these during initial template
12344 generation. Instead, they should be built during instantiation
12345 in response to the saved STMT_IS_FULL_EXPR_P setting. */
12346 gcc_unreachable ();
12348 case OFFSET_REF:
12349 r = build2
12350 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12351 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12352 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12353 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
12354 mark_used (TREE_OPERAND (r, 1));
12355 return r;
12357 case EXPR_PACK_EXPANSION:
12358 error ("invalid use of pack expansion expression");
12359 return error_mark_node;
12361 case NONTYPE_ARGUMENT_PACK:
12362 error ("use %<...%> to expand argument pack");
12363 return error_mark_node;
12365 case INTEGER_CST:
12366 case REAL_CST:
12367 case STRING_CST:
12368 case COMPLEX_CST:
12370 /* Instantiate any typedefs in the type. */
12371 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12372 r = fold_convert (type, t);
12373 gcc_assert (TREE_CODE (r) == code);
12374 return r;
12377 case PTRMEM_CST:
12378 /* These can sometimes show up in a partial instantiation, but never
12379 involve template parms. */
12380 gcc_assert (!uses_template_parms (t));
12381 return t;
12383 default:
12384 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
12385 gcc_checking_assert (false);
12386 return t;
12390 /* Like tsubst_copy, but specifically for OpenMP clauses. */
12392 static tree
12393 tsubst_omp_clauses (tree clauses, tree args, tsubst_flags_t complain,
12394 tree in_decl)
12396 tree new_clauses = NULL, nc, oc;
12398 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
12400 nc = copy_node (oc);
12401 OMP_CLAUSE_CHAIN (nc) = new_clauses;
12402 new_clauses = nc;
12404 switch (OMP_CLAUSE_CODE (nc))
12406 case OMP_CLAUSE_LASTPRIVATE:
12407 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
12409 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
12410 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
12411 in_decl, /*integral_constant_expression_p=*/false);
12412 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
12413 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
12415 /* FALLTHRU */
12416 case OMP_CLAUSE_PRIVATE:
12417 case OMP_CLAUSE_SHARED:
12418 case OMP_CLAUSE_FIRSTPRIVATE:
12419 case OMP_CLAUSE_REDUCTION:
12420 case OMP_CLAUSE_COPYIN:
12421 case OMP_CLAUSE_COPYPRIVATE:
12422 case OMP_CLAUSE_IF:
12423 case OMP_CLAUSE_NUM_THREADS:
12424 case OMP_CLAUSE_SCHEDULE:
12425 case OMP_CLAUSE_COLLAPSE:
12426 case OMP_CLAUSE_FINAL:
12427 OMP_CLAUSE_OPERAND (nc, 0)
12428 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
12429 in_decl, /*integral_constant_expression_p=*/false);
12430 break;
12431 case OMP_CLAUSE_NOWAIT:
12432 case OMP_CLAUSE_ORDERED:
12433 case OMP_CLAUSE_DEFAULT:
12434 case OMP_CLAUSE_UNTIED:
12435 case OMP_CLAUSE_MERGEABLE:
12436 break;
12437 default:
12438 gcc_unreachable ();
12442 return finish_omp_clauses (nreverse (new_clauses));
12445 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
12447 static tree
12448 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
12449 tree in_decl)
12451 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
12453 tree purpose, value, chain;
12455 if (t == NULL)
12456 return t;
12458 if (TREE_CODE (t) != TREE_LIST)
12459 return tsubst_copy_and_build (t, args, complain, in_decl,
12460 /*function_p=*/false,
12461 /*integral_constant_expression_p=*/false);
12463 if (t == void_list_node)
12464 return t;
12466 purpose = TREE_PURPOSE (t);
12467 if (purpose)
12468 purpose = RECUR (purpose);
12469 value = TREE_VALUE (t);
12470 if (value)
12472 if (TREE_CODE (value) != LABEL_DECL)
12473 value = RECUR (value);
12474 else
12476 value = lookup_label (DECL_NAME (value));
12477 gcc_assert (TREE_CODE (value) == LABEL_DECL);
12478 TREE_USED (value) = 1;
12481 chain = TREE_CHAIN (t);
12482 if (chain && chain != void_type_node)
12483 chain = RECUR (chain);
12484 return tree_cons (purpose, value, chain);
12485 #undef RECUR
12488 /* Substitute one OMP_FOR iterator. */
12490 static void
12491 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
12492 tree condv, tree incrv, tree *clauses,
12493 tree args, tsubst_flags_t complain, tree in_decl,
12494 bool integral_constant_expression_p)
12496 #define RECUR(NODE) \
12497 tsubst_expr ((NODE), args, complain, in_decl, \
12498 integral_constant_expression_p)
12499 tree decl, init, cond, incr;
12500 bool init_decl;
12502 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
12503 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
12504 decl = TREE_OPERAND (init, 0);
12505 init = TREE_OPERAND (init, 1);
12506 /* Do this before substituting into decl to handle 'auto'. */
12507 init_decl = (init && TREE_CODE (init) == DECL_EXPR);
12508 init = RECUR (init);
12509 decl = RECUR (decl);
12510 if (init_decl)
12512 gcc_assert (!processing_template_decl);
12513 init = DECL_INITIAL (decl);
12514 DECL_INITIAL (decl) = NULL_TREE;
12517 gcc_assert (!type_dependent_expression_p (decl));
12519 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
12521 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
12522 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12523 if (TREE_CODE (incr) == MODIFY_EXPR)
12524 incr = build_x_modify_expr (EXPR_LOCATION (incr),
12525 RECUR (TREE_OPERAND (incr, 0)), NOP_EXPR,
12526 RECUR (TREE_OPERAND (incr, 1)),
12527 complain);
12528 else
12529 incr = RECUR (incr);
12530 TREE_VEC_ELT (declv, i) = decl;
12531 TREE_VEC_ELT (initv, i) = init;
12532 TREE_VEC_ELT (condv, i) = cond;
12533 TREE_VEC_ELT (incrv, i) = incr;
12534 return;
12537 if (init && !init_decl)
12539 tree c;
12540 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
12542 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
12543 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
12544 && OMP_CLAUSE_DECL (c) == decl)
12545 break;
12546 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
12547 && OMP_CLAUSE_DECL (c) == decl)
12548 error ("iteration variable %qD should not be firstprivate", decl);
12549 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
12550 && OMP_CLAUSE_DECL (c) == decl)
12551 error ("iteration variable %qD should not be reduction", decl);
12553 if (c == NULL)
12555 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
12556 OMP_CLAUSE_DECL (c) = decl;
12557 c = finish_omp_clauses (c);
12558 if (c)
12560 OMP_CLAUSE_CHAIN (c) = *clauses;
12561 *clauses = c;
12565 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
12566 if (COMPARISON_CLASS_P (cond))
12567 cond = build2 (TREE_CODE (cond), boolean_type_node,
12568 RECUR (TREE_OPERAND (cond, 0)),
12569 RECUR (TREE_OPERAND (cond, 1)));
12570 else
12571 cond = RECUR (cond);
12572 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12573 switch (TREE_CODE (incr))
12575 case PREINCREMENT_EXPR:
12576 case PREDECREMENT_EXPR:
12577 case POSTINCREMENT_EXPR:
12578 case POSTDECREMENT_EXPR:
12579 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
12580 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
12581 break;
12582 case MODIFY_EXPR:
12583 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12584 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12586 tree rhs = TREE_OPERAND (incr, 1);
12587 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12588 RECUR (TREE_OPERAND (incr, 0)),
12589 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12590 RECUR (TREE_OPERAND (rhs, 0)),
12591 RECUR (TREE_OPERAND (rhs, 1))));
12593 else
12594 incr = RECUR (incr);
12595 break;
12596 case MODOP_EXPR:
12597 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12598 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12600 tree lhs = RECUR (TREE_OPERAND (incr, 0));
12601 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
12602 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
12603 TREE_TYPE (decl), lhs,
12604 RECUR (TREE_OPERAND (incr, 2))));
12606 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
12607 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
12608 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
12610 tree rhs = TREE_OPERAND (incr, 2);
12611 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12612 RECUR (TREE_OPERAND (incr, 0)),
12613 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12614 RECUR (TREE_OPERAND (rhs, 0)),
12615 RECUR (TREE_OPERAND (rhs, 1))));
12617 else
12618 incr = RECUR (incr);
12619 break;
12620 default:
12621 incr = RECUR (incr);
12622 break;
12625 TREE_VEC_ELT (declv, i) = decl;
12626 TREE_VEC_ELT (initv, i) = init;
12627 TREE_VEC_ELT (condv, i) = cond;
12628 TREE_VEC_ELT (incrv, i) = incr;
12629 #undef RECUR
12632 /* Like tsubst_copy for expressions, etc. but also does semantic
12633 processing. */
12635 static tree
12636 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
12637 bool integral_constant_expression_p)
12639 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
12640 #define RECUR(NODE) \
12641 tsubst_expr ((NODE), args, complain, in_decl, \
12642 integral_constant_expression_p)
12644 tree stmt, tmp;
12645 tree r;
12646 location_t loc;
12648 if (t == NULL_TREE || t == error_mark_node)
12649 return t;
12651 loc = input_location;
12652 if (EXPR_HAS_LOCATION (t))
12653 input_location = EXPR_LOCATION (t);
12654 if (STATEMENT_CODE_P (TREE_CODE (t)))
12655 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
12657 switch (TREE_CODE (t))
12659 case STATEMENT_LIST:
12661 tree_stmt_iterator i;
12662 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
12663 RECUR (tsi_stmt (i));
12664 break;
12667 case CTOR_INITIALIZER:
12668 finish_mem_initializers (tsubst_initializer_list
12669 (TREE_OPERAND (t, 0), args));
12670 break;
12672 case RETURN_EXPR:
12673 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
12674 break;
12676 case EXPR_STMT:
12677 tmp = RECUR (EXPR_STMT_EXPR (t));
12678 if (EXPR_STMT_STMT_EXPR_RESULT (t))
12679 finish_stmt_expr_expr (tmp, cur_stmt_expr);
12680 else
12681 finish_expr_stmt (tmp);
12682 break;
12684 case USING_STMT:
12685 do_using_directive (USING_STMT_NAMESPACE (t));
12686 break;
12688 case DECL_EXPR:
12690 tree decl, pattern_decl;
12691 tree init;
12693 pattern_decl = decl = DECL_EXPR_DECL (t);
12694 if (TREE_CODE (decl) == LABEL_DECL)
12695 finish_label_decl (DECL_NAME (decl));
12696 else if (TREE_CODE (decl) == USING_DECL)
12698 tree scope = USING_DECL_SCOPE (decl);
12699 tree name = DECL_NAME (decl);
12700 tree decl;
12702 scope = tsubst (scope, args, complain, in_decl);
12703 decl = lookup_qualified_name (scope, name,
12704 /*is_type_p=*/false,
12705 /*complain=*/false);
12706 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
12707 qualified_name_lookup_error (scope, name, decl, input_location);
12708 else
12709 do_local_using_decl (decl, scope, name);
12711 else
12713 init = DECL_INITIAL (decl);
12714 decl = tsubst (decl, args, complain, in_decl);
12715 if (decl != error_mark_node)
12717 /* By marking the declaration as instantiated, we avoid
12718 trying to instantiate it. Since instantiate_decl can't
12719 handle local variables, and since we've already done
12720 all that needs to be done, that's the right thing to
12721 do. */
12722 if (TREE_CODE (decl) == VAR_DECL)
12723 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
12724 if (TREE_CODE (decl) == VAR_DECL
12725 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
12726 /* Anonymous aggregates are a special case. */
12727 finish_anon_union (decl);
12728 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
12730 DECL_CONTEXT (decl) = current_function_decl;
12731 insert_capture_proxy (decl);
12733 else if (DECL_IMPLICIT_TYPEDEF_P (t))
12734 /* We already did a pushtag. */;
12735 else
12737 int const_init = false;
12738 maybe_push_decl (decl);
12739 if (TREE_CODE (decl) == VAR_DECL
12740 && DECL_PRETTY_FUNCTION_P (decl))
12742 /* For __PRETTY_FUNCTION__ we have to adjust the
12743 initializer. */
12744 const char *const name
12745 = cxx_printable_name (current_function_decl, 2);
12746 init = cp_fname_init (name, &TREE_TYPE (decl));
12748 else
12750 tree t = RECUR (init);
12752 if (init && !t)
12754 /* If we had an initializer but it
12755 instantiated to nothing,
12756 value-initialize the object. This will
12757 only occur when the initializer was a
12758 pack expansion where the parameter packs
12759 used in that expansion were of length
12760 zero. */
12761 init = build_value_init (TREE_TYPE (decl),
12762 complain);
12763 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12764 init = get_target_expr_sfinae (init, complain);
12766 else
12767 init = t;
12770 if (TREE_CODE (decl) == VAR_DECL)
12771 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
12772 (pattern_decl));
12773 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
12778 break;
12781 case FOR_STMT:
12782 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12783 RECUR (FOR_INIT_STMT (t));
12784 finish_for_init_stmt (stmt);
12785 tmp = RECUR (FOR_COND (t));
12786 finish_for_cond (tmp, stmt);
12787 tmp = RECUR (FOR_EXPR (t));
12788 finish_for_expr (tmp, stmt);
12789 RECUR (FOR_BODY (t));
12790 finish_for_stmt (stmt);
12791 break;
12793 case RANGE_FOR_STMT:
12795 tree decl, expr;
12796 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12797 decl = RANGE_FOR_DECL (t);
12798 decl = tsubst (decl, args, complain, in_decl);
12799 maybe_push_decl (decl);
12800 expr = RECUR (RANGE_FOR_EXPR (t));
12801 stmt = cp_convert_range_for (stmt, decl, expr);
12802 RECUR (RANGE_FOR_BODY (t));
12803 finish_for_stmt (stmt);
12805 break;
12807 case WHILE_STMT:
12808 stmt = begin_while_stmt ();
12809 tmp = RECUR (WHILE_COND (t));
12810 finish_while_stmt_cond (tmp, stmt);
12811 RECUR (WHILE_BODY (t));
12812 finish_while_stmt (stmt);
12813 break;
12815 case DO_STMT:
12816 stmt = begin_do_stmt ();
12817 RECUR (DO_BODY (t));
12818 finish_do_body (stmt);
12819 tmp = RECUR (DO_COND (t));
12820 finish_do_stmt (tmp, stmt);
12821 break;
12823 case IF_STMT:
12824 stmt = begin_if_stmt ();
12825 tmp = RECUR (IF_COND (t));
12826 finish_if_stmt_cond (tmp, stmt);
12827 RECUR (THEN_CLAUSE (t));
12828 finish_then_clause (stmt);
12830 if (ELSE_CLAUSE (t))
12832 begin_else_clause (stmt);
12833 RECUR (ELSE_CLAUSE (t));
12834 finish_else_clause (stmt);
12837 finish_if_stmt (stmt);
12838 break;
12840 case BIND_EXPR:
12841 if (BIND_EXPR_BODY_BLOCK (t))
12842 stmt = begin_function_body ();
12843 else
12844 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
12845 ? BCS_TRY_BLOCK : 0);
12847 RECUR (BIND_EXPR_BODY (t));
12849 if (BIND_EXPR_BODY_BLOCK (t))
12850 finish_function_body (stmt);
12851 else
12852 finish_compound_stmt (stmt);
12853 break;
12855 case BREAK_STMT:
12856 finish_break_stmt ();
12857 break;
12859 case CONTINUE_STMT:
12860 finish_continue_stmt ();
12861 break;
12863 case SWITCH_STMT:
12864 stmt = begin_switch_stmt ();
12865 tmp = RECUR (SWITCH_STMT_COND (t));
12866 finish_switch_cond (tmp, stmt);
12867 RECUR (SWITCH_STMT_BODY (t));
12868 finish_switch_stmt (stmt);
12869 break;
12871 case CASE_LABEL_EXPR:
12872 finish_case_label (EXPR_LOCATION (t),
12873 RECUR (CASE_LOW (t)),
12874 RECUR (CASE_HIGH (t)));
12875 break;
12877 case LABEL_EXPR:
12879 tree decl = LABEL_EXPR_LABEL (t);
12880 tree label;
12882 label = finish_label_stmt (DECL_NAME (decl));
12883 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
12884 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
12886 break;
12888 case GOTO_EXPR:
12889 tmp = GOTO_DESTINATION (t);
12890 if (TREE_CODE (tmp) != LABEL_DECL)
12891 /* Computed goto's must be tsubst'd into. On the other hand,
12892 non-computed gotos must not be; the identifier in question
12893 will have no binding. */
12894 tmp = RECUR (tmp);
12895 else
12896 tmp = DECL_NAME (tmp);
12897 finish_goto_stmt (tmp);
12898 break;
12900 case ASM_EXPR:
12901 tmp = finish_asm_stmt
12902 (ASM_VOLATILE_P (t),
12903 RECUR (ASM_STRING (t)),
12904 tsubst_copy_asm_operands (ASM_OUTPUTS (t), args, complain, in_decl),
12905 tsubst_copy_asm_operands (ASM_INPUTS (t), args, complain, in_decl),
12906 tsubst_copy_asm_operands (ASM_CLOBBERS (t), args, complain, in_decl),
12907 tsubst_copy_asm_operands (ASM_LABELS (t), args, complain, in_decl));
12909 tree asm_expr = tmp;
12910 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
12911 asm_expr = TREE_OPERAND (asm_expr, 0);
12912 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
12914 break;
12916 case TRY_BLOCK:
12917 if (CLEANUP_P (t))
12919 stmt = begin_try_block ();
12920 RECUR (TRY_STMTS (t));
12921 finish_cleanup_try_block (stmt);
12922 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
12924 else
12926 tree compound_stmt = NULL_TREE;
12928 if (FN_TRY_BLOCK_P (t))
12929 stmt = begin_function_try_block (&compound_stmt);
12930 else
12931 stmt = begin_try_block ();
12933 RECUR (TRY_STMTS (t));
12935 if (FN_TRY_BLOCK_P (t))
12936 finish_function_try_block (stmt);
12937 else
12938 finish_try_block (stmt);
12940 RECUR (TRY_HANDLERS (t));
12941 if (FN_TRY_BLOCK_P (t))
12942 finish_function_handler_sequence (stmt, compound_stmt);
12943 else
12944 finish_handler_sequence (stmt);
12946 break;
12948 case HANDLER:
12950 tree decl = HANDLER_PARMS (t);
12952 if (decl)
12954 decl = tsubst (decl, args, complain, in_decl);
12955 /* Prevent instantiate_decl from trying to instantiate
12956 this variable. We've already done all that needs to be
12957 done. */
12958 if (decl != error_mark_node)
12959 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
12961 stmt = begin_handler ();
12962 finish_handler_parms (decl, stmt);
12963 RECUR (HANDLER_BODY (t));
12964 finish_handler (stmt);
12966 break;
12968 case TAG_DEFN:
12969 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
12970 if (CLASS_TYPE_P (tmp))
12972 /* Local classes are not independent templates; they are
12973 instantiated along with their containing function. And this
12974 way we don't have to deal with pushing out of one local class
12975 to instantiate a member of another local class. */
12976 tree fn;
12977 /* Closures are handled by the LAMBDA_EXPR. */
12978 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
12979 complete_type (tmp);
12980 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
12981 if (!DECL_ARTIFICIAL (fn))
12982 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
12984 break;
12986 case STATIC_ASSERT:
12988 tree condition;
12990 ++c_inhibit_evaluation_warnings;
12991 condition =
12992 tsubst_expr (STATIC_ASSERT_CONDITION (t),
12993 args,
12994 complain, in_decl,
12995 /*integral_constant_expression_p=*/true);
12996 --c_inhibit_evaluation_warnings;
12998 finish_static_assert (condition,
12999 STATIC_ASSERT_MESSAGE (t),
13000 STATIC_ASSERT_SOURCE_LOCATION (t),
13001 /*member_p=*/false);
13003 break;
13005 case OMP_PARALLEL:
13006 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t),
13007 args, complain, in_decl);
13008 stmt = begin_omp_parallel ();
13009 RECUR (OMP_PARALLEL_BODY (t));
13010 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
13011 = OMP_PARALLEL_COMBINED (t);
13012 break;
13014 case OMP_TASK:
13015 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t),
13016 args, complain, in_decl);
13017 stmt = begin_omp_task ();
13018 RECUR (OMP_TASK_BODY (t));
13019 finish_omp_task (tmp, stmt);
13020 break;
13022 case OMP_FOR:
13024 tree clauses, body, pre_body;
13025 tree declv, initv, condv, incrv;
13026 int i;
13028 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t),
13029 args, complain, in_decl);
13030 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13031 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13032 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13033 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13035 stmt = begin_omp_structured_block ();
13037 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
13038 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
13039 &clauses, args, complain, in_decl,
13040 integral_constant_expression_p);
13042 pre_body = push_stmt_list ();
13043 RECUR (OMP_FOR_PRE_BODY (t));
13044 pre_body = pop_stmt_list (pre_body);
13046 body = push_stmt_list ();
13047 RECUR (OMP_FOR_BODY (t));
13048 body = pop_stmt_list (body);
13050 t = finish_omp_for (EXPR_LOCATION (t), declv, initv, condv, incrv,
13051 body, pre_body, clauses);
13053 add_stmt (finish_omp_structured_block (stmt));
13055 break;
13057 case OMP_SECTIONS:
13058 case OMP_SINGLE:
13059 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), args, complain, in_decl);
13060 stmt = push_stmt_list ();
13061 RECUR (OMP_BODY (t));
13062 stmt = pop_stmt_list (stmt);
13064 t = copy_node (t);
13065 OMP_BODY (t) = stmt;
13066 OMP_CLAUSES (t) = tmp;
13067 add_stmt (t);
13068 break;
13070 case OMP_SECTION:
13071 case OMP_CRITICAL:
13072 case OMP_MASTER:
13073 case OMP_ORDERED:
13074 stmt = push_stmt_list ();
13075 RECUR (OMP_BODY (t));
13076 stmt = pop_stmt_list (stmt);
13078 t = copy_node (t);
13079 OMP_BODY (t) = stmt;
13080 add_stmt (t);
13081 break;
13083 case OMP_ATOMIC:
13084 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
13085 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
13087 tree op1 = TREE_OPERAND (t, 1);
13088 tree rhs1 = NULL_TREE;
13089 tree lhs, rhs;
13090 if (TREE_CODE (op1) == COMPOUND_EXPR)
13092 rhs1 = RECUR (TREE_OPERAND (op1, 0));
13093 op1 = TREE_OPERAND (op1, 1);
13095 lhs = RECUR (TREE_OPERAND (op1, 0));
13096 rhs = RECUR (TREE_OPERAND (op1, 1));
13097 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
13098 NULL_TREE, NULL_TREE, rhs1);
13100 else
13102 tree op1 = TREE_OPERAND (t, 1);
13103 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
13104 tree rhs1 = NULL_TREE;
13105 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
13106 enum tree_code opcode = NOP_EXPR;
13107 if (code == OMP_ATOMIC_READ)
13109 v = RECUR (TREE_OPERAND (op1, 0));
13110 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13112 else if (code == OMP_ATOMIC_CAPTURE_OLD
13113 || code == OMP_ATOMIC_CAPTURE_NEW)
13115 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
13116 v = RECUR (TREE_OPERAND (op1, 0));
13117 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13118 if (TREE_CODE (op11) == COMPOUND_EXPR)
13120 rhs1 = RECUR (TREE_OPERAND (op11, 0));
13121 op11 = TREE_OPERAND (op11, 1);
13123 lhs = RECUR (TREE_OPERAND (op11, 0));
13124 rhs = RECUR (TREE_OPERAND (op11, 1));
13125 opcode = TREE_CODE (op11);
13127 else
13129 code = OMP_ATOMIC;
13130 lhs = RECUR (TREE_OPERAND (op1, 0));
13131 rhs = RECUR (TREE_OPERAND (op1, 1));
13133 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1);
13135 break;
13137 case TRANSACTION_EXPR:
13139 int flags = 0;
13140 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
13141 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
13143 if (TRANSACTION_EXPR_IS_STMT (t))
13145 tree body = TRANSACTION_EXPR_BODY (t);
13146 tree noex = NULL_TREE;
13147 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
13149 noex = MUST_NOT_THROW_COND (body);
13150 if (noex == NULL_TREE)
13151 noex = boolean_true_node;
13152 body = TREE_OPERAND (body, 0);
13154 stmt = begin_transaction_stmt (input_location, NULL, flags);
13155 RECUR (body);
13156 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
13158 else
13160 stmt = build_transaction_expr (EXPR_LOCATION (t),
13161 RECUR (TRANSACTION_EXPR_BODY (t)),
13162 flags, NULL_TREE);
13163 RETURN (stmt);
13166 break;
13168 case MUST_NOT_THROW_EXPR:
13169 RETURN (build_must_not_throw_expr (RECUR (TREE_OPERAND (t, 0)),
13170 RECUR (MUST_NOT_THROW_COND (t))));
13172 case EXPR_PACK_EXPANSION:
13173 error ("invalid use of pack expansion expression");
13174 RETURN (error_mark_node);
13176 case NONTYPE_ARGUMENT_PACK:
13177 error ("use %<...%> to expand argument pack");
13178 RETURN (error_mark_node);
13180 case COMPOUND_EXPR:
13181 tmp = RECUR (TREE_OPERAND (t, 0));
13182 if (tmp == NULL_TREE)
13183 /* If the first operand was a statement, we're done with it. */
13184 RETURN (RECUR (TREE_OPERAND (t, 1)));
13185 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
13186 RECUR (TREE_OPERAND (t, 1)),
13187 complain));
13189 default:
13190 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
13192 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
13193 /*function_p=*/false,
13194 integral_constant_expression_p));
13197 RETURN (NULL_TREE);
13198 out:
13199 input_location = loc;
13200 return r;
13201 #undef RECUR
13202 #undef RETURN
13205 /* T is a postfix-expression that is not being used in a function
13206 call. Return the substituted version of T. */
13208 static tree
13209 tsubst_non_call_postfix_expression (tree t, tree args,
13210 tsubst_flags_t complain,
13211 tree in_decl)
13213 if (TREE_CODE (t) == SCOPE_REF)
13214 t = tsubst_qualified_id (t, args, complain, in_decl,
13215 /*done=*/false, /*address_p=*/false);
13216 else
13217 t = tsubst_copy_and_build (t, args, complain, in_decl,
13218 /*function_p=*/false,
13219 /*integral_constant_expression_p=*/false);
13221 return t;
13224 /* Like tsubst but deals with expressions and performs semantic
13225 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
13227 tree
13228 tsubst_copy_and_build (tree t,
13229 tree args,
13230 tsubst_flags_t complain,
13231 tree in_decl,
13232 bool function_p,
13233 bool integral_constant_expression_p)
13235 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
13236 #define RECUR(NODE) \
13237 tsubst_copy_and_build (NODE, args, complain, in_decl, \
13238 /*function_p=*/false, \
13239 integral_constant_expression_p)
13241 tree retval, op1;
13242 location_t loc;
13244 if (t == NULL_TREE || t == error_mark_node)
13245 return t;
13247 loc = input_location;
13248 if (EXPR_HAS_LOCATION (t))
13249 input_location = EXPR_LOCATION (t);
13251 switch (TREE_CODE (t))
13253 case USING_DECL:
13254 t = DECL_NAME (t);
13255 /* Fall through. */
13256 case IDENTIFIER_NODE:
13258 tree decl;
13259 cp_id_kind idk;
13260 bool non_integral_constant_expression_p;
13261 const char *error_msg;
13263 if (IDENTIFIER_TYPENAME_P (t))
13265 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13266 t = mangle_conv_op_name_for_type (new_type);
13269 /* Look up the name. */
13270 decl = lookup_name (t);
13272 /* By convention, expressions use ERROR_MARK_NODE to indicate
13273 failure, not NULL_TREE. */
13274 if (decl == NULL_TREE)
13275 decl = error_mark_node;
13277 decl = finish_id_expression (t, decl, NULL_TREE,
13278 &idk,
13279 integral_constant_expression_p,
13280 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx0x),
13281 &non_integral_constant_expression_p,
13282 /*template_p=*/false,
13283 /*done=*/true,
13284 /*address_p=*/false,
13285 /*template_arg_p=*/false,
13286 &error_msg,
13287 input_location);
13288 if (error_msg)
13289 error (error_msg);
13290 if (!function_p && TREE_CODE (decl) == IDENTIFIER_NODE)
13292 if (complain & tf_error)
13293 unqualified_name_lookup_error (decl);
13294 decl = error_mark_node;
13296 RETURN (decl);
13299 case TEMPLATE_ID_EXPR:
13301 tree object;
13302 tree templ = RECUR (TREE_OPERAND (t, 0));
13303 tree targs = TREE_OPERAND (t, 1);
13305 if (targs)
13306 targs = tsubst_template_args (targs, args, complain, in_decl);
13308 if (TREE_CODE (templ) == COMPONENT_REF)
13310 object = TREE_OPERAND (templ, 0);
13311 templ = TREE_OPERAND (templ, 1);
13313 else
13314 object = NULL_TREE;
13315 templ = lookup_template_function (templ, targs);
13317 if (object)
13318 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
13319 object, templ, NULL_TREE));
13320 else
13321 RETURN (baselink_for_fns (templ));
13324 case INDIRECT_REF:
13326 tree r = RECUR (TREE_OPERAND (t, 0));
13328 if (REFERENCE_REF_P (t))
13330 /* A type conversion to reference type will be enclosed in
13331 such an indirect ref, but the substitution of the cast
13332 will have also added such an indirect ref. */
13333 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
13334 r = convert_from_reference (r);
13336 else
13337 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR, complain);
13338 RETURN (r);
13341 case NOP_EXPR:
13342 RETURN (build_nop
13343 (tsubst (TREE_TYPE (t), args, complain, in_decl),
13344 RECUR (TREE_OPERAND (t, 0))));
13346 case IMPLICIT_CONV_EXPR:
13348 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13349 tree expr = RECUR (TREE_OPERAND (t, 0));
13350 int flags = LOOKUP_IMPLICIT;
13351 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
13352 flags = LOOKUP_NORMAL;
13353 RETURN (perform_implicit_conversion_flags (type, expr, complain,
13354 flags));
13357 case CONVERT_EXPR:
13358 RETURN (build1
13359 (CONVERT_EXPR,
13360 tsubst (TREE_TYPE (t), args, complain, in_decl),
13361 RECUR (TREE_OPERAND (t, 0))));
13363 case CAST_EXPR:
13364 case REINTERPRET_CAST_EXPR:
13365 case CONST_CAST_EXPR:
13366 case DYNAMIC_CAST_EXPR:
13367 case STATIC_CAST_EXPR:
13369 tree type;
13370 tree op, r = NULL_TREE;
13372 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13373 if (integral_constant_expression_p
13374 && !cast_valid_in_integral_constant_expression_p (type))
13376 if (complain & tf_error)
13377 error ("a cast to a type other than an integral or "
13378 "enumeration type cannot appear in a constant-expression");
13379 RETURN (error_mark_node);
13382 op = RECUR (TREE_OPERAND (t, 0));
13384 ++c_inhibit_evaluation_warnings;
13385 switch (TREE_CODE (t))
13387 case CAST_EXPR:
13388 r = build_functional_cast (type, op, complain);
13389 break;
13390 case REINTERPRET_CAST_EXPR:
13391 r = build_reinterpret_cast (type, op, complain);
13392 break;
13393 case CONST_CAST_EXPR:
13394 r = build_const_cast (type, op, complain);
13395 break;
13396 case DYNAMIC_CAST_EXPR:
13397 r = build_dynamic_cast (type, op, complain);
13398 break;
13399 case STATIC_CAST_EXPR:
13400 r = build_static_cast (type, op, complain);
13401 break;
13402 default:
13403 gcc_unreachable ();
13405 --c_inhibit_evaluation_warnings;
13407 RETURN (r);
13410 case POSTDECREMENT_EXPR:
13411 case POSTINCREMENT_EXPR:
13412 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13413 args, complain, in_decl);
13414 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1, complain));
13416 case PREDECREMENT_EXPR:
13417 case PREINCREMENT_EXPR:
13418 case NEGATE_EXPR:
13419 case BIT_NOT_EXPR:
13420 case ABS_EXPR:
13421 case TRUTH_NOT_EXPR:
13422 case UNARY_PLUS_EXPR: /* Unary + */
13423 case REALPART_EXPR:
13424 case IMAGPART_EXPR:
13425 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
13426 RECUR (TREE_OPERAND (t, 0)), complain));
13428 case FIX_TRUNC_EXPR:
13429 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
13430 0, complain));
13432 case ADDR_EXPR:
13433 op1 = TREE_OPERAND (t, 0);
13434 if (TREE_CODE (op1) == LABEL_DECL)
13435 RETURN (finish_label_address_expr (DECL_NAME (op1),
13436 EXPR_LOCATION (op1)));
13437 if (TREE_CODE (op1) == SCOPE_REF)
13438 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
13439 /*done=*/true, /*address_p=*/true);
13440 else
13441 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
13442 in_decl);
13443 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1, complain));
13445 case PLUS_EXPR:
13446 case MINUS_EXPR:
13447 case MULT_EXPR:
13448 case TRUNC_DIV_EXPR:
13449 case CEIL_DIV_EXPR:
13450 case FLOOR_DIV_EXPR:
13451 case ROUND_DIV_EXPR:
13452 case EXACT_DIV_EXPR:
13453 case BIT_AND_EXPR:
13454 case BIT_IOR_EXPR:
13455 case BIT_XOR_EXPR:
13456 case TRUNC_MOD_EXPR:
13457 case FLOOR_MOD_EXPR:
13458 case TRUTH_ANDIF_EXPR:
13459 case TRUTH_ORIF_EXPR:
13460 case TRUTH_AND_EXPR:
13461 case TRUTH_OR_EXPR:
13462 case RSHIFT_EXPR:
13463 case LSHIFT_EXPR:
13464 case RROTATE_EXPR:
13465 case LROTATE_EXPR:
13466 case EQ_EXPR:
13467 case NE_EXPR:
13468 case MAX_EXPR:
13469 case MIN_EXPR:
13470 case LE_EXPR:
13471 case GE_EXPR:
13472 case LT_EXPR:
13473 case GT_EXPR:
13474 case MEMBER_REF:
13475 case DOTSTAR_EXPR:
13477 tree r;
13479 ++c_inhibit_evaluation_warnings;
13481 r = build_x_binary_op
13482 (input_location, TREE_CODE (t),
13483 RECUR (TREE_OPERAND (t, 0)),
13484 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
13485 ? ERROR_MARK
13486 : TREE_CODE (TREE_OPERAND (t, 0))),
13487 RECUR (TREE_OPERAND (t, 1)),
13488 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
13489 ? ERROR_MARK
13490 : TREE_CODE (TREE_OPERAND (t, 1))),
13491 /*overload=*/NULL,
13492 complain);
13493 if (EXPR_P (r) && TREE_NO_WARNING (t))
13494 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13496 --c_inhibit_evaluation_warnings;
13498 RETURN (r);
13501 case SCOPE_REF:
13502 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
13503 /*address_p=*/false));
13504 case ARRAY_REF:
13505 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13506 args, complain, in_decl);
13507 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
13508 RECUR (TREE_OPERAND (t, 1)), complain));
13510 case SIZEOF_EXPR:
13511 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13512 RETURN (tsubst_copy (t, args, complain, in_decl));
13513 /* Fall through */
13515 case ALIGNOF_EXPR:
13517 tree r;
13519 op1 = TREE_OPERAND (t, 0);
13520 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
13521 op1 = TREE_TYPE (op1);
13522 if (!args)
13524 /* When there are no ARGS, we are trying to evaluate a
13525 non-dependent expression from the parser. Trying to do
13526 the substitutions may not work. */
13527 if (!TYPE_P (op1))
13528 op1 = TREE_TYPE (op1);
13530 else
13532 ++cp_unevaluated_operand;
13533 ++c_inhibit_evaluation_warnings;
13534 if (TYPE_P (op1))
13535 op1 = tsubst (op1, args, complain, in_decl);
13536 else
13537 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13538 /*function_p=*/false,
13539 /*integral_constant_expression_p=*/
13540 false);
13541 --cp_unevaluated_operand;
13542 --c_inhibit_evaluation_warnings;
13544 if (TYPE_P (op1))
13545 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
13546 complain & tf_error);
13547 else
13548 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
13549 complain & tf_error);
13550 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
13552 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
13554 if (TYPE_P (op1))
13556 r = build_min (SIZEOF_EXPR, size_type_node,
13557 build1 (NOP_EXPR, op1, error_mark_node));
13558 SIZEOF_EXPR_TYPE_P (r) = 1;
13560 else
13561 r = build_min (SIZEOF_EXPR, size_type_node, op1);
13562 TREE_SIDE_EFFECTS (r) = 0;
13563 TREE_READONLY (r) = 1;
13565 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
13567 RETURN (r);
13570 case AT_ENCODE_EXPR:
13572 op1 = TREE_OPERAND (t, 0);
13573 ++cp_unevaluated_operand;
13574 ++c_inhibit_evaluation_warnings;
13575 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13576 /*function_p=*/false,
13577 /*integral_constant_expression_p=*/false);
13578 --cp_unevaluated_operand;
13579 --c_inhibit_evaluation_warnings;
13580 RETURN (objc_build_encode_expr (op1));
13583 case NOEXCEPT_EXPR:
13584 op1 = TREE_OPERAND (t, 0);
13585 ++cp_unevaluated_operand;
13586 ++c_inhibit_evaluation_warnings;
13587 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13588 /*function_p=*/false,
13589 /*integral_constant_expression_p=*/false);
13590 --cp_unevaluated_operand;
13591 --c_inhibit_evaluation_warnings;
13592 RETURN (finish_noexcept_expr (op1, complain));
13594 case MODOP_EXPR:
13596 tree r = build_x_modify_expr
13597 (EXPR_LOCATION (t),
13598 RECUR (TREE_OPERAND (t, 0)),
13599 TREE_CODE (TREE_OPERAND (t, 1)),
13600 RECUR (TREE_OPERAND (t, 2)),
13601 complain);
13602 /* TREE_NO_WARNING must be set if either the expression was
13603 parenthesized or it uses an operator such as >>= rather
13604 than plain assignment. In the former case, it was already
13605 set and must be copied. In the latter case,
13606 build_x_modify_expr sets it and it must not be reset
13607 here. */
13608 if (TREE_NO_WARNING (t))
13609 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13610 RETURN (r);
13613 case ARROW_EXPR:
13614 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13615 args, complain, in_decl);
13616 /* Remember that there was a reference to this entity. */
13617 if (DECL_P (op1))
13618 mark_used (op1);
13619 RETURN (build_x_arrow (input_location, op1, complain));
13621 case NEW_EXPR:
13623 tree placement = RECUR (TREE_OPERAND (t, 0));
13624 tree init = RECUR (TREE_OPERAND (t, 3));
13625 vec<tree, va_gc> *placement_vec;
13626 vec<tree, va_gc> *init_vec;
13627 tree ret;
13629 if (placement == NULL_TREE)
13630 placement_vec = NULL;
13631 else
13633 placement_vec = make_tree_vector ();
13634 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
13635 vec_safe_push (placement_vec, TREE_VALUE (placement));
13638 /* If there was an initializer in the original tree, but it
13639 instantiated to an empty list, then we should pass a
13640 non-NULL empty vector to tell build_new that it was an
13641 empty initializer() rather than no initializer. This can
13642 only happen when the initializer is a pack expansion whose
13643 parameter packs are of length zero. */
13644 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
13645 init_vec = NULL;
13646 else
13648 init_vec = make_tree_vector ();
13649 if (init == void_zero_node)
13650 gcc_assert (init_vec != NULL);
13651 else
13653 for (; init != NULL_TREE; init = TREE_CHAIN (init))
13654 vec_safe_push (init_vec, TREE_VALUE (init));
13658 ret = build_new (&placement_vec,
13659 tsubst (TREE_OPERAND (t, 1), args, complain, in_decl),
13660 RECUR (TREE_OPERAND (t, 2)),
13661 &init_vec,
13662 NEW_EXPR_USE_GLOBAL (t),
13663 complain);
13665 if (placement_vec != NULL)
13666 release_tree_vector (placement_vec);
13667 if (init_vec != NULL)
13668 release_tree_vector (init_vec);
13670 RETURN (ret);
13673 case DELETE_EXPR:
13674 RETURN (delete_sanity
13675 (RECUR (TREE_OPERAND (t, 0)),
13676 RECUR (TREE_OPERAND (t, 1)),
13677 DELETE_EXPR_USE_VEC (t),
13678 DELETE_EXPR_USE_GLOBAL (t),
13679 complain));
13681 case COMPOUND_EXPR:
13682 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
13683 RECUR (TREE_OPERAND (t, 0)),
13684 RECUR (TREE_OPERAND (t, 1)),
13685 complain));
13687 case CALL_EXPR:
13689 tree function;
13690 vec<tree, va_gc> *call_args;
13691 unsigned int nargs, i;
13692 bool qualified_p;
13693 bool koenig_p;
13694 tree ret;
13696 function = CALL_EXPR_FN (t);
13697 /* When we parsed the expression, we determined whether or
13698 not Koenig lookup should be performed. */
13699 koenig_p = KOENIG_LOOKUP_P (t);
13700 if (TREE_CODE (function) == SCOPE_REF)
13702 qualified_p = true;
13703 function = tsubst_qualified_id (function, args, complain, in_decl,
13704 /*done=*/false,
13705 /*address_p=*/false);
13707 else if (koenig_p && TREE_CODE (function) == IDENTIFIER_NODE)
13709 /* Do nothing; calling tsubst_copy_and_build on an identifier
13710 would incorrectly perform unqualified lookup again.
13712 Note that we can also have an IDENTIFIER_NODE if the earlier
13713 unqualified lookup found a member function; in that case
13714 koenig_p will be false and we do want to do the lookup
13715 again to find the instantiated member function.
13717 FIXME but doing that causes c++/15272, so we need to stop
13718 using IDENTIFIER_NODE in that situation. */
13719 qualified_p = false;
13721 else
13723 if (TREE_CODE (function) == COMPONENT_REF)
13725 tree op = TREE_OPERAND (function, 1);
13727 qualified_p = (TREE_CODE (op) == SCOPE_REF
13728 || (BASELINK_P (op)
13729 && BASELINK_QUALIFIED_P (op)));
13731 else
13732 qualified_p = false;
13734 function = tsubst_copy_and_build (function, args, complain,
13735 in_decl,
13736 !qualified_p,
13737 integral_constant_expression_p);
13739 if (BASELINK_P (function))
13740 qualified_p = true;
13743 nargs = call_expr_nargs (t);
13744 call_args = make_tree_vector ();
13745 for (i = 0; i < nargs; ++i)
13747 tree arg = CALL_EXPR_ARG (t, i);
13749 if (!PACK_EXPANSION_P (arg))
13750 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
13751 else
13753 /* Expand the pack expansion and push each entry onto
13754 CALL_ARGS. */
13755 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
13756 if (TREE_CODE (arg) == TREE_VEC)
13758 unsigned int len, j;
13760 len = TREE_VEC_LENGTH (arg);
13761 for (j = 0; j < len; ++j)
13763 tree value = TREE_VEC_ELT (arg, j);
13764 if (value != NULL_TREE)
13765 value = convert_from_reference (value);
13766 vec_safe_push (call_args, value);
13769 else
13771 /* A partial substitution. Add one entry. */
13772 vec_safe_push (call_args, arg);
13777 /* We do not perform argument-dependent lookup if normal
13778 lookup finds a non-function, in accordance with the
13779 expected resolution of DR 218. */
13780 if (koenig_p
13781 && ((is_overloaded_fn (function)
13782 /* If lookup found a member function, the Koenig lookup is
13783 not appropriate, even if an unqualified-name was used
13784 to denote the function. */
13785 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
13786 || TREE_CODE (function) == IDENTIFIER_NODE)
13787 /* Only do this when substitution turns a dependent call
13788 into a non-dependent call. */
13789 && type_dependent_expression_p_push (t)
13790 && !any_type_dependent_arguments_p (call_args))
13791 function = perform_koenig_lookup (function, call_args, false,
13792 tf_none);
13794 if (TREE_CODE (function) == IDENTIFIER_NODE
13795 && !any_type_dependent_arguments_p (call_args))
13797 if (koenig_p && (complain & tf_warning_or_error))
13799 /* For backwards compatibility and good diagnostics, try
13800 the unqualified lookup again if we aren't in SFINAE
13801 context. */
13802 tree unq = (tsubst_copy_and_build
13803 (function, args, complain, in_decl, true,
13804 integral_constant_expression_p));
13805 if (unq == error_mark_node)
13806 RETURN (error_mark_node);
13808 if (unq != function)
13810 tree fn = unq;
13811 if (TREE_CODE (fn) == INDIRECT_REF)
13812 fn = TREE_OPERAND (fn, 0);
13813 if (TREE_CODE (fn) == COMPONENT_REF)
13814 fn = TREE_OPERAND (fn, 1);
13815 if (is_overloaded_fn (fn))
13816 fn = get_first_fn (fn);
13817 permerror (EXPR_LOC_OR_HERE (t),
13818 "%qD was not declared in this scope, "
13819 "and no declarations were found by "
13820 "argument-dependent lookup at the point "
13821 "of instantiation", function);
13822 if (!DECL_P (fn))
13823 /* Can't say anything more. */;
13824 else if (DECL_CLASS_SCOPE_P (fn))
13826 inform (EXPR_LOC_OR_HERE (t),
13827 "declarations in dependent base %qT are "
13828 "not found by unqualified lookup",
13829 DECL_CLASS_CONTEXT (fn));
13830 if (current_class_ptr)
13831 inform (EXPR_LOC_OR_HERE (t),
13832 "use %<this->%D%> instead", function);
13833 else
13834 inform (EXPR_LOC_OR_HERE (t),
13835 "use %<%T::%D%> instead",
13836 current_class_name, function);
13838 else
13839 inform (0, "%q+D declared here, later in the "
13840 "translation unit", fn);
13841 function = unq;
13844 if (TREE_CODE (function) == IDENTIFIER_NODE)
13846 if (complain & tf_error)
13847 unqualified_name_lookup_error (function);
13848 release_tree_vector (call_args);
13849 RETURN (error_mark_node);
13853 /* Remember that there was a reference to this entity. */
13854 if (DECL_P (function))
13855 mark_used (function);
13857 if (TREE_CODE (function) == OFFSET_REF)
13858 ret = build_offset_ref_call_from_tree (function, &call_args,
13859 complain);
13860 else if (TREE_CODE (function) == COMPONENT_REF)
13862 tree instance = TREE_OPERAND (function, 0);
13863 tree fn = TREE_OPERAND (function, 1);
13865 if (processing_template_decl
13866 && (type_dependent_expression_p (instance)
13867 || (!BASELINK_P (fn)
13868 && TREE_CODE (fn) != FIELD_DECL)
13869 || type_dependent_expression_p (fn)
13870 || any_type_dependent_arguments_p (call_args)))
13871 ret = build_nt_call_vec (function, call_args);
13872 else if (!BASELINK_P (fn))
13873 ret = finish_call_expr (function, &call_args,
13874 /*disallow_virtual=*/false,
13875 /*koenig_p=*/false,
13876 complain);
13877 else
13878 ret = (build_new_method_call
13879 (instance, fn,
13880 &call_args, NULL_TREE,
13881 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
13882 /*fn_p=*/NULL,
13883 complain));
13885 else
13886 ret = finish_call_expr (function, &call_args,
13887 /*disallow_virtual=*/qualified_p,
13888 koenig_p,
13889 complain);
13891 release_tree_vector (call_args);
13893 RETURN (ret);
13896 case COND_EXPR:
13898 tree cond = RECUR (TREE_OPERAND (t, 0));
13899 tree exp1, exp2;
13901 if (TREE_CODE (cond) == INTEGER_CST)
13903 if (integer_zerop (cond))
13905 ++c_inhibit_evaluation_warnings;
13906 exp1 = RECUR (TREE_OPERAND (t, 1));
13907 --c_inhibit_evaluation_warnings;
13908 exp2 = RECUR (TREE_OPERAND (t, 2));
13910 else
13912 exp1 = RECUR (TREE_OPERAND (t, 1));
13913 ++c_inhibit_evaluation_warnings;
13914 exp2 = RECUR (TREE_OPERAND (t, 2));
13915 --c_inhibit_evaluation_warnings;
13918 else
13920 exp1 = RECUR (TREE_OPERAND (t, 1));
13921 exp2 = RECUR (TREE_OPERAND (t, 2));
13924 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
13925 cond, exp1, exp2, complain));
13928 case PSEUDO_DTOR_EXPR:
13929 RETURN (finish_pseudo_destructor_expr
13930 (RECUR (TREE_OPERAND (t, 0)),
13931 RECUR (TREE_OPERAND (t, 1)),
13932 tsubst (TREE_OPERAND (t, 2), args, complain, in_decl)));
13934 case TREE_LIST:
13936 tree purpose, value, chain;
13938 if (t == void_list_node)
13939 RETURN (t);
13941 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
13942 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
13944 /* We have pack expansions, so expand those and
13945 create a new list out of it. */
13946 tree purposevec = NULL_TREE;
13947 tree valuevec = NULL_TREE;
13948 tree chain;
13949 int i, len = -1;
13951 /* Expand the argument expressions. */
13952 if (TREE_PURPOSE (t))
13953 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
13954 complain, in_decl);
13955 if (TREE_VALUE (t))
13956 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
13957 complain, in_decl);
13959 /* Build the rest of the list. */
13960 chain = TREE_CHAIN (t);
13961 if (chain && chain != void_type_node)
13962 chain = RECUR (chain);
13964 /* Determine the number of arguments. */
13965 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
13967 len = TREE_VEC_LENGTH (purposevec);
13968 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
13970 else if (TREE_CODE (valuevec) == TREE_VEC)
13971 len = TREE_VEC_LENGTH (valuevec);
13972 else
13974 /* Since we only performed a partial substitution into
13975 the argument pack, we only RETURN (a single list
13976 node. */
13977 if (purposevec == TREE_PURPOSE (t)
13978 && valuevec == TREE_VALUE (t)
13979 && chain == TREE_CHAIN (t))
13980 RETURN (t);
13982 RETURN (tree_cons (purposevec, valuevec, chain));
13985 /* Convert the argument vectors into a TREE_LIST */
13986 i = len;
13987 while (i > 0)
13989 /* Grab the Ith values. */
13990 i--;
13991 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
13992 : NULL_TREE;
13993 value
13994 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
13995 : NULL_TREE;
13997 /* Build the list (backwards). */
13998 chain = tree_cons (purpose, value, chain);
14001 RETURN (chain);
14004 purpose = TREE_PURPOSE (t);
14005 if (purpose)
14006 purpose = RECUR (purpose);
14007 value = TREE_VALUE (t);
14008 if (value)
14009 value = RECUR (value);
14010 chain = TREE_CHAIN (t);
14011 if (chain && chain != void_type_node)
14012 chain = RECUR (chain);
14013 if (purpose == TREE_PURPOSE (t)
14014 && value == TREE_VALUE (t)
14015 && chain == TREE_CHAIN (t))
14016 RETURN (t);
14017 RETURN (tree_cons (purpose, value, chain));
14020 case COMPONENT_REF:
14022 tree object;
14023 tree object_type;
14024 tree member;
14026 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14027 args, complain, in_decl);
14028 /* Remember that there was a reference to this entity. */
14029 if (DECL_P (object))
14030 mark_used (object);
14031 object_type = TREE_TYPE (object);
14033 member = TREE_OPERAND (t, 1);
14034 if (BASELINK_P (member))
14035 member = tsubst_baselink (member,
14036 non_reference (TREE_TYPE (object)),
14037 args, complain, in_decl);
14038 else
14039 member = tsubst_copy (member, args, complain, in_decl);
14040 if (member == error_mark_node)
14041 RETURN (error_mark_node);
14043 if (type_dependent_expression_p (object))
14044 /* We can't do much here. */;
14045 else if (!CLASS_TYPE_P (object_type))
14047 if (scalarish_type_p (object_type))
14049 tree s = NULL_TREE;
14050 tree dtor = member;
14052 if (TREE_CODE (dtor) == SCOPE_REF)
14054 s = TREE_OPERAND (dtor, 0);
14055 dtor = TREE_OPERAND (dtor, 1);
14057 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
14059 dtor = TREE_OPERAND (dtor, 0);
14060 if (TYPE_P (dtor))
14061 RETURN (finish_pseudo_destructor_expr (object, s, dtor));
14065 else if (TREE_CODE (member) == SCOPE_REF
14066 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
14068 /* Lookup the template functions now that we know what the
14069 scope is. */
14070 tree scope = TREE_OPERAND (member, 0);
14071 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
14072 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
14073 member = lookup_qualified_name (scope, tmpl,
14074 /*is_type_p=*/false,
14075 /*complain=*/false);
14076 if (BASELINK_P (member))
14078 BASELINK_FUNCTIONS (member)
14079 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
14080 args);
14081 member = (adjust_result_of_qualified_name_lookup
14082 (member, BINFO_TYPE (BASELINK_BINFO (member)),
14083 object_type));
14085 else
14087 qualified_name_lookup_error (scope, tmpl, member,
14088 input_location);
14089 RETURN (error_mark_node);
14092 else if (TREE_CODE (member) == SCOPE_REF
14093 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
14094 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
14096 if (complain & tf_error)
14098 if (TYPE_P (TREE_OPERAND (member, 0)))
14099 error ("%qT is not a class or namespace",
14100 TREE_OPERAND (member, 0));
14101 else
14102 error ("%qD is not a class or namespace",
14103 TREE_OPERAND (member, 0));
14105 RETURN (error_mark_node);
14107 else if (TREE_CODE (member) == FIELD_DECL)
14108 RETURN (finish_non_static_data_member (member, object, NULL_TREE));
14110 RETURN (finish_class_member_access_expr (object, member,
14111 /*template_p=*/false,
14112 complain));
14115 case THROW_EXPR:
14116 RETURN (build_throw
14117 (RECUR (TREE_OPERAND (t, 0))));
14119 case CONSTRUCTOR:
14121 vec<constructor_elt, va_gc> *n;
14122 constructor_elt *ce;
14123 unsigned HOST_WIDE_INT idx;
14124 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14125 bool process_index_p;
14126 int newlen;
14127 bool need_copy_p = false;
14128 tree r;
14130 if (type == error_mark_node)
14131 RETURN (error_mark_node);
14133 /* digest_init will do the wrong thing if we let it. */
14134 if (type && TYPE_PTRMEMFUNC_P (type))
14135 RETURN (t);
14137 /* We do not want to process the index of aggregate
14138 initializers as they are identifier nodes which will be
14139 looked up by digest_init. */
14140 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
14142 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
14143 newlen = vec_safe_length (n);
14144 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
14146 if (ce->index && process_index_p)
14147 ce->index = RECUR (ce->index);
14149 if (PACK_EXPANSION_P (ce->value))
14151 /* Substitute into the pack expansion. */
14152 ce->value = tsubst_pack_expansion (ce->value, args, complain,
14153 in_decl);
14155 if (ce->value == error_mark_node
14156 || PACK_EXPANSION_P (ce->value))
14158 else if (TREE_VEC_LENGTH (ce->value) == 1)
14159 /* Just move the argument into place. */
14160 ce->value = TREE_VEC_ELT (ce->value, 0);
14161 else
14163 /* Update the length of the final CONSTRUCTOR
14164 arguments vector, and note that we will need to
14165 copy.*/
14166 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
14167 need_copy_p = true;
14170 else
14171 ce->value = RECUR (ce->value);
14174 if (need_copy_p)
14176 vec<constructor_elt, va_gc> *old_n = n;
14178 vec_alloc (n, newlen);
14179 FOR_EACH_VEC_ELT (*old_n, idx, ce)
14181 if (TREE_CODE (ce->value) == TREE_VEC)
14183 int i, len = TREE_VEC_LENGTH (ce->value);
14184 for (i = 0; i < len; ++i)
14185 CONSTRUCTOR_APPEND_ELT (n, 0,
14186 TREE_VEC_ELT (ce->value, i));
14188 else
14189 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
14193 r = build_constructor (init_list_type_node, n);
14194 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
14196 if (TREE_HAS_CONSTRUCTOR (t))
14197 RETURN (finish_compound_literal (type, r, complain));
14199 TREE_TYPE (r) = type;
14200 RETURN (r);
14203 case TYPEID_EXPR:
14205 tree operand_0 = TREE_OPERAND (t, 0);
14206 if (TYPE_P (operand_0))
14208 operand_0 = tsubst (operand_0, args, complain, in_decl);
14209 RETURN (get_typeid (operand_0));
14211 else
14213 operand_0 = RECUR (operand_0);
14214 RETURN (build_typeid (operand_0));
14218 case VAR_DECL:
14219 if (!args)
14220 RETURN (t);
14221 /* Fall through */
14223 case PARM_DECL:
14225 tree r = tsubst_copy (t, args, complain, in_decl);
14227 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
14228 /* If the original type was a reference, we'll be wrapped in
14229 the appropriate INDIRECT_REF. */
14230 r = convert_from_reference (r);
14231 RETURN (r);
14234 case VA_ARG_EXPR:
14235 RETURN (build_x_va_arg (EXPR_LOCATION (t),
14236 RECUR (TREE_OPERAND (t, 0)),
14237 tsubst (TREE_TYPE (t), args, complain, in_decl)));
14239 case OFFSETOF_EXPR:
14240 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0))));
14242 case TRAIT_EXPR:
14244 tree type1 = tsubst_copy (TRAIT_EXPR_TYPE1 (t), args,
14245 complain, in_decl);
14247 tree type2 = TRAIT_EXPR_TYPE2 (t);
14248 if (type2)
14249 type2 = tsubst_copy (type2, args, complain, in_decl);
14251 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
14254 case STMT_EXPR:
14256 tree old_stmt_expr = cur_stmt_expr;
14257 tree stmt_expr = begin_stmt_expr ();
14259 cur_stmt_expr = stmt_expr;
14260 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
14261 integral_constant_expression_p);
14262 stmt_expr = finish_stmt_expr (stmt_expr, false);
14263 cur_stmt_expr = old_stmt_expr;
14265 /* If the resulting list of expression statement is empty,
14266 fold it further into void_zero_node. */
14267 if (empty_expr_stmt_p (stmt_expr))
14268 stmt_expr = void_zero_node;
14270 RETURN (stmt_expr);
14273 case LAMBDA_EXPR:
14275 tree r = build_lambda_expr ();
14277 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
14278 LAMBDA_EXPR_CLOSURE (r) = type;
14279 CLASSTYPE_LAMBDA_EXPR (type) = r;
14281 LAMBDA_EXPR_LOCATION (r)
14282 = LAMBDA_EXPR_LOCATION (t);
14283 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
14284 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
14285 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
14286 LAMBDA_EXPR_DISCRIMINATOR (r)
14287 = (LAMBDA_EXPR_DISCRIMINATOR (t));
14288 /* For a function scope, we want to use tsubst so that we don't
14289 complain about referring to an auto function before its return
14290 type has been deduced. Otherwise, we want to use tsubst_copy so
14291 that we look up the existing field/parameter/variable rather
14292 than build a new one. */
14293 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
14294 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
14295 scope = tsubst (LAMBDA_EXPR_EXTRA_SCOPE (t), args,
14296 complain, in_decl);
14297 else
14298 scope = RECUR (scope);
14299 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
14300 LAMBDA_EXPR_RETURN_TYPE (r)
14301 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
14303 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
14304 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
14306 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
14307 determine_visibility (TYPE_NAME (type));
14308 /* Now that we know visibility, instantiate the type so we have a
14309 declaration of the op() for later calls to lambda_function. */
14310 complete_type (type);
14312 /* The capture list refers to closure members, so this needs to
14313 wait until after we finish instantiating the type. */
14314 LAMBDA_EXPR_CAPTURE_LIST (r)
14315 = RECUR (LAMBDA_EXPR_CAPTURE_LIST (t));
14317 RETURN (build_lambda_object (r));
14320 case TARGET_EXPR:
14321 /* We can get here for a constant initializer of non-dependent type.
14322 FIXME stop folding in cp_parser_initializer_clause. */
14323 gcc_assert (TREE_CONSTANT (t));
14325 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
14326 complain);
14327 TREE_CONSTANT (r) = true;
14328 RETURN (r);
14331 case TRANSACTION_EXPR:
14332 RETURN (tsubst_expr(t, args, complain, in_decl,
14333 integral_constant_expression_p));
14335 default:
14336 /* Handle Objective-C++ constructs, if appropriate. */
14338 tree subst
14339 = objcp_tsubst_copy_and_build (t, args, complain,
14340 in_decl, /*function_p=*/false);
14341 if (subst)
14342 RETURN (subst);
14344 RETURN (tsubst_copy (t, args, complain, in_decl));
14347 #undef RECUR
14348 #undef RETURN
14349 out:
14350 input_location = loc;
14351 return retval;
14354 /* Verify that the instantiated ARGS are valid. For type arguments,
14355 make sure that the type's linkage is ok. For non-type arguments,
14356 make sure they are constants if they are integral or enumerations.
14357 Emit an error under control of COMPLAIN, and return TRUE on error. */
14359 static bool
14360 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
14362 if (dependent_template_arg_p (t))
14363 return false;
14364 if (ARGUMENT_PACK_P (t))
14366 tree vec = ARGUMENT_PACK_ARGS (t);
14367 int len = TREE_VEC_LENGTH (vec);
14368 bool result = false;
14369 int i;
14371 for (i = 0; i < len; ++i)
14372 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
14373 result = true;
14374 return result;
14376 else if (TYPE_P (t))
14378 /* [basic.link]: A name with no linkage (notably, the name
14379 of a class or enumeration declared in a local scope)
14380 shall not be used to declare an entity with linkage.
14381 This implies that names with no linkage cannot be used as
14382 template arguments
14384 DR 757 relaxes this restriction for C++0x. */
14385 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
14386 : no_linkage_check (t, /*relaxed_p=*/false));
14388 if (nt)
14390 /* DR 488 makes use of a type with no linkage cause
14391 type deduction to fail. */
14392 if (complain & tf_error)
14394 if (TYPE_ANONYMOUS_P (nt))
14395 error ("%qT is/uses anonymous type", t);
14396 else
14397 error ("template argument for %qD uses local type %qT",
14398 tmpl, t);
14400 return true;
14402 /* In order to avoid all sorts of complications, we do not
14403 allow variably-modified types as template arguments. */
14404 else if (variably_modified_type_p (t, NULL_TREE))
14406 if (complain & tf_error)
14407 error ("%qT is a variably modified type", t);
14408 return true;
14411 /* A non-type argument of integral or enumerated type must be a
14412 constant. */
14413 else if (TREE_TYPE (t)
14414 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
14415 && !TREE_CONSTANT (t))
14417 if (complain & tf_error)
14418 error ("integral expression %qE is not constant", t);
14419 return true;
14421 return false;
14424 static bool
14425 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
14427 int ix, len = DECL_NTPARMS (tmpl);
14428 bool result = false;
14430 for (ix = 0; ix != len; ix++)
14432 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
14433 result = true;
14435 if (result && (complain & tf_error))
14436 error (" trying to instantiate %qD", tmpl);
14437 return result;
14440 /* We're out of SFINAE context now, so generate diagnostics for the access
14441 errors we saw earlier when instantiating D from TMPL and ARGS. */
14443 static void
14444 recheck_decl_substitution (tree d, tree tmpl, tree args)
14446 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
14447 tree type = TREE_TYPE (pattern);
14448 location_t loc = input_location;
14450 push_access_scope (d);
14451 push_deferring_access_checks (dk_no_deferred);
14452 input_location = DECL_SOURCE_LOCATION (pattern);
14453 tsubst (type, args, tf_warning_or_error, d);
14454 input_location = loc;
14455 pop_deferring_access_checks ();
14456 pop_access_scope (d);
14459 /* Instantiate the indicated variable, function, or alias template TMPL with
14460 the template arguments in TARG_PTR. */
14462 static tree
14463 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
14465 tree targ_ptr = orig_args;
14466 tree fndecl;
14467 tree gen_tmpl;
14468 tree spec;
14469 bool access_ok = true;
14471 if (tmpl == error_mark_node)
14472 return error_mark_node;
14474 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
14476 /* If this function is a clone, handle it specially. */
14477 if (DECL_CLONED_FUNCTION_P (tmpl))
14479 tree spec;
14480 tree clone;
14482 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
14483 DECL_CLONED_FUNCTION. */
14484 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
14485 targ_ptr, complain);
14486 if (spec == error_mark_node)
14487 return error_mark_node;
14489 /* Look for the clone. */
14490 FOR_EACH_CLONE (clone, spec)
14491 if (DECL_NAME (clone) == DECL_NAME (tmpl))
14492 return clone;
14493 /* We should always have found the clone by now. */
14494 gcc_unreachable ();
14495 return NULL_TREE;
14498 /* Check to see if we already have this specialization. */
14499 gen_tmpl = most_general_template (tmpl);
14500 if (tmpl != gen_tmpl)
14501 /* The TMPL is a partial instantiation. To get a full set of
14502 arguments we must add the arguments used to perform the
14503 partial instantiation. */
14504 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
14505 targ_ptr);
14507 /* It would be nice to avoid hashing here and then again in tsubst_decl,
14508 but it doesn't seem to be on the hot path. */
14509 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
14511 gcc_assert (tmpl == gen_tmpl
14512 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
14513 == spec)
14514 || fndecl == NULL_TREE);
14516 if (spec != NULL_TREE)
14518 if (FNDECL_HAS_ACCESS_ERRORS (spec))
14520 if (complain & tf_error)
14521 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
14522 return error_mark_node;
14524 return spec;
14527 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
14528 complain))
14529 return error_mark_node;
14531 /* We are building a FUNCTION_DECL, during which the access of its
14532 parameters and return types have to be checked. However this
14533 FUNCTION_DECL which is the desired context for access checking
14534 is not built yet. We solve this chicken-and-egg problem by
14535 deferring all checks until we have the FUNCTION_DECL. */
14536 push_deferring_access_checks (dk_deferred);
14538 /* Instantiation of the function happens in the context of the function
14539 template, not the context of the overload resolution we're doing. */
14540 push_to_top_level ();
14541 /* If there are dependent arguments, e.g. because we're doing partial
14542 ordering, make sure processing_template_decl stays set. */
14543 if (uses_template_parms (targ_ptr))
14544 ++processing_template_decl;
14545 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14547 tree ctx = tsubst (DECL_CONTEXT (gen_tmpl), targ_ptr,
14548 complain, gen_tmpl);
14549 push_nested_class (ctx);
14551 /* Substitute template parameters to obtain the specialization. */
14552 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
14553 targ_ptr, complain, gen_tmpl);
14554 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14555 pop_nested_class ();
14556 pop_from_top_level ();
14558 if (fndecl == error_mark_node)
14560 pop_deferring_access_checks ();
14561 return error_mark_node;
14564 /* The DECL_TI_TEMPLATE should always be the immediate parent
14565 template, not the most general template. */
14566 DECL_TI_TEMPLATE (fndecl) = tmpl;
14568 /* Now we know the specialization, compute access previously
14569 deferred. */
14570 push_access_scope (fndecl);
14571 if (!perform_deferred_access_checks (complain))
14572 access_ok = false;
14573 pop_access_scope (fndecl);
14574 pop_deferring_access_checks ();
14576 /* If we've just instantiated the main entry point for a function,
14577 instantiate all the alternate entry points as well. We do this
14578 by cloning the instantiation of the main entry point, not by
14579 instantiating the template clones. */
14580 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
14581 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
14583 if (!access_ok)
14585 if (!(complain & tf_error))
14587 /* Remember to reinstantiate when we're out of SFINAE so the user
14588 can see the errors. */
14589 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
14591 return error_mark_node;
14593 return fndecl;
14596 /* Wrapper for instantiate_template_1. */
14598 tree
14599 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
14601 tree ret;
14602 timevar_push (TV_TEMPLATE_INST);
14603 ret = instantiate_template_1 (tmpl, orig_args, complain);
14604 timevar_pop (TV_TEMPLATE_INST);
14605 return ret;
14608 /* Instantiate the alias template TMPL with ARGS. Also push a template
14609 instantiation level, which instantiate_template doesn't do because
14610 functions and variables have sufficient context established by the
14611 callers. */
14613 static tree
14614 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
14616 struct pending_template *old_last_pend = last_pending_template;
14617 struct tinst_level *old_error_tinst = last_error_tinst_level;
14618 if (tmpl == error_mark_node || args == error_mark_node)
14619 return error_mark_node;
14620 tree tinst = build_tree_list (tmpl, args);
14621 if (!push_tinst_level (tinst))
14623 ggc_free (tinst);
14624 return error_mark_node;
14626 tree r = instantiate_template (tmpl, args, complain);
14627 pop_tinst_level ();
14628 /* We can't free this if a pending_template entry or last_error_tinst_level
14629 is pointing at it. */
14630 if (last_pending_template == old_last_pend
14631 && last_error_tinst_level == old_error_tinst)
14632 ggc_free (tinst);
14634 return r;
14637 /* PARM is a template parameter pack for FN. Returns true iff
14638 PARM is used in a deducible way in the argument list of FN. */
14640 static bool
14641 pack_deducible_p (tree parm, tree fn)
14643 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
14644 for (; t; t = TREE_CHAIN (t))
14646 tree type = TREE_VALUE (t);
14647 tree packs;
14648 if (!PACK_EXPANSION_P (type))
14649 continue;
14650 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
14651 packs; packs = TREE_CHAIN (packs))
14652 if (TREE_VALUE (packs) == parm)
14654 /* The template parameter pack is used in a function parameter
14655 pack. If this is the end of the parameter list, the
14656 template parameter pack is deducible. */
14657 if (TREE_CHAIN (t) == void_list_node)
14658 return true;
14659 else
14660 /* Otherwise, not. Well, it could be deduced from
14661 a non-pack parameter, but doing so would end up with
14662 a deduction mismatch, so don't bother. */
14663 return false;
14666 /* The template parameter pack isn't used in any function parameter
14667 packs, but it might be used deeper, e.g. tuple<Args...>. */
14668 return true;
14671 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
14672 NARGS elements of the arguments that are being used when calling
14673 it. TARGS is a vector into which the deduced template arguments
14674 are placed.
14676 Return zero for success, 2 for an incomplete match that doesn't resolve
14677 all the types, and 1 for complete failure. An error message will be
14678 printed only for an incomplete match.
14680 If FN is a conversion operator, or we are trying to produce a specific
14681 specialization, RETURN_TYPE is the return type desired.
14683 The EXPLICIT_TARGS are explicit template arguments provided via a
14684 template-id.
14686 The parameter STRICT is one of:
14688 DEDUCE_CALL:
14689 We are deducing arguments for a function call, as in
14690 [temp.deduct.call].
14692 DEDUCE_CONV:
14693 We are deducing arguments for a conversion function, as in
14694 [temp.deduct.conv].
14696 DEDUCE_EXACT:
14697 We are deducing arguments when doing an explicit instantiation
14698 as in [temp.explicit], when determining an explicit specialization
14699 as in [temp.expl.spec], or when taking the address of a function
14700 template, as in [temp.deduct.funcaddr]. */
14702 tree
14703 fn_type_unification (tree fn,
14704 tree explicit_targs,
14705 tree targs,
14706 const tree *args,
14707 unsigned int nargs,
14708 tree return_type,
14709 unification_kind_t strict,
14710 int flags,
14711 bool explain_p)
14713 tree parms;
14714 tree fntype;
14715 tree decl = NULL_TREE;
14716 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
14717 bool ok;
14718 static int deduction_depth;
14719 struct pending_template *old_last_pend = last_pending_template;
14720 struct tinst_level *old_error_tinst = last_error_tinst_level;
14721 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
14722 tree tinst;
14723 tree r = error_mark_node;
14725 /* Adjust any explicit template arguments before entering the
14726 substitution context. */
14727 if (explicit_targs)
14729 explicit_targs
14730 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
14731 complain,
14732 /*require_all_args=*/false,
14733 /*use_default_args=*/false));
14734 if (explicit_targs == error_mark_node)
14735 return error_mark_node;
14738 /* In C++0x, it's possible to have a function template whose type depends
14739 on itself recursively. This is most obvious with decltype, but can also
14740 occur with enumeration scope (c++/48969). So we need to catch infinite
14741 recursion and reject the substitution at deduction time; this function
14742 will return error_mark_node for any repeated substitution.
14744 This also catches excessive recursion such as when f<N> depends on
14745 f<N-1> across all integers, and returns error_mark_node for all the
14746 substitutions back up to the initial one.
14748 This is, of course, not reentrant. */
14749 if (excessive_deduction_depth)
14750 return error_mark_node;
14751 tinst = build_tree_list (fn, targs);
14752 if (!push_tinst_level (tinst))
14754 excessive_deduction_depth = true;
14755 ggc_free (tinst);
14756 return error_mark_node;
14758 ++deduction_depth;
14759 push_deferring_access_checks (dk_deferred);
14761 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
14763 fntype = TREE_TYPE (fn);
14764 if (explicit_targs)
14766 /* [temp.deduct]
14768 The specified template arguments must match the template
14769 parameters in kind (i.e., type, nontype, template), and there
14770 must not be more arguments than there are parameters;
14771 otherwise type deduction fails.
14773 Nontype arguments must match the types of the corresponding
14774 nontype template parameters, or must be convertible to the
14775 types of the corresponding nontype parameters as specified in
14776 _temp.arg.nontype_, otherwise type deduction fails.
14778 All references in the function type of the function template
14779 to the corresponding template parameters are replaced by the
14780 specified template argument values. If a substitution in a
14781 template parameter or in the function type of the function
14782 template results in an invalid type, type deduction fails. */
14783 int i, len = TREE_VEC_LENGTH (tparms);
14784 location_t loc = input_location;
14785 bool incomplete = false;
14787 /* Substitute the explicit args into the function type. This is
14788 necessary so that, for instance, explicitly declared function
14789 arguments can match null pointed constants. If we were given
14790 an incomplete set of explicit args, we must not do semantic
14791 processing during substitution as we could create partial
14792 instantiations. */
14793 for (i = 0; i < len; i++)
14795 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
14796 bool parameter_pack = false;
14797 tree targ = TREE_VEC_ELT (explicit_targs, i);
14799 /* Dig out the actual parm. */
14800 if (TREE_CODE (parm) == TYPE_DECL
14801 || TREE_CODE (parm) == TEMPLATE_DECL)
14803 parm = TREE_TYPE (parm);
14804 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
14806 else if (TREE_CODE (parm) == PARM_DECL)
14808 parm = DECL_INITIAL (parm);
14809 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
14812 if (!parameter_pack && targ == NULL_TREE)
14813 /* No explicit argument for this template parameter. */
14814 incomplete = true;
14816 if (parameter_pack && pack_deducible_p (parm, fn))
14818 /* Mark the argument pack as "incomplete". We could
14819 still deduce more arguments during unification.
14820 We remove this mark in type_unification_real. */
14821 if (targ)
14823 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
14824 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
14825 = ARGUMENT_PACK_ARGS (targ);
14828 /* We have some incomplete argument packs. */
14829 incomplete = true;
14833 processing_template_decl += incomplete;
14834 input_location = DECL_SOURCE_LOCATION (fn);
14835 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
14836 complain | tf_partial, NULL_TREE);
14837 input_location = loc;
14838 processing_template_decl -= incomplete;
14840 if (fntype == error_mark_node)
14841 goto fail;
14843 /* Place the explicitly specified arguments in TARGS. */
14844 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
14845 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
14848 /* Never do unification on the 'this' parameter. */
14849 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
14851 if (return_type)
14853 tree *new_args;
14855 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
14856 new_args = XALLOCAVEC (tree, nargs + 1);
14857 new_args[0] = return_type;
14858 memcpy (new_args + 1, args, nargs * sizeof (tree));
14859 args = new_args;
14860 ++nargs;
14863 /* We allow incomplete unification without an error message here
14864 because the standard doesn't seem to explicitly prohibit it. Our
14865 callers must be ready to deal with unification failures in any
14866 event. */
14868 pop_tinst_level ();
14869 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
14870 targs, parms, args, nargs, /*subr=*/0,
14871 strict, flags, explain_p);
14872 push_tinst_level (tinst);
14873 if (!ok)
14874 goto fail;
14876 /* Now that we have bindings for all of the template arguments,
14877 ensure that the arguments deduced for the template template
14878 parameters have compatible template parameter lists. We cannot
14879 check this property before we have deduced all template
14880 arguments, because the template parameter types of a template
14881 template parameter might depend on prior template parameters
14882 deduced after the template template parameter. The following
14883 ill-formed example illustrates this issue:
14885 template<typename T, template<T> class C> void f(C<5>, T);
14887 template<int N> struct X {};
14889 void g() {
14890 f(X<5>(), 5l); // error: template argument deduction fails
14893 The template parameter list of 'C' depends on the template type
14894 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
14895 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
14896 time that we deduce 'C'. */
14897 if (!template_template_parm_bindings_ok_p
14898 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
14900 unify_inconsistent_template_template_parameters (explain_p);
14901 goto fail;
14904 /* All is well so far. Now, check:
14906 [temp.deduct]
14908 When all template arguments have been deduced, all uses of
14909 template parameters in nondeduced contexts are replaced with
14910 the corresponding deduced argument values. If the
14911 substitution results in an invalid type, as described above,
14912 type deduction fails. */
14913 decl = instantiate_template (fn, targs, complain);
14914 if (decl == error_mark_node)
14915 goto fail;
14917 /* Now perform any access checks encountered during deduction, such as
14918 for default template arguments. */
14919 push_access_scope (decl);
14920 ok = perform_deferred_access_checks (complain);
14921 pop_access_scope (decl);
14922 if (!ok)
14923 goto fail;
14925 /* If we're looking for an exact match, check that what we got
14926 is indeed an exact match. It might not be if some template
14927 parameters are used in non-deduced contexts. */
14928 if (strict == DEDUCE_EXACT)
14930 tree substed = TREE_TYPE (decl);
14931 unsigned int i;
14933 tree sarg
14934 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
14935 if (return_type)
14936 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
14937 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
14938 if (!same_type_p (args[i], TREE_VALUE (sarg)))
14940 unify_type_mismatch (explain_p, args[i],
14941 TREE_VALUE (sarg));
14942 goto fail;
14946 r = decl;
14948 fail:
14949 pop_deferring_access_checks ();
14950 --deduction_depth;
14951 if (excessive_deduction_depth)
14953 if (deduction_depth == 0)
14954 /* Reset once we're all the way out. */
14955 excessive_deduction_depth = false;
14958 pop_tinst_level ();
14959 /* We can't free this if a pending_template entry or last_error_tinst_level
14960 is pointing at it. */
14961 if (last_pending_template == old_last_pend
14962 && last_error_tinst_level == old_error_tinst)
14963 ggc_free (tinst);
14965 return r;
14968 /* Adjust types before performing type deduction, as described in
14969 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
14970 sections are symmetric. PARM is the type of a function parameter
14971 or the return type of the conversion function. ARG is the type of
14972 the argument passed to the call, or the type of the value
14973 initialized with the result of the conversion function.
14974 ARG_EXPR is the original argument expression, which may be null. */
14976 static int
14977 maybe_adjust_types_for_deduction (unification_kind_t strict,
14978 tree* parm,
14979 tree* arg,
14980 tree arg_expr)
14982 int result = 0;
14984 switch (strict)
14986 case DEDUCE_CALL:
14987 break;
14989 case DEDUCE_CONV:
14991 /* Swap PARM and ARG throughout the remainder of this
14992 function; the handling is precisely symmetric since PARM
14993 will initialize ARG rather than vice versa. */
14994 tree* temp = parm;
14995 parm = arg;
14996 arg = temp;
14997 break;
15000 case DEDUCE_EXACT:
15001 /* Core issue #873: Do the DR606 thing (see below) for these cases,
15002 too, but here handle it by stripping the reference from PARM
15003 rather than by adding it to ARG. */
15004 if (TREE_CODE (*parm) == REFERENCE_TYPE
15005 && TYPE_REF_IS_RVALUE (*parm)
15006 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15007 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15008 && TREE_CODE (*arg) == REFERENCE_TYPE
15009 && !TYPE_REF_IS_RVALUE (*arg))
15010 *parm = TREE_TYPE (*parm);
15011 /* Nothing else to do in this case. */
15012 return 0;
15014 default:
15015 gcc_unreachable ();
15018 if (TREE_CODE (*parm) != REFERENCE_TYPE)
15020 /* [temp.deduct.call]
15022 If P is not a reference type:
15024 --If A is an array type, the pointer type produced by the
15025 array-to-pointer standard conversion (_conv.array_) is
15026 used in place of A for type deduction; otherwise,
15028 --If A is a function type, the pointer type produced by
15029 the function-to-pointer standard conversion
15030 (_conv.func_) is used in place of A for type deduction;
15031 otherwise,
15033 --If A is a cv-qualified type, the top level
15034 cv-qualifiers of A's type are ignored for type
15035 deduction. */
15036 if (TREE_CODE (*arg) == ARRAY_TYPE)
15037 *arg = build_pointer_type (TREE_TYPE (*arg));
15038 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
15039 *arg = build_pointer_type (*arg);
15040 else
15041 *arg = TYPE_MAIN_VARIANT (*arg);
15044 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
15045 of the form T&&, where T is a template parameter, and the argument
15046 is an lvalue, T is deduced as A& */
15047 if (TREE_CODE (*parm) == REFERENCE_TYPE
15048 && TYPE_REF_IS_RVALUE (*parm)
15049 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15050 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15051 && (arg_expr ? real_lvalue_p (arg_expr)
15052 /* try_one_overload doesn't provide an arg_expr, but
15053 functions are always lvalues. */
15054 : TREE_CODE (*arg) == FUNCTION_TYPE))
15055 *arg = build_reference_type (*arg);
15057 /* [temp.deduct.call]
15059 If P is a cv-qualified type, the top level cv-qualifiers
15060 of P's type are ignored for type deduction. If P is a
15061 reference type, the type referred to by P is used for
15062 type deduction. */
15063 *parm = TYPE_MAIN_VARIANT (*parm);
15064 if (TREE_CODE (*parm) == REFERENCE_TYPE)
15066 *parm = TREE_TYPE (*parm);
15067 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
15070 /* DR 322. For conversion deduction, remove a reference type on parm
15071 too (which has been swapped into ARG). */
15072 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
15073 *arg = TREE_TYPE (*arg);
15075 return result;
15078 /* Subroutine of unify_one_argument. PARM is a function parameter of a
15079 template which does contain any deducible template parameters; check if
15080 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
15081 unify_one_argument. */
15083 static int
15084 check_non_deducible_conversion (tree parm, tree arg, int strict,
15085 int flags, bool explain_p)
15087 tree type;
15089 if (!TYPE_P (arg))
15090 type = TREE_TYPE (arg);
15091 else
15092 type = arg;
15094 if (same_type_p (parm, type))
15095 return unify_success (explain_p);
15097 if (strict == DEDUCE_CONV)
15099 if (can_convert_arg (type, parm, NULL_TREE, flags,
15100 explain_p ? tf_warning_or_error : tf_none))
15101 return unify_success (explain_p);
15103 else if (strict != DEDUCE_EXACT)
15105 if (can_convert_arg (parm, type,
15106 TYPE_P (arg) ? NULL_TREE : arg,
15107 flags, explain_p ? tf_warning_or_error : tf_none))
15108 return unify_success (explain_p);
15111 if (strict == DEDUCE_EXACT)
15112 return unify_type_mismatch (explain_p, parm, arg);
15113 else
15114 return unify_arg_conversion (explain_p, parm, type, arg);
15117 /* Subroutine of type_unification_real and unify_pack_expansion to
15118 handle unification of a single P/A pair. Parameters are as
15119 for those functions. */
15121 static int
15122 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
15123 int subr, unification_kind_t strict, int flags,
15124 bool explain_p)
15126 tree arg_expr = NULL_TREE;
15127 int arg_strict;
15129 if (arg == error_mark_node || parm == error_mark_node)
15130 return unify_invalid (explain_p);
15131 if (arg == unknown_type_node)
15132 /* We can't deduce anything from this, but we might get all the
15133 template args from other function args. */
15134 return unify_success (explain_p);
15136 /* FIXME uses_deducible_template_parms */
15137 if (TYPE_P (parm) && !uses_template_parms (parm))
15138 return check_non_deducible_conversion (parm, arg, strict, flags,
15139 explain_p);
15141 switch (strict)
15143 case DEDUCE_CALL:
15144 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
15145 | UNIFY_ALLOW_MORE_CV_QUAL
15146 | UNIFY_ALLOW_DERIVED);
15147 break;
15149 case DEDUCE_CONV:
15150 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
15151 break;
15153 case DEDUCE_EXACT:
15154 arg_strict = UNIFY_ALLOW_NONE;
15155 break;
15157 default:
15158 gcc_unreachable ();
15161 /* We only do these transformations if this is the top-level
15162 parameter_type_list in a call or declaration matching; in other
15163 situations (nested function declarators, template argument lists) we
15164 won't be comparing a type to an expression, and we don't do any type
15165 adjustments. */
15166 if (!subr)
15168 if (!TYPE_P (arg))
15170 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
15171 if (type_unknown_p (arg))
15173 /* [temp.deduct.type] A template-argument can be
15174 deduced from a pointer to function or pointer
15175 to member function argument if the set of
15176 overloaded functions does not contain function
15177 templates and at most one of a set of
15178 overloaded functions provides a unique
15179 match. */
15181 if (resolve_overloaded_unification
15182 (tparms, targs, parm, arg, strict,
15183 arg_strict, explain_p))
15184 return unify_success (explain_p);
15185 return unify_overload_resolution_failure (explain_p, arg);
15188 arg_expr = arg;
15189 arg = unlowered_expr_type (arg);
15190 if (arg == error_mark_node)
15191 return unify_invalid (explain_p);
15194 arg_strict |=
15195 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
15197 else
15198 gcc_assert ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
15199 == (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL));
15201 /* For deduction from an init-list we need the actual list. */
15202 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
15203 arg = arg_expr;
15204 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
15207 /* Most parms like fn_type_unification.
15209 If SUBR is 1, we're being called recursively (to unify the
15210 arguments of a function or method parameter of a function
15211 template). */
15213 static int
15214 type_unification_real (tree tparms,
15215 tree targs,
15216 tree xparms,
15217 const tree *xargs,
15218 unsigned int xnargs,
15219 int subr,
15220 unification_kind_t strict,
15221 int flags,
15222 bool explain_p)
15224 tree parm, arg;
15225 int i;
15226 int ntparms = TREE_VEC_LENGTH (tparms);
15227 int saw_undeduced = 0;
15228 tree parms;
15229 const tree *args;
15230 unsigned int nargs;
15231 unsigned int ia;
15233 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
15234 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
15235 gcc_assert (ntparms > 0);
15237 /* Reset the number of non-defaulted template arguments contained
15238 in TARGS. */
15239 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
15241 again:
15242 parms = xparms;
15243 args = xargs;
15244 nargs = xnargs;
15246 ia = 0;
15247 while (parms && parms != void_list_node
15248 && ia < nargs)
15250 parm = TREE_VALUE (parms);
15252 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
15253 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
15254 /* For a function parameter pack that occurs at the end of the
15255 parameter-declaration-list, the type A of each remaining
15256 argument of the call is compared with the type P of the
15257 declarator-id of the function parameter pack. */
15258 break;
15260 parms = TREE_CHAIN (parms);
15262 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
15263 /* For a function parameter pack that does not occur at the
15264 end of the parameter-declaration-list, the type of the
15265 parameter pack is a non-deduced context. */
15266 continue;
15268 arg = args[ia];
15269 ++ia;
15271 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
15272 flags, explain_p))
15273 return 1;
15276 if (parms
15277 && parms != void_list_node
15278 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
15280 /* Unify the remaining arguments with the pack expansion type. */
15281 tree argvec;
15282 tree parmvec = make_tree_vec (1);
15284 /* Allocate a TREE_VEC and copy in all of the arguments */
15285 argvec = make_tree_vec (nargs - ia);
15286 for (i = 0; ia < nargs; ++ia, ++i)
15287 TREE_VEC_ELT (argvec, i) = args[ia];
15289 /* Copy the parameter into parmvec. */
15290 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
15291 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
15292 /*subr=*/subr, explain_p))
15293 return 1;
15295 /* Advance to the end of the list of parameters. */
15296 parms = TREE_CHAIN (parms);
15299 /* Fail if we've reached the end of the parm list, and more args
15300 are present, and the parm list isn't variadic. */
15301 if (ia < nargs && parms == void_list_node)
15302 return unify_too_many_arguments (explain_p, nargs, ia);
15303 /* Fail if parms are left and they don't have default values. */
15304 if (parms && parms != void_list_node
15305 && TREE_PURPOSE (parms) == NULL_TREE)
15307 unsigned int count = nargs;
15308 tree p = parms;
15309 while (p && p != void_list_node)
15311 count++;
15312 p = TREE_CHAIN (p);
15314 return unify_too_few_arguments (explain_p, ia, count);
15317 if (!subr)
15319 tsubst_flags_t complain = (explain_p
15320 ? tf_warning_or_error
15321 : tf_none);
15323 /* Check to see if we need another pass before we start clearing
15324 ARGUMENT_PACK_INCOMPLETE_P. */
15325 for (i = 0; i < ntparms; i++)
15327 tree targ = TREE_VEC_ELT (targs, i);
15328 tree tparm = TREE_VEC_ELT (tparms, i);
15330 if (targ || tparm == error_mark_node)
15331 continue;
15332 tparm = TREE_VALUE (tparm);
15334 /* If this is an undeduced nontype parameter that depends on
15335 a type parameter, try another pass; its type may have been
15336 deduced from a later argument than the one from which
15337 this parameter can be deduced. */
15338 if (TREE_CODE (tparm) == PARM_DECL
15339 && uses_template_parms (TREE_TYPE (tparm))
15340 && !saw_undeduced++)
15341 goto again;
15344 for (i = 0; i < ntparms; i++)
15346 tree targ = TREE_VEC_ELT (targs, i);
15347 tree tparm = TREE_VEC_ELT (tparms, i);
15349 /* Clear the "incomplete" flags on all argument packs now so that
15350 substituting them into later default arguments works. */
15351 if (targ && ARGUMENT_PACK_P (targ))
15353 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
15354 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
15357 if (targ || tparm == error_mark_node)
15358 continue;
15359 tparm = TREE_VALUE (tparm);
15361 /* Core issue #226 (C++0x) [temp.deduct]:
15363 If a template argument has not been deduced, its
15364 default template argument, if any, is used.
15366 When we are in C++98 mode, TREE_PURPOSE will either
15367 be NULL_TREE or ERROR_MARK_NODE, so we do not need
15368 to explicitly check cxx_dialect here. */
15369 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
15371 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
15372 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
15373 location_t save_loc = input_location;
15374 if (DECL_P (parm))
15375 input_location = DECL_SOURCE_LOCATION (parm);
15376 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
15377 arg = convert_template_argument (parm, arg, targs, complain,
15378 i, NULL_TREE);
15379 input_location = save_loc;
15380 if (arg == error_mark_node)
15381 return 1;
15382 else
15384 TREE_VEC_ELT (targs, i) = arg;
15385 /* The position of the first default template argument,
15386 is also the number of non-defaulted arguments in TARGS.
15387 Record that. */
15388 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15389 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
15390 continue;
15394 /* If the type parameter is a parameter pack, then it will
15395 be deduced to an empty parameter pack. */
15396 if (template_parameter_pack_p (tparm))
15398 tree arg;
15400 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
15402 arg = make_node (NONTYPE_ARGUMENT_PACK);
15403 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
15404 TREE_CONSTANT (arg) = 1;
15406 else
15407 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
15409 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
15411 TREE_VEC_ELT (targs, i) = arg;
15412 continue;
15415 return unify_parameter_deduction_failure (explain_p, tparm);
15418 #ifdef ENABLE_CHECKING
15419 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15420 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
15421 #endif
15423 return unify_success (explain_p);
15426 /* Subroutine of type_unification_real. Args are like the variables
15427 at the call site. ARG is an overloaded function (or template-id);
15428 we try deducing template args from each of the overloads, and if
15429 only one succeeds, we go with that. Modifies TARGS and returns
15430 true on success. */
15432 static bool
15433 resolve_overloaded_unification (tree tparms,
15434 tree targs,
15435 tree parm,
15436 tree arg,
15437 unification_kind_t strict,
15438 int sub_strict,
15439 bool explain_p)
15441 tree tempargs = copy_node (targs);
15442 int good = 0;
15443 tree goodfn = NULL_TREE;
15444 bool addr_p;
15446 if (TREE_CODE (arg) == ADDR_EXPR)
15448 arg = TREE_OPERAND (arg, 0);
15449 addr_p = true;
15451 else
15452 addr_p = false;
15454 if (TREE_CODE (arg) == COMPONENT_REF)
15455 /* Handle `&x' where `x' is some static or non-static member
15456 function name. */
15457 arg = TREE_OPERAND (arg, 1);
15459 if (TREE_CODE (arg) == OFFSET_REF)
15460 arg = TREE_OPERAND (arg, 1);
15462 /* Strip baselink information. */
15463 if (BASELINK_P (arg))
15464 arg = BASELINK_FUNCTIONS (arg);
15466 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
15468 /* If we got some explicit template args, we need to plug them into
15469 the affected templates before we try to unify, in case the
15470 explicit args will completely resolve the templates in question. */
15472 int ok = 0;
15473 tree expl_subargs = TREE_OPERAND (arg, 1);
15474 arg = TREE_OPERAND (arg, 0);
15476 for (; arg; arg = OVL_NEXT (arg))
15478 tree fn = OVL_CURRENT (arg);
15479 tree subargs, elem;
15481 if (TREE_CODE (fn) != TEMPLATE_DECL)
15482 continue;
15484 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15485 expl_subargs, NULL_TREE, tf_none,
15486 /*require_all_args=*/true,
15487 /*use_default_args=*/true);
15488 if (subargs != error_mark_node
15489 && !any_dependent_template_arguments_p (subargs))
15491 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
15492 if (try_one_overload (tparms, targs, tempargs, parm,
15493 elem, strict, sub_strict, addr_p, explain_p)
15494 && (!goodfn || !same_type_p (goodfn, elem)))
15496 goodfn = elem;
15497 ++good;
15500 else if (subargs)
15501 ++ok;
15503 /* If no templates (or more than one) are fully resolved by the
15504 explicit arguments, this template-id is a non-deduced context; it
15505 could still be OK if we deduce all template arguments for the
15506 enclosing call through other arguments. */
15507 if (good != 1)
15508 good = ok;
15510 else if (TREE_CODE (arg) != OVERLOAD
15511 && TREE_CODE (arg) != FUNCTION_DECL)
15512 /* If ARG is, for example, "(0, &f)" then its type will be unknown
15513 -- but the deduction does not succeed because the expression is
15514 not just the function on its own. */
15515 return false;
15516 else
15517 for (; arg; arg = OVL_NEXT (arg))
15518 if (try_one_overload (tparms, targs, tempargs, parm,
15519 TREE_TYPE (OVL_CURRENT (arg)),
15520 strict, sub_strict, addr_p, explain_p)
15521 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
15523 goodfn = OVL_CURRENT (arg);
15524 ++good;
15527 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15528 to function or pointer to member function argument if the set of
15529 overloaded functions does not contain function templates and at most
15530 one of a set of overloaded functions provides a unique match.
15532 So if we found multiple possibilities, we return success but don't
15533 deduce anything. */
15535 if (good == 1)
15537 int i = TREE_VEC_LENGTH (targs);
15538 for (; i--; )
15539 if (TREE_VEC_ELT (tempargs, i))
15540 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
15542 if (good)
15543 return true;
15545 return false;
15548 /* Core DR 115: In contexts where deduction is done and fails, or in
15549 contexts where deduction is not done, if a template argument list is
15550 specified and it, along with any default template arguments, identifies
15551 a single function template specialization, then the template-id is an
15552 lvalue for the function template specialization. */
15554 tree
15555 resolve_nondeduced_context (tree orig_expr)
15557 tree expr, offset, baselink;
15558 bool addr;
15560 if (!type_unknown_p (orig_expr))
15561 return orig_expr;
15563 expr = orig_expr;
15564 addr = false;
15565 offset = NULL_TREE;
15566 baselink = NULL_TREE;
15568 if (TREE_CODE (expr) == ADDR_EXPR)
15570 expr = TREE_OPERAND (expr, 0);
15571 addr = true;
15573 if (TREE_CODE (expr) == OFFSET_REF)
15575 offset = expr;
15576 expr = TREE_OPERAND (expr, 1);
15578 if (BASELINK_P (expr))
15580 baselink = expr;
15581 expr = BASELINK_FUNCTIONS (expr);
15584 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
15586 int good = 0;
15587 tree goodfn = NULL_TREE;
15589 /* If we got some explicit template args, we need to plug them into
15590 the affected templates before we try to unify, in case the
15591 explicit args will completely resolve the templates in question. */
15593 tree expl_subargs = TREE_OPERAND (expr, 1);
15594 tree arg = TREE_OPERAND (expr, 0);
15595 tree badfn = NULL_TREE;
15596 tree badargs = NULL_TREE;
15598 for (; arg; arg = OVL_NEXT (arg))
15600 tree fn = OVL_CURRENT (arg);
15601 tree subargs, elem;
15603 if (TREE_CODE (fn) != TEMPLATE_DECL)
15604 continue;
15606 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15607 expl_subargs, NULL_TREE, tf_none,
15608 /*require_all_args=*/true,
15609 /*use_default_args=*/true);
15610 if (subargs != error_mark_node
15611 && !any_dependent_template_arguments_p (subargs))
15613 elem = instantiate_template (fn, subargs, tf_none);
15614 if (elem == error_mark_node)
15616 badfn = fn;
15617 badargs = subargs;
15619 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
15621 goodfn = elem;
15622 ++good;
15626 if (good == 1)
15628 mark_used (goodfn);
15629 expr = goodfn;
15630 if (baselink)
15631 expr = build_baselink (BASELINK_BINFO (baselink),
15632 BASELINK_ACCESS_BINFO (baselink),
15633 expr, BASELINK_OPTYPE (baselink));
15634 if (offset)
15636 tree base
15637 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
15638 expr = build_offset_ref (base, expr, addr);
15640 if (addr)
15641 expr = cp_build_addr_expr (expr, tf_warning_or_error);
15642 return expr;
15644 else if (good == 0 && badargs)
15645 /* There were no good options and at least one bad one, so let the
15646 user know what the problem is. */
15647 instantiate_template (badfn, badargs, tf_warning_or_error);
15649 return orig_expr;
15652 /* Subroutine of resolve_overloaded_unification; does deduction for a single
15653 overload. Fills TARGS with any deduced arguments, or error_mark_node if
15654 different overloads deduce different arguments for a given parm.
15655 ADDR_P is true if the expression for which deduction is being
15656 performed was of the form "& fn" rather than simply "fn".
15658 Returns 1 on success. */
15660 static int
15661 try_one_overload (tree tparms,
15662 tree orig_targs,
15663 tree targs,
15664 tree parm,
15665 tree arg,
15666 unification_kind_t strict,
15667 int sub_strict,
15668 bool addr_p,
15669 bool explain_p)
15671 int nargs;
15672 tree tempargs;
15673 int i;
15675 if (arg == error_mark_node)
15676 return 0;
15678 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15679 to function or pointer to member function argument if the set of
15680 overloaded functions does not contain function templates and at most
15681 one of a set of overloaded functions provides a unique match.
15683 So if this is a template, just return success. */
15685 if (uses_template_parms (arg))
15686 return 1;
15688 if (TREE_CODE (arg) == METHOD_TYPE)
15689 arg = build_ptrmemfunc_type (build_pointer_type (arg));
15690 else if (addr_p)
15691 arg = build_pointer_type (arg);
15693 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
15695 /* We don't copy orig_targs for this because if we have already deduced
15696 some template args from previous args, unify would complain when we
15697 try to deduce a template parameter for the same argument, even though
15698 there isn't really a conflict. */
15699 nargs = TREE_VEC_LENGTH (targs);
15700 tempargs = make_tree_vec (nargs);
15702 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
15703 return 0;
15705 /* First make sure we didn't deduce anything that conflicts with
15706 explicitly specified args. */
15707 for (i = nargs; i--; )
15709 tree elt = TREE_VEC_ELT (tempargs, i);
15710 tree oldelt = TREE_VEC_ELT (orig_targs, i);
15712 if (!elt)
15713 /*NOP*/;
15714 else if (uses_template_parms (elt))
15715 /* Since we're unifying against ourselves, we will fill in
15716 template args used in the function parm list with our own
15717 template parms. Discard them. */
15718 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
15719 else if (oldelt && !template_args_equal (oldelt, elt))
15720 return 0;
15723 for (i = nargs; i--; )
15725 tree elt = TREE_VEC_ELT (tempargs, i);
15727 if (elt)
15728 TREE_VEC_ELT (targs, i) = elt;
15731 return 1;
15734 /* PARM is a template class (perhaps with unbound template
15735 parameters). ARG is a fully instantiated type. If ARG can be
15736 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
15737 TARGS are as for unify. */
15739 static tree
15740 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
15741 bool explain_p)
15743 tree copy_of_targs;
15745 if (!CLASSTYPE_TEMPLATE_INFO (arg)
15746 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
15747 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
15748 return NULL_TREE;
15750 /* We need to make a new template argument vector for the call to
15751 unify. If we used TARGS, we'd clutter it up with the result of
15752 the attempted unification, even if this class didn't work out.
15753 We also don't want to commit ourselves to all the unifications
15754 we've already done, since unification is supposed to be done on
15755 an argument-by-argument basis. In other words, consider the
15756 following pathological case:
15758 template <int I, int J, int K>
15759 struct S {};
15761 template <int I, int J>
15762 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
15764 template <int I, int J, int K>
15765 void f(S<I, J, K>, S<I, I, I>);
15767 void g() {
15768 S<0, 0, 0> s0;
15769 S<0, 1, 2> s2;
15771 f(s0, s2);
15774 Now, by the time we consider the unification involving `s2', we
15775 already know that we must have `f<0, 0, 0>'. But, even though
15776 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
15777 because there are two ways to unify base classes of S<0, 1, 2>
15778 with S<I, I, I>. If we kept the already deduced knowledge, we
15779 would reject the possibility I=1. */
15780 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
15782 /* If unification failed, we're done. */
15783 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
15784 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
15785 return NULL_TREE;
15787 return arg;
15790 /* Given a template type PARM and a class type ARG, find the unique
15791 base type in ARG that is an instance of PARM. We do not examine
15792 ARG itself; only its base-classes. If there is not exactly one
15793 appropriate base class, return NULL_TREE. PARM may be the type of
15794 a partial specialization, as well as a plain template type. Used
15795 by unify. */
15797 static enum template_base_result
15798 get_template_base (tree tparms, tree targs, tree parm, tree arg,
15799 bool explain_p, tree *result)
15801 tree rval = NULL_TREE;
15802 tree binfo;
15804 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
15806 binfo = TYPE_BINFO (complete_type (arg));
15807 if (!binfo)
15809 /* The type could not be completed. */
15810 *result = NULL_TREE;
15811 return tbr_incomplete_type;
15814 /* Walk in inheritance graph order. The search order is not
15815 important, and this avoids multiple walks of virtual bases. */
15816 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
15818 tree r = try_class_unification (tparms, targs, parm,
15819 BINFO_TYPE (binfo), explain_p);
15821 if (r)
15823 /* If there is more than one satisfactory baseclass, then:
15825 [temp.deduct.call]
15827 If they yield more than one possible deduced A, the type
15828 deduction fails.
15830 applies. */
15831 if (rval && !same_type_p (r, rval))
15833 *result = NULL_TREE;
15834 return tbr_ambiguous_baseclass;
15837 rval = r;
15841 *result = rval;
15842 return tbr_success;
15845 /* Returns the level of DECL, which declares a template parameter. */
15847 static int
15848 template_decl_level (tree decl)
15850 switch (TREE_CODE (decl))
15852 case TYPE_DECL:
15853 case TEMPLATE_DECL:
15854 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
15856 case PARM_DECL:
15857 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
15859 default:
15860 gcc_unreachable ();
15862 return 0;
15865 /* Decide whether ARG can be unified with PARM, considering only the
15866 cv-qualifiers of each type, given STRICT as documented for unify.
15867 Returns nonzero iff the unification is OK on that basis. */
15869 static int
15870 check_cv_quals_for_unify (int strict, tree arg, tree parm)
15872 int arg_quals = cp_type_quals (arg);
15873 int parm_quals = cp_type_quals (parm);
15875 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
15876 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
15878 /* Although a CVR qualifier is ignored when being applied to a
15879 substituted template parameter ([8.3.2]/1 for example), that
15880 does not allow us to unify "const T" with "int&" because both
15881 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
15882 It is ok when we're allowing additional CV qualifiers
15883 at the outer level [14.8.2.1]/3,1st bullet. */
15884 if ((TREE_CODE (arg) == REFERENCE_TYPE
15885 || TREE_CODE (arg) == FUNCTION_TYPE
15886 || TREE_CODE (arg) == METHOD_TYPE)
15887 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
15888 return 0;
15890 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
15891 && (parm_quals & TYPE_QUAL_RESTRICT))
15892 return 0;
15895 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
15896 && (arg_quals & parm_quals) != parm_quals)
15897 return 0;
15899 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
15900 && (parm_quals & arg_quals) != arg_quals)
15901 return 0;
15903 return 1;
15906 /* Determines the LEVEL and INDEX for the template parameter PARM. */
15907 void
15908 template_parm_level_and_index (tree parm, int* level, int* index)
15910 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
15911 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
15912 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
15914 *index = TEMPLATE_TYPE_IDX (parm);
15915 *level = TEMPLATE_TYPE_LEVEL (parm);
15917 else
15919 *index = TEMPLATE_PARM_IDX (parm);
15920 *level = TEMPLATE_PARM_LEVEL (parm);
15924 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
15925 do { \
15926 if (unify (TP, TA, P, A, S, EP)) \
15927 return 1; \
15928 } while (0);
15930 /* Unifies the remaining arguments in PACKED_ARGS with the pack
15931 expansion at the end of PACKED_PARMS. Returns 0 if the type
15932 deduction succeeds, 1 otherwise. STRICT is the same as in
15933 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
15934 call argument list. We'll need to adjust the arguments to make them
15935 types. SUBR tells us if this is from a recursive call to
15936 type_unification_real, or for comparing two template argument
15937 lists. */
15939 static int
15940 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
15941 tree packed_args, unification_kind_t strict,
15942 bool subr, bool explain_p)
15944 tree parm
15945 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
15946 tree pattern = PACK_EXPANSION_PATTERN (parm);
15947 tree pack, packs = NULL_TREE;
15948 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
15949 int len = TREE_VEC_LENGTH (packed_args);
15951 /* Determine the parameter packs we will be deducing from the
15952 pattern, and record their current deductions. */
15953 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
15954 pack; pack = TREE_CHAIN (pack))
15956 tree parm_pack = TREE_VALUE (pack);
15957 int idx, level;
15959 /* Determine the index and level of this parameter pack. */
15960 template_parm_level_and_index (parm_pack, &level, &idx);
15962 /* Keep track of the parameter packs and their corresponding
15963 argument packs. */
15964 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
15965 TREE_TYPE (packs) = make_tree_vec (len - start);
15968 /* Loop through all of the arguments that have not yet been
15969 unified and unify each with the pattern. */
15970 for (i = start; i < len; i++)
15972 tree parm;
15973 bool any_explicit = false;
15974 tree arg = TREE_VEC_ELT (packed_args, i);
15976 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
15977 or the element of its argument pack at the current index if
15978 this argument was explicitly specified. */
15979 for (pack = packs; pack; pack = TREE_CHAIN (pack))
15981 int idx, level;
15982 tree arg, pargs;
15983 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
15985 arg = NULL_TREE;
15986 if (TREE_VALUE (pack)
15987 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
15988 && (i < TREE_VEC_LENGTH (pargs)))
15990 any_explicit = true;
15991 arg = TREE_VEC_ELT (pargs, i);
15993 TMPL_ARG (targs, level, idx) = arg;
15996 /* If we had explicit template arguments, substitute them into the
15997 pattern before deduction. */
15998 if (any_explicit)
16000 /* Some arguments might still be unspecified or dependent. */
16001 bool dependent;
16002 ++processing_template_decl;
16003 dependent = any_dependent_template_arguments_p (targs);
16004 if (!dependent)
16005 --processing_template_decl;
16006 parm = tsubst (pattern, targs,
16007 explain_p ? tf_warning_or_error : tf_none,
16008 NULL_TREE);
16009 if (dependent)
16010 --processing_template_decl;
16011 if (parm == error_mark_node)
16012 return 1;
16014 else
16015 parm = pattern;
16017 /* Unify the pattern with the current argument. */
16018 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16019 LOOKUP_IMPLICIT, explain_p))
16020 return 1;
16022 /* For each parameter pack, collect the deduced value. */
16023 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16025 int idx, level;
16026 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16028 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
16029 TMPL_ARG (targs, level, idx);
16033 /* Verify that the results of unification with the parameter packs
16034 produce results consistent with what we've seen before, and make
16035 the deduced argument packs available. */
16036 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16038 tree old_pack = TREE_VALUE (pack);
16039 tree new_args = TREE_TYPE (pack);
16040 int i, len = TREE_VEC_LENGTH (new_args);
16041 int idx, level;
16042 bool nondeduced_p = false;
16044 /* By default keep the original deduced argument pack.
16045 If necessary, more specific code is going to update the
16046 resulting deduced argument later down in this function. */
16047 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16048 TMPL_ARG (targs, level, idx) = old_pack;
16050 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
16051 actually deduce anything. */
16052 for (i = 0; i < len && !nondeduced_p; ++i)
16053 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
16054 nondeduced_p = true;
16055 if (nondeduced_p)
16056 continue;
16058 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
16060 /* If we had fewer function args than explicit template args,
16061 just use the explicits. */
16062 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16063 int explicit_len = TREE_VEC_LENGTH (explicit_args);
16064 if (len < explicit_len)
16065 new_args = explicit_args;
16068 if (!old_pack)
16070 tree result;
16071 /* Build the deduced *_ARGUMENT_PACK. */
16072 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
16074 result = make_node (NONTYPE_ARGUMENT_PACK);
16075 TREE_TYPE (result) =
16076 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
16077 TREE_CONSTANT (result) = 1;
16079 else
16080 result = cxx_make_type (TYPE_ARGUMENT_PACK);
16082 SET_ARGUMENT_PACK_ARGS (result, new_args);
16084 /* Note the deduced argument packs for this parameter
16085 pack. */
16086 TMPL_ARG (targs, level, idx) = result;
16088 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
16089 && (ARGUMENT_PACK_ARGS (old_pack)
16090 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
16092 /* We only had the explicitly-provided arguments before, but
16093 now we have a complete set of arguments. */
16094 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16096 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
16097 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
16098 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
16100 else
16102 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
16103 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
16105 if (!comp_template_args_with_info (old_args, new_args,
16106 &bad_old_arg, &bad_new_arg))
16107 /* Inconsistent unification of this parameter pack. */
16108 return unify_parameter_pack_inconsistent (explain_p,
16109 bad_old_arg,
16110 bad_new_arg);
16114 return unify_success (explain_p);
16117 /* Deduce the value of template parameters. TPARMS is the (innermost)
16118 set of template parameters to a template. TARGS is the bindings
16119 for those template parameters, as determined thus far; TARGS may
16120 include template arguments for outer levels of template parameters
16121 as well. PARM is a parameter to a template function, or a
16122 subcomponent of that parameter; ARG is the corresponding argument.
16123 This function attempts to match PARM with ARG in a manner
16124 consistent with the existing assignments in TARGS. If more values
16125 are deduced, then TARGS is updated.
16127 Returns 0 if the type deduction succeeds, 1 otherwise. The
16128 parameter STRICT is a bitwise or of the following flags:
16130 UNIFY_ALLOW_NONE:
16131 Require an exact match between PARM and ARG.
16132 UNIFY_ALLOW_MORE_CV_QUAL:
16133 Allow the deduced ARG to be more cv-qualified (by qualification
16134 conversion) than ARG.
16135 UNIFY_ALLOW_LESS_CV_QUAL:
16136 Allow the deduced ARG to be less cv-qualified than ARG.
16137 UNIFY_ALLOW_DERIVED:
16138 Allow the deduced ARG to be a template base class of ARG,
16139 or a pointer to a template base class of the type pointed to by
16140 ARG.
16141 UNIFY_ALLOW_INTEGER:
16142 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
16143 case for more information.
16144 UNIFY_ALLOW_OUTER_LEVEL:
16145 This is the outermost level of a deduction. Used to determine validity
16146 of qualification conversions. A valid qualification conversion must
16147 have const qualified pointers leading up to the inner type which
16148 requires additional CV quals, except at the outer level, where const
16149 is not required [conv.qual]. It would be normal to set this flag in
16150 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
16151 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
16152 This is the outermost level of a deduction, and PARM can be more CV
16153 qualified at this point.
16154 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
16155 This is the outermost level of a deduction, and PARM can be less CV
16156 qualified at this point. */
16158 static int
16159 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
16160 bool explain_p)
16162 int idx;
16163 tree targ;
16164 tree tparm;
16165 int strict_in = strict;
16167 /* I don't think this will do the right thing with respect to types.
16168 But the only case I've seen it in so far has been array bounds, where
16169 signedness is the only information lost, and I think that will be
16170 okay. */
16171 while (TREE_CODE (parm) == NOP_EXPR)
16172 parm = TREE_OPERAND (parm, 0);
16174 if (arg == error_mark_node)
16175 return unify_invalid (explain_p);
16176 if (arg == unknown_type_node
16177 || arg == init_list_type_node)
16178 /* We can't deduce anything from this, but we might get all the
16179 template args from other function args. */
16180 return unify_success (explain_p);
16182 /* If PARM uses template parameters, then we can't bail out here,
16183 even if ARG == PARM, since we won't record unifications for the
16184 template parameters. We might need them if we're trying to
16185 figure out which of two things is more specialized. */
16186 if (arg == parm && !uses_template_parms (parm))
16187 return unify_success (explain_p);
16189 /* Handle init lists early, so the rest of the function can assume
16190 we're dealing with a type. */
16191 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
16193 tree elt, elttype;
16194 unsigned i;
16195 tree orig_parm = parm;
16197 /* Replace T with std::initializer_list<T> for deduction. */
16198 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16199 && flag_deduce_init_list)
16200 parm = listify (parm);
16202 if (!is_std_init_list (parm))
16203 /* We can only deduce from an initializer list argument if the
16204 parameter is std::initializer_list; otherwise this is a
16205 non-deduced context. */
16206 return unify_success (explain_p);
16208 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
16210 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
16212 int elt_strict = strict;
16214 if (elt == error_mark_node)
16215 return unify_invalid (explain_p);
16217 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
16219 tree type = TREE_TYPE (elt);
16220 /* It should only be possible to get here for a call. */
16221 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
16222 elt_strict |= maybe_adjust_types_for_deduction
16223 (DEDUCE_CALL, &elttype, &type, elt);
16224 elt = type;
16227 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
16228 explain_p);
16231 /* If the std::initializer_list<T> deduction worked, replace the
16232 deduced A with std::initializer_list<A>. */
16233 if (orig_parm != parm)
16235 idx = TEMPLATE_TYPE_IDX (orig_parm);
16236 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16237 targ = listify (targ);
16238 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
16240 return unify_success (explain_p);
16243 /* Immediately reject some pairs that won't unify because of
16244 cv-qualification mismatches. */
16245 if (TREE_CODE (arg) == TREE_CODE (parm)
16246 && TYPE_P (arg)
16247 /* It is the elements of the array which hold the cv quals of an array
16248 type, and the elements might be template type parms. We'll check
16249 when we recurse. */
16250 && TREE_CODE (arg) != ARRAY_TYPE
16251 /* We check the cv-qualifiers when unifying with template type
16252 parameters below. We want to allow ARG `const T' to unify with
16253 PARM `T' for example, when computing which of two templates
16254 is more specialized, for example. */
16255 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
16256 && !check_cv_quals_for_unify (strict_in, arg, parm))
16257 return unify_cv_qual_mismatch (explain_p, parm, arg);
16259 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
16260 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
16261 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
16262 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
16263 strict &= ~UNIFY_ALLOW_DERIVED;
16264 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16265 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
16267 switch (TREE_CODE (parm))
16269 case TYPENAME_TYPE:
16270 case SCOPE_REF:
16271 case UNBOUND_CLASS_TEMPLATE:
16272 /* In a type which contains a nested-name-specifier, template
16273 argument values cannot be deduced for template parameters used
16274 within the nested-name-specifier. */
16275 return unify_success (explain_p);
16277 case TEMPLATE_TYPE_PARM:
16278 case TEMPLATE_TEMPLATE_PARM:
16279 case BOUND_TEMPLATE_TEMPLATE_PARM:
16280 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16281 if (tparm == error_mark_node)
16282 return unify_invalid (explain_p);
16284 if (TEMPLATE_TYPE_LEVEL (parm)
16285 != template_decl_level (tparm))
16286 /* The PARM is not one we're trying to unify. Just check
16287 to see if it matches ARG. */
16289 if (TREE_CODE (arg) == TREE_CODE (parm)
16290 && (is_auto (parm) ? is_auto (arg)
16291 : same_type_p (parm, arg)))
16292 return unify_success (explain_p);
16293 else
16294 return unify_type_mismatch (explain_p, parm, arg);
16296 idx = TEMPLATE_TYPE_IDX (parm);
16297 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16298 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
16299 if (tparm == error_mark_node)
16300 return unify_invalid (explain_p);
16302 /* Check for mixed types and values. */
16303 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16304 && TREE_CODE (tparm) != TYPE_DECL)
16305 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16306 && TREE_CODE (tparm) != TEMPLATE_DECL))
16307 gcc_unreachable ();
16309 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16311 /* ARG must be constructed from a template class or a template
16312 template parameter. */
16313 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
16314 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
16315 return unify_template_deduction_failure (explain_p, parm, arg);
16318 tree parmvec = TYPE_TI_ARGS (parm);
16319 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
16320 tree full_argvec = add_to_template_args (targs, argvec);
16321 tree parm_parms
16322 = DECL_INNERMOST_TEMPLATE_PARMS
16323 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
16324 int i, len;
16325 int parm_variadic_p = 0;
16327 /* The resolution to DR150 makes clear that default
16328 arguments for an N-argument may not be used to bind T
16329 to a template template parameter with fewer than N
16330 parameters. It is not safe to permit the binding of
16331 default arguments as an extension, as that may change
16332 the meaning of a conforming program. Consider:
16334 struct Dense { static const unsigned int dim = 1; };
16336 template <template <typename> class View,
16337 typename Block>
16338 void operator+(float, View<Block> const&);
16340 template <typename Block,
16341 unsigned int Dim = Block::dim>
16342 struct Lvalue_proxy { operator float() const; };
16344 void
16345 test_1d (void) {
16346 Lvalue_proxy<Dense> p;
16347 float b;
16348 b + p;
16351 Here, if Lvalue_proxy is permitted to bind to View, then
16352 the global operator+ will be used; if they are not, the
16353 Lvalue_proxy will be converted to float. */
16354 if (coerce_template_parms (parm_parms,
16355 full_argvec,
16356 TYPE_TI_TEMPLATE (parm),
16357 (explain_p
16358 ? tf_warning_or_error
16359 : tf_none),
16360 /*require_all_args=*/true,
16361 /*use_default_args=*/false)
16362 == error_mark_node)
16363 return 1;
16365 /* Deduce arguments T, i from TT<T> or TT<i>.
16366 We check each element of PARMVEC and ARGVEC individually
16367 rather than the whole TREE_VEC since they can have
16368 different number of elements. */
16370 parmvec = expand_template_argument_pack (parmvec);
16371 argvec = expand_template_argument_pack (argvec);
16373 len = TREE_VEC_LENGTH (parmvec);
16375 /* Check if the parameters end in a pack, making them
16376 variadic. */
16377 if (len > 0
16378 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
16379 parm_variadic_p = 1;
16381 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
16382 return unify_too_few_arguments (explain_p,
16383 TREE_VEC_LENGTH (argvec), len);
16385 for (i = 0; i < len - parm_variadic_p; ++i)
16387 RECUR_AND_CHECK_FAILURE (tparms, targs,
16388 TREE_VEC_ELT (parmvec, i),
16389 TREE_VEC_ELT (argvec, i),
16390 UNIFY_ALLOW_NONE, explain_p);
16393 if (parm_variadic_p
16394 && unify_pack_expansion (tparms, targs,
16395 parmvec, argvec,
16396 DEDUCE_EXACT,
16397 /*subr=*/true, explain_p))
16398 return 1;
16400 arg = TYPE_TI_TEMPLATE (arg);
16402 /* Fall through to deduce template name. */
16405 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16406 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16408 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
16410 /* Simple cases: Value already set, does match or doesn't. */
16411 if (targ != NULL_TREE && template_args_equal (targ, arg))
16412 return unify_success (explain_p);
16413 else if (targ)
16414 return unify_inconsistency (explain_p, parm, targ, arg);
16416 else
16418 /* If PARM is `const T' and ARG is only `int', we don't have
16419 a match unless we are allowing additional qualification.
16420 If ARG is `const int' and PARM is just `T' that's OK;
16421 that binds `const int' to `T'. */
16422 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
16423 arg, parm))
16424 return unify_cv_qual_mismatch (explain_p, parm, arg);
16426 /* Consider the case where ARG is `const volatile int' and
16427 PARM is `const T'. Then, T should be `volatile int'. */
16428 arg = cp_build_qualified_type_real
16429 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
16430 if (arg == error_mark_node)
16431 return unify_invalid (explain_p);
16433 /* Simple cases: Value already set, does match or doesn't. */
16434 if (targ != NULL_TREE && same_type_p (targ, arg))
16435 return unify_success (explain_p);
16436 else if (targ)
16437 return unify_inconsistency (explain_p, parm, targ, arg);
16439 /* Make sure that ARG is not a variable-sized array. (Note
16440 that were talking about variable-sized arrays (like
16441 `int[n]'), rather than arrays of unknown size (like
16442 `int[]').) We'll get very confused by such a type since
16443 the bound of the array is not constant, and therefore
16444 not mangleable. Besides, such types are not allowed in
16445 ISO C++, so we can do as we please here. We do allow
16446 them for 'auto' deduction, since that isn't ABI-exposed. */
16447 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
16448 return unify_vla_arg (explain_p, arg);
16450 /* Strip typedefs as in convert_template_argument. */
16451 arg = canonicalize_type_argument (arg, tf_none);
16454 /* If ARG is a parameter pack or an expansion, we cannot unify
16455 against it unless PARM is also a parameter pack. */
16456 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16457 && !template_parameter_pack_p (parm))
16458 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16460 /* If the argument deduction results is a METHOD_TYPE,
16461 then there is a problem.
16462 METHOD_TYPE doesn't map to any real C++ type the result of
16463 the deduction can not be of that type. */
16464 if (TREE_CODE (arg) == METHOD_TYPE)
16465 return unify_method_type_error (explain_p, arg);
16467 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16468 return unify_success (explain_p);
16470 case TEMPLATE_PARM_INDEX:
16471 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16472 if (tparm == error_mark_node)
16473 return unify_invalid (explain_p);
16475 if (TEMPLATE_PARM_LEVEL (parm)
16476 != template_decl_level (tparm))
16478 /* The PARM is not one we're trying to unify. Just check
16479 to see if it matches ARG. */
16480 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
16481 && cp_tree_equal (parm, arg));
16482 if (result)
16483 unify_expression_unequal (explain_p, parm, arg);
16484 return result;
16487 idx = TEMPLATE_PARM_IDX (parm);
16488 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16490 if (targ)
16492 int x = !cp_tree_equal (targ, arg);
16493 if (x)
16494 unify_inconsistency (explain_p, parm, targ, arg);
16495 return x;
16498 /* [temp.deduct.type] If, in the declaration of a function template
16499 with a non-type template-parameter, the non-type
16500 template-parameter is used in an expression in the function
16501 parameter-list and, if the corresponding template-argument is
16502 deduced, the template-argument type shall match the type of the
16503 template-parameter exactly, except that a template-argument
16504 deduced from an array bound may be of any integral type.
16505 The non-type parameter might use already deduced type parameters. */
16506 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
16507 if (!TREE_TYPE (arg))
16508 /* Template-parameter dependent expression. Just accept it for now.
16509 It will later be processed in convert_template_argument. */
16511 else if (same_type_p (TREE_TYPE (arg), tparm))
16512 /* OK */;
16513 else if ((strict & UNIFY_ALLOW_INTEGER)
16514 && (TREE_CODE (tparm) == INTEGER_TYPE
16515 || TREE_CODE (tparm) == BOOLEAN_TYPE))
16516 /* Convert the ARG to the type of PARM; the deduced non-type
16517 template argument must exactly match the types of the
16518 corresponding parameter. */
16519 arg = fold (build_nop (tparm, arg));
16520 else if (uses_template_parms (tparm))
16521 /* We haven't deduced the type of this parameter yet. Try again
16522 later. */
16523 return unify_success (explain_p);
16524 else
16525 return unify_type_mismatch (explain_p, tparm, arg);
16527 /* If ARG is a parameter pack or an expansion, we cannot unify
16528 against it unless PARM is also a parameter pack. */
16529 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16530 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
16531 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16533 arg = strip_typedefs_expr (arg);
16534 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16535 return unify_success (explain_p);
16537 case PTRMEM_CST:
16539 /* A pointer-to-member constant can be unified only with
16540 another constant. */
16541 if (TREE_CODE (arg) != PTRMEM_CST)
16542 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
16544 /* Just unify the class member. It would be useless (and possibly
16545 wrong, depending on the strict flags) to unify also
16546 PTRMEM_CST_CLASS, because we want to be sure that both parm and
16547 arg refer to the same variable, even if through different
16548 classes. For instance:
16550 struct A { int x; };
16551 struct B : A { };
16553 Unification of &A::x and &B::x must succeed. */
16554 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
16555 PTRMEM_CST_MEMBER (arg), strict, explain_p);
16558 case POINTER_TYPE:
16560 if (TREE_CODE (arg) != POINTER_TYPE)
16561 return unify_type_mismatch (explain_p, parm, arg);
16563 /* [temp.deduct.call]
16565 A can be another pointer or pointer to member type that can
16566 be converted to the deduced A via a qualification
16567 conversion (_conv.qual_).
16569 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
16570 This will allow for additional cv-qualification of the
16571 pointed-to types if appropriate. */
16573 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
16574 /* The derived-to-base conversion only persists through one
16575 level of pointers. */
16576 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
16578 return unify (tparms, targs, TREE_TYPE (parm),
16579 TREE_TYPE (arg), strict, explain_p);
16582 case REFERENCE_TYPE:
16583 if (TREE_CODE (arg) != REFERENCE_TYPE)
16584 return unify_type_mismatch (explain_p, parm, arg);
16585 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16586 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16588 case ARRAY_TYPE:
16589 if (TREE_CODE (arg) != ARRAY_TYPE)
16590 return unify_type_mismatch (explain_p, parm, arg);
16591 if ((TYPE_DOMAIN (parm) == NULL_TREE)
16592 != (TYPE_DOMAIN (arg) == NULL_TREE))
16593 return unify_type_mismatch (explain_p, parm, arg);
16594 if (TYPE_DOMAIN (parm) != NULL_TREE)
16596 tree parm_max;
16597 tree arg_max;
16598 bool parm_cst;
16599 bool arg_cst;
16601 /* Our representation of array types uses "N - 1" as the
16602 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
16603 not an integer constant. We cannot unify arbitrarily
16604 complex expressions, so we eliminate the MINUS_EXPRs
16605 here. */
16606 parm_max = TYPE_MAX_VALUE (TYPE_DOMAIN (parm));
16607 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
16608 if (!parm_cst)
16610 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
16611 parm_max = TREE_OPERAND (parm_max, 0);
16613 arg_max = TYPE_MAX_VALUE (TYPE_DOMAIN (arg));
16614 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
16615 if (!arg_cst)
16617 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
16618 trying to unify the type of a variable with the type
16619 of a template parameter. For example:
16621 template <unsigned int N>
16622 void f (char (&) [N]);
16623 int g();
16624 void h(int i) {
16625 char a[g(i)];
16626 f(a);
16629 Here, the type of the ARG will be "int [g(i)]", and
16630 may be a SAVE_EXPR, etc. */
16631 if (TREE_CODE (arg_max) != MINUS_EXPR)
16632 return unify_vla_arg (explain_p, arg);
16633 arg_max = TREE_OPERAND (arg_max, 0);
16636 /* If only one of the bounds used a MINUS_EXPR, compensate
16637 by adding one to the other bound. */
16638 if (parm_cst && !arg_cst)
16639 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
16640 integer_type_node,
16641 parm_max,
16642 integer_one_node);
16643 else if (arg_cst && !parm_cst)
16644 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
16645 integer_type_node,
16646 arg_max,
16647 integer_one_node);
16649 RECUR_AND_CHECK_FAILURE (tparms, targs, parm_max, arg_max,
16650 UNIFY_ALLOW_INTEGER, explain_p);
16652 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16653 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16655 case REAL_TYPE:
16656 case COMPLEX_TYPE:
16657 case VECTOR_TYPE:
16658 case INTEGER_TYPE:
16659 case BOOLEAN_TYPE:
16660 case ENUMERAL_TYPE:
16661 case VOID_TYPE:
16662 case NULLPTR_TYPE:
16663 if (TREE_CODE (arg) != TREE_CODE (parm))
16664 return unify_type_mismatch (explain_p, parm, arg);
16666 /* We have already checked cv-qualification at the top of the
16667 function. */
16668 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
16669 return unify_type_mismatch (explain_p, parm, arg);
16671 /* As far as unification is concerned, this wins. Later checks
16672 will invalidate it if necessary. */
16673 return unify_success (explain_p);
16675 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
16676 /* Type INTEGER_CST can come from ordinary constant template args. */
16677 case INTEGER_CST:
16678 while (TREE_CODE (arg) == NOP_EXPR)
16679 arg = TREE_OPERAND (arg, 0);
16681 if (TREE_CODE (arg) != INTEGER_CST)
16682 return unify_template_argument_mismatch (explain_p, parm, arg);
16683 return (tree_int_cst_equal (parm, arg)
16684 ? unify_success (explain_p)
16685 : unify_template_argument_mismatch (explain_p, parm, arg));
16687 case TREE_VEC:
16689 int i, len, argslen;
16690 int parm_variadic_p = 0;
16692 if (TREE_CODE (arg) != TREE_VEC)
16693 return unify_template_argument_mismatch (explain_p, parm, arg);
16695 len = TREE_VEC_LENGTH (parm);
16696 argslen = TREE_VEC_LENGTH (arg);
16698 /* Check for pack expansions in the parameters. */
16699 for (i = 0; i < len; ++i)
16701 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
16703 if (i == len - 1)
16704 /* We can unify against something with a trailing
16705 parameter pack. */
16706 parm_variadic_p = 1;
16707 else
16708 /* [temp.deduct.type]/9: If the template argument list of
16709 P contains a pack expansion that is not the last
16710 template argument, the entire template argument list
16711 is a non-deduced context. */
16712 return unify_success (explain_p);
16716 /* If we don't have enough arguments to satisfy the parameters
16717 (not counting the pack expression at the end), or we have
16718 too many arguments for a parameter list that doesn't end in
16719 a pack expression, we can't unify. */
16720 if (parm_variadic_p
16721 ? argslen < len - parm_variadic_p
16722 : argslen != len)
16723 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
16725 /* Unify all of the parameters that precede the (optional)
16726 pack expression. */
16727 for (i = 0; i < len - parm_variadic_p; ++i)
16729 RECUR_AND_CHECK_FAILURE (tparms, targs,
16730 TREE_VEC_ELT (parm, i),
16731 TREE_VEC_ELT (arg, i),
16732 UNIFY_ALLOW_NONE, explain_p);
16734 if (parm_variadic_p)
16735 return unify_pack_expansion (tparms, targs, parm, arg,
16736 DEDUCE_EXACT,
16737 /*subr=*/true, explain_p);
16738 return unify_success (explain_p);
16741 case RECORD_TYPE:
16742 case UNION_TYPE:
16743 if (TREE_CODE (arg) != TREE_CODE (parm))
16744 return unify_type_mismatch (explain_p, parm, arg);
16746 if (TYPE_PTRMEMFUNC_P (parm))
16748 if (!TYPE_PTRMEMFUNC_P (arg))
16749 return unify_type_mismatch (explain_p, parm, arg);
16751 return unify (tparms, targs,
16752 TYPE_PTRMEMFUNC_FN_TYPE (parm),
16753 TYPE_PTRMEMFUNC_FN_TYPE (arg),
16754 strict, explain_p);
16757 if (CLASSTYPE_TEMPLATE_INFO (parm))
16759 tree t = NULL_TREE;
16761 if (strict_in & UNIFY_ALLOW_DERIVED)
16763 /* First, we try to unify the PARM and ARG directly. */
16764 t = try_class_unification (tparms, targs,
16765 parm, arg, explain_p);
16767 if (!t)
16769 /* Fallback to the special case allowed in
16770 [temp.deduct.call]:
16772 If P is a class, and P has the form
16773 template-id, then A can be a derived class of
16774 the deduced A. Likewise, if P is a pointer to
16775 a class of the form template-id, A can be a
16776 pointer to a derived class pointed to by the
16777 deduced A. */
16778 enum template_base_result r;
16779 r = get_template_base (tparms, targs, parm, arg,
16780 explain_p, &t);
16782 if (!t)
16783 return unify_no_common_base (explain_p, r, parm, arg);
16786 else if (CLASSTYPE_TEMPLATE_INFO (arg)
16787 && (CLASSTYPE_TI_TEMPLATE (parm)
16788 == CLASSTYPE_TI_TEMPLATE (arg)))
16789 /* Perhaps PARM is something like S<U> and ARG is S<int>.
16790 Then, we should unify `int' and `U'. */
16791 t = arg;
16792 else
16793 /* There's no chance of unification succeeding. */
16794 return unify_type_mismatch (explain_p, parm, arg);
16796 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
16797 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
16799 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
16800 return unify_type_mismatch (explain_p, parm, arg);
16801 return unify_success (explain_p);
16803 case METHOD_TYPE:
16804 case FUNCTION_TYPE:
16806 unsigned int nargs;
16807 tree *args;
16808 tree a;
16809 unsigned int i;
16811 if (TREE_CODE (arg) != TREE_CODE (parm))
16812 return unify_type_mismatch (explain_p, parm, arg);
16814 /* CV qualifications for methods can never be deduced, they must
16815 match exactly. We need to check them explicitly here,
16816 because type_unification_real treats them as any other
16817 cv-qualified parameter. */
16818 if (TREE_CODE (parm) == METHOD_TYPE
16819 && (!check_cv_quals_for_unify
16820 (UNIFY_ALLOW_NONE,
16821 class_of_this_parm (arg),
16822 class_of_this_parm (parm))))
16823 return unify_cv_qual_mismatch (explain_p, parm, arg);
16825 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
16826 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
16828 nargs = list_length (TYPE_ARG_TYPES (arg));
16829 args = XALLOCAVEC (tree, nargs);
16830 for (a = TYPE_ARG_TYPES (arg), i = 0;
16831 a != NULL_TREE && a != void_list_node;
16832 a = TREE_CHAIN (a), ++i)
16833 args[i] = TREE_VALUE (a);
16834 nargs = i;
16836 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
16837 args, nargs, 1, DEDUCE_EXACT,
16838 LOOKUP_NORMAL, explain_p);
16841 case OFFSET_TYPE:
16842 /* Unify a pointer to member with a pointer to member function, which
16843 deduces the type of the member as a function type. */
16844 if (TYPE_PTRMEMFUNC_P (arg))
16846 tree method_type;
16847 tree fntype;
16849 /* Check top-level cv qualifiers */
16850 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
16851 return unify_cv_qual_mismatch (explain_p, parm, arg);
16853 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
16854 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
16855 UNIFY_ALLOW_NONE, explain_p);
16857 /* Determine the type of the function we are unifying against. */
16858 method_type = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (arg));
16859 fntype =
16860 build_function_type (TREE_TYPE (method_type),
16861 TREE_CHAIN (TYPE_ARG_TYPES (method_type)));
16863 /* Extract the cv-qualifiers of the member function from the
16864 implicit object parameter and place them on the function
16865 type to be restored later. */
16866 fntype = apply_memfn_quals (fntype, type_memfn_quals (method_type));
16867 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
16870 if (TREE_CODE (arg) != OFFSET_TYPE)
16871 return unify_type_mismatch (explain_p, parm, arg);
16872 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
16873 TYPE_OFFSET_BASETYPE (arg),
16874 UNIFY_ALLOW_NONE, explain_p);
16875 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16876 strict, explain_p);
16878 case CONST_DECL:
16879 if (DECL_TEMPLATE_PARM_P (parm))
16880 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
16881 if (arg != integral_constant_value (parm))
16882 return unify_template_argument_mismatch (explain_p, parm, arg);
16883 return unify_success (explain_p);
16885 case FIELD_DECL:
16886 case TEMPLATE_DECL:
16887 /* Matched cases are handled by the ARG == PARM test above. */
16888 return unify_template_argument_mismatch (explain_p, parm, arg);
16890 case VAR_DECL:
16891 /* A non-type template parameter that is a variable should be a
16892 an integral constant, in which case, it whould have been
16893 folded into its (constant) value. So we should not be getting
16894 a variable here. */
16895 gcc_unreachable ();
16897 case TYPE_ARGUMENT_PACK:
16898 case NONTYPE_ARGUMENT_PACK:
16899 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
16900 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
16902 case TYPEOF_TYPE:
16903 case DECLTYPE_TYPE:
16904 case UNDERLYING_TYPE:
16905 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
16906 or UNDERLYING_TYPE nodes. */
16907 return unify_success (explain_p);
16909 case ERROR_MARK:
16910 /* Unification fails if we hit an error node. */
16911 return unify_invalid (explain_p);
16913 default:
16914 /* An unresolved overload is a nondeduced context. */
16915 if (is_overloaded_fn (parm) || type_unknown_p (parm))
16916 return unify_success (explain_p);
16917 gcc_assert (EXPR_P (parm));
16919 /* We must be looking at an expression. This can happen with
16920 something like:
16922 template <int I>
16923 void foo(S<I>, S<I + 2>);
16925 This is a "nondeduced context":
16927 [deduct.type]
16929 The nondeduced contexts are:
16931 --A type that is a template-id in which one or more of
16932 the template-arguments is an expression that references
16933 a template-parameter.
16935 In these cases, we assume deduction succeeded, but don't
16936 actually infer any unifications. */
16938 if (!uses_template_parms (parm)
16939 && !template_args_equal (parm, arg))
16940 return unify_expression_unequal (explain_p, parm, arg);
16941 else
16942 return unify_success (explain_p);
16945 #undef RECUR_AND_CHECK_FAILURE
16947 /* Note that DECL can be defined in this translation unit, if
16948 required. */
16950 static void
16951 mark_definable (tree decl)
16953 tree clone;
16954 DECL_NOT_REALLY_EXTERN (decl) = 1;
16955 FOR_EACH_CLONE (clone, decl)
16956 DECL_NOT_REALLY_EXTERN (clone) = 1;
16959 /* Called if RESULT is explicitly instantiated, or is a member of an
16960 explicitly instantiated class. */
16962 void
16963 mark_decl_instantiated (tree result, int extern_p)
16965 SET_DECL_EXPLICIT_INSTANTIATION (result);
16967 /* If this entity has already been written out, it's too late to
16968 make any modifications. */
16969 if (TREE_ASM_WRITTEN (result))
16970 return;
16972 if (TREE_CODE (result) != FUNCTION_DECL)
16973 /* The TREE_PUBLIC flag for function declarations will have been
16974 set correctly by tsubst. */
16975 TREE_PUBLIC (result) = 1;
16977 /* This might have been set by an earlier implicit instantiation. */
16978 DECL_COMDAT (result) = 0;
16980 if (extern_p)
16981 DECL_NOT_REALLY_EXTERN (result) = 0;
16982 else
16984 mark_definable (result);
16985 /* Always make artificials weak. */
16986 if (DECL_ARTIFICIAL (result) && flag_weak)
16987 comdat_linkage (result);
16988 /* For WIN32 we also want to put explicit instantiations in
16989 linkonce sections. */
16990 else if (TREE_PUBLIC (result))
16991 maybe_make_one_only (result);
16994 /* If EXTERN_P, then this function will not be emitted -- unless
16995 followed by an explicit instantiation, at which point its linkage
16996 will be adjusted. If !EXTERN_P, then this function will be
16997 emitted here. In neither circumstance do we want
16998 import_export_decl to adjust the linkage. */
16999 DECL_INTERFACE_KNOWN (result) = 1;
17002 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
17003 important template arguments. If any are missing, we check whether
17004 they're important by using error_mark_node for substituting into any
17005 args that were used for partial ordering (the ones between ARGS and END)
17006 and seeing if it bubbles up. */
17008 static bool
17009 check_undeduced_parms (tree targs, tree args, tree end)
17011 bool found = false;
17012 int i;
17013 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
17014 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
17016 found = true;
17017 TREE_VEC_ELT (targs, i) = error_mark_node;
17019 if (found)
17021 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
17022 if (substed == error_mark_node)
17023 return true;
17025 return false;
17028 /* Given two function templates PAT1 and PAT2, return:
17030 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
17031 -1 if PAT2 is more specialized than PAT1.
17032 0 if neither is more specialized.
17034 LEN indicates the number of parameters we should consider
17035 (defaulted parameters should not be considered).
17037 The 1998 std underspecified function template partial ordering, and
17038 DR214 addresses the issue. We take pairs of arguments, one from
17039 each of the templates, and deduce them against each other. One of
17040 the templates will be more specialized if all the *other*
17041 template's arguments deduce against its arguments and at least one
17042 of its arguments *does* *not* deduce against the other template's
17043 corresponding argument. Deduction is done as for class templates.
17044 The arguments used in deduction have reference and top level cv
17045 qualifiers removed. Iff both arguments were originally reference
17046 types *and* deduction succeeds in both directions, the template
17047 with the more cv-qualified argument wins for that pairing (if
17048 neither is more cv-qualified, they both are equal). Unlike regular
17049 deduction, after all the arguments have been deduced in this way,
17050 we do *not* verify the deduced template argument values can be
17051 substituted into non-deduced contexts.
17053 The logic can be a bit confusing here, because we look at deduce1 and
17054 targs1 to see if pat2 is at least as specialized, and vice versa; if we
17055 can find template arguments for pat1 to make arg1 look like arg2, that
17056 means that arg2 is at least as specialized as arg1. */
17059 more_specialized_fn (tree pat1, tree pat2, int len)
17061 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
17062 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
17063 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
17064 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
17065 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
17066 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
17067 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
17068 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
17069 tree origs1, origs2;
17070 bool lose1 = false;
17071 bool lose2 = false;
17073 /* Remove the this parameter from non-static member functions. If
17074 one is a non-static member function and the other is not a static
17075 member function, remove the first parameter from that function
17076 also. This situation occurs for operator functions where we
17077 locate both a member function (with this pointer) and non-member
17078 operator (with explicit first operand). */
17079 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
17081 len--; /* LEN is the number of significant arguments for DECL1 */
17082 args1 = TREE_CHAIN (args1);
17083 if (!DECL_STATIC_FUNCTION_P (decl2))
17084 args2 = TREE_CHAIN (args2);
17086 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
17088 args2 = TREE_CHAIN (args2);
17089 if (!DECL_STATIC_FUNCTION_P (decl1))
17091 len--;
17092 args1 = TREE_CHAIN (args1);
17096 /* If only one is a conversion operator, they are unordered. */
17097 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
17098 return 0;
17100 /* Consider the return type for a conversion function */
17101 if (DECL_CONV_FN_P (decl1))
17103 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
17104 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
17105 len++;
17108 processing_template_decl++;
17110 origs1 = args1;
17111 origs2 = args2;
17113 while (len--
17114 /* Stop when an ellipsis is seen. */
17115 && args1 != NULL_TREE && args2 != NULL_TREE)
17117 tree arg1 = TREE_VALUE (args1);
17118 tree arg2 = TREE_VALUE (args2);
17119 int deduce1, deduce2;
17120 int quals1 = -1;
17121 int quals2 = -1;
17123 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17124 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17126 /* When both arguments are pack expansions, we need only
17127 unify the patterns themselves. */
17128 arg1 = PACK_EXPANSION_PATTERN (arg1);
17129 arg2 = PACK_EXPANSION_PATTERN (arg2);
17131 /* This is the last comparison we need to do. */
17132 len = 0;
17135 if (TREE_CODE (arg1) == REFERENCE_TYPE)
17137 arg1 = TREE_TYPE (arg1);
17138 quals1 = cp_type_quals (arg1);
17141 if (TREE_CODE (arg2) == REFERENCE_TYPE)
17143 arg2 = TREE_TYPE (arg2);
17144 quals2 = cp_type_quals (arg2);
17147 arg1 = TYPE_MAIN_VARIANT (arg1);
17148 arg2 = TYPE_MAIN_VARIANT (arg2);
17150 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
17152 int i, len2 = list_length (args2);
17153 tree parmvec = make_tree_vec (1);
17154 tree argvec = make_tree_vec (len2);
17155 tree ta = args2;
17157 /* Setup the parameter vector, which contains only ARG1. */
17158 TREE_VEC_ELT (parmvec, 0) = arg1;
17160 /* Setup the argument vector, which contains the remaining
17161 arguments. */
17162 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
17163 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17165 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
17166 argvec, DEDUCE_EXACT,
17167 /*subr=*/true, /*explain_p=*/false)
17168 == 0);
17170 /* We cannot deduce in the other direction, because ARG1 is
17171 a pack expansion but ARG2 is not. */
17172 deduce2 = 0;
17174 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17176 int i, len1 = list_length (args1);
17177 tree parmvec = make_tree_vec (1);
17178 tree argvec = make_tree_vec (len1);
17179 tree ta = args1;
17181 /* Setup the parameter vector, which contains only ARG1. */
17182 TREE_VEC_ELT (parmvec, 0) = arg2;
17184 /* Setup the argument vector, which contains the remaining
17185 arguments. */
17186 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
17187 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17189 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
17190 argvec, DEDUCE_EXACT,
17191 /*subr=*/true, /*explain_p=*/false)
17192 == 0);
17194 /* We cannot deduce in the other direction, because ARG2 is
17195 a pack expansion but ARG1 is not.*/
17196 deduce1 = 0;
17199 else
17201 /* The normal case, where neither argument is a pack
17202 expansion. */
17203 deduce1 = (unify (tparms1, targs1, arg1, arg2,
17204 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17205 == 0);
17206 deduce2 = (unify (tparms2, targs2, arg2, arg1,
17207 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17208 == 0);
17211 /* If we couldn't deduce arguments for tparms1 to make arg1 match
17212 arg2, then arg2 is not as specialized as arg1. */
17213 if (!deduce1)
17214 lose2 = true;
17215 if (!deduce2)
17216 lose1 = true;
17218 /* "If, for a given type, deduction succeeds in both directions
17219 (i.e., the types are identical after the transformations above)
17220 and if the type from the argument template is more cv-qualified
17221 than the type from the parameter template (as described above)
17222 that type is considered to be more specialized than the other. If
17223 neither type is more cv-qualified than the other then neither type
17224 is more specialized than the other." */
17226 if (deduce1 && deduce2
17227 && quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
17229 if ((quals1 & quals2) == quals2)
17230 lose2 = true;
17231 if ((quals1 & quals2) == quals1)
17232 lose1 = true;
17235 if (lose1 && lose2)
17236 /* We've failed to deduce something in either direction.
17237 These must be unordered. */
17238 break;
17240 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17241 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17242 /* We have already processed all of the arguments in our
17243 handing of the pack expansion type. */
17244 len = 0;
17246 args1 = TREE_CHAIN (args1);
17247 args2 = TREE_CHAIN (args2);
17250 /* "In most cases, all template parameters must have values in order for
17251 deduction to succeed, but for partial ordering purposes a template
17252 parameter may remain without a value provided it is not used in the
17253 types being used for partial ordering."
17255 Thus, if we are missing any of the targs1 we need to substitute into
17256 origs1, then pat2 is not as specialized as pat1. This can happen when
17257 there is a nondeduced context. */
17258 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
17259 lose2 = true;
17260 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
17261 lose1 = true;
17263 processing_template_decl--;
17265 /* All things being equal, if the next argument is a pack expansion
17266 for one function but not for the other, prefer the
17267 non-variadic function. FIXME this is bogus; see c++/41958. */
17268 if (lose1 == lose2
17269 && args1 && TREE_VALUE (args1)
17270 && args2 && TREE_VALUE (args2))
17272 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
17273 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
17276 if (lose1 == lose2)
17277 return 0;
17278 else if (!lose1)
17279 return 1;
17280 else
17281 return -1;
17284 /* Determine which of two partial specializations of MAIN_TMPL is more
17285 specialized.
17287 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
17288 to the first partial specialization. The TREE_VALUE is the
17289 innermost set of template parameters for the partial
17290 specialization. PAT2 is similar, but for the second template.
17292 Return 1 if the first partial specialization is more specialized;
17293 -1 if the second is more specialized; 0 if neither is more
17294 specialized.
17296 See [temp.class.order] for information about determining which of
17297 two templates is more specialized. */
17299 static int
17300 more_specialized_class (tree main_tmpl, tree pat1, tree pat2)
17302 tree targs;
17303 tree tmpl1, tmpl2;
17304 int winner = 0;
17305 bool any_deductions = false;
17307 tmpl1 = TREE_TYPE (pat1);
17308 tmpl2 = TREE_TYPE (pat2);
17310 /* Just like what happens for functions, if we are ordering between
17311 different class template specializations, we may encounter dependent
17312 types in the arguments, and we need our dependency check functions
17313 to behave correctly. */
17314 ++processing_template_decl;
17315 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat1),
17316 CLASSTYPE_TI_ARGS (tmpl1),
17317 CLASSTYPE_TI_ARGS (tmpl2));
17318 if (targs)
17320 --winner;
17321 any_deductions = true;
17324 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat2),
17325 CLASSTYPE_TI_ARGS (tmpl2),
17326 CLASSTYPE_TI_ARGS (tmpl1));
17327 if (targs)
17329 ++winner;
17330 any_deductions = true;
17332 --processing_template_decl;
17334 /* In the case of a tie where at least one of the class templates
17335 has a parameter pack at the end, the template with the most
17336 non-packed parameters wins. */
17337 if (winner == 0
17338 && any_deductions
17339 && (template_args_variadic_p (TREE_PURPOSE (pat1))
17340 || template_args_variadic_p (TREE_PURPOSE (pat2))))
17342 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
17343 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
17344 int len1 = TREE_VEC_LENGTH (args1);
17345 int len2 = TREE_VEC_LENGTH (args2);
17347 /* We don't count the pack expansion at the end. */
17348 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
17349 --len1;
17350 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
17351 --len2;
17353 if (len1 > len2)
17354 return 1;
17355 else if (len1 < len2)
17356 return -1;
17359 return winner;
17362 /* Return the template arguments that will produce the function signature
17363 DECL from the function template FN, with the explicit template
17364 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
17365 also match. Return NULL_TREE if no satisfactory arguments could be
17366 found. */
17368 static tree
17369 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
17371 int ntparms = DECL_NTPARMS (fn);
17372 tree targs = make_tree_vec (ntparms);
17373 tree decl_type = TREE_TYPE (decl);
17374 tree decl_arg_types;
17375 tree *args;
17376 unsigned int nargs, ix;
17377 tree arg;
17379 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
17381 /* Never do unification on the 'this' parameter. */
17382 decl_arg_types = skip_artificial_parms_for (decl,
17383 TYPE_ARG_TYPES (decl_type));
17385 nargs = list_length (decl_arg_types);
17386 args = XALLOCAVEC (tree, nargs);
17387 for (arg = decl_arg_types, ix = 0;
17388 arg != NULL_TREE && arg != void_list_node;
17389 arg = TREE_CHAIN (arg), ++ix)
17390 args[ix] = TREE_VALUE (arg);
17392 if (fn_type_unification (fn, explicit_args, targs,
17393 args, ix,
17394 (check_rettype || DECL_CONV_FN_P (fn)
17395 ? TREE_TYPE (decl_type) : NULL_TREE),
17396 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false)
17397 == error_mark_node)
17398 return NULL_TREE;
17400 return targs;
17403 /* Return the innermost template arguments that, when applied to a partial
17404 specialization of MAIN_TMPL whose innermost template parameters are
17405 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
17406 ARGS.
17408 For example, suppose we have:
17410 template <class T, class U> struct S {};
17411 template <class T> struct S<T*, int> {};
17413 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
17414 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
17415 int}. The resulting vector will be {double}, indicating that `T'
17416 is bound to `double'. */
17418 static tree
17419 get_class_bindings (tree main_tmpl, tree tparms, tree spec_args, tree args)
17421 int i, ntparms = TREE_VEC_LENGTH (tparms);
17422 tree deduced_args;
17423 tree innermost_deduced_args;
17425 innermost_deduced_args = make_tree_vec (ntparms);
17426 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17428 deduced_args = copy_node (args);
17429 SET_TMPL_ARGS_LEVEL (deduced_args,
17430 TMPL_ARGS_DEPTH (deduced_args),
17431 innermost_deduced_args);
17433 else
17434 deduced_args = innermost_deduced_args;
17436 if (unify (tparms, deduced_args,
17437 INNERMOST_TEMPLATE_ARGS (spec_args),
17438 INNERMOST_TEMPLATE_ARGS (args),
17439 UNIFY_ALLOW_NONE, /*explain_p=*/false))
17440 return NULL_TREE;
17442 for (i = 0; i < ntparms; ++i)
17443 if (! TREE_VEC_ELT (innermost_deduced_args, i))
17444 return NULL_TREE;
17446 /* Verify that nondeduced template arguments agree with the type
17447 obtained from argument deduction.
17449 For example:
17451 struct A { typedef int X; };
17452 template <class T, class U> struct C {};
17453 template <class T> struct C<T, typename T::X> {};
17455 Then with the instantiation `C<A, int>', we can deduce that
17456 `T' is `A' but unify () does not check whether `typename T::X'
17457 is `int'. */
17458 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
17459 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (main_tmpl),
17460 spec_args, main_tmpl,
17461 tf_none, false, false);
17462 if (spec_args == error_mark_node
17463 /* We only need to check the innermost arguments; the other
17464 arguments will always agree. */
17465 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
17466 INNERMOST_TEMPLATE_ARGS (args)))
17467 return NULL_TREE;
17469 /* Now that we have bindings for all of the template arguments,
17470 ensure that the arguments deduced for the template template
17471 parameters have compatible template parameter lists. See the use
17472 of template_template_parm_bindings_ok_p in fn_type_unification
17473 for more information. */
17474 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
17475 return NULL_TREE;
17477 return deduced_args;
17480 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
17481 Return the TREE_LIST node with the most specialized template, if
17482 any. If there is no most specialized template, the error_mark_node
17483 is returned.
17485 Note that this function does not look at, or modify, the
17486 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
17487 returned is one of the elements of INSTANTIATIONS, callers may
17488 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
17489 and retrieve it from the value returned. */
17491 tree
17492 most_specialized_instantiation (tree templates)
17494 tree fn, champ;
17496 ++processing_template_decl;
17498 champ = templates;
17499 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
17501 int fate = 0;
17503 if (get_bindings (TREE_VALUE (champ),
17504 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17505 NULL_TREE, /*check_ret=*/true))
17506 fate--;
17508 if (get_bindings (TREE_VALUE (fn),
17509 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17510 NULL_TREE, /*check_ret=*/true))
17511 fate++;
17513 if (fate == -1)
17514 champ = fn;
17515 else if (!fate)
17517 /* Equally specialized, move to next function. If there
17518 is no next function, nothing's most specialized. */
17519 fn = TREE_CHAIN (fn);
17520 champ = fn;
17521 if (!fn)
17522 break;
17526 if (champ)
17527 /* Now verify that champ is better than everything earlier in the
17528 instantiation list. */
17529 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
17530 if (get_bindings (TREE_VALUE (champ),
17531 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17532 NULL_TREE, /*check_ret=*/true)
17533 || !get_bindings (TREE_VALUE (fn),
17534 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17535 NULL_TREE, /*check_ret=*/true))
17537 champ = NULL_TREE;
17538 break;
17541 processing_template_decl--;
17543 if (!champ)
17544 return error_mark_node;
17546 return champ;
17549 /* If DECL is a specialization of some template, return the most
17550 general such template. Otherwise, returns NULL_TREE.
17552 For example, given:
17554 template <class T> struct S { template <class U> void f(U); };
17556 if TMPL is `template <class U> void S<int>::f(U)' this will return
17557 the full template. This function will not trace past partial
17558 specializations, however. For example, given in addition:
17560 template <class T> struct S<T*> { template <class U> void f(U); };
17562 if TMPL is `template <class U> void S<int*>::f(U)' this will return
17563 `template <class T> template <class U> S<T*>::f(U)'. */
17565 tree
17566 most_general_template (tree decl)
17568 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
17569 an immediate specialization. */
17570 if (TREE_CODE (decl) == FUNCTION_DECL)
17572 if (DECL_TEMPLATE_INFO (decl)) {
17573 decl = DECL_TI_TEMPLATE (decl);
17575 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
17576 template friend. */
17577 if (TREE_CODE (decl) != TEMPLATE_DECL)
17578 return NULL_TREE;
17579 } else
17580 return NULL_TREE;
17583 /* Look for more and more general templates. */
17584 while (DECL_TEMPLATE_INFO (decl))
17586 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
17587 (See cp-tree.h for details.) */
17588 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
17589 break;
17591 if (CLASS_TYPE_P (TREE_TYPE (decl))
17592 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
17593 break;
17595 /* Stop if we run into an explicitly specialized class template. */
17596 if (!DECL_NAMESPACE_SCOPE_P (decl)
17597 && DECL_CONTEXT (decl)
17598 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
17599 break;
17601 decl = DECL_TI_TEMPLATE (decl);
17604 return decl;
17607 /* Return the most specialized of the class template partial
17608 specializations of TMPL which can produce TYPE, a specialization of
17609 TMPL. The value returned is actually a TREE_LIST; the TREE_TYPE is
17610 a _TYPE node corresponding to the partial specialization, while the
17611 TREE_PURPOSE is the set of template arguments that must be
17612 substituted into the TREE_TYPE in order to generate TYPE.
17614 If the choice of partial specialization is ambiguous, a diagnostic
17615 is issued, and the error_mark_node is returned. If there are no
17616 partial specializations of TMPL matching TYPE, then NULL_TREE is
17617 returned. */
17619 static tree
17620 most_specialized_class (tree type, tree tmpl, tsubst_flags_t complain)
17622 tree list = NULL_TREE;
17623 tree t;
17624 tree champ;
17625 int fate;
17626 bool ambiguous_p;
17627 tree args;
17628 tree outer_args = NULL_TREE;
17630 tmpl = most_general_template (tmpl);
17631 args = CLASSTYPE_TI_ARGS (type);
17633 /* For determining which partial specialization to use, only the
17634 innermost args are interesting. */
17635 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17637 outer_args = strip_innermost_template_args (args, 1);
17638 args = INNERMOST_TEMPLATE_ARGS (args);
17641 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
17643 tree partial_spec_args;
17644 tree spec_args;
17645 tree parms = TREE_VALUE (t);
17647 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
17649 ++processing_template_decl;
17651 if (outer_args)
17653 int i;
17655 /* Discard the outer levels of args, and then substitute in the
17656 template args from the enclosing class. */
17657 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
17658 partial_spec_args = tsubst_template_args
17659 (partial_spec_args, outer_args, tf_none, NULL_TREE);
17661 /* PARMS already refers to just the innermost parms, but the
17662 template parms in partial_spec_args had their levels lowered
17663 by tsubst, so we need to do the same for the parm list. We
17664 can't just tsubst the TREE_VEC itself, as tsubst wants to
17665 treat a TREE_VEC as an argument vector. */
17666 parms = copy_node (parms);
17667 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
17668 TREE_VEC_ELT (parms, i) =
17669 tsubst (TREE_VEC_ELT (parms, i), outer_args, tf_none, NULL_TREE);
17673 partial_spec_args =
17674 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
17675 add_to_template_args (outer_args,
17676 partial_spec_args),
17677 tmpl, tf_none,
17678 /*require_all_args=*/true,
17679 /*use_default_args=*/true);
17681 --processing_template_decl;
17683 if (partial_spec_args == error_mark_node)
17684 return error_mark_node;
17686 spec_args = get_class_bindings (tmpl, parms,
17687 partial_spec_args,
17688 args);
17689 if (spec_args)
17691 if (outer_args)
17692 spec_args = add_to_template_args (outer_args, spec_args);
17693 list = tree_cons (spec_args, TREE_VALUE (t), list);
17694 TREE_TYPE (list) = TREE_TYPE (t);
17698 if (! list)
17699 return NULL_TREE;
17701 ambiguous_p = false;
17702 t = list;
17703 champ = t;
17704 t = TREE_CHAIN (t);
17705 for (; t; t = TREE_CHAIN (t))
17707 fate = more_specialized_class (tmpl, champ, t);
17708 if (fate == 1)
17710 else
17712 if (fate == 0)
17714 t = TREE_CHAIN (t);
17715 if (! t)
17717 ambiguous_p = true;
17718 break;
17721 champ = t;
17725 if (!ambiguous_p)
17726 for (t = list; t && t != champ; t = TREE_CHAIN (t))
17728 fate = more_specialized_class (tmpl, champ, t);
17729 if (fate != 1)
17731 ambiguous_p = true;
17732 break;
17736 if (ambiguous_p)
17738 const char *str;
17739 char *spaces = NULL;
17740 if (!(complain & tf_error))
17741 return error_mark_node;
17742 error ("ambiguous class template instantiation for %q#T", type);
17743 str = ngettext ("candidate is:", "candidates are:", list_length (list));
17744 for (t = list; t; t = TREE_CHAIN (t))
17746 error ("%s %+#T", spaces ? spaces : str, TREE_TYPE (t));
17747 spaces = spaces ? spaces : get_spaces (str);
17749 free (spaces);
17750 return error_mark_node;
17753 return champ;
17756 /* Explicitly instantiate DECL. */
17758 void
17759 do_decl_instantiation (tree decl, tree storage)
17761 tree result = NULL_TREE;
17762 int extern_p = 0;
17764 if (!decl || decl == error_mark_node)
17765 /* An error occurred, for which grokdeclarator has already issued
17766 an appropriate message. */
17767 return;
17768 else if (! DECL_LANG_SPECIFIC (decl))
17770 error ("explicit instantiation of non-template %q#D", decl);
17771 return;
17773 else if (TREE_CODE (decl) == VAR_DECL)
17775 /* There is an asymmetry here in the way VAR_DECLs and
17776 FUNCTION_DECLs are handled by grokdeclarator. In the case of
17777 the latter, the DECL we get back will be marked as a
17778 template instantiation, and the appropriate
17779 DECL_TEMPLATE_INFO will be set up. This does not happen for
17780 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
17781 should handle VAR_DECLs as it currently handles
17782 FUNCTION_DECLs. */
17783 if (!DECL_CLASS_SCOPE_P (decl))
17785 error ("%qD is not a static data member of a class template", decl);
17786 return;
17788 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
17789 if (!result || TREE_CODE (result) != VAR_DECL)
17791 error ("no matching template for %qD found", decl);
17792 return;
17794 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
17796 error ("type %qT for explicit instantiation %qD does not match "
17797 "declared type %qT", TREE_TYPE (result), decl,
17798 TREE_TYPE (decl));
17799 return;
17802 else if (TREE_CODE (decl) != FUNCTION_DECL)
17804 error ("explicit instantiation of %q#D", decl);
17805 return;
17807 else
17808 result = decl;
17810 /* Check for various error cases. Note that if the explicit
17811 instantiation is valid the RESULT will currently be marked as an
17812 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
17813 until we get here. */
17815 if (DECL_TEMPLATE_SPECIALIZATION (result))
17817 /* DR 259 [temp.spec].
17819 Both an explicit instantiation and a declaration of an explicit
17820 specialization shall not appear in a program unless the explicit
17821 instantiation follows a declaration of the explicit specialization.
17823 For a given set of template parameters, if an explicit
17824 instantiation of a template appears after a declaration of an
17825 explicit specialization for that template, the explicit
17826 instantiation has no effect. */
17827 return;
17829 else if (DECL_EXPLICIT_INSTANTIATION (result))
17831 /* [temp.spec]
17833 No program shall explicitly instantiate any template more
17834 than once.
17836 We check DECL_NOT_REALLY_EXTERN so as not to complain when
17837 the first instantiation was `extern' and the second is not,
17838 and EXTERN_P for the opposite case. */
17839 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
17840 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
17841 /* If an "extern" explicit instantiation follows an ordinary
17842 explicit instantiation, the template is instantiated. */
17843 if (extern_p)
17844 return;
17846 else if (!DECL_IMPLICIT_INSTANTIATION (result))
17848 error ("no matching template for %qD found", result);
17849 return;
17851 else if (!DECL_TEMPLATE_INFO (result))
17853 permerror (input_location, "explicit instantiation of non-template %q#D", result);
17854 return;
17857 if (storage == NULL_TREE)
17859 else if (storage == ridpointers[(int) RID_EXTERN])
17861 if (!in_system_header && (cxx_dialect == cxx98))
17862 pedwarn (input_location, OPT_Wpedantic,
17863 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
17864 "instantiations");
17865 extern_p = 1;
17867 else
17868 error ("storage class %qD applied to template instantiation", storage);
17870 check_explicit_instantiation_namespace (result);
17871 mark_decl_instantiated (result, extern_p);
17872 if (! extern_p)
17873 instantiate_decl (result, /*defer_ok=*/1,
17874 /*expl_inst_class_mem_p=*/false);
17877 static void
17878 mark_class_instantiated (tree t, int extern_p)
17880 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
17881 SET_CLASSTYPE_INTERFACE_KNOWN (t);
17882 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
17883 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
17884 if (! extern_p)
17886 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
17887 rest_of_type_compilation (t, 1);
17891 /* Called from do_type_instantiation through binding_table_foreach to
17892 do recursive instantiation for the type bound in ENTRY. */
17893 static void
17894 bt_instantiate_type_proc (binding_entry entry, void *data)
17896 tree storage = *(tree *) data;
17898 if (MAYBE_CLASS_TYPE_P (entry->type)
17899 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
17900 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
17903 /* Called from do_type_instantiation to instantiate a member
17904 (a member function or a static member variable) of an
17905 explicitly instantiated class template. */
17906 static void
17907 instantiate_class_member (tree decl, int extern_p)
17909 mark_decl_instantiated (decl, extern_p);
17910 if (! extern_p)
17911 instantiate_decl (decl, /*defer_ok=*/1,
17912 /*expl_inst_class_mem_p=*/true);
17915 /* Perform an explicit instantiation of template class T. STORAGE, if
17916 non-null, is the RID for extern, inline or static. COMPLAIN is
17917 nonzero if this is called from the parser, zero if called recursively,
17918 since the standard is unclear (as detailed below). */
17920 void
17921 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
17923 int extern_p = 0;
17924 int nomem_p = 0;
17925 int static_p = 0;
17926 int previous_instantiation_extern_p = 0;
17928 if (TREE_CODE (t) == TYPE_DECL)
17929 t = TREE_TYPE (t);
17931 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
17933 tree tmpl =
17934 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
17935 if (tmpl)
17936 error ("explicit instantiation of non-class template %qD", tmpl);
17937 else
17938 error ("explicit instantiation of non-template type %qT", t);
17939 return;
17942 complete_type (t);
17944 if (!COMPLETE_TYPE_P (t))
17946 if (complain & tf_error)
17947 error ("explicit instantiation of %q#T before definition of template",
17949 return;
17952 if (storage != NULL_TREE)
17954 if (!in_system_header)
17956 if (storage == ridpointers[(int) RID_EXTERN])
17958 if (cxx_dialect == cxx98)
17959 pedwarn (input_location, OPT_Wpedantic,
17960 "ISO C++ 1998 forbids the use of %<extern%> on "
17961 "explicit instantiations");
17963 else
17964 pedwarn (input_location, OPT_Wpedantic,
17965 "ISO C++ forbids the use of %qE"
17966 " on explicit instantiations", storage);
17969 if (storage == ridpointers[(int) RID_INLINE])
17970 nomem_p = 1;
17971 else if (storage == ridpointers[(int) RID_EXTERN])
17972 extern_p = 1;
17973 else if (storage == ridpointers[(int) RID_STATIC])
17974 static_p = 1;
17975 else
17977 error ("storage class %qD applied to template instantiation",
17978 storage);
17979 extern_p = 0;
17983 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
17985 /* DR 259 [temp.spec].
17987 Both an explicit instantiation and a declaration of an explicit
17988 specialization shall not appear in a program unless the explicit
17989 instantiation follows a declaration of the explicit specialization.
17991 For a given set of template parameters, if an explicit
17992 instantiation of a template appears after a declaration of an
17993 explicit specialization for that template, the explicit
17994 instantiation has no effect. */
17995 return;
17997 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
17999 /* [temp.spec]
18001 No program shall explicitly instantiate any template more
18002 than once.
18004 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
18005 instantiation was `extern'. If EXTERN_P then the second is.
18006 These cases are OK. */
18007 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
18009 if (!previous_instantiation_extern_p && !extern_p
18010 && (complain & tf_error))
18011 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
18013 /* If we've already instantiated the template, just return now. */
18014 if (!CLASSTYPE_INTERFACE_ONLY (t))
18015 return;
18018 check_explicit_instantiation_namespace (TYPE_NAME (t));
18019 mark_class_instantiated (t, extern_p);
18021 if (nomem_p)
18022 return;
18025 tree tmp;
18027 /* In contrast to implicit instantiation, where only the
18028 declarations, and not the definitions, of members are
18029 instantiated, we have here:
18031 [temp.explicit]
18033 The explicit instantiation of a class template specialization
18034 implies the instantiation of all of its members not
18035 previously explicitly specialized in the translation unit
18036 containing the explicit instantiation.
18038 Of course, we can't instantiate member template classes, since
18039 we don't have any arguments for them. Note that the standard
18040 is unclear on whether the instantiation of the members are
18041 *explicit* instantiations or not. However, the most natural
18042 interpretation is that it should be an explicit instantiation. */
18044 if (! static_p)
18045 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
18046 if (TREE_CODE (tmp) == FUNCTION_DECL
18047 && DECL_TEMPLATE_INSTANTIATION (tmp))
18048 instantiate_class_member (tmp, extern_p);
18050 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
18051 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
18052 instantiate_class_member (tmp, extern_p);
18054 if (CLASSTYPE_NESTED_UTDS (t))
18055 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
18056 bt_instantiate_type_proc, &storage);
18060 /* Given a function DECL, which is a specialization of TMPL, modify
18061 DECL to be a re-instantiation of TMPL with the same template
18062 arguments. TMPL should be the template into which tsubst'ing
18063 should occur for DECL, not the most general template.
18065 One reason for doing this is a scenario like this:
18067 template <class T>
18068 void f(const T&, int i);
18070 void g() { f(3, 7); }
18072 template <class T>
18073 void f(const T& t, const int i) { }
18075 Note that when the template is first instantiated, with
18076 instantiate_template, the resulting DECL will have no name for the
18077 first parameter, and the wrong type for the second. So, when we go
18078 to instantiate the DECL, we regenerate it. */
18080 static void
18081 regenerate_decl_from_template (tree decl, tree tmpl)
18083 /* The arguments used to instantiate DECL, from the most general
18084 template. */
18085 tree args;
18086 tree code_pattern;
18088 args = DECL_TI_ARGS (decl);
18089 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
18091 /* Make sure that we can see identifiers, and compute access
18092 correctly. */
18093 push_access_scope (decl);
18095 if (TREE_CODE (decl) == FUNCTION_DECL)
18097 tree decl_parm;
18098 tree pattern_parm;
18099 tree specs;
18100 int args_depth;
18101 int parms_depth;
18103 args_depth = TMPL_ARGS_DEPTH (args);
18104 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
18105 if (args_depth > parms_depth)
18106 args = get_innermost_template_args (args, parms_depth);
18108 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
18109 args, tf_error, NULL_TREE,
18110 /*defer_ok*/false);
18111 if (specs && specs != error_mark_node)
18112 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
18113 specs);
18115 /* Merge parameter declarations. */
18116 decl_parm = skip_artificial_parms_for (decl,
18117 DECL_ARGUMENTS (decl));
18118 pattern_parm
18119 = skip_artificial_parms_for (code_pattern,
18120 DECL_ARGUMENTS (code_pattern));
18121 while (decl_parm && !FUNCTION_PARAMETER_PACK_P (pattern_parm))
18123 tree parm_type;
18124 tree attributes;
18126 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18127 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
18128 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
18129 NULL_TREE);
18130 parm_type = type_decays_to (parm_type);
18131 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18132 TREE_TYPE (decl_parm) = parm_type;
18133 attributes = DECL_ATTRIBUTES (pattern_parm);
18134 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18136 DECL_ATTRIBUTES (decl_parm) = attributes;
18137 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18139 decl_parm = DECL_CHAIN (decl_parm);
18140 pattern_parm = DECL_CHAIN (pattern_parm);
18142 /* Merge any parameters that match with the function parameter
18143 pack. */
18144 if (pattern_parm && FUNCTION_PARAMETER_PACK_P (pattern_parm))
18146 int i, len;
18147 tree expanded_types;
18148 /* Expand the TYPE_PACK_EXPANSION that provides the types for
18149 the parameters in this function parameter pack. */
18150 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
18151 args, tf_error, NULL_TREE);
18152 len = TREE_VEC_LENGTH (expanded_types);
18153 for (i = 0; i < len; i++)
18155 tree parm_type;
18156 tree attributes;
18158 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18159 /* Rename the parameter to include the index. */
18160 DECL_NAME (decl_parm) =
18161 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
18162 parm_type = TREE_VEC_ELT (expanded_types, i);
18163 parm_type = type_decays_to (parm_type);
18164 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18165 TREE_TYPE (decl_parm) = parm_type;
18166 attributes = DECL_ATTRIBUTES (pattern_parm);
18167 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18169 DECL_ATTRIBUTES (decl_parm) = attributes;
18170 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18172 decl_parm = DECL_CHAIN (decl_parm);
18175 /* Merge additional specifiers from the CODE_PATTERN. */
18176 if (DECL_DECLARED_INLINE_P (code_pattern)
18177 && !DECL_DECLARED_INLINE_P (decl))
18178 DECL_DECLARED_INLINE_P (decl) = 1;
18180 else if (TREE_CODE (decl) == VAR_DECL)
18182 DECL_INITIAL (decl) =
18183 tsubst_expr (DECL_INITIAL (code_pattern), args,
18184 tf_error, DECL_TI_TEMPLATE (decl),
18185 /*integral_constant_expression_p=*/false);
18186 if (VAR_HAD_UNKNOWN_BOUND (decl))
18187 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
18188 tf_error, DECL_TI_TEMPLATE (decl));
18190 else
18191 gcc_unreachable ();
18193 pop_access_scope (decl);
18196 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
18197 substituted to get DECL. */
18199 tree
18200 template_for_substitution (tree decl)
18202 tree tmpl = DECL_TI_TEMPLATE (decl);
18204 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
18205 for the instantiation. This is not always the most general
18206 template. Consider, for example:
18208 template <class T>
18209 struct S { template <class U> void f();
18210 template <> void f<int>(); };
18212 and an instantiation of S<double>::f<int>. We want TD to be the
18213 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
18214 while (/* An instantiation cannot have a definition, so we need a
18215 more general template. */
18216 DECL_TEMPLATE_INSTANTIATION (tmpl)
18217 /* We must also deal with friend templates. Given:
18219 template <class T> struct S {
18220 template <class U> friend void f() {};
18223 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
18224 so far as the language is concerned, but that's still
18225 where we get the pattern for the instantiation from. On
18226 other hand, if the definition comes outside the class, say:
18228 template <class T> struct S {
18229 template <class U> friend void f();
18231 template <class U> friend void f() {}
18233 we don't need to look any further. That's what the check for
18234 DECL_INITIAL is for. */
18235 || (TREE_CODE (decl) == FUNCTION_DECL
18236 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
18237 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
18239 /* The present template, TD, should not be a definition. If it
18240 were a definition, we should be using it! Note that we
18241 cannot restructure the loop to just keep going until we find
18242 a template with a definition, since that might go too far if
18243 a specialization was declared, but not defined. */
18244 gcc_assert (TREE_CODE (decl) != VAR_DECL
18245 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
18247 /* Fetch the more general template. */
18248 tmpl = DECL_TI_TEMPLATE (tmpl);
18251 return tmpl;
18254 /* Returns true if we need to instantiate this template instance even if we
18255 know we aren't going to emit it.. */
18257 bool
18258 always_instantiate_p (tree decl)
18260 /* We always instantiate inline functions so that we can inline them. An
18261 explicit instantiation declaration prohibits implicit instantiation of
18262 non-inline functions. With high levels of optimization, we would
18263 normally inline non-inline functions -- but we're not allowed to do
18264 that for "extern template" functions. Therefore, we check
18265 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
18266 return ((TREE_CODE (decl) == FUNCTION_DECL
18267 && (DECL_DECLARED_INLINE_P (decl)
18268 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
18269 /* And we need to instantiate static data members so that
18270 their initializers are available in integral constant
18271 expressions. */
18272 || (TREE_CODE (decl) == VAR_DECL
18273 && decl_maybe_constant_var_p (decl)));
18276 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
18277 instantiate it now, modifying TREE_TYPE (fn). */
18279 void
18280 maybe_instantiate_noexcept (tree fn)
18282 tree fntype, spec, noex, clone;
18284 if (DECL_CLONED_FUNCTION_P (fn))
18285 fn = DECL_CLONED_FUNCTION (fn);
18286 fntype = TREE_TYPE (fn);
18287 spec = TYPE_RAISES_EXCEPTIONS (fntype);
18289 if (!DEFERRED_NOEXCEPT_SPEC_P (spec))
18290 return;
18292 noex = TREE_PURPOSE (spec);
18294 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
18296 if (push_tinst_level (fn))
18298 push_access_scope (fn);
18299 input_location = DECL_SOURCE_LOCATION (fn);
18300 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
18301 DEFERRED_NOEXCEPT_ARGS (noex),
18302 tf_warning_or_error, fn,
18303 /*function_p=*/false,
18304 /*integral_constant_expression_p=*/true);
18305 pop_access_scope (fn);
18306 pop_tinst_level ();
18307 spec = build_noexcept_spec (noex, tf_warning_or_error);
18308 if (spec == error_mark_node)
18309 spec = noexcept_false_spec;
18311 else
18312 spec = noexcept_false_spec;
18314 else
18316 /* This is an implicitly declared function, so NOEX is a list of
18317 other functions to evaluate and merge. */
18318 tree elt;
18319 spec = noexcept_true_spec;
18320 for (elt = noex; elt; elt = OVL_NEXT (elt))
18322 tree fn = OVL_CURRENT (elt);
18323 tree subspec;
18324 maybe_instantiate_noexcept (fn);
18325 subspec = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
18326 spec = merge_exception_specifiers (spec, subspec, NULL_TREE);
18330 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
18332 FOR_EACH_CLONE (clone, fn)
18334 if (TREE_TYPE (clone) == fntype)
18335 TREE_TYPE (clone) = TREE_TYPE (fn);
18336 else
18337 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
18341 /* Produce the definition of D, a _DECL generated from a template. If
18342 DEFER_OK is nonzero, then we don't have to actually do the
18343 instantiation now; we just have to do it sometime. Normally it is
18344 an error if this is an explicit instantiation but D is undefined.
18345 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
18346 explicitly instantiated class template. */
18348 tree
18349 instantiate_decl (tree d, int defer_ok,
18350 bool expl_inst_class_mem_p)
18352 tree tmpl = DECL_TI_TEMPLATE (d);
18353 tree gen_args;
18354 tree args;
18355 tree td;
18356 tree code_pattern;
18357 tree spec;
18358 tree gen_tmpl;
18359 bool pattern_defined;
18360 location_t saved_loc = input_location;
18361 bool external_p;
18362 tree fn_context;
18363 bool nested;
18365 /* This function should only be used to instantiate templates for
18366 functions and static member variables. */
18367 gcc_assert (TREE_CODE (d) == FUNCTION_DECL
18368 || TREE_CODE (d) == VAR_DECL);
18370 /* Variables are never deferred; if instantiation is required, they
18371 are instantiated right away. That allows for better code in the
18372 case that an expression refers to the value of the variable --
18373 if the variable has a constant value the referring expression can
18374 take advantage of that fact. */
18375 if (TREE_CODE (d) == VAR_DECL
18376 || DECL_DECLARED_CONSTEXPR_P (d))
18377 defer_ok = 0;
18379 /* Don't instantiate cloned functions. Instead, instantiate the
18380 functions they cloned. */
18381 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
18382 d = DECL_CLONED_FUNCTION (d);
18384 if (DECL_TEMPLATE_INSTANTIATED (d)
18385 || (TREE_CODE (d) == FUNCTION_DECL
18386 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
18387 || DECL_TEMPLATE_SPECIALIZATION (d))
18388 /* D has already been instantiated or explicitly specialized, so
18389 there's nothing for us to do here.
18391 It might seem reasonable to check whether or not D is an explicit
18392 instantiation, and, if so, stop here. But when an explicit
18393 instantiation is deferred until the end of the compilation,
18394 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
18395 the instantiation. */
18396 return d;
18398 /* Check to see whether we know that this template will be
18399 instantiated in some other file, as with "extern template"
18400 extension. */
18401 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
18403 /* In general, we do not instantiate such templates. */
18404 if (external_p && !always_instantiate_p (d))
18405 return d;
18407 gen_tmpl = most_general_template (tmpl);
18408 gen_args = DECL_TI_ARGS (d);
18410 if (tmpl != gen_tmpl)
18411 /* We should already have the extra args. */
18412 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
18413 == TMPL_ARGS_DEPTH (gen_args));
18414 /* And what's in the hash table should match D. */
18415 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
18416 || spec == NULL_TREE);
18418 /* This needs to happen before any tsubsting. */
18419 if (! push_tinst_level (d))
18420 return d;
18422 timevar_push (TV_TEMPLATE_INST);
18424 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
18425 for the instantiation. */
18426 td = template_for_substitution (d);
18427 code_pattern = DECL_TEMPLATE_RESULT (td);
18429 /* We should never be trying to instantiate a member of a class
18430 template or partial specialization. */
18431 gcc_assert (d != code_pattern);
18433 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
18434 || DECL_TEMPLATE_SPECIALIZATION (td))
18435 /* In the case of a friend template whose definition is provided
18436 outside the class, we may have too many arguments. Drop the
18437 ones we don't need. The same is true for specializations. */
18438 args = get_innermost_template_args
18439 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
18440 else
18441 args = gen_args;
18443 if (TREE_CODE (d) == FUNCTION_DECL)
18444 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
18445 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern));
18446 else
18447 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
18449 /* We may be in the middle of deferred access check. Disable it now. */
18450 push_deferring_access_checks (dk_no_deferred);
18452 /* Unless an explicit instantiation directive has already determined
18453 the linkage of D, remember that a definition is available for
18454 this entity. */
18455 if (pattern_defined
18456 && !DECL_INTERFACE_KNOWN (d)
18457 && !DECL_NOT_REALLY_EXTERN (d))
18458 mark_definable (d);
18460 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
18461 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
18462 input_location = DECL_SOURCE_LOCATION (d);
18464 /* If D is a member of an explicitly instantiated class template,
18465 and no definition is available, treat it like an implicit
18466 instantiation. */
18467 if (!pattern_defined && expl_inst_class_mem_p
18468 && DECL_EXPLICIT_INSTANTIATION (d))
18470 /* Leave linkage flags alone on instantiations with anonymous
18471 visibility. */
18472 if (TREE_PUBLIC (d))
18474 DECL_NOT_REALLY_EXTERN (d) = 0;
18475 DECL_INTERFACE_KNOWN (d) = 0;
18477 SET_DECL_IMPLICIT_INSTANTIATION (d);
18480 if (TREE_CODE (d) == FUNCTION_DECL)
18481 maybe_instantiate_noexcept (d);
18483 /* Defer all other templates, unless we have been explicitly
18484 forbidden from doing so. */
18485 if (/* If there is no definition, we cannot instantiate the
18486 template. */
18487 ! pattern_defined
18488 /* If it's OK to postpone instantiation, do so. */
18489 || defer_ok
18490 /* If this is a static data member that will be defined
18491 elsewhere, we don't want to instantiate the entire data
18492 member, but we do want to instantiate the initializer so that
18493 we can substitute that elsewhere. */
18494 || (external_p && TREE_CODE (d) == VAR_DECL))
18496 /* The definition of the static data member is now required so
18497 we must substitute the initializer. */
18498 if (TREE_CODE (d) == VAR_DECL
18499 && !DECL_INITIAL (d)
18500 && DECL_INITIAL (code_pattern))
18502 tree ns;
18503 tree init;
18504 bool const_init = false;
18506 ns = decl_namespace_context (d);
18507 push_nested_namespace (ns);
18508 push_nested_class (DECL_CONTEXT (d));
18509 init = tsubst_expr (DECL_INITIAL (code_pattern),
18510 args,
18511 tf_warning_or_error, NULL_TREE,
18512 /*integral_constant_expression_p=*/false);
18513 /* Make sure the initializer is still constant, in case of
18514 circular dependency (template/instantiate6.C). */
18515 const_init
18516 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18517 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
18518 /*asmspec_tree=*/NULL_TREE,
18519 LOOKUP_ONLYCONVERTING);
18520 pop_nested_class ();
18521 pop_nested_namespace (ns);
18524 /* We restore the source position here because it's used by
18525 add_pending_template. */
18526 input_location = saved_loc;
18528 if (at_eof && !pattern_defined
18529 && DECL_EXPLICIT_INSTANTIATION (d)
18530 && DECL_NOT_REALLY_EXTERN (d))
18531 /* [temp.explicit]
18533 The definition of a non-exported function template, a
18534 non-exported member function template, or a non-exported
18535 member function or static data member of a class template
18536 shall be present in every translation unit in which it is
18537 explicitly instantiated. */
18538 permerror (input_location, "explicit instantiation of %qD "
18539 "but no definition available", d);
18541 /* If we're in unevaluated context, we just wanted to get the
18542 constant value; this isn't an odr use, so don't queue
18543 a full instantiation. */
18544 if (cp_unevaluated_operand != 0)
18545 goto out;
18546 /* ??? Historically, we have instantiated inline functions, even
18547 when marked as "extern template". */
18548 if (!(external_p && TREE_CODE (d) == VAR_DECL))
18549 add_pending_template (d);
18550 goto out;
18552 /* Tell the repository that D is available in this translation unit
18553 -- and see if it is supposed to be instantiated here. */
18554 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
18556 /* In a PCH file, despite the fact that the repository hasn't
18557 requested instantiation in the PCH it is still possible that
18558 an instantiation will be required in a file that includes the
18559 PCH. */
18560 if (pch_file)
18561 add_pending_template (d);
18562 /* Instantiate inline functions so that the inliner can do its
18563 job, even though we'll not be emitting a copy of this
18564 function. */
18565 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
18566 goto out;
18569 fn_context = decl_function_context (d);
18570 nested = (current_function_decl != NULL_TREE);
18571 if (!fn_context)
18572 push_to_top_level ();
18573 else if (nested)
18574 push_function_context ();
18576 /* Mark D as instantiated so that recursive calls to
18577 instantiate_decl do not try to instantiate it again. */
18578 DECL_TEMPLATE_INSTANTIATED (d) = 1;
18580 /* Regenerate the declaration in case the template has been modified
18581 by a subsequent redeclaration. */
18582 regenerate_decl_from_template (d, td);
18584 /* We already set the file and line above. Reset them now in case
18585 they changed as a result of calling regenerate_decl_from_template. */
18586 input_location = DECL_SOURCE_LOCATION (d);
18588 if (TREE_CODE (d) == VAR_DECL)
18590 tree init;
18591 bool const_init = false;
18593 /* Clear out DECL_RTL; whatever was there before may not be right
18594 since we've reset the type of the declaration. */
18595 SET_DECL_RTL (d, NULL);
18596 DECL_IN_AGGR_P (d) = 0;
18598 /* The initializer is placed in DECL_INITIAL by
18599 regenerate_decl_from_template so we don't need to
18600 push/pop_access_scope again here. Pull it out so that
18601 cp_finish_decl can process it. */
18602 init = DECL_INITIAL (d);
18603 DECL_INITIAL (d) = NULL_TREE;
18604 DECL_INITIALIZED_P (d) = 0;
18606 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
18607 initializer. That function will defer actual emission until
18608 we have a chance to determine linkage. */
18609 DECL_EXTERNAL (d) = 0;
18611 /* Enter the scope of D so that access-checking works correctly. */
18612 push_nested_class (DECL_CONTEXT (d));
18613 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18614 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
18615 pop_nested_class ();
18617 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
18618 synthesize_method (d);
18619 else if (TREE_CODE (d) == FUNCTION_DECL)
18621 struct pointer_map_t *saved_local_specializations;
18622 tree subst_decl;
18623 tree tmpl_parm;
18624 tree spec_parm;
18626 /* Save away the current list, in case we are instantiating one
18627 template from within the body of another. */
18628 saved_local_specializations = local_specializations;
18630 /* Set up the list of local specializations. */
18631 local_specializations = pointer_map_create ();
18633 /* Set up context. */
18634 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
18636 /* Some typedefs referenced from within the template code need to be
18637 access checked at template instantiation time, i.e now. These
18638 types were added to the template at parsing time. Let's get those
18639 and perform the access checks then. */
18640 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
18641 gen_args);
18643 /* Create substitution entries for the parameters. */
18644 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
18645 tmpl_parm = DECL_ARGUMENTS (subst_decl);
18646 spec_parm = DECL_ARGUMENTS (d);
18647 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
18649 register_local_specialization (spec_parm, tmpl_parm);
18650 spec_parm = skip_artificial_parms_for (d, spec_parm);
18651 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
18653 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
18655 if (!FUNCTION_PARAMETER_PACK_P (tmpl_parm))
18657 register_local_specialization (spec_parm, tmpl_parm);
18658 spec_parm = DECL_CHAIN (spec_parm);
18660 else
18662 /* Register the (value) argument pack as a specialization of
18663 TMPL_PARM, then move on. */
18664 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
18665 register_local_specialization (argpack, tmpl_parm);
18668 gcc_assert (!spec_parm);
18670 /* Substitute into the body of the function. */
18671 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
18672 tf_warning_or_error, tmpl,
18673 /*integral_constant_expression_p=*/false);
18675 /* Set the current input_location to the end of the function
18676 so that finish_function knows where we are. */
18677 input_location = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
18679 /* We don't need the local specializations any more. */
18680 pointer_map_destroy (local_specializations);
18681 local_specializations = saved_local_specializations;
18683 /* Finish the function. */
18684 d = finish_function (0);
18685 expand_or_defer_fn (d);
18688 /* We're not deferring instantiation any more. */
18689 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
18691 if (!fn_context)
18692 pop_from_top_level ();
18693 else if (nested)
18694 pop_function_context ();
18696 out:
18697 input_location = saved_loc;
18698 pop_deferring_access_checks ();
18699 pop_tinst_level ();
18701 timevar_pop (TV_TEMPLATE_INST);
18703 return d;
18706 /* Run through the list of templates that we wish we could
18707 instantiate, and instantiate any we can. RETRIES is the
18708 number of times we retry pending template instantiation. */
18710 void
18711 instantiate_pending_templates (int retries)
18713 int reconsider;
18714 location_t saved_loc = input_location;
18716 /* Instantiating templates may trigger vtable generation. This in turn
18717 may require further template instantiations. We place a limit here
18718 to avoid infinite loop. */
18719 if (pending_templates && retries >= max_tinst_depth)
18721 tree decl = pending_templates->tinst->decl;
18723 error ("template instantiation depth exceeds maximum of %d"
18724 " instantiating %q+D, possibly from virtual table generation"
18725 " (use -ftemplate-depth= to increase the maximum)",
18726 max_tinst_depth, decl);
18727 if (TREE_CODE (decl) == FUNCTION_DECL)
18728 /* Pretend that we defined it. */
18729 DECL_INITIAL (decl) = error_mark_node;
18730 return;
18735 struct pending_template **t = &pending_templates;
18736 struct pending_template *last = NULL;
18737 reconsider = 0;
18738 while (*t)
18740 tree instantiation = reopen_tinst_level ((*t)->tinst);
18741 bool complete = false;
18743 if (TYPE_P (instantiation))
18745 tree fn;
18747 if (!COMPLETE_TYPE_P (instantiation))
18749 instantiate_class_template (instantiation);
18750 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
18751 for (fn = TYPE_METHODS (instantiation);
18753 fn = TREE_CHAIN (fn))
18754 if (! DECL_ARTIFICIAL (fn))
18755 instantiate_decl (fn,
18756 /*defer_ok=*/0,
18757 /*expl_inst_class_mem_p=*/false);
18758 if (COMPLETE_TYPE_P (instantiation))
18759 reconsider = 1;
18762 complete = COMPLETE_TYPE_P (instantiation);
18764 else
18766 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
18767 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
18769 instantiation
18770 = instantiate_decl (instantiation,
18771 /*defer_ok=*/0,
18772 /*expl_inst_class_mem_p=*/false);
18773 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
18774 reconsider = 1;
18777 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
18778 || DECL_TEMPLATE_INSTANTIATED (instantiation));
18781 if (complete)
18782 /* If INSTANTIATION has been instantiated, then we don't
18783 need to consider it again in the future. */
18784 *t = (*t)->next;
18785 else
18787 last = *t;
18788 t = &(*t)->next;
18790 tinst_depth = 0;
18791 current_tinst_level = NULL;
18793 last_pending_template = last;
18795 while (reconsider);
18797 input_location = saved_loc;
18800 /* Substitute ARGVEC into T, which is a list of initializers for
18801 either base class or a non-static data member. The TREE_PURPOSEs
18802 are DECLs, and the TREE_VALUEs are the initializer values. Used by
18803 instantiate_decl. */
18805 static tree
18806 tsubst_initializer_list (tree t, tree argvec)
18808 tree inits = NULL_TREE;
18810 for (; t; t = TREE_CHAIN (t))
18812 tree decl;
18813 tree init;
18814 tree expanded_bases = NULL_TREE;
18815 tree expanded_arguments = NULL_TREE;
18816 int i, len = 1;
18818 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
18820 tree expr;
18821 tree arg;
18823 /* Expand the base class expansion type into separate base
18824 classes. */
18825 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
18826 tf_warning_or_error,
18827 NULL_TREE);
18828 if (expanded_bases == error_mark_node)
18829 continue;
18831 /* We'll be building separate TREE_LISTs of arguments for
18832 each base. */
18833 len = TREE_VEC_LENGTH (expanded_bases);
18834 expanded_arguments = make_tree_vec (len);
18835 for (i = 0; i < len; i++)
18836 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
18838 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
18839 expand each argument in the TREE_VALUE of t. */
18840 expr = make_node (EXPR_PACK_EXPANSION);
18841 PACK_EXPANSION_LOCAL_P (expr) = true;
18842 PACK_EXPANSION_PARAMETER_PACKS (expr) =
18843 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
18845 if (TREE_VALUE (t) == void_type_node)
18846 /* VOID_TYPE_NODE is used to indicate
18847 value-initialization. */
18849 for (i = 0; i < len; i++)
18850 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
18852 else
18854 /* Substitute parameter packs into each argument in the
18855 TREE_LIST. */
18856 in_base_initializer = 1;
18857 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
18859 tree expanded_exprs;
18861 /* Expand the argument. */
18862 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
18863 expanded_exprs
18864 = tsubst_pack_expansion (expr, argvec,
18865 tf_warning_or_error,
18866 NULL_TREE);
18867 if (expanded_exprs == error_mark_node)
18868 continue;
18870 /* Prepend each of the expanded expressions to the
18871 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
18872 for (i = 0; i < len; i++)
18874 TREE_VEC_ELT (expanded_arguments, i) =
18875 tree_cons (NULL_TREE,
18876 TREE_VEC_ELT (expanded_exprs, i),
18877 TREE_VEC_ELT (expanded_arguments, i));
18880 in_base_initializer = 0;
18882 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
18883 since we built them backwards. */
18884 for (i = 0; i < len; i++)
18886 TREE_VEC_ELT (expanded_arguments, i) =
18887 nreverse (TREE_VEC_ELT (expanded_arguments, i));
18892 for (i = 0; i < len; ++i)
18894 if (expanded_bases)
18896 decl = TREE_VEC_ELT (expanded_bases, i);
18897 decl = expand_member_init (decl);
18898 init = TREE_VEC_ELT (expanded_arguments, i);
18900 else
18902 tree tmp;
18903 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
18904 tf_warning_or_error, NULL_TREE);
18906 decl = expand_member_init (decl);
18907 if (decl && !DECL_P (decl))
18908 in_base_initializer = 1;
18910 init = TREE_VALUE (t);
18911 tmp = init;
18912 if (init != void_type_node)
18913 init = tsubst_expr (init, argvec,
18914 tf_warning_or_error, NULL_TREE,
18915 /*integral_constant_expression_p=*/false);
18916 if (init == NULL_TREE && tmp != NULL_TREE)
18917 /* If we had an initializer but it instantiated to nothing,
18918 value-initialize the object. This will only occur when
18919 the initializer was a pack expansion where the parameter
18920 packs used in that expansion were of length zero. */
18921 init = void_type_node;
18922 in_base_initializer = 0;
18925 if (decl)
18927 init = build_tree_list (decl, init);
18928 TREE_CHAIN (init) = inits;
18929 inits = init;
18933 return inits;
18936 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
18938 static void
18939 set_current_access_from_decl (tree decl)
18941 if (TREE_PRIVATE (decl))
18942 current_access_specifier = access_private_node;
18943 else if (TREE_PROTECTED (decl))
18944 current_access_specifier = access_protected_node;
18945 else
18946 current_access_specifier = access_public_node;
18949 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
18950 is the instantiation (which should have been created with
18951 start_enum) and ARGS are the template arguments to use. */
18953 static void
18954 tsubst_enum (tree tag, tree newtag, tree args)
18956 tree e;
18958 if (SCOPED_ENUM_P (newtag))
18959 begin_scope (sk_scoped_enum, newtag);
18961 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
18963 tree value;
18964 tree decl;
18966 decl = TREE_VALUE (e);
18967 /* Note that in a template enum, the TREE_VALUE is the
18968 CONST_DECL, not the corresponding INTEGER_CST. */
18969 value = tsubst_expr (DECL_INITIAL (decl),
18970 args, tf_warning_or_error, NULL_TREE,
18971 /*integral_constant_expression_p=*/true);
18973 /* Give this enumeration constant the correct access. */
18974 set_current_access_from_decl (decl);
18976 /* Actually build the enumerator itself. */
18977 build_enumerator
18978 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
18981 if (SCOPED_ENUM_P (newtag))
18982 finish_scope ();
18984 finish_enum_value_list (newtag);
18985 finish_enum (newtag);
18987 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
18988 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
18991 /* DECL is a FUNCTION_DECL that is a template specialization. Return
18992 its type -- but without substituting the innermost set of template
18993 arguments. So, innermost set of template parameters will appear in
18994 the type. */
18996 tree
18997 get_mostly_instantiated_function_type (tree decl)
18999 tree fn_type;
19000 tree tmpl;
19001 tree targs;
19002 tree tparms;
19003 int parm_depth;
19005 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
19006 targs = DECL_TI_ARGS (decl);
19007 tparms = DECL_TEMPLATE_PARMS (tmpl);
19008 parm_depth = TMPL_PARMS_DEPTH (tparms);
19010 /* There should be as many levels of arguments as there are levels
19011 of parameters. */
19012 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
19014 fn_type = TREE_TYPE (tmpl);
19016 if (parm_depth == 1)
19017 /* No substitution is necessary. */
19019 else
19021 int i;
19022 tree partial_args;
19024 /* Replace the innermost level of the TARGS with NULL_TREEs to
19025 let tsubst know not to substitute for those parameters. */
19026 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
19027 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
19028 SET_TMPL_ARGS_LEVEL (partial_args, i,
19029 TMPL_ARGS_LEVEL (targs, i));
19030 SET_TMPL_ARGS_LEVEL (partial_args,
19031 TMPL_ARGS_DEPTH (targs),
19032 make_tree_vec (DECL_NTPARMS (tmpl)));
19034 /* Make sure that we can see identifiers, and compute access
19035 correctly. */
19036 push_access_scope (decl);
19038 ++processing_template_decl;
19039 /* Now, do the (partial) substitution to figure out the
19040 appropriate function type. */
19041 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
19042 --processing_template_decl;
19044 /* Substitute into the template parameters to obtain the real
19045 innermost set of parameters. This step is important if the
19046 innermost set of template parameters contains value
19047 parameters whose types depend on outer template parameters. */
19048 TREE_VEC_LENGTH (partial_args)--;
19049 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
19051 pop_access_scope (decl);
19054 return fn_type;
19057 /* Return truthvalue if we're processing a template different from
19058 the last one involved in diagnostics. */
19060 problematic_instantiation_changed (void)
19062 return current_tinst_level != last_error_tinst_level;
19065 /* Remember current template involved in diagnostics. */
19066 void
19067 record_last_problematic_instantiation (void)
19069 last_error_tinst_level = current_tinst_level;
19072 struct tinst_level *
19073 current_instantiation (void)
19075 return current_tinst_level;
19078 /* [temp.param] Check that template non-type parm TYPE is of an allowable
19079 type. Return zero for ok, nonzero for disallowed. Issue error and
19080 warning messages under control of COMPLAIN. */
19082 static int
19083 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
19085 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
19086 return 0;
19087 else if (POINTER_TYPE_P (type))
19088 return 0;
19089 else if (TYPE_PTRMEM_P (type))
19090 return 0;
19091 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
19092 return 0;
19093 else if (TREE_CODE (type) == TYPENAME_TYPE)
19094 return 0;
19095 else if (TREE_CODE (type) == DECLTYPE_TYPE)
19096 return 0;
19097 else if (TREE_CODE (type) == NULLPTR_TYPE)
19098 return 0;
19100 if (complain & tf_error)
19102 if (type == error_mark_node)
19103 inform (input_location, "invalid template non-type parameter");
19104 else
19105 error ("%q#T is not a valid type for a template non-type parameter",
19106 type);
19108 return 1;
19111 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
19112 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
19114 static bool
19115 dependent_type_p_r (tree type)
19117 tree scope;
19119 /* [temp.dep.type]
19121 A type is dependent if it is:
19123 -- a template parameter. Template template parameters are types
19124 for us (since TYPE_P holds true for them) so we handle
19125 them here. */
19126 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
19127 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
19128 return true;
19129 /* -- a qualified-id with a nested-name-specifier which contains a
19130 class-name that names a dependent type or whose unqualified-id
19131 names a dependent type. */
19132 if (TREE_CODE (type) == TYPENAME_TYPE)
19133 return true;
19134 /* -- a cv-qualified type where the cv-unqualified type is
19135 dependent. */
19136 type = TYPE_MAIN_VARIANT (type);
19137 /* -- a compound type constructed from any dependent type. */
19138 if (TYPE_PTRMEM_P (type))
19139 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
19140 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
19141 (type)));
19142 else if (TREE_CODE (type) == POINTER_TYPE
19143 || TREE_CODE (type) == REFERENCE_TYPE)
19144 return dependent_type_p (TREE_TYPE (type));
19145 else if (TREE_CODE (type) == FUNCTION_TYPE
19146 || TREE_CODE (type) == METHOD_TYPE)
19148 tree arg_type;
19150 if (dependent_type_p (TREE_TYPE (type)))
19151 return true;
19152 for (arg_type = TYPE_ARG_TYPES (type);
19153 arg_type;
19154 arg_type = TREE_CHAIN (arg_type))
19155 if (dependent_type_p (TREE_VALUE (arg_type)))
19156 return true;
19157 return false;
19159 /* -- an array type constructed from any dependent type or whose
19160 size is specified by a constant expression that is
19161 value-dependent.
19163 We checked for type- and value-dependence of the bounds in
19164 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
19165 if (TREE_CODE (type) == ARRAY_TYPE)
19167 if (TYPE_DOMAIN (type)
19168 && dependent_type_p (TYPE_DOMAIN (type)))
19169 return true;
19170 return dependent_type_p (TREE_TYPE (type));
19173 /* -- a template-id in which either the template name is a template
19174 parameter ... */
19175 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
19176 return true;
19177 /* ... or any of the template arguments is a dependent type or
19178 an expression that is type-dependent or value-dependent. */
19179 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
19180 && (any_dependent_template_arguments_p
19181 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
19182 return true;
19184 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
19185 dependent; if the argument of the `typeof' expression is not
19186 type-dependent, then it should already been have resolved. */
19187 if (TREE_CODE (type) == TYPEOF_TYPE
19188 || TREE_CODE (type) == DECLTYPE_TYPE
19189 || TREE_CODE (type) == UNDERLYING_TYPE)
19190 return true;
19192 /* A template argument pack is dependent if any of its packed
19193 arguments are. */
19194 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
19196 tree args = ARGUMENT_PACK_ARGS (type);
19197 int i, len = TREE_VEC_LENGTH (args);
19198 for (i = 0; i < len; ++i)
19199 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
19200 return true;
19203 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
19204 be template parameters. */
19205 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
19206 return true;
19208 /* The standard does not specifically mention types that are local
19209 to template functions or local classes, but they should be
19210 considered dependent too. For example:
19212 template <int I> void f() {
19213 enum E { a = I };
19214 S<sizeof (E)> s;
19217 The size of `E' cannot be known until the value of `I' has been
19218 determined. Therefore, `E' must be considered dependent. */
19219 scope = TYPE_CONTEXT (type);
19220 if (scope && TYPE_P (scope))
19221 return dependent_type_p (scope);
19222 /* Don't use type_dependent_expression_p here, as it can lead
19223 to infinite recursion trying to determine whether a lambda
19224 nested in a lambda is dependent (c++/47687). */
19225 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
19226 && DECL_LANG_SPECIFIC (scope)
19227 && DECL_TEMPLATE_INFO (scope)
19228 && (any_dependent_template_arguments_p
19229 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
19230 return true;
19232 /* Other types are non-dependent. */
19233 return false;
19236 /* Returns TRUE if TYPE is dependent, in the sense of
19237 [temp.dep.type]. Note that a NULL type is considered dependent. */
19239 bool
19240 dependent_type_p (tree type)
19242 /* If there are no template parameters in scope, then there can't be
19243 any dependent types. */
19244 if (!processing_template_decl)
19246 /* If we are not processing a template, then nobody should be
19247 providing us with a dependent type. */
19248 gcc_assert (type);
19249 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
19250 return false;
19253 /* If the type is NULL, we have not computed a type for the entity
19254 in question; in that case, the type is dependent. */
19255 if (!type)
19256 return true;
19258 /* Erroneous types can be considered non-dependent. */
19259 if (type == error_mark_node)
19260 return false;
19262 /* If we have not already computed the appropriate value for TYPE,
19263 do so now. */
19264 if (!TYPE_DEPENDENT_P_VALID (type))
19266 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
19267 TYPE_DEPENDENT_P_VALID (type) = 1;
19270 return TYPE_DEPENDENT_P (type);
19273 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
19274 lookup. In other words, a dependent type that is not the current
19275 instantiation. */
19277 bool
19278 dependent_scope_p (tree scope)
19280 return (scope && TYPE_P (scope) && dependent_type_p (scope)
19281 && !currently_open_class (scope));
19284 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
19285 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
19286 expression. */
19288 /* Note that this predicate is not appropriate for general expressions;
19289 only constant expressions (that satisfy potential_constant_expression)
19290 can be tested for value dependence. */
19292 bool
19293 value_dependent_expression_p (tree expression)
19295 if (!processing_template_decl)
19296 return false;
19298 /* A name declared with a dependent type. */
19299 if (DECL_P (expression) && type_dependent_expression_p (expression))
19300 return true;
19302 switch (TREE_CODE (expression))
19304 case IDENTIFIER_NODE:
19305 /* A name that has not been looked up -- must be dependent. */
19306 return true;
19308 case TEMPLATE_PARM_INDEX:
19309 /* A non-type template parm. */
19310 return true;
19312 case CONST_DECL:
19313 /* A non-type template parm. */
19314 if (DECL_TEMPLATE_PARM_P (expression))
19315 return true;
19316 return value_dependent_expression_p (DECL_INITIAL (expression));
19318 case VAR_DECL:
19319 /* A constant with literal type and is initialized
19320 with an expression that is value-dependent.
19322 Note that a non-dependent parenthesized initializer will have
19323 already been replaced with its constant value, so if we see
19324 a TREE_LIST it must be dependent. */
19325 if (DECL_INITIAL (expression)
19326 && decl_constant_var_p (expression)
19327 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
19328 || value_dependent_expression_p (DECL_INITIAL (expression))))
19329 return true;
19330 return false;
19332 case DYNAMIC_CAST_EXPR:
19333 case STATIC_CAST_EXPR:
19334 case CONST_CAST_EXPR:
19335 case REINTERPRET_CAST_EXPR:
19336 case CAST_EXPR:
19337 /* These expressions are value-dependent if the type to which
19338 the cast occurs is dependent or the expression being casted
19339 is value-dependent. */
19341 tree type = TREE_TYPE (expression);
19343 if (dependent_type_p (type))
19344 return true;
19346 /* A functional cast has a list of operands. */
19347 expression = TREE_OPERAND (expression, 0);
19348 if (!expression)
19350 /* If there are no operands, it must be an expression such
19351 as "int()". This should not happen for aggregate types
19352 because it would form non-constant expressions. */
19353 gcc_assert (cxx_dialect >= cxx0x
19354 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
19356 return false;
19359 if (TREE_CODE (expression) == TREE_LIST)
19360 return any_value_dependent_elements_p (expression);
19362 return value_dependent_expression_p (expression);
19365 case SIZEOF_EXPR:
19366 if (SIZEOF_EXPR_TYPE_P (expression))
19367 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
19368 /* FALLTHRU */
19369 case ALIGNOF_EXPR:
19370 case TYPEID_EXPR:
19371 /* A `sizeof' expression is value-dependent if the operand is
19372 type-dependent or is a pack expansion. */
19373 expression = TREE_OPERAND (expression, 0);
19374 if (PACK_EXPANSION_P (expression))
19375 return true;
19376 else if (TYPE_P (expression))
19377 return dependent_type_p (expression);
19378 return instantiation_dependent_expression_p (expression);
19380 case AT_ENCODE_EXPR:
19381 /* An 'encode' expression is value-dependent if the operand is
19382 type-dependent. */
19383 expression = TREE_OPERAND (expression, 0);
19384 return dependent_type_p (expression);
19386 case NOEXCEPT_EXPR:
19387 expression = TREE_OPERAND (expression, 0);
19388 return instantiation_dependent_expression_p (expression);
19390 case SCOPE_REF:
19391 /* instantiation_dependent_r treats this as dependent so that we
19392 check access at instantiation time, and all instantiation-dependent
19393 expressions should also be considered value-dependent. */
19394 return true;
19396 case COMPONENT_REF:
19397 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
19398 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
19400 case NONTYPE_ARGUMENT_PACK:
19401 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
19402 is value-dependent. */
19404 tree values = ARGUMENT_PACK_ARGS (expression);
19405 int i, len = TREE_VEC_LENGTH (values);
19407 for (i = 0; i < len; ++i)
19408 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
19409 return true;
19411 return false;
19414 case TRAIT_EXPR:
19416 tree type2 = TRAIT_EXPR_TYPE2 (expression);
19417 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
19418 || (type2 ? dependent_type_p (type2) : false));
19421 case MODOP_EXPR:
19422 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19423 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
19425 case ARRAY_REF:
19426 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19427 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
19429 case ADDR_EXPR:
19431 tree op = TREE_OPERAND (expression, 0);
19432 return (value_dependent_expression_p (op)
19433 || has_value_dependent_address (op));
19436 case CALL_EXPR:
19438 tree fn = get_callee_fndecl (expression);
19439 int i, nargs;
19440 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
19441 return true;
19442 nargs = call_expr_nargs (expression);
19443 for (i = 0; i < nargs; ++i)
19445 tree op = CALL_EXPR_ARG (expression, i);
19446 /* In a call to a constexpr member function, look through the
19447 implicit ADDR_EXPR on the object argument so that it doesn't
19448 cause the call to be considered value-dependent. We also
19449 look through it in potential_constant_expression. */
19450 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
19451 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
19452 && TREE_CODE (op) == ADDR_EXPR)
19453 op = TREE_OPERAND (op, 0);
19454 if (value_dependent_expression_p (op))
19455 return true;
19457 return false;
19460 case TEMPLATE_ID_EXPR:
19461 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
19462 type-dependent. */
19463 return type_dependent_expression_p (expression);
19465 case CONSTRUCTOR:
19467 unsigned ix;
19468 tree val;
19469 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
19470 if (value_dependent_expression_p (val))
19471 return true;
19472 return false;
19475 case STMT_EXPR:
19476 /* Treat a GNU statement expression as dependent to avoid crashing
19477 under fold_non_dependent_expr; it can't be constant. */
19478 return true;
19480 default:
19481 /* A constant expression is value-dependent if any subexpression is
19482 value-dependent. */
19483 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
19485 case tcc_reference:
19486 case tcc_unary:
19487 case tcc_comparison:
19488 case tcc_binary:
19489 case tcc_expression:
19490 case tcc_vl_exp:
19492 int i, len = cp_tree_operand_length (expression);
19494 for (i = 0; i < len; i++)
19496 tree t = TREE_OPERAND (expression, i);
19498 /* In some cases, some of the operands may be missing.l
19499 (For example, in the case of PREDECREMENT_EXPR, the
19500 amount to increment by may be missing.) That doesn't
19501 make the expression dependent. */
19502 if (t && value_dependent_expression_p (t))
19503 return true;
19506 break;
19507 default:
19508 break;
19510 break;
19513 /* The expression is not value-dependent. */
19514 return false;
19517 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
19518 [temp.dep.expr]. Note that an expression with no type is
19519 considered dependent. Other parts of the compiler arrange for an
19520 expression with type-dependent subexpressions to have no type, so
19521 this function doesn't have to be fully recursive. */
19523 bool
19524 type_dependent_expression_p (tree expression)
19526 if (!processing_template_decl)
19527 return false;
19529 if (expression == error_mark_node)
19530 return false;
19532 /* An unresolved name is always dependent. */
19533 if (TREE_CODE (expression) == IDENTIFIER_NODE
19534 || TREE_CODE (expression) == USING_DECL)
19535 return true;
19537 /* Some expression forms are never type-dependent. */
19538 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
19539 || TREE_CODE (expression) == SIZEOF_EXPR
19540 || TREE_CODE (expression) == ALIGNOF_EXPR
19541 || TREE_CODE (expression) == AT_ENCODE_EXPR
19542 || TREE_CODE (expression) == NOEXCEPT_EXPR
19543 || TREE_CODE (expression) == TRAIT_EXPR
19544 || TREE_CODE (expression) == TYPEID_EXPR
19545 || TREE_CODE (expression) == DELETE_EXPR
19546 || TREE_CODE (expression) == VEC_DELETE_EXPR
19547 || TREE_CODE (expression) == THROW_EXPR)
19548 return false;
19550 /* The types of these expressions depends only on the type to which
19551 the cast occurs. */
19552 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
19553 || TREE_CODE (expression) == STATIC_CAST_EXPR
19554 || TREE_CODE (expression) == CONST_CAST_EXPR
19555 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
19556 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
19557 || TREE_CODE (expression) == CAST_EXPR)
19558 return dependent_type_p (TREE_TYPE (expression));
19560 /* The types of these expressions depends only on the type created
19561 by the expression. */
19562 if (TREE_CODE (expression) == NEW_EXPR
19563 || TREE_CODE (expression) == VEC_NEW_EXPR)
19565 /* For NEW_EXPR tree nodes created inside a template, either
19566 the object type itself or a TREE_LIST may appear as the
19567 operand 1. */
19568 tree type = TREE_OPERAND (expression, 1);
19569 if (TREE_CODE (type) == TREE_LIST)
19570 /* This is an array type. We need to check array dimensions
19571 as well. */
19572 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
19573 || value_dependent_expression_p
19574 (TREE_OPERAND (TREE_VALUE (type), 1));
19575 else
19576 return dependent_type_p (type);
19579 if (TREE_CODE (expression) == SCOPE_REF)
19581 tree scope = TREE_OPERAND (expression, 0);
19582 tree name = TREE_OPERAND (expression, 1);
19584 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
19585 contains an identifier associated by name lookup with one or more
19586 declarations declared with a dependent type, or...a
19587 nested-name-specifier or qualified-id that names a member of an
19588 unknown specialization. */
19589 return (type_dependent_expression_p (name)
19590 || dependent_scope_p (scope));
19593 if (TREE_CODE (expression) == FUNCTION_DECL
19594 && DECL_LANG_SPECIFIC (expression)
19595 && DECL_TEMPLATE_INFO (expression)
19596 && (any_dependent_template_arguments_p
19597 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
19598 return true;
19600 if (TREE_CODE (expression) == TEMPLATE_DECL
19601 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
19602 return false;
19604 if (TREE_CODE (expression) == STMT_EXPR)
19605 expression = stmt_expr_value_expr (expression);
19607 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
19609 tree elt;
19610 unsigned i;
19612 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
19614 if (type_dependent_expression_p (elt))
19615 return true;
19617 return false;
19620 /* A static data member of the current instantiation with incomplete
19621 array type is type-dependent, as the definition and specializations
19622 can have different bounds. */
19623 if (TREE_CODE (expression) == VAR_DECL
19624 && DECL_CLASS_SCOPE_P (expression)
19625 && dependent_type_p (DECL_CONTEXT (expression))
19626 && VAR_HAD_UNKNOWN_BOUND (expression))
19627 return true;
19629 if (TREE_TYPE (expression) == unknown_type_node)
19631 if (TREE_CODE (expression) == ADDR_EXPR)
19632 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
19633 if (TREE_CODE (expression) == COMPONENT_REF
19634 || TREE_CODE (expression) == OFFSET_REF)
19636 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
19637 return true;
19638 expression = TREE_OPERAND (expression, 1);
19639 if (TREE_CODE (expression) == IDENTIFIER_NODE)
19640 return false;
19642 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
19643 if (TREE_CODE (expression) == SCOPE_REF)
19644 return false;
19646 if (BASELINK_P (expression))
19647 expression = BASELINK_FUNCTIONS (expression);
19649 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
19651 if (any_dependent_template_arguments_p
19652 (TREE_OPERAND (expression, 1)))
19653 return true;
19654 expression = TREE_OPERAND (expression, 0);
19656 gcc_assert (TREE_CODE (expression) == OVERLOAD
19657 || TREE_CODE (expression) == FUNCTION_DECL);
19659 while (expression)
19661 if (type_dependent_expression_p (OVL_CURRENT (expression)))
19662 return true;
19663 expression = OVL_NEXT (expression);
19665 return false;
19668 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
19670 return (dependent_type_p (TREE_TYPE (expression)));
19673 /* walk_tree callback function for instantiation_dependent_expression_p,
19674 below. Returns non-zero if a dependent subexpression is found. */
19676 static tree
19677 instantiation_dependent_r (tree *tp, int *walk_subtrees,
19678 void * /*data*/)
19680 if (TYPE_P (*tp))
19682 /* We don't have to worry about decltype currently because decltype
19683 of an instantiation-dependent expr is a dependent type. This
19684 might change depending on the resolution of DR 1172. */
19685 *walk_subtrees = false;
19686 return NULL_TREE;
19688 enum tree_code code = TREE_CODE (*tp);
19689 switch (code)
19691 /* Don't treat an argument list as dependent just because it has no
19692 TREE_TYPE. */
19693 case TREE_LIST:
19694 case TREE_VEC:
19695 return NULL_TREE;
19697 case TEMPLATE_PARM_INDEX:
19698 return *tp;
19700 /* Handle expressions with type operands. */
19701 case SIZEOF_EXPR:
19702 case ALIGNOF_EXPR:
19703 case TYPEID_EXPR:
19704 case AT_ENCODE_EXPR:
19705 case TRAIT_EXPR:
19707 tree op = TREE_OPERAND (*tp, 0);
19708 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
19709 op = TREE_TYPE (op);
19710 if (TYPE_P (op))
19712 if (dependent_type_p (op)
19713 || (code == TRAIT_EXPR
19714 && dependent_type_p (TREE_OPERAND (*tp, 1))))
19715 return *tp;
19716 else
19718 *walk_subtrees = false;
19719 return NULL_TREE;
19722 break;
19725 case COMPONENT_REF:
19726 if (TREE_CODE (TREE_OPERAND (*tp, 1)) == IDENTIFIER_NODE)
19727 /* In a template, finish_class_member_access_expr creates a
19728 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
19729 type-dependent, so that we can check access control at
19730 instantiation time (PR 42277). See also Core issue 1273. */
19731 return *tp;
19732 break;
19734 case SCOPE_REF:
19735 /* Similarly, finish_qualified_id_expr builds up a SCOPE_REF in a
19736 template so that we can check access at instantiation time even
19737 though we know which member it resolves to. */
19738 return *tp;
19740 default:
19741 break;
19744 if (type_dependent_expression_p (*tp))
19745 return *tp;
19746 else
19747 return NULL_TREE;
19750 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
19751 sense defined by the ABI:
19753 "An expression is instantiation-dependent if it is type-dependent
19754 or value-dependent, or it has a subexpression that is type-dependent
19755 or value-dependent." */
19757 bool
19758 instantiation_dependent_expression_p (tree expression)
19760 tree result;
19762 if (!processing_template_decl)
19763 return false;
19765 if (expression == error_mark_node)
19766 return false;
19768 result = cp_walk_tree_without_duplicates (&expression,
19769 instantiation_dependent_r, NULL);
19770 return result != NULL_TREE;
19773 /* Like type_dependent_expression_p, but it also works while not processing
19774 a template definition, i.e. during substitution or mangling. */
19776 bool
19777 type_dependent_expression_p_push (tree expr)
19779 bool b;
19780 ++processing_template_decl;
19781 b = type_dependent_expression_p (expr);
19782 --processing_template_decl;
19783 return b;
19786 /* Returns TRUE if ARGS contains a type-dependent expression. */
19788 bool
19789 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
19791 unsigned int i;
19792 tree arg;
19794 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
19796 if (type_dependent_expression_p (arg))
19797 return true;
19799 return false;
19802 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
19803 expressions) contains any type-dependent expressions. */
19805 bool
19806 any_type_dependent_elements_p (const_tree list)
19808 for (; list; list = TREE_CHAIN (list))
19809 if (value_dependent_expression_p (TREE_VALUE (list)))
19810 return true;
19812 return false;
19815 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
19816 expressions) contains any value-dependent expressions. */
19818 bool
19819 any_value_dependent_elements_p (const_tree list)
19821 for (; list; list = TREE_CHAIN (list))
19822 if (value_dependent_expression_p (TREE_VALUE (list)))
19823 return true;
19825 return false;
19828 /* Returns TRUE if the ARG (a template argument) is dependent. */
19830 bool
19831 dependent_template_arg_p (tree arg)
19833 if (!processing_template_decl)
19834 return false;
19836 /* Assume a template argument that was wrongly written by the user
19837 is dependent. This is consistent with what
19838 any_dependent_template_arguments_p [that calls this function]
19839 does. */
19840 if (!arg || arg == error_mark_node)
19841 return true;
19843 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
19844 arg = ARGUMENT_PACK_SELECT_ARG (arg);
19846 if (TREE_CODE (arg) == TEMPLATE_DECL
19847 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
19848 return dependent_template_p (arg);
19849 else if (ARGUMENT_PACK_P (arg))
19851 tree args = ARGUMENT_PACK_ARGS (arg);
19852 int i, len = TREE_VEC_LENGTH (args);
19853 for (i = 0; i < len; ++i)
19855 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
19856 return true;
19859 return false;
19861 else if (TYPE_P (arg))
19862 return dependent_type_p (arg);
19863 else
19864 return (type_dependent_expression_p (arg)
19865 || value_dependent_expression_p (arg));
19868 /* Returns true if ARGS (a collection of template arguments) contains
19869 any types that require structural equality testing. */
19871 bool
19872 any_template_arguments_need_structural_equality_p (tree args)
19874 int i;
19875 int j;
19877 if (!args)
19878 return false;
19879 if (args == error_mark_node)
19880 return true;
19882 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
19884 tree level = TMPL_ARGS_LEVEL (args, i + 1);
19885 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
19887 tree arg = TREE_VEC_ELT (level, j);
19888 tree packed_args = NULL_TREE;
19889 int k, len = 1;
19891 if (ARGUMENT_PACK_P (arg))
19893 /* Look inside the argument pack. */
19894 packed_args = ARGUMENT_PACK_ARGS (arg);
19895 len = TREE_VEC_LENGTH (packed_args);
19898 for (k = 0; k < len; ++k)
19900 if (packed_args)
19901 arg = TREE_VEC_ELT (packed_args, k);
19903 if (error_operand_p (arg))
19904 return true;
19905 else if (TREE_CODE (arg) == TEMPLATE_DECL
19906 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
19907 continue;
19908 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
19909 return true;
19910 else if (!TYPE_P (arg) && TREE_TYPE (arg)
19911 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
19912 return true;
19917 return false;
19920 /* Returns true if ARGS (a collection of template arguments) contains
19921 any dependent arguments. */
19923 bool
19924 any_dependent_template_arguments_p (const_tree args)
19926 int i;
19927 int j;
19929 if (!args)
19930 return false;
19931 if (args == error_mark_node)
19932 return true;
19934 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
19936 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
19937 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
19938 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
19939 return true;
19942 return false;
19945 /* Returns TRUE if the template TMPL is dependent. */
19947 bool
19948 dependent_template_p (tree tmpl)
19950 if (TREE_CODE (tmpl) == OVERLOAD)
19952 while (tmpl)
19954 if (dependent_template_p (OVL_CURRENT (tmpl)))
19955 return true;
19956 tmpl = OVL_NEXT (tmpl);
19958 return false;
19961 /* Template template parameters are dependent. */
19962 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
19963 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
19964 return true;
19965 /* So are names that have not been looked up. */
19966 if (TREE_CODE (tmpl) == SCOPE_REF
19967 || TREE_CODE (tmpl) == IDENTIFIER_NODE)
19968 return true;
19969 /* So are member templates of dependent classes. */
19970 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
19971 return dependent_type_p (DECL_CONTEXT (tmpl));
19972 return false;
19975 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
19977 bool
19978 dependent_template_id_p (tree tmpl, tree args)
19980 return (dependent_template_p (tmpl)
19981 || any_dependent_template_arguments_p (args));
19984 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
19985 is dependent. */
19987 bool
19988 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
19990 int i;
19992 if (!processing_template_decl)
19993 return false;
19995 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
19997 tree decl = TREE_VEC_ELT (declv, i);
19998 tree init = TREE_VEC_ELT (initv, i);
19999 tree cond = TREE_VEC_ELT (condv, i);
20000 tree incr = TREE_VEC_ELT (incrv, i);
20002 if (type_dependent_expression_p (decl))
20003 return true;
20005 if (init && type_dependent_expression_p (init))
20006 return true;
20008 if (type_dependent_expression_p (cond))
20009 return true;
20011 if (COMPARISON_CLASS_P (cond)
20012 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
20013 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
20014 return true;
20016 if (TREE_CODE (incr) == MODOP_EXPR)
20018 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
20019 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
20020 return true;
20022 else if (type_dependent_expression_p (incr))
20023 return true;
20024 else if (TREE_CODE (incr) == MODIFY_EXPR)
20026 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
20027 return true;
20028 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
20030 tree t = TREE_OPERAND (incr, 1);
20031 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
20032 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
20033 return true;
20038 return false;
20041 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
20042 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
20043 no such TYPE can be found. Note that this function peers inside
20044 uninstantiated templates and therefore should be used only in
20045 extremely limited situations. ONLY_CURRENT_P restricts this
20046 peering to the currently open classes hierarchy (which is required
20047 when comparing types). */
20049 tree
20050 resolve_typename_type (tree type, bool only_current_p)
20052 tree scope;
20053 tree name;
20054 tree decl;
20055 int quals;
20056 tree pushed_scope;
20057 tree result;
20059 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
20061 scope = TYPE_CONTEXT (type);
20062 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
20063 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
20064 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
20065 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
20066 identifier of the TYPENAME_TYPE anymore.
20067 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
20068 TYPENAME_TYPE instead, we avoid messing up with a possible
20069 typedef variant case. */
20070 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
20072 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
20073 it first before we can figure out what NAME refers to. */
20074 if (TREE_CODE (scope) == TYPENAME_TYPE)
20075 scope = resolve_typename_type (scope, only_current_p);
20076 /* If we don't know what SCOPE refers to, then we cannot resolve the
20077 TYPENAME_TYPE. */
20078 if (TREE_CODE (scope) == TYPENAME_TYPE)
20079 return type;
20080 /* If the SCOPE is a template type parameter, we have no way of
20081 resolving the name. */
20082 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
20083 return type;
20084 /* If the SCOPE is not the current instantiation, there's no reason
20085 to look inside it. */
20086 if (only_current_p && !currently_open_class (scope))
20087 return type;
20088 /* If this is a typedef, we don't want to look inside (c++/11987). */
20089 if (typedef_variant_p (type))
20090 return type;
20091 /* If SCOPE isn't the template itself, it will not have a valid
20092 TYPE_FIELDS list. */
20093 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
20094 /* scope is either the template itself or a compatible instantiation
20095 like X<T>, so look up the name in the original template. */
20096 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
20097 else
20098 /* scope is a partial instantiation, so we can't do the lookup or we
20099 will lose the template arguments. */
20100 return type;
20101 /* Enter the SCOPE so that name lookup will be resolved as if we
20102 were in the class definition. In particular, SCOPE will no
20103 longer be considered a dependent type. */
20104 pushed_scope = push_scope (scope);
20105 /* Look up the declaration. */
20106 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
20107 tf_warning_or_error);
20109 result = NULL_TREE;
20111 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
20112 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
20113 if (!decl)
20114 /*nop*/;
20115 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == IDENTIFIER_NODE
20116 && TREE_CODE (decl) == TYPE_DECL)
20118 result = TREE_TYPE (decl);
20119 if (result == error_mark_node)
20120 result = NULL_TREE;
20122 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
20123 && DECL_CLASS_TEMPLATE_P (decl))
20125 tree tmpl;
20126 tree args;
20127 /* Obtain the template and the arguments. */
20128 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
20129 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
20130 /* Instantiate the template. */
20131 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
20132 /*entering_scope=*/0,
20133 tf_error | tf_user);
20134 if (result == error_mark_node)
20135 result = NULL_TREE;
20138 /* Leave the SCOPE. */
20139 if (pushed_scope)
20140 pop_scope (pushed_scope);
20142 /* If we failed to resolve it, return the original typename. */
20143 if (!result)
20144 return type;
20146 /* If lookup found a typename type, resolve that too. */
20147 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
20149 /* Ill-formed programs can cause infinite recursion here, so we
20150 must catch that. */
20151 TYPENAME_IS_RESOLVING_P (type) = 1;
20152 result = resolve_typename_type (result, only_current_p);
20153 TYPENAME_IS_RESOLVING_P (type) = 0;
20156 /* Qualify the resulting type. */
20157 quals = cp_type_quals (type);
20158 if (quals)
20159 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
20161 return result;
20164 /* EXPR is an expression which is not type-dependent. Return a proxy
20165 for EXPR that can be used to compute the types of larger
20166 expressions containing EXPR. */
20168 tree
20169 build_non_dependent_expr (tree expr)
20171 tree inner_expr;
20173 #ifdef ENABLE_CHECKING
20174 /* Try to get a constant value for all non-type-dependent expressions in
20175 order to expose bugs in *_dependent_expression_p and constexpr. */
20176 if (cxx_dialect >= cxx0x)
20177 maybe_constant_value (fold_non_dependent_expr_sfinae (expr, tf_none));
20178 #endif
20180 /* Preserve OVERLOADs; the functions must be available to resolve
20181 types. */
20182 inner_expr = expr;
20183 if (TREE_CODE (inner_expr) == STMT_EXPR)
20184 inner_expr = stmt_expr_value_expr (inner_expr);
20185 if (TREE_CODE (inner_expr) == ADDR_EXPR)
20186 inner_expr = TREE_OPERAND (inner_expr, 0);
20187 if (TREE_CODE (inner_expr) == COMPONENT_REF)
20188 inner_expr = TREE_OPERAND (inner_expr, 1);
20189 if (is_overloaded_fn (inner_expr)
20190 || TREE_CODE (inner_expr) == OFFSET_REF)
20191 return expr;
20192 /* There is no need to return a proxy for a variable. */
20193 if (TREE_CODE (expr) == VAR_DECL)
20194 return expr;
20195 /* Preserve string constants; conversions from string constants to
20196 "char *" are allowed, even though normally a "const char *"
20197 cannot be used to initialize a "char *". */
20198 if (TREE_CODE (expr) == STRING_CST)
20199 return expr;
20200 /* Preserve arithmetic constants, as an optimization -- there is no
20201 reason to create a new node. */
20202 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
20203 return expr;
20204 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
20205 There is at least one place where we want to know that a
20206 particular expression is a throw-expression: when checking a ?:
20207 expression, there are special rules if the second or third
20208 argument is a throw-expression. */
20209 if (TREE_CODE (expr) == THROW_EXPR)
20210 return expr;
20212 /* Don't wrap an initializer list, we need to be able to look inside. */
20213 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
20214 return expr;
20216 /* Don't wrap a dummy object, we need to be able to test for it. */
20217 if (is_dummy_object (expr))
20218 return expr;
20220 if (TREE_CODE (expr) == COND_EXPR)
20221 return build3 (COND_EXPR,
20222 TREE_TYPE (expr),
20223 TREE_OPERAND (expr, 0),
20224 (TREE_OPERAND (expr, 1)
20225 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
20226 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
20227 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
20228 if (TREE_CODE (expr) == COMPOUND_EXPR
20229 && !COMPOUND_EXPR_OVERLOADED (expr))
20230 return build2 (COMPOUND_EXPR,
20231 TREE_TYPE (expr),
20232 TREE_OPERAND (expr, 0),
20233 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
20235 /* If the type is unknown, it can't really be non-dependent */
20236 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
20238 /* Otherwise, build a NON_DEPENDENT_EXPR. */
20239 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
20242 /* ARGS is a vector of expressions as arguments to a function call.
20243 Replace the arguments with equivalent non-dependent expressions.
20244 This modifies ARGS in place. */
20246 void
20247 make_args_non_dependent (vec<tree, va_gc> *args)
20249 unsigned int ix;
20250 tree arg;
20252 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
20254 tree newarg = build_non_dependent_expr (arg);
20255 if (newarg != arg)
20256 (*args)[ix] = newarg;
20260 /* Returns a type which represents 'auto'. We use a TEMPLATE_TYPE_PARM
20261 with a level one deeper than the actual template parms. */
20263 tree
20264 make_auto (void)
20266 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
20267 TYPE_NAME (au) = build_decl (BUILTINS_LOCATION,
20268 TYPE_DECL, get_identifier ("auto"), au);
20269 TYPE_STUB_DECL (au) = TYPE_NAME (au);
20270 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
20271 (0, processing_template_decl + 1, processing_template_decl + 1,
20272 TYPE_NAME (au), NULL_TREE);
20273 TYPE_CANONICAL (au) = canonical_type_parameter (au);
20274 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
20275 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
20277 return au;
20280 /* Given type ARG, return std::initializer_list<ARG>. */
20282 static tree
20283 listify (tree arg)
20285 tree std_init_list = namespace_binding
20286 (get_identifier ("initializer_list"), std_node);
20287 tree argvec;
20288 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
20290 error ("deducing from brace-enclosed initializer list requires "
20291 "#include <initializer_list>");
20292 return error_mark_node;
20294 argvec = make_tree_vec (1);
20295 TREE_VEC_ELT (argvec, 0) = arg;
20296 return lookup_template_class (std_init_list, argvec, NULL_TREE,
20297 NULL_TREE, 0, tf_warning_or_error);
20300 /* Replace auto in TYPE with std::initializer_list<auto>. */
20302 static tree
20303 listify_autos (tree type, tree auto_node)
20305 tree init_auto = listify (auto_node);
20306 tree argvec = make_tree_vec (1);
20307 TREE_VEC_ELT (argvec, 0) = init_auto;
20308 if (processing_template_decl)
20309 argvec = add_to_template_args (current_template_args (), argvec);
20310 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20313 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
20314 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
20316 tree
20317 do_auto_deduction (tree type, tree init, tree auto_node)
20319 tree parms, tparms, targs;
20320 tree args[1];
20321 int val;
20323 if (init == error_mark_node)
20324 return error_mark_node;
20326 if (type_dependent_expression_p (init))
20327 /* Defining a subset of type-dependent expressions that we can deduce
20328 from ahead of time isn't worth the trouble. */
20329 return type;
20331 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
20332 with either a new invented type template parameter U or, if the
20333 initializer is a braced-init-list (8.5.4), with
20334 std::initializer_list<U>. */
20335 if (BRACE_ENCLOSED_INITIALIZER_P (init))
20336 type = listify_autos (type, auto_node);
20338 init = resolve_nondeduced_context (init);
20340 parms = build_tree_list (NULL_TREE, type);
20341 args[0] = init;
20342 tparms = make_tree_vec (1);
20343 targs = make_tree_vec (1);
20344 TREE_VEC_ELT (tparms, 0)
20345 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
20346 val = type_unification_real (tparms, targs, parms, args, 1, 0,
20347 DEDUCE_CALL, LOOKUP_NORMAL,
20348 /*explain_p=*/false);
20349 if (val > 0)
20351 if (processing_template_decl)
20352 /* Try again at instantiation time. */
20353 return type;
20354 if (type && type != error_mark_node)
20355 /* If type is error_mark_node a diagnostic must have been
20356 emitted by now. Also, having a mention to '<type error>'
20357 in the diagnostic is not really useful to the user. */
20359 if (cfun && auto_node == current_function_auto_return_pattern
20360 && LAMBDA_FUNCTION_P (current_function_decl))
20361 error ("unable to deduce lambda return type from %qE", init);
20362 else
20363 error ("unable to deduce %qT from %qE", type, init);
20365 return error_mark_node;
20368 /* If the list of declarators contains more than one declarator, the type
20369 of each declared variable is determined as described above. If the
20370 type deduced for the template parameter U is not the same in each
20371 deduction, the program is ill-formed. */
20372 if (TREE_TYPE (auto_node)
20373 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
20375 if (cfun && auto_node == current_function_auto_return_pattern
20376 && LAMBDA_FUNCTION_P (current_function_decl))
20377 error ("inconsistent types %qT and %qT deduced for "
20378 "lambda return type", TREE_TYPE (auto_node),
20379 TREE_VEC_ELT (targs, 0));
20380 else
20381 error ("inconsistent deduction for %qT: %qT and then %qT",
20382 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
20383 return error_mark_node;
20385 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
20387 if (processing_template_decl)
20388 targs = add_to_template_args (current_template_args (), targs);
20389 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
20392 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
20393 result. */
20395 tree
20396 splice_late_return_type (tree type, tree late_return_type)
20398 tree argvec;
20400 if (late_return_type == NULL_TREE)
20401 return type;
20402 argvec = make_tree_vec (1);
20403 TREE_VEC_ELT (argvec, 0) = late_return_type;
20404 if (processing_template_parmlist)
20405 /* For a late-specified return type in a template type-parameter, we
20406 need to add a dummy argument level for its parmlist. */
20407 argvec = add_to_template_args
20408 (make_tree_vec (processing_template_parmlist), argvec);
20409 if (current_template_parms)
20410 argvec = add_to_template_args (current_template_args (), argvec);
20411 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20414 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto'. */
20416 bool
20417 is_auto (const_tree type)
20419 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20420 && TYPE_IDENTIFIER (type) == get_identifier ("auto"))
20421 return true;
20422 else
20423 return false;
20426 /* Returns true iff TYPE contains a use of 'auto'. Since auto can only
20427 appear as a type-specifier for the declaration in question, we don't
20428 have to look through the whole type. */
20430 tree
20431 type_uses_auto (tree type)
20433 enum tree_code code;
20434 if (is_auto (type))
20435 return type;
20437 code = TREE_CODE (type);
20439 if (code == POINTER_TYPE || code == REFERENCE_TYPE
20440 || code == OFFSET_TYPE || code == FUNCTION_TYPE
20441 || code == METHOD_TYPE || code == ARRAY_TYPE)
20442 return type_uses_auto (TREE_TYPE (type));
20444 if (TYPE_PTRMEMFUNC_P (type))
20445 return type_uses_auto (TREE_TYPE (TREE_TYPE
20446 (TYPE_PTRMEMFUNC_FN_TYPE (type))));
20448 return NULL_TREE;
20451 /* For a given template T, return the vector of typedefs referenced
20452 in T for which access check is needed at T instantiation time.
20453 T is either a FUNCTION_DECL or a RECORD_TYPE.
20454 Those typedefs were added to T by the function
20455 append_type_to_template_for_access_check. */
20457 vec<qualified_typedef_usage_t, va_gc> *
20458 get_types_needing_access_check (tree t)
20460 tree ti;
20461 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
20463 if (!t || t == error_mark_node)
20464 return NULL;
20466 if (!(ti = get_template_info (t)))
20467 return NULL;
20469 if (CLASS_TYPE_P (t)
20470 || TREE_CODE (t) == FUNCTION_DECL)
20472 if (!TI_TEMPLATE (ti))
20473 return NULL;
20475 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
20478 return result;
20481 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
20482 tied to T. That list of typedefs will be access checked at
20483 T instantiation time.
20484 T is either a FUNCTION_DECL or a RECORD_TYPE.
20485 TYPE_DECL is a TYPE_DECL node representing a typedef.
20486 SCOPE is the scope through which TYPE_DECL is accessed.
20487 LOCATION is the location of the usage point of TYPE_DECL.
20489 This function is a subroutine of
20490 append_type_to_template_for_access_check. */
20492 static void
20493 append_type_to_template_for_access_check_1 (tree t,
20494 tree type_decl,
20495 tree scope,
20496 location_t location)
20498 qualified_typedef_usage_t typedef_usage;
20499 tree ti;
20501 if (!t || t == error_mark_node)
20502 return;
20504 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
20505 || CLASS_TYPE_P (t))
20506 && type_decl
20507 && TREE_CODE (type_decl) == TYPE_DECL
20508 && scope);
20510 if (!(ti = get_template_info (t)))
20511 return;
20513 gcc_assert (TI_TEMPLATE (ti));
20515 typedef_usage.typedef_decl = type_decl;
20516 typedef_usage.context = scope;
20517 typedef_usage.locus = location;
20519 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
20522 /* Append TYPE_DECL to the template TEMPL.
20523 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
20524 At TEMPL instanciation time, TYPE_DECL will be checked to see
20525 if it can be accessed through SCOPE.
20526 LOCATION is the location of the usage point of TYPE_DECL.
20528 e.g. consider the following code snippet:
20530 class C
20532 typedef int myint;
20535 template<class U> struct S
20537 C::myint mi; // <-- usage point of the typedef C::myint
20540 S<char> s;
20542 At S<char> instantiation time, we need to check the access of C::myint
20543 In other words, we need to check the access of the myint typedef through
20544 the C scope. For that purpose, this function will add the myint typedef
20545 and the scope C through which its being accessed to a list of typedefs
20546 tied to the template S. That list will be walked at template instantiation
20547 time and access check performed on each typedefs it contains.
20548 Note that this particular code snippet should yield an error because
20549 myint is private to C. */
20551 void
20552 append_type_to_template_for_access_check (tree templ,
20553 tree type_decl,
20554 tree scope,
20555 location_t location)
20557 qualified_typedef_usage_t *iter;
20558 unsigned i;
20560 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
20562 /* Make sure we don't append the type to the template twice. */
20563 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
20564 if (iter->typedef_decl == type_decl && scope == iter->context)
20565 return;
20567 append_type_to_template_for_access_check_1 (templ, type_decl,
20568 scope, location);
20571 /* Set up the hash tables for template instantiations. */
20573 void
20574 init_template_processing (void)
20576 decl_specializations = htab_create_ggc (37,
20577 hash_specialization,
20578 eq_specializations,
20579 ggc_free);
20580 type_specializations = htab_create_ggc (37,
20581 hash_specialization,
20582 eq_specializations,
20583 ggc_free);
20586 /* Print stats about the template hash tables for -fstats. */
20588 void
20589 print_template_statistics (void)
20591 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
20592 "%f collisions\n", (long) htab_size (decl_specializations),
20593 (long) htab_elements (decl_specializations),
20594 htab_collisions (decl_specializations));
20595 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
20596 "%f collisions\n", (long) htab_size (type_specializations),
20597 (long) htab_elements (type_specializations),
20598 htab_collisions (type_specializations));
20601 #include "gt-cp-pt.h"