PR c++/33620
[official-gcc.git] / gcc / cp / pt.c
bloba54e90d6fa723bfb9ca9b8bf956146f3e6ce1717
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 Free Software Foundation, Inc.
4 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
5 Rewritten by Jason Merrill (jason@cygnus.com).
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 /* Known bugs or deficiencies include:
25 all methods must be provided in header files; can't use a source
26 file that contains only the method templates and "just win". */
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
32 #include "obstack.h"
33 #include "tree.h"
34 #include "pointer-set.h"
35 #include "flags.h"
36 #include "c-common.h"
37 #include "cp-tree.h"
38 #include "cp-objcp-common.h"
39 #include "tree-inline.h"
40 #include "decl.h"
41 #include "output.h"
42 #include "except.h"
43 #include "toplev.h"
44 #include "rtl.h"
45 #include "timevar.h"
46 #include "tree-iterator.h"
47 #include "vecprim.h"
49 /* The type of functions taking a tree, and some additional data, and
50 returning an int. */
51 typedef int (*tree_fn_t) (tree, void*);
53 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
54 instantiations have been deferred, either because their definitions
55 were not yet available, or because we were putting off doing the work. */
56 struct pending_template GTY (()) {
57 struct pending_template *next;
58 struct tinst_level *tinst;
61 static GTY(()) struct pending_template *pending_templates;
62 static GTY(()) struct pending_template *last_pending_template;
64 int processing_template_parmlist;
65 static int template_header_count;
67 static GTY(()) tree saved_trees;
68 static VEC(int,heap) *inline_parm_levels;
70 static GTY(()) struct tinst_level *current_tinst_level;
72 static GTY(()) tree saved_access_scope;
74 /* Live only within one (recursive) call to tsubst_expr. We use
75 this to pass the statement expression node from the STMT_EXPR
76 to the EXPR_STMT that is its result. */
77 static tree cur_stmt_expr;
79 /* A map from local variable declarations in the body of the template
80 presently being instantiated to the corresponding instantiated
81 local variables. */
82 static htab_t local_specializations;
84 /* Contains canonical template parameter types. The vector is indexed by
85 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
86 TREE_LIST, whose TREE_VALUEs contain the canonical template
87 parameters of various types and levels. */
88 static GTY(()) VEC(tree,gc) *canonical_template_parms;
90 #define UNIFY_ALLOW_NONE 0
91 #define UNIFY_ALLOW_MORE_CV_QUAL 1
92 #define UNIFY_ALLOW_LESS_CV_QUAL 2
93 #define UNIFY_ALLOW_DERIVED 4
94 #define UNIFY_ALLOW_INTEGER 8
95 #define UNIFY_ALLOW_OUTER_LEVEL 16
96 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
97 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
99 static void push_access_scope (tree);
100 static void pop_access_scope (tree);
101 static bool resolve_overloaded_unification (tree, tree, tree, tree,
102 unification_kind_t, int);
103 static int try_one_overload (tree, tree, tree, tree, tree,
104 unification_kind_t, int, bool);
105 static int unify (tree, tree, tree, tree, int);
106 static void add_pending_template (tree);
107 static int push_tinst_level (tree);
108 static void pop_tinst_level (void);
109 static tree reopen_tinst_level (struct tinst_level *);
110 static tree tsubst_initializer_list (tree, tree);
111 static tree get_class_bindings (tree, tree, tree);
112 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
113 bool, bool);
114 static void tsubst_enum (tree, tree, tree);
115 static tree add_to_template_args (tree, tree);
116 static tree add_outermost_template_args (tree, tree);
117 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
118 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
119 tree);
120 static int type_unification_real (tree, tree, tree, tree,
121 int, unification_kind_t, int);
122 static void note_template_header (int);
123 static tree convert_nontype_argument_function (tree, tree);
124 static tree convert_nontype_argument (tree, tree);
125 static tree convert_template_argument (tree, tree, tree,
126 tsubst_flags_t, int, tree);
127 static int for_each_template_parm (tree, tree_fn_t, void*,
128 struct pointer_set_t*);
129 static tree expand_template_argument_pack (tree);
130 static tree build_template_parm_index (int, int, int, tree, tree);
131 static bool inline_needs_template_parms (tree);
132 static void push_inline_template_parms_recursive (tree, int);
133 static tree retrieve_local_specialization (tree);
134 static void register_local_specialization (tree, tree);
135 static tree reduce_template_parm_level (tree, tree, int);
136 static int mark_template_parm (tree, void *);
137 static int template_parm_this_level_p (tree, void *);
138 static tree tsubst_friend_function (tree, tree);
139 static tree tsubst_friend_class (tree, tree);
140 static int can_complete_type_without_circularity (tree);
141 static tree get_bindings (tree, tree, tree, bool);
142 static int template_decl_level (tree);
143 static int check_cv_quals_for_unify (int, tree, tree);
144 static void template_parm_level_and_index (tree, int*, int*);
145 static int unify_pack_expansion (tree, tree, tree, tree, int, bool, bool);
146 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
147 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
148 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
149 static void regenerate_decl_from_template (tree, tree);
150 static tree most_specialized_class (tree, tree);
151 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
152 static tree tsubst_arg_types (tree, tree, tsubst_flags_t, tree);
153 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
154 static bool check_specialization_scope (void);
155 static tree process_partial_specialization (tree);
156 static void set_current_access_from_decl (tree);
157 static tree get_template_base (tree, tree, tree, tree);
158 static tree try_class_unification (tree, tree, tree, tree);
159 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
160 tree, tree);
161 static int template_args_equal (tree, tree);
162 static void tsubst_default_arguments (tree);
163 static tree for_each_template_parm_r (tree *, int *, void *);
164 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
165 static void copy_default_args_to_explicit_spec (tree);
166 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
167 static int eq_local_specializations (const void *, const void *);
168 static bool dependent_template_arg_p (tree);
169 static bool any_template_arguments_need_structural_equality_p (tree);
170 static bool dependent_type_p_r (tree);
171 static tree tsubst (tree, tree, tsubst_flags_t, tree);
172 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
173 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
174 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
176 /* Make the current scope suitable for access checking when we are
177 processing T. T can be FUNCTION_DECL for instantiated function
178 template, or VAR_DECL for static member variable (need by
179 instantiate_decl). */
181 static void
182 push_access_scope (tree t)
184 gcc_assert (TREE_CODE (t) == FUNCTION_DECL
185 || TREE_CODE (t) == VAR_DECL);
187 if (DECL_FRIEND_CONTEXT (t))
188 push_nested_class (DECL_FRIEND_CONTEXT (t));
189 else if (DECL_CLASS_SCOPE_P (t))
190 push_nested_class (DECL_CONTEXT (t));
191 else
192 push_to_top_level ();
194 if (TREE_CODE (t) == FUNCTION_DECL)
196 saved_access_scope = tree_cons
197 (NULL_TREE, current_function_decl, saved_access_scope);
198 current_function_decl = t;
202 /* Restore the scope set up by push_access_scope. T is the node we
203 are processing. */
205 static void
206 pop_access_scope (tree t)
208 if (TREE_CODE (t) == FUNCTION_DECL)
210 current_function_decl = TREE_VALUE (saved_access_scope);
211 saved_access_scope = TREE_CHAIN (saved_access_scope);
214 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
215 pop_nested_class ();
216 else
217 pop_from_top_level ();
220 /* Do any processing required when DECL (a member template
221 declaration) is finished. Returns the TEMPLATE_DECL corresponding
222 to DECL, unless it is a specialization, in which case the DECL
223 itself is returned. */
225 tree
226 finish_member_template_decl (tree decl)
228 if (decl == error_mark_node)
229 return error_mark_node;
231 gcc_assert (DECL_P (decl));
233 if (TREE_CODE (decl) == TYPE_DECL)
235 tree type;
237 type = TREE_TYPE (decl);
238 if (IS_AGGR_TYPE (type)
239 && CLASSTYPE_TEMPLATE_INFO (type)
240 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
242 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
243 check_member_template (tmpl);
244 return tmpl;
246 return NULL_TREE;
248 else if (TREE_CODE (decl) == FIELD_DECL)
249 error ("data member %qD cannot be a member template", decl);
250 else if (DECL_TEMPLATE_INFO (decl))
252 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
254 check_member_template (DECL_TI_TEMPLATE (decl));
255 return DECL_TI_TEMPLATE (decl);
257 else
258 return decl;
260 else
261 error ("invalid member template declaration %qD", decl);
263 return error_mark_node;
266 /* Returns the template nesting level of the indicated class TYPE.
268 For example, in:
269 template <class T>
270 struct A
272 template <class U>
273 struct B {};
276 A<T>::B<U> has depth two, while A<T> has depth one.
277 Both A<T>::B<int> and A<int>::B<U> have depth one, if
278 they are instantiations, not specializations.
280 This function is guaranteed to return 0 if passed NULL_TREE so
281 that, for example, `template_class_depth (current_class_type)' is
282 always safe. */
285 template_class_depth (tree type)
287 int depth;
289 for (depth = 0;
290 type && TREE_CODE (type) != NAMESPACE_DECL;
291 type = (TREE_CODE (type) == FUNCTION_DECL)
292 ? CP_DECL_CONTEXT (type) : TYPE_CONTEXT (type))
294 if (TREE_CODE (type) != FUNCTION_DECL)
296 if (CLASSTYPE_TEMPLATE_INFO (type)
297 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
298 && uses_template_parms (CLASSTYPE_TI_ARGS (type)))
299 ++depth;
301 else
303 if (DECL_TEMPLATE_INFO (type)
304 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (type))
305 && uses_template_parms (DECL_TI_ARGS (type)))
306 ++depth;
310 return depth;
313 /* Subroutine of maybe_begin_member_template_processing.
314 Returns true if processing DECL needs us to push template parms. */
316 static bool
317 inline_needs_template_parms (tree decl)
319 if (! DECL_TEMPLATE_INFO (decl))
320 return false;
322 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
323 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
326 /* Subroutine of maybe_begin_member_template_processing.
327 Push the template parms in PARMS, starting from LEVELS steps into the
328 chain, and ending at the beginning, since template parms are listed
329 innermost first. */
331 static void
332 push_inline_template_parms_recursive (tree parmlist, int levels)
334 tree parms = TREE_VALUE (parmlist);
335 int i;
337 if (levels > 1)
338 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
340 ++processing_template_decl;
341 current_template_parms
342 = tree_cons (size_int (processing_template_decl),
343 parms, current_template_parms);
344 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
346 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
347 NULL);
348 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
350 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
352 if (parm == error_mark_node)
353 continue;
355 gcc_assert (DECL_P (parm));
357 switch (TREE_CODE (parm))
359 case TYPE_DECL:
360 case TEMPLATE_DECL:
361 pushdecl (parm);
362 break;
364 case PARM_DECL:
366 /* Make a CONST_DECL as is done in process_template_parm.
367 It is ugly that we recreate this here; the original
368 version built in process_template_parm is no longer
369 available. */
370 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
371 TREE_TYPE (parm));
372 DECL_ARTIFICIAL (decl) = 1;
373 TREE_CONSTANT (decl) = 1;
374 TREE_INVARIANT (decl) = 1;
375 TREE_READONLY (decl) = 1;
376 DECL_INITIAL (decl) = DECL_INITIAL (parm);
377 SET_DECL_TEMPLATE_PARM_P (decl);
378 pushdecl (decl);
380 break;
382 default:
383 gcc_unreachable ();
388 /* Restore the template parameter context for a member template or
389 a friend template defined in a class definition. */
391 void
392 maybe_begin_member_template_processing (tree decl)
394 tree parms;
395 int levels = 0;
397 if (inline_needs_template_parms (decl))
399 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
400 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
402 if (DECL_TEMPLATE_SPECIALIZATION (decl))
404 --levels;
405 parms = TREE_CHAIN (parms);
408 push_inline_template_parms_recursive (parms, levels);
411 /* Remember how many levels of template parameters we pushed so that
412 we can pop them later. */
413 VEC_safe_push (int, heap, inline_parm_levels, levels);
416 /* Undo the effects of maybe_begin_member_template_processing. */
418 void
419 maybe_end_member_template_processing (void)
421 int i;
422 int last;
424 if (VEC_length (int, inline_parm_levels) == 0)
425 return;
427 last = VEC_pop (int, inline_parm_levels);
428 for (i = 0; i < last; ++i)
430 --processing_template_decl;
431 current_template_parms = TREE_CHAIN (current_template_parms);
432 poplevel (0, 0, 0);
436 /* Return a new template argument vector which contains all of ARGS,
437 but has as its innermost set of arguments the EXTRA_ARGS. */
439 static tree
440 add_to_template_args (tree args, tree extra_args)
442 tree new_args;
443 int extra_depth;
444 int i;
445 int j;
447 extra_depth = TMPL_ARGS_DEPTH (extra_args);
448 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
450 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
451 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
453 for (j = 1; j <= extra_depth; ++j, ++i)
454 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
456 return new_args;
459 /* Like add_to_template_args, but only the outermost ARGS are added to
460 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
461 (EXTRA_ARGS) levels are added. This function is used to combine
462 the template arguments from a partial instantiation with the
463 template arguments used to attain the full instantiation from the
464 partial instantiation. */
466 static tree
467 add_outermost_template_args (tree args, tree extra_args)
469 tree new_args;
471 /* If there are more levels of EXTRA_ARGS than there are ARGS,
472 something very fishy is going on. */
473 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
475 /* If *all* the new arguments will be the EXTRA_ARGS, just return
476 them. */
477 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
478 return extra_args;
480 /* For the moment, we make ARGS look like it contains fewer levels. */
481 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
483 new_args = add_to_template_args (args, extra_args);
485 /* Now, we restore ARGS to its full dimensions. */
486 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
488 return new_args;
491 /* Return the N levels of innermost template arguments from the ARGS. */
493 tree
494 get_innermost_template_args (tree args, int n)
496 tree new_args;
497 int extra_levels;
498 int i;
500 gcc_assert (n >= 0);
502 /* If N is 1, just return the innermost set of template arguments. */
503 if (n == 1)
504 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
506 /* If we're not removing anything, just return the arguments we were
507 given. */
508 extra_levels = TMPL_ARGS_DEPTH (args) - n;
509 gcc_assert (extra_levels >= 0);
510 if (extra_levels == 0)
511 return args;
513 /* Make a new set of arguments, not containing the outer arguments. */
514 new_args = make_tree_vec (n);
515 for (i = 1; i <= n; ++i)
516 SET_TMPL_ARGS_LEVEL (new_args, i,
517 TMPL_ARGS_LEVEL (args, i + extra_levels));
519 return new_args;
522 /* The inverse of get_innermost_template_args: Return all but the innermost
523 EXTRA_LEVELS levels of template arguments from the ARGS. */
525 static tree
526 strip_innermost_template_args (tree args, int extra_levels)
528 tree new_args;
529 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
530 int i;
532 gcc_assert (n >= 0);
534 /* If N is 1, just return the outermost set of template arguments. */
535 if (n == 1)
536 return TMPL_ARGS_LEVEL (args, 1);
538 /* If we're not removing anything, just return the arguments we were
539 given. */
540 gcc_assert (extra_levels >= 0);
541 if (extra_levels == 0)
542 return args;
544 /* Make a new set of arguments, not containing the inner arguments. */
545 new_args = make_tree_vec (n);
546 for (i = 1; i <= n; ++i)
547 SET_TMPL_ARGS_LEVEL (new_args, i,
548 TMPL_ARGS_LEVEL (args, i));
550 return new_args;
553 /* We've got a template header coming up; push to a new level for storing
554 the parms. */
556 void
557 begin_template_parm_list (void)
559 /* We use a non-tag-transparent scope here, which causes pushtag to
560 put tags in this scope, rather than in the enclosing class or
561 namespace scope. This is the right thing, since we want
562 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
563 global template class, push_template_decl handles putting the
564 TEMPLATE_DECL into top-level scope. For a nested template class,
565 e.g.:
567 template <class T> struct S1 {
568 template <class T> struct S2 {};
571 pushtag contains special code to call pushdecl_with_scope on the
572 TEMPLATE_DECL for S2. */
573 begin_scope (sk_template_parms, NULL);
574 ++processing_template_decl;
575 ++processing_template_parmlist;
576 note_template_header (0);
579 /* This routine is called when a specialization is declared. If it is
580 invalid to declare a specialization here, an error is reported and
581 false is returned, otherwise this routine will return true. */
583 static bool
584 check_specialization_scope (void)
586 tree scope = current_scope ();
588 /* [temp.expl.spec]
590 An explicit specialization shall be declared in the namespace of
591 which the template is a member, or, for member templates, in the
592 namespace of which the enclosing class or enclosing class
593 template is a member. An explicit specialization of a member
594 function, member class or static data member of a class template
595 shall be declared in the namespace of which the class template
596 is a member. */
597 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
599 error ("explicit specialization in non-namespace scope %qD", scope);
600 return false;
603 /* [temp.expl.spec]
605 In an explicit specialization declaration for a member of a class
606 template or a member template that appears in namespace scope,
607 the member template and some of its enclosing class templates may
608 remain unspecialized, except that the declaration shall not
609 explicitly specialize a class member template if its enclosing
610 class templates are not explicitly specialized as well. */
611 if (current_template_parms)
613 error ("enclosing class templates are not explicitly specialized");
614 return false;
617 return true;
620 /* We've just seen template <>. */
622 bool
623 begin_specialization (void)
625 begin_scope (sk_template_spec, NULL);
626 note_template_header (1);
627 return check_specialization_scope ();
630 /* Called at then end of processing a declaration preceded by
631 template<>. */
633 void
634 end_specialization (void)
636 finish_scope ();
637 reset_specialization ();
640 /* Any template <>'s that we have seen thus far are not referring to a
641 function specialization. */
643 void
644 reset_specialization (void)
646 processing_specialization = 0;
647 template_header_count = 0;
650 /* We've just seen a template header. If SPECIALIZATION is nonzero,
651 it was of the form template <>. */
653 static void
654 note_template_header (int specialization)
656 processing_specialization = specialization;
657 template_header_count++;
660 /* We're beginning an explicit instantiation. */
662 void
663 begin_explicit_instantiation (void)
665 gcc_assert (!processing_explicit_instantiation);
666 processing_explicit_instantiation = true;
670 void
671 end_explicit_instantiation (void)
673 gcc_assert (processing_explicit_instantiation);
674 processing_explicit_instantiation = false;
677 /* An explicit specialization or partial specialization TMPL is being
678 declared. Check that the namespace in which the specialization is
679 occurring is permissible. Returns false iff it is invalid to
680 specialize TMPL in the current namespace. */
682 static bool
683 check_specialization_namespace (tree tmpl)
685 tree tpl_ns = decl_namespace_context (tmpl);
687 /* [tmpl.expl.spec]
689 An explicit specialization shall be declared in the namespace of
690 which the template is a member, or, for member templates, in the
691 namespace of which the enclosing class or enclosing class
692 template is a member. An explicit specialization of a member
693 function, member class or static data member of a class template
694 shall be declared in the namespace of which the class template is
695 a member. */
696 if (is_associated_namespace (current_namespace, tpl_ns))
697 /* Same or super-using namespace. */
698 return true;
699 else
701 pedwarn ("specialization of %qD in different namespace", tmpl);
702 pedwarn (" from definition of %q+#D", tmpl);
703 return false;
707 /* SPEC is an explicit instantiation. Check that it is valid to
708 perform this explicit instantiation in the current namespace. */
710 static void
711 check_explicit_instantiation_namespace (tree spec)
713 tree ns;
715 /* DR 275: An explicit instantiation shall appear in an enclosing
716 namespace of its template. */
717 ns = decl_namespace_context (spec);
718 if (!is_ancestor (current_namespace, ns))
719 pedwarn ("explicit instantiation of %qD in namespace %qD "
720 "(which does not enclose namespace %qD)",
721 spec, current_namespace, ns);
724 /* The TYPE is being declared. If it is a template type, that means it
725 is a partial specialization. Do appropriate error-checking. */
727 tree
728 maybe_process_partial_specialization (tree type)
730 tree context;
732 if (type == error_mark_node)
733 return error_mark_node;
735 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
737 error ("name of class shadows template template parameter %qD",
738 TYPE_NAME (type));
739 return error_mark_node;
742 context = TYPE_CONTEXT (type);
744 if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
746 /* This is for ordinary explicit specialization and partial
747 specialization of a template class such as:
749 template <> class C<int>;
753 template <class T> class C<T*>;
755 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
757 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
758 && !COMPLETE_TYPE_P (type))
760 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
761 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
762 if (processing_template_decl)
763 push_template_decl (TYPE_MAIN_DECL (type));
765 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
766 error ("specialization of %qT after instantiation", type);
768 else if (CLASS_TYPE_P (type)
769 && !CLASSTYPE_USE_TEMPLATE (type)
770 && CLASSTYPE_TEMPLATE_INFO (type)
771 && context && CLASS_TYPE_P (context)
772 && CLASSTYPE_TEMPLATE_INFO (context))
774 /* This is for an explicit specialization of member class
775 template according to [temp.expl.spec/18]:
777 template <> template <class U> class C<int>::D;
779 The context `C<int>' must be an implicit instantiation.
780 Otherwise this is just a member class template declared
781 earlier like:
783 template <> class C<int> { template <class U> class D; };
784 template <> template <class U> class C<int>::D;
786 In the first case, `C<int>::D' is a specialization of `C<T>::D'
787 while in the second case, `C<int>::D' is a primary template
788 and `C<T>::D' may not exist. */
790 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
791 && !COMPLETE_TYPE_P (type))
793 tree t;
795 if (current_namespace
796 != decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type)))
798 pedwarn ("specializing %q#T in different namespace", type);
799 pedwarn (" from definition of %q+#D",
800 CLASSTYPE_TI_TEMPLATE (type));
803 /* Check for invalid specialization after instantiation:
805 template <> template <> class C<int>::D<int>;
806 template <> template <class U> class C<int>::D; */
808 for (t = DECL_TEMPLATE_INSTANTIATIONS
809 (most_general_template (CLASSTYPE_TI_TEMPLATE (type)));
810 t; t = TREE_CHAIN (t))
811 if (TREE_VALUE (t) != type
812 && TYPE_CONTEXT (TREE_VALUE (t)) == context)
813 error ("specialization %qT after instantiation %qT",
814 type, TREE_VALUE (t));
816 /* Mark TYPE as a specialization. And as a result, we only
817 have one level of template argument for the innermost
818 class template. */
819 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
820 CLASSTYPE_TI_ARGS (type)
821 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
824 else if (processing_specialization)
826 error ("explicit specialization of non-template %qT", type);
827 return error_mark_node;
830 return type;
833 /* Returns nonzero if we can optimize the retrieval of specializations
834 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
835 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
837 static inline bool
838 optimize_specialization_lookup_p (tree tmpl)
840 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
841 && DECL_CLASS_SCOPE_P (tmpl)
842 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
843 parameter. */
844 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
845 /* The optimized lookup depends on the fact that the
846 template arguments for the member function template apply
847 purely to the containing class, which is not true if the
848 containing class is an explicit or partial
849 specialization. */
850 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
851 && !DECL_MEMBER_TEMPLATE_P (tmpl)
852 && !DECL_CONV_FN_P (tmpl)
853 /* It is possible to have a template that is not a member
854 template and is not a member of a template class:
856 template <typename T>
857 struct S { friend A::f(); };
859 Here, the friend function is a template, but the context does
860 not have template information. The optimized lookup relies
861 on having ARGS be the template arguments for both the class
862 and the function template. */
863 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
866 /* Retrieve the specialization (in the sense of [temp.spec] - a
867 specialization is either an instantiation or an explicit
868 specialization) of TMPL for the given template ARGS. If there is
869 no such specialization, return NULL_TREE. The ARGS are a vector of
870 arguments, or a vector of vectors of arguments, in the case of
871 templates with more than one level of parameters.
873 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
874 then we search for a partial specialization matching ARGS. This
875 parameter is ignored if TMPL is not a class template. */
877 static tree
878 retrieve_specialization (tree tmpl, tree args,
879 bool class_specializations_p)
881 if (args == error_mark_node)
882 return NULL_TREE;
884 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
886 /* There should be as many levels of arguments as there are
887 levels of parameters. */
888 gcc_assert (TMPL_ARGS_DEPTH (args)
889 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
891 if (optimize_specialization_lookup_p (tmpl))
893 tree class_template;
894 tree class_specialization;
895 VEC(tree,gc) *methods;
896 tree fns;
897 int idx;
899 /* The template arguments actually apply to the containing
900 class. Find the class specialization with those
901 arguments. */
902 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
903 class_specialization
904 = retrieve_specialization (class_template, args,
905 /*class_specializations_p=*/false);
906 if (!class_specialization)
907 return NULL_TREE;
908 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
909 for the specialization. */
910 idx = class_method_index_for_fn (class_specialization, tmpl);
911 if (idx == -1)
912 return NULL_TREE;
913 /* Iterate through the methods with the indicated name, looking
914 for the one that has an instance of TMPL. */
915 methods = CLASSTYPE_METHOD_VEC (class_specialization);
916 for (fns = VEC_index (tree, methods, idx); fns; fns = OVL_NEXT (fns))
918 tree fn = OVL_CURRENT (fns);
919 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl)
920 return fn;
922 return NULL_TREE;
924 else
926 tree *sp;
927 tree *head;
929 /* Class templates store their instantiations on the
930 DECL_TEMPLATE_INSTANTIATIONS list; other templates use the
931 DECL_TEMPLATE_SPECIALIZATIONS list. */
932 if (!class_specializations_p
933 && TREE_CODE (DECL_TEMPLATE_RESULT (tmpl)) == TYPE_DECL
934 && TAGGED_TYPE_P (TREE_TYPE (tmpl)))
935 sp = &DECL_TEMPLATE_INSTANTIATIONS (tmpl);
936 else
937 sp = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
938 head = sp;
939 /* Iterate through the list until we find a matching template. */
940 while (*sp != NULL_TREE)
942 tree spec = *sp;
944 if (comp_template_args (TREE_PURPOSE (spec), args))
946 /* Use the move-to-front heuristic to speed up future
947 searches. */
948 if (spec != *head)
950 *sp = TREE_CHAIN (*sp);
951 TREE_CHAIN (spec) = *head;
952 *head = spec;
954 return TREE_VALUE (spec);
956 sp = &TREE_CHAIN (spec);
960 return NULL_TREE;
963 /* Like retrieve_specialization, but for local declarations. */
965 static tree
966 retrieve_local_specialization (tree tmpl)
968 tree spec = (tree) htab_find_with_hash (local_specializations, tmpl,
969 htab_hash_pointer (tmpl));
970 return spec ? TREE_PURPOSE (spec) : NULL_TREE;
973 /* Returns nonzero iff DECL is a specialization of TMPL. */
976 is_specialization_of (tree decl, tree tmpl)
978 tree t;
980 if (TREE_CODE (decl) == FUNCTION_DECL)
982 for (t = decl;
983 t != NULL_TREE;
984 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
985 if (t == tmpl)
986 return 1;
988 else
990 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
992 for (t = TREE_TYPE (decl);
993 t != NULL_TREE;
994 t = CLASSTYPE_USE_TEMPLATE (t)
995 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
996 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
997 return 1;
1000 return 0;
1003 /* Returns nonzero iff DECL is a specialization of friend declaration
1004 FRIEND according to [temp.friend]. */
1006 bool
1007 is_specialization_of_friend (tree decl, tree friend)
1009 bool need_template = true;
1010 int template_depth;
1012 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1013 || TREE_CODE (decl) == TYPE_DECL);
1015 /* For [temp.friend/6] when FRIEND is an ordinary member function
1016 of a template class, we want to check if DECL is a specialization
1017 if this. */
1018 if (TREE_CODE (friend) == FUNCTION_DECL
1019 && DECL_TEMPLATE_INFO (friend)
1020 && !DECL_USE_TEMPLATE (friend))
1022 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1023 friend = DECL_TI_TEMPLATE (friend);
1024 need_template = false;
1026 else if (TREE_CODE (friend) == TEMPLATE_DECL
1027 && !PRIMARY_TEMPLATE_P (friend))
1028 need_template = false;
1030 /* There is nothing to do if this is not a template friend. */
1031 if (TREE_CODE (friend) != TEMPLATE_DECL)
1032 return false;
1034 if (is_specialization_of (decl, friend))
1035 return true;
1037 /* [temp.friend/6]
1038 A member of a class template may be declared to be a friend of a
1039 non-template class. In this case, the corresponding member of
1040 every specialization of the class template is a friend of the
1041 class granting friendship.
1043 For example, given a template friend declaration
1045 template <class T> friend void A<T>::f();
1047 the member function below is considered a friend
1049 template <> struct A<int> {
1050 void f();
1053 For this type of template friend, TEMPLATE_DEPTH below will be
1054 nonzero. To determine if DECL is a friend of FRIEND, we first
1055 check if the enclosing class is a specialization of another. */
1057 template_depth = template_class_depth (DECL_CONTEXT (friend));
1058 if (template_depth
1059 && DECL_CLASS_SCOPE_P (decl)
1060 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1061 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend))))
1063 /* Next, we check the members themselves. In order to handle
1064 a few tricky cases, such as when FRIEND's are
1066 template <class T> friend void A<T>::g(T t);
1067 template <class T> template <T t> friend void A<T>::h();
1069 and DECL's are
1071 void A<int>::g(int);
1072 template <int> void A<int>::h();
1074 we need to figure out ARGS, the template arguments from
1075 the context of DECL. This is required for template substitution
1076 of `T' in the function parameter of `g' and template parameter
1077 of `h' in the above examples. Here ARGS corresponds to `int'. */
1079 tree context = DECL_CONTEXT (decl);
1080 tree args = NULL_TREE;
1081 int current_depth = 0;
1083 while (current_depth < template_depth)
1085 if (CLASSTYPE_TEMPLATE_INFO (context))
1087 if (current_depth == 0)
1088 args = TYPE_TI_ARGS (context);
1089 else
1090 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1091 current_depth++;
1093 context = TYPE_CONTEXT (context);
1096 if (TREE_CODE (decl) == FUNCTION_DECL)
1098 bool is_template;
1099 tree friend_type;
1100 tree decl_type;
1101 tree friend_args_type;
1102 tree decl_args_type;
1104 /* Make sure that both DECL and FRIEND are templates or
1105 non-templates. */
1106 is_template = DECL_TEMPLATE_INFO (decl)
1107 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1108 if (need_template ^ is_template)
1109 return false;
1110 else if (is_template)
1112 /* If both are templates, check template parameter list. */
1113 tree friend_parms
1114 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
1115 args, tf_none);
1116 if (!comp_template_parms
1117 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1118 friend_parms))
1119 return false;
1121 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1123 else
1124 decl_type = TREE_TYPE (decl);
1126 friend_type = tsubst_function_type (TREE_TYPE (friend), args,
1127 tf_none, NULL_TREE);
1128 if (friend_type == error_mark_node)
1129 return false;
1131 /* Check if return types match. */
1132 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1133 return false;
1135 /* Check if function parameter types match, ignoring the
1136 `this' parameter. */
1137 friend_args_type = TYPE_ARG_TYPES (friend_type);
1138 decl_args_type = TYPE_ARG_TYPES (decl_type);
1139 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend))
1140 friend_args_type = TREE_CHAIN (friend_args_type);
1141 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1142 decl_args_type = TREE_CHAIN (decl_args_type);
1144 return compparms (decl_args_type, friend_args_type);
1146 else
1148 /* DECL is a TYPE_DECL */
1149 bool is_template;
1150 tree decl_type = TREE_TYPE (decl);
1152 /* Make sure that both DECL and FRIEND are templates or
1153 non-templates. */
1154 is_template
1155 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1156 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1158 if (need_template ^ is_template)
1159 return false;
1160 else if (is_template)
1162 tree friend_parms;
1163 /* If both are templates, check the name of the two
1164 TEMPLATE_DECL's first because is_friend didn't. */
1165 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1166 != DECL_NAME (friend))
1167 return false;
1169 /* Now check template parameter list. */
1170 friend_parms
1171 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
1172 args, tf_none);
1173 return comp_template_parms
1174 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1175 friend_parms);
1177 else
1178 return (DECL_NAME (decl)
1179 == DECL_NAME (friend));
1182 return false;
1185 /* Register the specialization SPEC as a specialization of TMPL with
1186 the indicated ARGS. IS_FRIEND indicates whether the specialization
1187 is actually just a friend declaration. Returns SPEC, or an
1188 equivalent prior declaration, if available. */
1190 static tree
1191 register_specialization (tree spec, tree tmpl, tree args, bool is_friend)
1193 tree fn;
1195 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1197 if (TREE_CODE (spec) == FUNCTION_DECL
1198 && uses_template_parms (DECL_TI_ARGS (spec)))
1199 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1200 register it; we want the corresponding TEMPLATE_DECL instead.
1201 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1202 the more obvious `uses_template_parms (spec)' to avoid problems
1203 with default function arguments. In particular, given
1204 something like this:
1206 template <class T> void f(T t1, T t = T())
1208 the default argument expression is not substituted for in an
1209 instantiation unless and until it is actually needed. */
1210 return spec;
1212 fn = retrieve_specialization (tmpl, args,
1213 /*class_specializations_p=*/false);
1214 /* We can sometimes try to re-register a specialization that we've
1215 already got. In particular, regenerate_decl_from_template calls
1216 duplicate_decls which will update the specialization list. But,
1217 we'll still get called again here anyhow. It's more convenient
1218 to simply allow this than to try to prevent it. */
1219 if (fn == spec)
1220 return spec;
1221 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1223 if (DECL_TEMPLATE_INSTANTIATION (fn))
1225 if (TREE_USED (fn)
1226 || DECL_EXPLICIT_INSTANTIATION (fn))
1228 error ("specialization of %qD after instantiation",
1229 fn);
1230 return error_mark_node;
1232 else
1234 tree clone;
1235 /* This situation should occur only if the first
1236 specialization is an implicit instantiation, the
1237 second is an explicit specialization, and the
1238 implicit instantiation has not yet been used. That
1239 situation can occur if we have implicitly
1240 instantiated a member function and then specialized
1241 it later.
1243 We can also wind up here if a friend declaration that
1244 looked like an instantiation turns out to be a
1245 specialization:
1247 template <class T> void foo(T);
1248 class S { friend void foo<>(int) };
1249 template <> void foo(int);
1251 We transform the existing DECL in place so that any
1252 pointers to it become pointers to the updated
1253 declaration.
1255 If there was a definition for the template, but not
1256 for the specialization, we want this to look as if
1257 there were no definition, and vice versa. */
1258 DECL_INITIAL (fn) = NULL_TREE;
1259 duplicate_decls (spec, fn, is_friend);
1260 /* The call to duplicate_decls will have applied
1261 [temp.expl.spec]:
1263 An explicit specialization of a function template
1264 is inline only if it is explicitly declared to be,
1265 and independently of whether its function template
1268 to the primary function; now copy the inline bits to
1269 the various clones. */
1270 FOR_EACH_CLONE (clone, fn)
1272 DECL_DECLARED_INLINE_P (clone)
1273 = DECL_DECLARED_INLINE_P (fn);
1274 DECL_INLINE (clone)
1275 = DECL_INLINE (fn);
1277 check_specialization_namespace (fn);
1279 return fn;
1282 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1284 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1285 /* Dup decl failed, but this is a new definition. Set the
1286 line number so any errors match this new
1287 definition. */
1288 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1290 return fn;
1294 /* A specialization must be declared in the same namespace as the
1295 template it is specializing. */
1296 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1297 && !check_specialization_namespace (tmpl))
1298 DECL_CONTEXT (spec) = FROB_CONTEXT (decl_namespace_context (tmpl));
1300 if (!optimize_specialization_lookup_p (tmpl))
1301 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
1302 = tree_cons (args, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
1304 return spec;
1307 /* Unregister the specialization SPEC as a specialization of TMPL.
1308 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1309 if the SPEC was listed as a specialization of TMPL. */
1311 bool
1312 reregister_specialization (tree spec, tree tmpl, tree new_spec)
1314 tree* s;
1316 for (s = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
1317 *s != NULL_TREE;
1318 s = &TREE_CHAIN (*s))
1319 if (TREE_VALUE (*s) == spec)
1321 if (!new_spec)
1322 *s = TREE_CHAIN (*s);
1323 else
1324 TREE_VALUE (*s) = new_spec;
1325 return 1;
1328 return 0;
1331 /* Compare an entry in the local specializations hash table P1 (which
1332 is really a pointer to a TREE_LIST) with P2 (which is really a
1333 DECL). */
1335 static int
1336 eq_local_specializations (const void *p1, const void *p2)
1338 return TREE_VALUE ((const_tree) p1) == (const_tree) p2;
1341 /* Hash P1, an entry in the local specializations table. */
1343 static hashval_t
1344 hash_local_specialization (const void* p1)
1346 return htab_hash_pointer (TREE_VALUE ((const_tree) p1));
1349 /* Like register_specialization, but for local declarations. We are
1350 registering SPEC, an instantiation of TMPL. */
1352 static void
1353 register_local_specialization (tree spec, tree tmpl)
1355 void **slot;
1357 slot = htab_find_slot_with_hash (local_specializations, tmpl,
1358 htab_hash_pointer (tmpl), INSERT);
1359 *slot = build_tree_list (spec, tmpl);
1362 /* TYPE is a class type. Returns true if TYPE is an explicitly
1363 specialized class. */
1365 bool
1366 explicit_class_specialization_p (tree type)
1368 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1369 return false;
1370 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1373 /* Print the list of candidate FNS in an error message. */
1375 void
1376 print_candidates (tree fns)
1378 tree fn;
1380 const char *str = "candidates are:";
1382 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn))
1384 tree f;
1386 for (f = TREE_VALUE (fn); f; f = OVL_NEXT (f))
1387 error ("%s %+#D", str, OVL_CURRENT (f));
1388 str = " ";
1392 /* Returns the template (one of the functions given by TEMPLATE_ID)
1393 which can be specialized to match the indicated DECL with the
1394 explicit template args given in TEMPLATE_ID. The DECL may be
1395 NULL_TREE if none is available. In that case, the functions in
1396 TEMPLATE_ID are non-members.
1398 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1399 specialization of a member template.
1401 The TEMPLATE_COUNT is the number of references to qualifying
1402 template classes that appeared in the name of the function. See
1403 check_explicit_specialization for a more accurate description.
1405 TSK indicates what kind of template declaration (if any) is being
1406 declared. TSK_TEMPLATE indicates that the declaration given by
1407 DECL, though a FUNCTION_DECL, has template parameters, and is
1408 therefore a template function.
1410 The template args (those explicitly specified and those deduced)
1411 are output in a newly created vector *TARGS_OUT.
1413 If it is impossible to determine the result, an error message is
1414 issued. The error_mark_node is returned to indicate failure. */
1416 static tree
1417 determine_specialization (tree template_id,
1418 tree decl,
1419 tree* targs_out,
1420 int need_member_template,
1421 int template_count,
1422 tmpl_spec_kind tsk)
1424 tree fns;
1425 tree targs;
1426 tree explicit_targs;
1427 tree candidates = NULL_TREE;
1428 /* A TREE_LIST of templates of which DECL may be a specialization.
1429 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1430 corresponding TREE_PURPOSE is the set of template arguments that,
1431 when used to instantiate the template, would produce a function
1432 with the signature of DECL. */
1433 tree templates = NULL_TREE;
1434 int header_count;
1435 struct cp_binding_level *b;
1437 *targs_out = NULL_TREE;
1439 if (template_id == error_mark_node || decl == error_mark_node)
1440 return error_mark_node;
1442 fns = TREE_OPERAND (template_id, 0);
1443 explicit_targs = TREE_OPERAND (template_id, 1);
1445 if (fns == error_mark_node)
1446 return error_mark_node;
1448 /* Check for baselinks. */
1449 if (BASELINK_P (fns))
1450 fns = BASELINK_FUNCTIONS (fns);
1452 if (!is_overloaded_fn (fns))
1454 error ("%qD is not a function template", fns);
1455 return error_mark_node;
1458 /* Count the number of template headers specified for this
1459 specialization. */
1460 header_count = 0;
1461 for (b = current_binding_level;
1462 b->kind == sk_template_parms;
1463 b = b->level_chain)
1464 ++header_count;
1466 for (; fns; fns = OVL_NEXT (fns))
1468 tree fn = OVL_CURRENT (fns);
1470 if (TREE_CODE (fn) == TEMPLATE_DECL)
1472 tree decl_arg_types;
1473 tree fn_arg_types;
1475 /* In case of explicit specialization, we need to check if
1476 the number of template headers appearing in the specialization
1477 is correct. This is usually done in check_explicit_specialization,
1478 but the check done there cannot be exhaustive when specializing
1479 member functions. Consider the following code:
1481 template <> void A<int>::f(int);
1482 template <> template <> void A<int>::f(int);
1484 Assuming that A<int> is not itself an explicit specialization
1485 already, the first line specializes "f" which is a non-template
1486 member function, whilst the second line specializes "f" which
1487 is a template member function. So both lines are syntactically
1488 correct, and check_explicit_specialization does not reject
1489 them.
1491 Here, we can do better, as we are matching the specialization
1492 against the declarations. We count the number of template
1493 headers, and we check if they match TEMPLATE_COUNT + 1
1494 (TEMPLATE_COUNT is the number of qualifying template classes,
1495 plus there must be another header for the member template
1496 itself).
1498 Notice that if header_count is zero, this is not a
1499 specialization but rather a template instantiation, so there
1500 is no check we can perform here. */
1501 if (header_count && header_count != template_count + 1)
1502 continue;
1504 /* Check that the number of template arguments at the
1505 innermost level for DECL is the same as for FN. */
1506 if (current_binding_level->kind == sk_template_parms
1507 && !current_binding_level->explicit_spec_p
1508 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1509 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1510 (current_template_parms))))
1511 continue;
1513 /* DECL might be a specialization of FN. */
1514 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1515 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1517 /* For a non-static member function, we need to make sure
1518 that the const qualification is the same. Since
1519 get_bindings does not try to merge the "this" parameter,
1520 we must do the comparison explicitly. */
1521 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1522 && !same_type_p (TREE_VALUE (fn_arg_types),
1523 TREE_VALUE (decl_arg_types)))
1524 continue;
1526 /* Skip the "this" parameter and, for constructors of
1527 classes with virtual bases, the VTT parameter. A
1528 full specialization of a constructor will have a VTT
1529 parameter, but a template never will. */
1530 decl_arg_types
1531 = skip_artificial_parms_for (decl, decl_arg_types);
1532 fn_arg_types
1533 = skip_artificial_parms_for (fn, fn_arg_types);
1535 /* Check that the number of function parameters matches.
1536 For example,
1537 template <class T> void f(int i = 0);
1538 template <> void f<int>();
1539 The specialization f<int> is invalid but is not caught
1540 by get_bindings below. */
1541 if (list_length (fn_arg_types) != list_length (decl_arg_types))
1542 continue;
1544 /* Function templates cannot be specializations; there are
1545 no partial specializations of functions. Therefore, if
1546 the type of DECL does not match FN, there is no
1547 match. */
1548 if (tsk == tsk_template)
1550 if (compparms (fn_arg_types, decl_arg_types))
1551 candidates = tree_cons (NULL_TREE, fn, candidates);
1552 continue;
1555 /* See whether this function might be a specialization of this
1556 template. */
1557 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1559 if (!targs)
1560 /* We cannot deduce template arguments that when used to
1561 specialize TMPL will produce DECL. */
1562 continue;
1564 /* Save this template, and the arguments deduced. */
1565 templates = tree_cons (targs, fn, templates);
1567 else if (need_member_template)
1568 /* FN is an ordinary member function, and we need a
1569 specialization of a member template. */
1571 else if (TREE_CODE (fn) != FUNCTION_DECL)
1572 /* We can get IDENTIFIER_NODEs here in certain erroneous
1573 cases. */
1575 else if (!DECL_FUNCTION_MEMBER_P (fn))
1576 /* This is just an ordinary non-member function. Nothing can
1577 be a specialization of that. */
1579 else if (DECL_ARTIFICIAL (fn))
1580 /* Cannot specialize functions that are created implicitly. */
1582 else
1584 tree decl_arg_types;
1586 /* This is an ordinary member function. However, since
1587 we're here, we can assume it's enclosing class is a
1588 template class. For example,
1590 template <typename T> struct S { void f(); };
1591 template <> void S<int>::f() {}
1593 Here, S<int>::f is a non-template, but S<int> is a
1594 template class. If FN has the same type as DECL, we
1595 might be in business. */
1597 if (!DECL_TEMPLATE_INFO (fn))
1598 /* Its enclosing class is an explicit specialization
1599 of a template class. This is not a candidate. */
1600 continue;
1602 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1603 TREE_TYPE (TREE_TYPE (fn))))
1604 /* The return types differ. */
1605 continue;
1607 /* Adjust the type of DECL in case FN is a static member. */
1608 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1609 if (DECL_STATIC_FUNCTION_P (fn)
1610 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1611 decl_arg_types = TREE_CHAIN (decl_arg_types);
1613 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1614 decl_arg_types))
1615 /* They match! */
1616 candidates = tree_cons (NULL_TREE, fn, candidates);
1620 if (templates && TREE_CHAIN (templates))
1622 /* We have:
1624 [temp.expl.spec]
1626 It is possible for a specialization with a given function
1627 signature to be instantiated from more than one function
1628 template. In such cases, explicit specification of the
1629 template arguments must be used to uniquely identify the
1630 function template specialization being specialized.
1632 Note that here, there's no suggestion that we're supposed to
1633 determine which of the candidate templates is most
1634 specialized. However, we, also have:
1636 [temp.func.order]
1638 Partial ordering of overloaded function template
1639 declarations is used in the following contexts to select
1640 the function template to which a function template
1641 specialization refers:
1643 -- when an explicit specialization refers to a function
1644 template.
1646 So, we do use the partial ordering rules, at least for now.
1647 This extension can only serve to make invalid programs valid,
1648 so it's safe. And, there is strong anecdotal evidence that
1649 the committee intended the partial ordering rules to apply;
1650 the EDG front end has that behavior, and John Spicer claims
1651 that the committee simply forgot to delete the wording in
1652 [temp.expl.spec]. */
1653 tree tmpl = most_specialized_instantiation (templates);
1654 if (tmpl != error_mark_node)
1656 templates = tmpl;
1657 TREE_CHAIN (templates) = NULL_TREE;
1661 if (templates == NULL_TREE && candidates == NULL_TREE)
1663 error ("template-id %qD for %q+D does not match any template "
1664 "declaration", template_id, decl);
1665 return error_mark_node;
1667 else if ((templates && TREE_CHAIN (templates))
1668 || (candidates && TREE_CHAIN (candidates))
1669 || (templates && candidates))
1671 error ("ambiguous template specialization %qD for %q+D",
1672 template_id, decl);
1673 chainon (candidates, templates);
1674 print_candidates (candidates);
1675 return error_mark_node;
1678 /* We have one, and exactly one, match. */
1679 if (candidates)
1681 tree fn = TREE_VALUE (candidates);
1682 /* DECL is a re-declaration of a template function. */
1683 if (TREE_CODE (fn) == TEMPLATE_DECL)
1684 return fn;
1685 /* It was a specialization of an ordinary member function in a
1686 template class. */
1687 *targs_out = copy_node (DECL_TI_ARGS (fn));
1688 return DECL_TI_TEMPLATE (fn);
1691 /* It was a specialization of a template. */
1692 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
1693 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
1695 *targs_out = copy_node (targs);
1696 SET_TMPL_ARGS_LEVEL (*targs_out,
1697 TMPL_ARGS_DEPTH (*targs_out),
1698 TREE_PURPOSE (templates));
1700 else
1701 *targs_out = TREE_PURPOSE (templates);
1702 return TREE_VALUE (templates);
1705 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
1706 but with the default argument values filled in from those in the
1707 TMPL_TYPES. */
1709 static tree
1710 copy_default_args_to_explicit_spec_1 (tree spec_types,
1711 tree tmpl_types)
1713 tree new_spec_types;
1715 if (!spec_types)
1716 return NULL_TREE;
1718 if (spec_types == void_list_node)
1719 return void_list_node;
1721 /* Substitute into the rest of the list. */
1722 new_spec_types =
1723 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
1724 TREE_CHAIN (tmpl_types));
1726 /* Add the default argument for this parameter. */
1727 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
1728 TREE_VALUE (spec_types),
1729 new_spec_types);
1732 /* DECL is an explicit specialization. Replicate default arguments
1733 from the template it specializes. (That way, code like:
1735 template <class T> void f(T = 3);
1736 template <> void f(double);
1737 void g () { f (); }
1739 works, as required.) An alternative approach would be to look up
1740 the correct default arguments at the call-site, but this approach
1741 is consistent with how implicit instantiations are handled. */
1743 static void
1744 copy_default_args_to_explicit_spec (tree decl)
1746 tree tmpl;
1747 tree spec_types;
1748 tree tmpl_types;
1749 tree new_spec_types;
1750 tree old_type;
1751 tree new_type;
1752 tree t;
1753 tree object_type = NULL_TREE;
1754 tree in_charge = NULL_TREE;
1755 tree vtt = NULL_TREE;
1757 /* See if there's anything we need to do. */
1758 tmpl = DECL_TI_TEMPLATE (decl);
1759 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
1760 for (t = tmpl_types; t; t = TREE_CHAIN (t))
1761 if (TREE_PURPOSE (t))
1762 break;
1763 if (!t)
1764 return;
1766 old_type = TREE_TYPE (decl);
1767 spec_types = TYPE_ARG_TYPES (old_type);
1769 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1771 /* Remove the this pointer, but remember the object's type for
1772 CV quals. */
1773 object_type = TREE_TYPE (TREE_VALUE (spec_types));
1774 spec_types = TREE_CHAIN (spec_types);
1775 tmpl_types = TREE_CHAIN (tmpl_types);
1777 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
1779 /* DECL may contain more parameters than TMPL due to the extra
1780 in-charge parameter in constructors and destructors. */
1781 in_charge = spec_types;
1782 spec_types = TREE_CHAIN (spec_types);
1784 if (DECL_HAS_VTT_PARM_P (decl))
1786 vtt = spec_types;
1787 spec_types = TREE_CHAIN (spec_types);
1791 /* Compute the merged default arguments. */
1792 new_spec_types =
1793 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
1795 /* Compute the new FUNCTION_TYPE. */
1796 if (object_type)
1798 if (vtt)
1799 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
1800 TREE_VALUE (vtt),
1801 new_spec_types);
1803 if (in_charge)
1804 /* Put the in-charge parameter back. */
1805 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
1806 TREE_VALUE (in_charge),
1807 new_spec_types);
1809 new_type = build_method_type_directly (object_type,
1810 TREE_TYPE (old_type),
1811 new_spec_types);
1813 else
1814 new_type = build_function_type (TREE_TYPE (old_type),
1815 new_spec_types);
1816 new_type = cp_build_type_attribute_variant (new_type,
1817 TYPE_ATTRIBUTES (old_type));
1818 new_type = build_exception_variant (new_type,
1819 TYPE_RAISES_EXCEPTIONS (old_type));
1820 TREE_TYPE (decl) = new_type;
1823 /* Check to see if the function just declared, as indicated in
1824 DECLARATOR, and in DECL, is a specialization of a function
1825 template. We may also discover that the declaration is an explicit
1826 instantiation at this point.
1828 Returns DECL, or an equivalent declaration that should be used
1829 instead if all goes well. Issues an error message if something is
1830 amiss. Returns error_mark_node if the error is not easily
1831 recoverable.
1833 FLAGS is a bitmask consisting of the following flags:
1835 2: The function has a definition.
1836 4: The function is a friend.
1838 The TEMPLATE_COUNT is the number of references to qualifying
1839 template classes that appeared in the name of the function. For
1840 example, in
1842 template <class T> struct S { void f(); };
1843 void S<int>::f();
1845 the TEMPLATE_COUNT would be 1. However, explicitly specialized
1846 classes are not counted in the TEMPLATE_COUNT, so that in
1848 template <class T> struct S {};
1849 template <> struct S<int> { void f(); }
1850 template <> void S<int>::f();
1852 the TEMPLATE_COUNT would be 0. (Note that this declaration is
1853 invalid; there should be no template <>.)
1855 If the function is a specialization, it is marked as such via
1856 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
1857 is set up correctly, and it is added to the list of specializations
1858 for that template. */
1860 tree
1861 check_explicit_specialization (tree declarator,
1862 tree decl,
1863 int template_count,
1864 int flags)
1866 int have_def = flags & 2;
1867 int is_friend = flags & 4;
1868 int specialization = 0;
1869 int explicit_instantiation = 0;
1870 int member_specialization = 0;
1871 tree ctype = DECL_CLASS_CONTEXT (decl);
1872 tree dname = DECL_NAME (decl);
1873 tmpl_spec_kind tsk;
1875 if (is_friend)
1877 if (!processing_specialization)
1878 tsk = tsk_none;
1879 else
1880 tsk = tsk_excessive_parms;
1882 else
1883 tsk = current_tmpl_spec_kind (template_count);
1885 switch (tsk)
1887 case tsk_none:
1888 if (processing_specialization)
1890 specialization = 1;
1891 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1893 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1895 if (is_friend)
1896 /* This could be something like:
1898 template <class T> void f(T);
1899 class S { friend void f<>(int); } */
1900 specialization = 1;
1901 else
1903 /* This case handles bogus declarations like template <>
1904 template <class T> void f<int>(); */
1906 error ("template-id %qD in declaration of primary template",
1907 declarator);
1908 return decl;
1911 break;
1913 case tsk_invalid_member_spec:
1914 /* The error has already been reported in
1915 check_specialization_scope. */
1916 return error_mark_node;
1918 case tsk_invalid_expl_inst:
1919 error ("template parameter list used in explicit instantiation");
1921 /* Fall through. */
1923 case tsk_expl_inst:
1924 if (have_def)
1925 error ("definition provided for explicit instantiation");
1927 explicit_instantiation = 1;
1928 break;
1930 case tsk_excessive_parms:
1931 case tsk_insufficient_parms:
1932 if (tsk == tsk_excessive_parms)
1933 error ("too many template parameter lists in declaration of %qD",
1934 decl);
1935 else if (template_header_count)
1936 error("too few template parameter lists in declaration of %qD", decl);
1937 else
1938 error("explicit specialization of %qD must be introduced by "
1939 "%<template <>%>", decl);
1941 /* Fall through. */
1942 case tsk_expl_spec:
1943 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1944 if (ctype)
1945 member_specialization = 1;
1946 else
1947 specialization = 1;
1948 break;
1950 case tsk_template:
1951 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1953 /* This case handles bogus declarations like template <>
1954 template <class T> void f<int>(); */
1956 if (uses_template_parms (declarator))
1957 error ("function template partial specialization %qD "
1958 "is not allowed", declarator);
1959 else
1960 error ("template-id %qD in declaration of primary template",
1961 declarator);
1962 return decl;
1965 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
1966 /* This is a specialization of a member template, without
1967 specialization the containing class. Something like:
1969 template <class T> struct S {
1970 template <class U> void f (U);
1972 template <> template <class U> void S<int>::f(U) {}
1974 That's a specialization -- but of the entire template. */
1975 specialization = 1;
1976 break;
1978 default:
1979 gcc_unreachable ();
1982 if (specialization || member_specialization)
1984 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
1985 for (; t; t = TREE_CHAIN (t))
1986 if (TREE_PURPOSE (t))
1988 pedwarn
1989 ("default argument specified in explicit specialization");
1990 break;
1994 if (specialization || member_specialization || explicit_instantiation)
1996 tree tmpl = NULL_TREE;
1997 tree targs = NULL_TREE;
1999 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2000 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2002 tree fns;
2004 gcc_assert (TREE_CODE (declarator) == IDENTIFIER_NODE);
2005 if (ctype)
2006 fns = dname;
2007 else
2009 /* If there is no class context, the explicit instantiation
2010 must be at namespace scope. */
2011 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2013 /* Find the namespace binding, using the declaration
2014 context. */
2015 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2016 false, true);
2017 if (fns == error_mark_node || !is_overloaded_fn (fns))
2019 error ("%qD is not a template function", dname);
2020 fns = error_mark_node;
2022 else
2024 tree fn = OVL_CURRENT (fns);
2025 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2026 CP_DECL_CONTEXT (fn)))
2027 error ("%qD is not declared in %qD",
2028 decl, current_namespace);
2032 declarator = lookup_template_function (fns, NULL_TREE);
2035 if (declarator == error_mark_node)
2036 return error_mark_node;
2038 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2040 if (!explicit_instantiation)
2041 /* A specialization in class scope. This is invalid,
2042 but the error will already have been flagged by
2043 check_specialization_scope. */
2044 return error_mark_node;
2045 else
2047 /* It's not valid to write an explicit instantiation in
2048 class scope, e.g.:
2050 class C { template void f(); }
2052 This case is caught by the parser. However, on
2053 something like:
2055 template class C { void f(); };
2057 (which is invalid) we can get here. The error will be
2058 issued later. */
2062 return decl;
2064 else if (ctype != NULL_TREE
2065 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
2066 IDENTIFIER_NODE))
2068 /* Find the list of functions in ctype that have the same
2069 name as the declared function. */
2070 tree name = TREE_OPERAND (declarator, 0);
2071 tree fns = NULL_TREE;
2072 int idx;
2074 if (constructor_name_p (name, ctype))
2076 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2078 if (is_constructor ? !TYPE_HAS_CONSTRUCTOR (ctype)
2079 : !CLASSTYPE_DESTRUCTORS (ctype))
2081 /* From [temp.expl.spec]:
2083 If such an explicit specialization for the member
2084 of a class template names an implicitly-declared
2085 special member function (clause _special_), the
2086 program is ill-formed.
2088 Similar language is found in [temp.explicit]. */
2089 error ("specialization of implicitly-declared special member function");
2090 return error_mark_node;
2093 name = is_constructor ? ctor_identifier : dtor_identifier;
2096 if (!DECL_CONV_FN_P (decl))
2098 idx = lookup_fnfields_1 (ctype, name);
2099 if (idx >= 0)
2100 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (ctype), idx);
2102 else
2104 VEC(tree,gc) *methods;
2105 tree ovl;
2107 /* For a type-conversion operator, we cannot do a
2108 name-based lookup. We might be looking for `operator
2109 int' which will be a specialization of `operator T'.
2110 So, we find *all* the conversion operators, and then
2111 select from them. */
2112 fns = NULL_TREE;
2114 methods = CLASSTYPE_METHOD_VEC (ctype);
2115 if (methods)
2116 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2117 VEC_iterate (tree, methods, idx, ovl);
2118 ++idx)
2120 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2121 /* There are no more conversion functions. */
2122 break;
2124 /* Glue all these conversion functions together
2125 with those we already have. */
2126 for (; ovl; ovl = OVL_NEXT (ovl))
2127 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2131 if (fns == NULL_TREE)
2133 error ("no member function %qD declared in %qT", name, ctype);
2134 return error_mark_node;
2136 else
2137 TREE_OPERAND (declarator, 0) = fns;
2140 /* Figure out what exactly is being specialized at this point.
2141 Note that for an explicit instantiation, even one for a
2142 member function, we cannot tell apriori whether the
2143 instantiation is for a member template, or just a member
2144 function of a template class. Even if a member template is
2145 being instantiated, the member template arguments may be
2146 elided if they can be deduced from the rest of the
2147 declaration. */
2148 tmpl = determine_specialization (declarator, decl,
2149 &targs,
2150 member_specialization,
2151 template_count,
2152 tsk);
2154 if (!tmpl || tmpl == error_mark_node)
2155 /* We couldn't figure out what this declaration was
2156 specializing. */
2157 return error_mark_node;
2158 else
2160 tree gen_tmpl = most_general_template (tmpl);
2162 if (explicit_instantiation)
2164 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2165 is done by do_decl_instantiation later. */
2167 int arg_depth = TMPL_ARGS_DEPTH (targs);
2168 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2170 if (arg_depth > parm_depth)
2172 /* If TMPL is not the most general template (for
2173 example, if TMPL is a friend template that is
2174 injected into namespace scope), then there will
2175 be too many levels of TARGS. Remove some of them
2176 here. */
2177 int i;
2178 tree new_targs;
2180 new_targs = make_tree_vec (parm_depth);
2181 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2182 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2183 = TREE_VEC_ELT (targs, i);
2184 targs = new_targs;
2187 return instantiate_template (tmpl, targs, tf_error);
2190 /* If we thought that the DECL was a member function, but it
2191 turns out to be specializing a static member function,
2192 make DECL a static member function as well. */
2193 if (DECL_STATIC_FUNCTION_P (tmpl)
2194 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2195 revert_static_member_fn (decl);
2197 /* If this is a specialization of a member template of a
2198 template class, we want to return the TEMPLATE_DECL, not
2199 the specialization of it. */
2200 if (tsk == tsk_template)
2202 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2203 DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl)) = NULL_TREE;
2204 if (have_def)
2206 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2207 DECL_SOURCE_LOCATION (DECL_TEMPLATE_RESULT (tmpl))
2208 = DECL_SOURCE_LOCATION (decl);
2209 /* We want to use the argument list specified in the
2210 definition, not in the original declaration. */
2211 DECL_ARGUMENTS (DECL_TEMPLATE_RESULT (tmpl))
2212 = DECL_ARGUMENTS (decl);
2214 return tmpl;
2217 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2218 DECL_TEMPLATE_INFO (decl) = tree_cons (tmpl, targs, NULL_TREE);
2220 /* Inherit default function arguments from the template
2221 DECL is specializing. */
2222 copy_default_args_to_explicit_spec (decl);
2224 /* This specialization has the same protection as the
2225 template it specializes. */
2226 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2227 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2229 /* 7.1.1-1 [dcl.stc]
2231 A storage-class-specifier shall not be specified in an
2232 explicit specialization...
2234 The parser rejects these, so unless action is taken here,
2235 explicit function specializations will always appear with
2236 global linkage.
2238 The action recommended by the C++ CWG in response to C++
2239 defect report 605 is to make the storage class and linkage
2240 of the explicit specialization match the templated function:
2242 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2244 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2246 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2247 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2249 /* This specialization has the same linkage and visibility as
2250 the function template it specializes. */
2251 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2252 if (! TREE_PUBLIC (decl))
2254 DECL_INTERFACE_KNOWN (decl) = 1;
2255 DECL_NOT_REALLY_EXTERN (decl) = 1;
2257 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2258 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2260 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2261 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2265 /* If DECL is a friend declaration, declared using an
2266 unqualified name, the namespace associated with DECL may
2267 have been set incorrectly. For example, in:
2269 template <typename T> void f(T);
2270 namespace N {
2271 struct S { friend void f<int>(int); }
2274 we will have set the DECL_CONTEXT for the friend
2275 declaration to N, rather than to the global namespace. */
2276 if (DECL_NAMESPACE_SCOPE_P (decl))
2277 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2279 if (is_friend && !have_def)
2280 /* This is not really a declaration of a specialization.
2281 It's just the name of an instantiation. But, it's not
2282 a request for an instantiation, either. */
2283 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2284 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2285 /* This is indeed a specialization. In case of constructors
2286 and destructors, we need in-charge and not-in-charge
2287 versions in V3 ABI. */
2288 clone_function_decl (decl, /*update_method_vec_p=*/0);
2290 /* Register this specialization so that we can find it
2291 again. */
2292 decl = register_specialization (decl, gen_tmpl, targs, is_friend);
2296 return decl;
2299 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2300 parameters. These are represented in the same format used for
2301 DECL_TEMPLATE_PARMS. */
2304 comp_template_parms (const_tree parms1, const_tree parms2)
2306 const_tree p1;
2307 const_tree p2;
2309 if (parms1 == parms2)
2310 return 1;
2312 for (p1 = parms1, p2 = parms2;
2313 p1 != NULL_TREE && p2 != NULL_TREE;
2314 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2316 tree t1 = TREE_VALUE (p1);
2317 tree t2 = TREE_VALUE (p2);
2318 int i;
2320 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2321 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2323 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2324 return 0;
2326 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2328 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2329 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2331 /* If either of the template parameters are invalid, assume
2332 they match for the sake of error recovery. */
2333 if (parm1 == error_mark_node || parm2 == error_mark_node)
2334 return 1;
2336 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2337 return 0;
2339 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2340 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2341 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2342 continue;
2343 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2344 return 0;
2348 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2349 /* One set of parameters has more parameters lists than the
2350 other. */
2351 return 0;
2353 return 1;
2356 /* Determine whether PARM is a parameter pack. */
2357 bool
2358 template_parameter_pack_p (const_tree parm)
2360 /* Determine if we have a non-type template parameter pack. */
2361 if (TREE_CODE (parm) == PARM_DECL)
2362 return (DECL_TEMPLATE_PARM_P (parm)
2363 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2365 /* If this is a list of template parameters, we could get a
2366 TYPE_DECL or a TEMPLATE_DECL. */
2367 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2368 parm = TREE_TYPE (parm);
2370 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2371 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2372 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2375 /* Determine whether ARGS describes a variadic template args list,
2376 i.e., one that is terminated by a template argument pack. */
2377 static bool
2378 template_args_variadic_p (tree args)
2380 int nargs;
2381 tree last_parm;
2383 if (args == NULL_TREE)
2384 return false;
2386 args = INNERMOST_TEMPLATE_ARGS (args);
2387 nargs = TREE_VEC_LENGTH (args);
2389 if (nargs == 0)
2390 return false;
2392 last_parm = TREE_VEC_ELT (args, nargs - 1);
2394 return ARGUMENT_PACK_P (last_parm);
2397 /* Generate a new name for the parameter pack name NAME (an
2398 IDENTIFIER_NODE) that incorporates its */
2399 static tree
2400 make_ith_pack_parameter_name (tree name, int i)
2402 /* Munge the name to include the parameter index. */
2403 char numbuf[128];
2404 char* newname;
2406 sprintf(numbuf, "%i", i);
2407 newname = (char*)alloca (IDENTIFIER_LENGTH (name) + strlen(numbuf) + 2);
2408 sprintf(newname, "%s#%i", IDENTIFIER_POINTER (name), i);
2409 return get_identifier (newname);
2412 /* Structure used to track the progress of find_parameter_pack_r. */
2413 struct find_parameter_pack_data
2415 tree* parameter_packs;
2416 struct pointer_set_t *visited;
2419 /* Identifiers all of the argument packs that occur in a template
2420 argument and appends them to the TREE_LIST inside DATA, which is a
2421 find_parameter_pack_Data structure. This is a subroutine of
2422 make_pack_expansion and uses_parameter_packs. */
2423 static tree
2424 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
2426 tree t = *tp;
2427 struct find_parameter_pack_data* ppd =
2428 (struct find_parameter_pack_data*)data;
2430 if (TYPE_P (t))
2432 tree context = TYPE_CONTEXT (t);
2433 cp_walk_tree (&context, &find_parameter_packs_r, ppd, ppd->visited);
2436 /* This switch statement will return immediately if we don't find a
2437 parameter pack. */
2438 switch (TREE_CODE (t))
2440 case TEMPLATE_PARM_INDEX:
2441 if (TEMPLATE_PARM_PARAMETER_PACK (t))
2442 break;
2443 return NULL_TREE;
2445 case BOUND_TEMPLATE_TEMPLATE_PARM:
2446 /* Check the template arguments. */
2447 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
2448 ppd->visited);
2450 /* Dig out the underlying TEMPLATE_TEMPLATE_PARM. */
2451 t = TYPE_TI_TEMPLATE (t);
2452 if (DECL_P (t) && TREE_TYPE (t))
2453 t = TREE_TYPE (t);
2454 *walk_subtrees = 0;
2456 /* Fall through. */
2458 case TEMPLATE_TYPE_PARM:
2459 case TEMPLATE_TEMPLATE_PARM:
2460 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
2461 break;
2462 return NULL_TREE;
2464 case PARM_DECL:
2465 if (FUNCTION_PARAMETER_PACK_P (t))
2467 /* We don't want to walk into the type of a PARM_DECL,
2468 because we don't want to see the type parameter pack.*/
2469 *walk_subtrees = 0;
2470 break;
2472 return NULL_TREE;
2474 case RECORD_TYPE:
2475 if (TYPE_PTRMEMFUNC_P (t))
2476 return NULL_TREE;
2477 /* Fall through. */
2479 case UNION_TYPE:
2480 case ENUMERAL_TYPE:
2481 if (TYPE_TEMPLATE_INFO (t))
2483 tree args = TREE_VALUE (TYPE_TEMPLATE_INFO (t));
2484 cp_walk_tree (&args, &find_parameter_packs_r, ppd, ppd->visited);
2487 *walk_subtrees = 0;
2488 return NULL_TREE;
2490 case TEMPLATE_DECL:
2491 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
2492 && TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (t)))
2493 break;
2495 *walk_subtrees = 0;
2496 return NULL_TREE;
2498 case TYPE_PACK_EXPANSION:
2499 case EXPR_PACK_EXPANSION:
2500 *walk_subtrees = 0;
2501 return NULL_TREE;
2503 case INTEGER_TYPE:
2504 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
2505 ppd, ppd->visited);
2506 *walk_subtrees = 0;
2507 return NULL_TREE;
2509 default:
2510 return NULL_TREE;
2513 /* Add this parameter pack to the list. */
2514 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
2516 return NULL_TREE;
2519 /* Determines if the expression or type T uses any parameter packs. */
2520 bool
2521 uses_parameter_packs (tree t)
2523 tree parameter_packs = NULL_TREE;
2524 struct find_parameter_pack_data ppd;
2525 ppd.parameter_packs = &parameter_packs;
2526 ppd.visited = pointer_set_create ();
2527 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
2528 pointer_set_destroy (ppd.visited);
2529 return parameter_packs != NULL_TREE;
2532 /* Turn ARG, which may be an expression, type, or a TREE_LIST
2533 representation a base-class initializer into a parameter pack
2534 expansion. If all goes well, the resulting node will be an
2535 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
2536 respectively. */
2537 tree
2538 make_pack_expansion (tree arg)
2540 tree result;
2541 tree parameter_packs = NULL_TREE;
2542 bool for_types = false;
2543 struct find_parameter_pack_data ppd;
2545 if (!arg || arg == error_mark_node)
2546 return arg;
2548 if (TREE_CODE (arg) == TREE_LIST)
2550 /* The only time we will see a TREE_LIST here is for a base
2551 class initializer. In this case, the TREE_PURPOSE will be a
2552 _TYPE node (representing the base class expansion we're
2553 initializing) and the TREE_VALUE will be a TREE_LIST
2554 containing the initialization arguments.
2556 The resulting expansion looks somewhat different from most
2557 expansions. Rather than returning just one _EXPANSION, we
2558 return a TREE_LIST whose TREE_PURPOSE is a
2559 TYPE_PACK_EXPANSION containing the bases that will be
2560 initialized. The TREE_VALUE will be identical to the
2561 original TREE_VALUE, which is a list of arguments that will
2562 be passed to each base. We do not introduce any new pack
2563 expansion nodes into the TREE_VALUE (although it is possible
2564 that some already exist), because the TREE_PURPOSE and
2565 TREE_VALUE all need to be expanded together with the same
2566 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
2567 resulting TREE_PURPOSE will mention the parameter packs in
2568 both the bases and the arguments to the bases. */
2569 tree purpose;
2570 tree value;
2571 tree parameter_packs = NULL_TREE;
2573 /* Determine which parameter packs will be used by the base
2574 class expansion. */
2575 ppd.visited = pointer_set_create ();
2576 ppd.parameter_packs = &parameter_packs;
2577 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
2578 &ppd, ppd.visited);
2580 if (parameter_packs == NULL_TREE)
2582 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
2583 pointer_set_destroy (ppd.visited);
2584 return error_mark_node;
2587 if (TREE_VALUE (arg) != void_type_node)
2589 /* Collect the sets of parameter packs used in each of the
2590 initialization arguments. */
2591 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
2593 /* Determine which parameter packs will be expanded in this
2594 argument. */
2595 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
2596 &ppd, ppd.visited);
2600 pointer_set_destroy (ppd.visited);
2602 /* Create the pack expansion type for the base type. */
2603 purpose = make_node (TYPE_PACK_EXPANSION);
2604 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
2605 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
2607 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
2608 they will rarely be compared to anything. */
2609 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
2611 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
2614 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
2615 for_types = true;
2617 /* Build the PACK_EXPANSION_* node. */
2618 result = make_node (for_types ? TYPE_PACK_EXPANSION : EXPR_PACK_EXPANSION);
2619 SET_PACK_EXPANSION_PATTERN (result, arg);
2620 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
2622 /* Propagate type and const-expression information. */
2623 TREE_TYPE (result) = TREE_TYPE (arg);
2624 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
2626 else
2627 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
2628 they will rarely be compared to anything. */
2629 SET_TYPE_STRUCTURAL_EQUALITY (result);
2631 /* Determine which parameter packs will be expanded. */
2632 ppd.parameter_packs = &parameter_packs;
2633 ppd.visited = pointer_set_create ();
2634 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
2635 pointer_set_destroy (ppd.visited);
2637 /* Make sure we found some parameter packs. */
2638 if (parameter_packs == NULL_TREE)
2640 if (TYPE_P (arg))
2641 error ("expansion pattern %<%T%> contains no argument packs", arg);
2642 else
2643 error ("expansion pattern %<%E%> contains no argument packs", arg);
2644 return error_mark_node;
2646 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
2648 return result;
2651 /* Checks T for any "bare" parameter packs, which have not yet been
2652 expanded, and issues an error if any are found. This operation can
2653 only be done on full expressions or types (e.g., an expression
2654 statement, "if" condition, etc.), because we could have expressions like:
2656 foo(f(g(h(args)))...)
2658 where "args" is a parameter pack. check_for_bare_parameter_packs
2659 should not be called for the subexpressions args, h(args),
2660 g(h(args)), or f(g(h(args))), because we would produce erroneous
2661 error messages.
2663 Returns TRUE if there were no bare parameter packs, returns FALSE
2664 (and emits an error) if there were bare parameter packs.*/
2665 bool
2666 check_for_bare_parameter_packs (tree t)
2668 tree parameter_packs = NULL_TREE;
2669 struct find_parameter_pack_data ppd;
2671 if (!processing_template_decl || !t || t == error_mark_node)
2672 return true;
2674 if (TREE_CODE (t) == TYPE_DECL)
2675 t = TREE_TYPE (t);
2677 ppd.parameter_packs = &parameter_packs;
2678 ppd.visited = pointer_set_create ();
2679 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
2680 pointer_set_destroy (ppd.visited);
2682 if (parameter_packs)
2684 error ("parameter packs not expanded with `...':");
2685 while (parameter_packs)
2687 tree pack = TREE_VALUE (parameter_packs);
2688 tree name = NULL_TREE;
2690 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
2691 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
2692 name = TYPE_NAME (pack);
2693 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
2694 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
2695 else
2696 name = DECL_NAME (pack);
2697 inform (" %qD", name);
2699 parameter_packs = TREE_CHAIN (parameter_packs);
2702 return false;
2705 return true;
2708 /* Expand any parameter packs that occur in the template arguments in
2709 ARGS. */
2710 tree
2711 expand_template_argument_pack (tree args)
2713 tree result_args = NULL_TREE;
2714 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
2715 int num_result_args = -1;
2717 /* First, determine if we need to expand anything, and the number of
2718 slots we'll need. */
2719 for (in_arg = 0; in_arg < nargs; ++in_arg)
2721 tree arg = TREE_VEC_ELT (args, in_arg);
2722 if (ARGUMENT_PACK_P (arg))
2724 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
2725 if (num_result_args < 0)
2726 num_result_args = in_arg + num_packed;
2727 else
2728 num_result_args += num_packed;
2730 else
2732 if (num_result_args >= 0)
2733 num_result_args++;
2737 /* If no expansion is necessary, we're done. */
2738 if (num_result_args < 0)
2739 return args;
2741 /* Expand arguments. */
2742 result_args = make_tree_vec (num_result_args);
2743 for (in_arg = 0; in_arg < nargs; ++in_arg)
2745 tree arg = TREE_VEC_ELT (args, in_arg);
2746 if (ARGUMENT_PACK_P (arg))
2748 tree packed = ARGUMENT_PACK_ARGS (arg);
2749 int i, num_packed = TREE_VEC_LENGTH (packed);
2750 for (i = 0; i < num_packed; ++i, ++out_arg)
2751 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
2753 else
2755 TREE_VEC_ELT (result_args, out_arg) = arg;
2756 ++out_arg;
2760 return result_args;
2763 /* Complain if DECL shadows a template parameter.
2765 [temp.local]: A template-parameter shall not be redeclared within its
2766 scope (including nested scopes). */
2768 void
2769 check_template_shadow (tree decl)
2771 tree olddecl;
2773 /* If we're not in a template, we can't possibly shadow a template
2774 parameter. */
2775 if (!current_template_parms)
2776 return;
2778 /* Figure out what we're shadowing. */
2779 if (TREE_CODE (decl) == OVERLOAD)
2780 decl = OVL_CURRENT (decl);
2781 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
2783 /* If there's no previous binding for this name, we're not shadowing
2784 anything, let alone a template parameter. */
2785 if (!olddecl)
2786 return;
2788 /* If we're not shadowing a template parameter, we're done. Note
2789 that OLDDECL might be an OVERLOAD (or perhaps even an
2790 ERROR_MARK), so we can't just blithely assume it to be a _DECL
2791 node. */
2792 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
2793 return;
2795 /* We check for decl != olddecl to avoid bogus errors for using a
2796 name inside a class. We check TPFI to avoid duplicate errors for
2797 inline member templates. */
2798 if (decl == olddecl
2799 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
2800 return;
2802 error ("declaration of %q+#D", decl);
2803 error (" shadows template parm %q+#D", olddecl);
2806 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
2807 ORIG_LEVEL, DECL, and TYPE. */
2809 static tree
2810 build_template_parm_index (int index,
2811 int level,
2812 int orig_level,
2813 tree decl,
2814 tree type)
2816 tree t = make_node (TEMPLATE_PARM_INDEX);
2817 TEMPLATE_PARM_IDX (t) = index;
2818 TEMPLATE_PARM_LEVEL (t) = level;
2819 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
2820 TEMPLATE_PARM_DECL (t) = decl;
2821 TREE_TYPE (t) = type;
2822 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
2823 TREE_INVARIANT (t) = TREE_INVARIANT (decl);
2824 TREE_READONLY (t) = TREE_READONLY (decl);
2826 return t;
2829 /* Find the canonical type parameter for the given template type
2830 parameter. Returns the canonical type parameter, which may be TYPE
2831 if no such parameter existed. */
2832 static tree
2833 canonical_type_parameter (tree type)
2835 tree list;
2836 int idx = TEMPLATE_TYPE_IDX (type);
2837 if (!canonical_template_parms)
2838 canonical_template_parms = VEC_alloc (tree, gc, idx+1);
2840 while (VEC_length (tree, canonical_template_parms) <= (unsigned)idx)
2841 VEC_safe_push (tree, gc, canonical_template_parms, NULL_TREE);
2843 list = VEC_index (tree, canonical_template_parms, idx);
2844 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
2845 list = TREE_CHAIN (list);
2847 if (list)
2848 return TREE_VALUE (list);
2849 else
2851 VEC_replace(tree, canonical_template_parms, idx,
2852 tree_cons (NULL_TREE, type,
2853 VEC_index (tree, canonical_template_parms, idx)));
2854 return type;
2858 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
2859 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
2860 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
2861 new one is created. */
2863 static tree
2864 reduce_template_parm_level (tree index, tree type, int levels)
2866 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
2867 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
2868 != TEMPLATE_PARM_LEVEL (index) - levels))
2870 tree orig_decl = TEMPLATE_PARM_DECL (index);
2871 tree decl, t;
2873 decl = build_decl (TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
2874 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
2875 TREE_INVARIANT (decl) = TREE_INVARIANT (orig_decl);
2876 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
2877 DECL_ARTIFICIAL (decl) = 1;
2878 SET_DECL_TEMPLATE_PARM_P (decl);
2880 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
2881 TEMPLATE_PARM_LEVEL (index) - levels,
2882 TEMPLATE_PARM_ORIG_LEVEL (index),
2883 decl, type);
2884 TEMPLATE_PARM_DESCENDANTS (index) = t;
2885 TEMPLATE_PARM_PARAMETER_PACK (t)
2886 = TEMPLATE_PARM_PARAMETER_PACK (index);
2888 /* Template template parameters need this. */
2889 if (TREE_CODE (decl) != CONST_DECL)
2890 DECL_TEMPLATE_PARMS (decl)
2891 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index));
2894 return TEMPLATE_PARM_DESCENDANTS (index);
2897 /* Process information from new template parameter PARM and append it to the
2898 LIST being built. This new parameter is a non-type parameter iff
2899 IS_NON_TYPE is true. This new parameter is a parameter
2900 pack iff IS_PARAMETER_PACK is true. */
2902 tree
2903 process_template_parm (tree list, tree parm, bool is_non_type,
2904 bool is_parameter_pack)
2906 tree decl = 0;
2907 tree defval;
2908 tree err_parm_list;
2909 int idx = 0;
2911 gcc_assert (TREE_CODE (parm) == TREE_LIST);
2912 defval = TREE_PURPOSE (parm);
2914 if (list)
2916 tree p = tree_last (list);
2918 if (p && TREE_VALUE (p) != error_mark_node)
2920 p = TREE_VALUE (p);
2921 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
2922 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
2923 else
2924 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
2927 ++idx;
2929 else
2930 idx = 0;
2932 if (is_non_type)
2934 parm = TREE_VALUE (parm);
2936 SET_DECL_TEMPLATE_PARM_P (parm);
2938 if (TREE_TYPE (parm) == error_mark_node)
2940 err_parm_list = build_tree_list (defval, parm);
2941 TREE_VALUE (err_parm_list) = error_mark_node;
2942 return chainon (list, err_parm_list);
2944 else
2946 /* [temp.param]
2948 The top-level cv-qualifiers on the template-parameter are
2949 ignored when determining its type. */
2950 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
2951 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
2953 err_parm_list = build_tree_list (defval, parm);
2954 TREE_VALUE (err_parm_list) = error_mark_node;
2955 return chainon (list, err_parm_list);
2958 if (uses_parameter_packs (TREE_TYPE (parm)) && !is_parameter_pack)
2960 /* This template parameter is not a parameter pack, but it
2961 should be. Complain about "bare" parameter packs. */
2962 check_for_bare_parameter_packs (TREE_TYPE (parm));
2964 /* Recover by calling this a parameter pack. */
2965 is_parameter_pack = true;
2969 /* A template parameter is not modifiable. */
2970 TREE_CONSTANT (parm) = 1;
2971 TREE_INVARIANT (parm) = 1;
2972 TREE_READONLY (parm) = 1;
2973 decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
2974 TREE_CONSTANT (decl) = 1;
2975 TREE_INVARIANT (decl) = 1;
2976 TREE_READONLY (decl) = 1;
2977 DECL_INITIAL (parm) = DECL_INITIAL (decl)
2978 = build_template_parm_index (idx, processing_template_decl,
2979 processing_template_decl,
2980 decl, TREE_TYPE (parm));
2982 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
2983 = is_parameter_pack;
2985 else
2987 tree t;
2988 parm = TREE_VALUE (TREE_VALUE (parm));
2990 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
2992 t = make_aggr_type (TEMPLATE_TEMPLATE_PARM);
2993 /* This is for distinguishing between real templates and template
2994 template parameters */
2995 TREE_TYPE (parm) = t;
2996 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
2997 decl = parm;
2999 else
3001 t = make_aggr_type (TEMPLATE_TYPE_PARM);
3002 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3003 decl = build_decl (TYPE_DECL, parm, t);
3006 TYPE_NAME (t) = decl;
3007 TYPE_STUB_DECL (t) = decl;
3008 parm = decl;
3009 TEMPLATE_TYPE_PARM_INDEX (t)
3010 = build_template_parm_index (idx, processing_template_decl,
3011 processing_template_decl,
3012 decl, TREE_TYPE (parm));
3013 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3014 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3016 DECL_ARTIFICIAL (decl) = 1;
3017 SET_DECL_TEMPLATE_PARM_P (decl);
3018 pushdecl (decl);
3019 parm = build_tree_list (defval, parm);
3020 return chainon (list, parm);
3023 /* The end of a template parameter list has been reached. Process the
3024 tree list into a parameter vector, converting each parameter into a more
3025 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3026 as PARM_DECLs. */
3028 tree
3029 end_template_parm_list (tree parms)
3031 int nparms;
3032 tree parm, next;
3033 tree saved_parmlist = make_tree_vec (list_length (parms));
3035 current_template_parms
3036 = tree_cons (size_int (processing_template_decl),
3037 saved_parmlist, current_template_parms);
3039 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3041 next = TREE_CHAIN (parm);
3042 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3043 TREE_CHAIN (parm) = NULL_TREE;
3046 --processing_template_parmlist;
3048 return saved_parmlist;
3051 /* end_template_decl is called after a template declaration is seen. */
3053 void
3054 end_template_decl (void)
3056 reset_specialization ();
3058 if (! processing_template_decl)
3059 return;
3061 /* This matches the pushlevel in begin_template_parm_list. */
3062 finish_scope ();
3064 --processing_template_decl;
3065 current_template_parms = TREE_CHAIN (current_template_parms);
3068 /* Within the declaration of a template, return all levels of template
3069 parameters that apply. The template parameters are represented as
3070 a TREE_VEC, in the form documented in cp-tree.h for template
3071 arguments. */
3073 static tree
3074 current_template_args (void)
3076 tree header;
3077 tree args = NULL_TREE;
3078 int length = TMPL_PARMS_DEPTH (current_template_parms);
3079 int l = length;
3081 /* If there is only one level of template parameters, we do not
3082 create a TREE_VEC of TREE_VECs. Instead, we return a single
3083 TREE_VEC containing the arguments. */
3084 if (length > 1)
3085 args = make_tree_vec (length);
3087 for (header = current_template_parms; header; header = TREE_CHAIN (header))
3089 tree a = copy_node (TREE_VALUE (header));
3090 int i;
3092 TREE_TYPE (a) = NULL_TREE;
3093 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3095 tree t = TREE_VEC_ELT (a, i);
3097 /* T will be a list if we are called from within a
3098 begin/end_template_parm_list pair, but a vector directly
3099 if within a begin/end_member_template_processing pair. */
3100 if (TREE_CODE (t) == TREE_LIST)
3102 t = TREE_VALUE (t);
3104 if (t != error_mark_node)
3106 if (TREE_CODE (t) == TYPE_DECL
3107 || TREE_CODE (t) == TEMPLATE_DECL)
3109 t = TREE_TYPE (t);
3111 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3113 /* Turn this argument into a TYPE_ARGUMENT_PACK
3114 with a single element, which expands T. */
3115 tree vec = make_tree_vec (1);
3116 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3118 t = make_node (TYPE_ARGUMENT_PACK);
3119 SET_ARGUMENT_PACK_ARGS (t, vec);
3122 else
3124 t = DECL_INITIAL (t);
3126 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3128 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3129 with a single element, which expands T. */
3130 tree vec = make_tree_vec (1);
3131 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3132 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3134 t = make_node (NONTYPE_ARGUMENT_PACK);
3135 SET_ARGUMENT_PACK_ARGS (t, vec);
3136 TREE_TYPE (t) = type;
3139 TREE_VEC_ELT (a, i) = t;
3144 if (length > 1)
3145 TREE_VEC_ELT (args, --l) = a;
3146 else
3147 args = a;
3150 return args;
3153 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
3154 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
3155 a member template. Used by push_template_decl below. */
3157 static tree
3158 build_template_decl (tree decl, tree parms, bool member_template_p)
3160 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
3161 DECL_TEMPLATE_PARMS (tmpl) = parms;
3162 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
3163 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
3164 if (DECL_LANG_SPECIFIC (decl))
3166 DECL_STATIC_FUNCTION_P (tmpl) = DECL_STATIC_FUNCTION_P (decl);
3167 DECL_CONSTRUCTOR_P (tmpl) = DECL_CONSTRUCTOR_P (decl);
3168 DECL_DESTRUCTOR_P (tmpl) = DECL_DESTRUCTOR_P (decl);
3169 DECL_NONCONVERTING_P (tmpl) = DECL_NONCONVERTING_P (decl);
3170 DECL_ASSIGNMENT_OPERATOR_P (tmpl) = DECL_ASSIGNMENT_OPERATOR_P (decl);
3171 if (DECL_OVERLOADED_OPERATOR_P (decl))
3172 SET_OVERLOADED_OPERATOR_CODE (tmpl,
3173 DECL_OVERLOADED_OPERATOR_P (decl));
3176 return tmpl;
3179 struct template_parm_data
3181 /* The level of the template parameters we are currently
3182 processing. */
3183 int level;
3185 /* The index of the specialization argument we are currently
3186 processing. */
3187 int current_arg;
3189 /* An array whose size is the number of template parameters. The
3190 elements are nonzero if the parameter has been used in any one
3191 of the arguments processed so far. */
3192 int* parms;
3194 /* An array whose size is the number of template arguments. The
3195 elements are nonzero if the argument makes use of template
3196 parameters of this level. */
3197 int* arg_uses_template_parms;
3200 /* Subroutine of push_template_decl used to see if each template
3201 parameter in a partial specialization is used in the explicit
3202 argument list. If T is of the LEVEL given in DATA (which is
3203 treated as a template_parm_data*), then DATA->PARMS is marked
3204 appropriately. */
3206 static int
3207 mark_template_parm (tree t, void* data)
3209 int level;
3210 int idx;
3211 struct template_parm_data* tpd = (struct template_parm_data*) data;
3213 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
3215 level = TEMPLATE_PARM_LEVEL (t);
3216 idx = TEMPLATE_PARM_IDX (t);
3218 else
3220 level = TEMPLATE_TYPE_LEVEL (t);
3221 idx = TEMPLATE_TYPE_IDX (t);
3224 if (level == tpd->level)
3226 tpd->parms[idx] = 1;
3227 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
3230 /* Return zero so that for_each_template_parm will continue the
3231 traversal of the tree; we want to mark *every* template parm. */
3232 return 0;
3235 /* Process the partial specialization DECL. */
3237 static tree
3238 process_partial_specialization (tree decl)
3240 tree type = TREE_TYPE (decl);
3241 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
3242 tree specargs = CLASSTYPE_TI_ARGS (type);
3243 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
3244 tree inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
3245 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
3246 int nargs = TREE_VEC_LENGTH (inner_args);
3247 int ntparms = TREE_VEC_LENGTH (inner_parms);
3248 int i;
3249 int did_error_intro = 0;
3250 struct template_parm_data tpd;
3251 struct template_parm_data tpd2;
3253 /* We check that each of the template parameters given in the
3254 partial specialization is used in the argument list to the
3255 specialization. For example:
3257 template <class T> struct S;
3258 template <class T> struct S<T*>;
3260 The second declaration is OK because `T*' uses the template
3261 parameter T, whereas
3263 template <class T> struct S<int>;
3265 is no good. Even trickier is:
3267 template <class T>
3268 struct S1
3270 template <class U>
3271 struct S2;
3272 template <class U>
3273 struct S2<T>;
3276 The S2<T> declaration is actually invalid; it is a
3277 full-specialization. Of course,
3279 template <class U>
3280 struct S2<T (*)(U)>;
3282 or some such would have been OK. */
3283 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
3284 tpd.parms = (int *) alloca (sizeof (int) * ntparms);
3285 memset (tpd.parms, 0, sizeof (int) * ntparms);
3287 tpd.arg_uses_template_parms = (int *) alloca (sizeof (int) * nargs);
3288 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
3289 for (i = 0; i < nargs; ++i)
3291 tpd.current_arg = i;
3292 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
3293 &mark_template_parm,
3294 &tpd,
3295 NULL);
3297 for (i = 0; i < ntparms; ++i)
3298 if (tpd.parms[i] == 0)
3300 /* One of the template parms was not used in the
3301 specialization. */
3302 if (!did_error_intro)
3304 error ("template parameters not used in partial specialization:");
3305 did_error_intro = 1;
3308 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
3311 /* [temp.class.spec]
3313 The argument list of the specialization shall not be identical to
3314 the implicit argument list of the primary template. */
3315 if (comp_template_args
3316 (inner_args,
3317 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
3318 (maintmpl)))))
3319 error ("partial specialization %qT does not specialize any template arguments", type);
3321 /* [temp.class.spec]
3323 A partially specialized non-type argument expression shall not
3324 involve template parameters of the partial specialization except
3325 when the argument expression is a simple identifier.
3327 The type of a template parameter corresponding to a specialized
3328 non-type argument shall not be dependent on a parameter of the
3329 specialization.
3331 Also, we verify that pack expansions only occur at the
3332 end of the argument list. */
3333 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
3334 tpd2.parms = 0;
3335 for (i = 0; i < nargs; ++i)
3337 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
3338 tree arg = TREE_VEC_ELT (inner_args, i);
3339 tree packed_args = NULL_TREE;
3340 int j, len = 1;
3342 if (ARGUMENT_PACK_P (arg))
3344 /* Extract the arguments from the argument pack. We'll be
3345 iterating over these in the following loop. */
3346 packed_args = ARGUMENT_PACK_ARGS (arg);
3347 len = TREE_VEC_LENGTH (packed_args);
3350 for (j = 0; j < len; j++)
3352 if (packed_args)
3353 /* Get the Jth argument in the parameter pack. */
3354 arg = TREE_VEC_ELT (packed_args, j);
3356 if (PACK_EXPANSION_P (arg))
3358 /* Pack expansions must come at the end of the
3359 argument list. */
3360 if ((packed_args && j < len - 1)
3361 || (!packed_args && i < nargs - 1))
3363 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
3364 error ("parameter pack argument %qE must be at the end of the template argument list", arg);
3365 else
3366 error ("parameter pack argument %qT must be at the end of the template argument list", arg);
3370 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
3371 /* We only care about the pattern. */
3372 arg = PACK_EXPANSION_PATTERN (arg);
3374 if (/* These first two lines are the `non-type' bit. */
3375 !TYPE_P (arg)
3376 && TREE_CODE (arg) != TEMPLATE_DECL
3377 /* This next line is the `argument expression is not just a
3378 simple identifier' condition and also the `specialized
3379 non-type argument' bit. */
3380 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
3382 if ((!packed_args && tpd.arg_uses_template_parms[i])
3383 || (packed_args && uses_template_parms (arg)))
3384 error ("template argument %qE involves template parameter(s)",
3385 arg);
3386 else
3388 /* Look at the corresponding template parameter,
3389 marking which template parameters its type depends
3390 upon. */
3391 tree type = TREE_TYPE (parm);
3393 if (!tpd2.parms)
3395 /* We haven't yet initialized TPD2. Do so now. */
3396 tpd2.arg_uses_template_parms
3397 = (int *) alloca (sizeof (int) * nargs);
3398 /* The number of parameters here is the number in the
3399 main template, which, as checked in the assertion
3400 above, is NARGS. */
3401 tpd2.parms = (int *) alloca (sizeof (int) * nargs);
3402 tpd2.level =
3403 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
3406 /* Mark the template parameters. But this time, we're
3407 looking for the template parameters of the main
3408 template, not in the specialization. */
3409 tpd2.current_arg = i;
3410 tpd2.arg_uses_template_parms[i] = 0;
3411 memset (tpd2.parms, 0, sizeof (int) * nargs);
3412 for_each_template_parm (type,
3413 &mark_template_parm,
3414 &tpd2,
3415 NULL);
3417 if (tpd2.arg_uses_template_parms [i])
3419 /* The type depended on some template parameters.
3420 If they are fully specialized in the
3421 specialization, that's OK. */
3422 int j;
3423 for (j = 0; j < nargs; ++j)
3424 if (tpd2.parms[j] != 0
3425 && tpd.arg_uses_template_parms [j])
3427 error ("type %qT of template argument %qE depends "
3428 "on template parameter(s)",
3429 type,
3430 arg);
3431 break;
3439 if (retrieve_specialization (maintmpl, specargs,
3440 /*class_specializations_p=*/true))
3441 /* We've already got this specialization. */
3442 return decl;
3444 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
3445 = tree_cons (specargs, inner_parms,
3446 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
3447 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
3448 return decl;
3451 /* Check that a template declaration's use of default arguments is not
3452 invalid. Here, PARMS are the template parameters. IS_PRIMARY is
3453 nonzero if DECL is the thing declared by a primary template.
3454 IS_PARTIAL is nonzero if DECL is a partial specialization.
3457 IS_FRIEND_DECL is nonzero if DECL is a friend function template
3458 declaration (but not a definition); 1 indicates a declaration, 2
3459 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
3460 emitted for extraneous default arguments.
3462 Returns TRUE if there were no errors found, FALSE otherwise. */
3464 bool
3465 check_default_tmpl_args (tree decl, tree parms, int is_primary,
3466 int is_partial, int is_friend_decl)
3468 const char *msg;
3469 int last_level_to_check;
3470 tree parm_level;
3471 bool no_errors = true;
3473 /* [temp.param]
3475 A default template-argument shall not be specified in a
3476 function template declaration or a function template definition, nor
3477 in the template-parameter-list of the definition of a member of a
3478 class template. */
3480 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
3481 /* You can't have a function template declaration in a local
3482 scope, nor you can you define a member of a class template in a
3483 local scope. */
3484 return true;
3486 if (current_class_type
3487 && !TYPE_BEING_DEFINED (current_class_type)
3488 && DECL_LANG_SPECIFIC (decl)
3489 /* If this is either a friend defined in the scope of the class
3490 or a member function. */
3491 && (DECL_FUNCTION_MEMBER_P (decl)
3492 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
3493 : DECL_FRIEND_CONTEXT (decl)
3494 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
3495 : false)
3496 /* And, if it was a member function, it really was defined in
3497 the scope of the class. */
3498 && (!DECL_FUNCTION_MEMBER_P (decl)
3499 || DECL_INITIALIZED_IN_CLASS_P (decl)))
3500 /* We already checked these parameters when the template was
3501 declared, so there's no need to do it again now. This function
3502 was defined in class scope, but we're processing it's body now
3503 that the class is complete. */
3504 return true;
3506 /* Core issue 226 (C++0x only): the following only applies to class
3507 templates. */
3508 if ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL)
3510 /* [temp.param]
3512 If a template-parameter has a default template-argument, all
3513 subsequent template-parameters shall have a default
3514 template-argument supplied. */
3515 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
3517 tree inner_parms = TREE_VALUE (parm_level);
3518 int ntparms = TREE_VEC_LENGTH (inner_parms);
3519 int seen_def_arg_p = 0;
3520 int i;
3522 for (i = 0; i < ntparms; ++i)
3524 tree parm = TREE_VEC_ELT (inner_parms, i);
3526 if (parm == error_mark_node)
3527 continue;
3529 if (TREE_PURPOSE (parm))
3530 seen_def_arg_p = 1;
3531 else if (seen_def_arg_p)
3533 error ("no default argument for %qD", TREE_VALUE (parm));
3534 /* For better subsequent error-recovery, we indicate that
3535 there should have been a default argument. */
3536 TREE_PURPOSE (parm) = error_mark_node;
3537 no_errors = false;
3543 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
3544 || is_partial
3545 || !is_primary
3546 || is_friend_decl)
3547 /* For an ordinary class template, default template arguments are
3548 allowed at the innermost level, e.g.:
3549 template <class T = int>
3550 struct S {};
3551 but, in a partial specialization, they're not allowed even
3552 there, as we have in [temp.class.spec]:
3554 The template parameter list of a specialization shall not
3555 contain default template argument values.
3557 So, for a partial specialization, or for a function template
3558 (in C++98/C++03), we look at all of them. */
3560 else
3561 /* But, for a primary class template that is not a partial
3562 specialization we look at all template parameters except the
3563 innermost ones. */
3564 parms = TREE_CHAIN (parms);
3566 /* Figure out what error message to issue. */
3567 if (is_friend_decl == 2)
3568 msg = "default template arguments may not be used in function template friend re-declaration";
3569 else if (is_friend_decl)
3570 msg = "default template arguments may not be used in function template friend declarations";
3571 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
3572 msg = "default template arguments may not be used in function templates";
3573 else if (is_partial)
3574 msg = "default template arguments may not be used in partial specializations";
3575 else
3576 msg = "default argument for template parameter for class enclosing %qD";
3578 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
3579 /* If we're inside a class definition, there's no need to
3580 examine the parameters to the class itself. On the one
3581 hand, they will be checked when the class is defined, and,
3582 on the other, default arguments are valid in things like:
3583 template <class T = double>
3584 struct S { template <class U> void f(U); };
3585 Here the default argument for `S' has no bearing on the
3586 declaration of `f'. */
3587 last_level_to_check = template_class_depth (current_class_type) + 1;
3588 else
3589 /* Check everything. */
3590 last_level_to_check = 0;
3592 for (parm_level = parms;
3593 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
3594 parm_level = TREE_CHAIN (parm_level))
3596 tree inner_parms = TREE_VALUE (parm_level);
3597 int i;
3598 int ntparms;
3600 ntparms = TREE_VEC_LENGTH (inner_parms);
3601 for (i = 0; i < ntparms; ++i)
3603 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
3604 continue;
3606 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
3608 if (msg)
3610 no_errors = false;
3611 if (is_friend_decl == 2)
3612 return no_errors;
3614 error (msg, decl);
3615 msg = 0;
3618 /* Clear out the default argument so that we are not
3619 confused later. */
3620 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
3624 /* At this point, if we're still interested in issuing messages,
3625 they must apply to classes surrounding the object declared. */
3626 if (msg)
3627 msg = "default argument for template parameter for class enclosing %qD";
3630 return no_errors;
3633 /* Worker for push_template_decl_real, called via
3634 for_each_template_parm. DATA is really an int, indicating the
3635 level of the parameters we are interested in. If T is a template
3636 parameter of that level, return nonzero. */
3638 static int
3639 template_parm_this_level_p (tree t, void* data)
3641 int this_level = *(int *)data;
3642 int level;
3644 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
3645 level = TEMPLATE_PARM_LEVEL (t);
3646 else
3647 level = TEMPLATE_TYPE_LEVEL (t);
3648 return level == this_level;
3651 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
3652 parameters given by current_template_args, or reuses a
3653 previously existing one, if appropriate. Returns the DECL, or an
3654 equivalent one, if it is replaced via a call to duplicate_decls.
3656 If IS_FRIEND is true, DECL is a friend declaration. */
3658 tree
3659 push_template_decl_real (tree decl, bool is_friend)
3661 tree tmpl;
3662 tree args;
3663 tree info;
3664 tree ctx;
3665 int primary;
3666 int is_partial;
3667 int new_template_p = 0;
3668 /* True if the template is a member template, in the sense of
3669 [temp.mem]. */
3670 bool member_template_p = false;
3672 if (decl == error_mark_node)
3673 return decl;
3675 /* See if this is a partial specialization. */
3676 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
3677 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
3678 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
3680 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
3681 is_friend = true;
3683 if (is_friend)
3684 /* For a friend, we want the context of the friend function, not
3685 the type of which it is a friend. */
3686 ctx = DECL_CONTEXT (decl);
3687 else if (CP_DECL_CONTEXT (decl)
3688 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
3689 /* In the case of a virtual function, we want the class in which
3690 it is defined. */
3691 ctx = CP_DECL_CONTEXT (decl);
3692 else
3693 /* Otherwise, if we're currently defining some class, the DECL
3694 is assumed to be a member of the class. */
3695 ctx = current_scope ();
3697 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
3698 ctx = NULL_TREE;
3700 if (!DECL_CONTEXT (decl))
3701 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
3703 /* See if this is a primary template. */
3704 if (is_friend && ctx)
3705 /* A friend template that specifies a class context, i.e.
3706 template <typename T> friend void A<T>::f();
3707 is not primary. */
3708 primary = 0;
3709 else
3710 primary = template_parm_scope_p ();
3712 if (primary)
3714 if (DECL_CLASS_SCOPE_P (decl))
3715 member_template_p = true;
3716 if (TREE_CODE (decl) == TYPE_DECL
3717 && ANON_AGGRNAME_P (DECL_NAME (decl)))
3718 error ("template class without a name");
3719 else if (TREE_CODE (decl) == FUNCTION_DECL)
3721 if (DECL_DESTRUCTOR_P (decl))
3723 /* [temp.mem]
3725 A destructor shall not be a member template. */
3726 error ("destructor %qD declared as member template", decl);
3727 return error_mark_node;
3729 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
3730 && (!TYPE_ARG_TYPES (TREE_TYPE (decl))
3731 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
3732 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
3733 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
3734 == void_list_node)))
3736 /* [basic.stc.dynamic.allocation]
3738 An allocation function can be a function
3739 template. ... Template allocation functions shall
3740 have two or more parameters. */
3741 error ("invalid template declaration of %qD", decl);
3742 return error_mark_node;
3745 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
3746 && CLASS_TYPE_P (TREE_TYPE (decl)))
3747 /* OK */;
3748 else
3750 error ("template declaration of %q#D", decl);
3751 return error_mark_node;
3755 /* Check to see that the rules regarding the use of default
3756 arguments are not being violated. */
3757 check_default_tmpl_args (decl, current_template_parms,
3758 primary, is_partial, /*is_friend_decl=*/0);
3760 /* Ensure that there are no parameter packs in the type of this
3761 declaration that have not been expanded. */
3762 if (TREE_CODE (decl) == FUNCTION_DECL)
3764 /* Check each of the arguments individually to see if there are
3765 any bare parameter packs. */
3766 tree type = TREE_TYPE (decl);
3767 tree arg = DECL_ARGUMENTS (decl);
3768 tree argtype = TYPE_ARG_TYPES (type);
3770 while (arg && argtype)
3772 if (!FUNCTION_PARAMETER_PACK_P (arg)
3773 && !check_for_bare_parameter_packs (TREE_TYPE (arg)))
3775 /* This is a PARM_DECL that contains unexpanded parameter
3776 packs. We have already complained about this in the
3777 check_for_bare_parameter_packs call, so just replace
3778 these types with ERROR_MARK_NODE. */
3779 TREE_TYPE (arg) = error_mark_node;
3780 TREE_VALUE (argtype) = error_mark_node;
3783 arg = TREE_CHAIN (arg);
3784 argtype = TREE_CHAIN (argtype);
3787 /* Check for bare parameter packs in the return type and the
3788 exception specifiers. */
3789 check_for_bare_parameter_packs (TREE_TYPE (type));
3790 check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type));
3792 else
3793 check_for_bare_parameter_packs (TREE_TYPE (decl));
3795 if (is_partial)
3796 return process_partial_specialization (decl);
3798 /* A primary class template can only have one parameter pack, at the
3799 end of the template parameter list. */
3800 if (primary && TREE_CODE (decl) == TYPE_DECL)
3802 tree inner_parms
3803 = INNERMOST_TEMPLATE_PARMS (current_template_parms);
3804 int i, len = TREE_VEC_LENGTH (inner_parms);
3805 for (i = 0; i < len - 1; i++)
3807 tree parm = TREE_VALUE (TREE_VEC_ELT (inner_parms, i));
3809 if (template_parameter_pack_p (parm))
3811 if (TREE_CODE (parm) == PARM_DECL)
3812 error ("parameter pack %qE must be at the end of the"
3813 " template parameter list", parm);
3814 else
3815 error ("parameter pack %qT must be at the end of the"
3816 " template parameter list", TREE_TYPE (parm));
3821 args = current_template_args ();
3823 if (!ctx
3824 || TREE_CODE (ctx) == FUNCTION_DECL
3825 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
3826 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
3828 if (DECL_LANG_SPECIFIC (decl)
3829 && DECL_TEMPLATE_INFO (decl)
3830 && DECL_TI_TEMPLATE (decl))
3831 tmpl = DECL_TI_TEMPLATE (decl);
3832 /* If DECL is a TYPE_DECL for a class-template, then there won't
3833 be DECL_LANG_SPECIFIC. The information equivalent to
3834 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
3835 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
3836 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
3837 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
3839 /* Since a template declaration already existed for this
3840 class-type, we must be redeclaring it here. Make sure
3841 that the redeclaration is valid. */
3842 redeclare_class_template (TREE_TYPE (decl),
3843 current_template_parms);
3844 /* We don't need to create a new TEMPLATE_DECL; just use the
3845 one we already had. */
3846 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
3848 else
3850 tmpl = build_template_decl (decl, current_template_parms,
3851 member_template_p);
3852 new_template_p = 1;
3854 if (DECL_LANG_SPECIFIC (decl)
3855 && DECL_TEMPLATE_SPECIALIZATION (decl))
3857 /* A specialization of a member template of a template
3858 class. */
3859 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3860 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
3861 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
3865 else
3867 tree a, t, current, parms;
3868 int i;
3870 if (TREE_CODE (decl) == TYPE_DECL)
3872 if ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (decl)))
3873 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
3874 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
3875 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
3876 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
3877 else
3879 error ("%qD does not declare a template type", decl);
3880 return decl;
3883 else if (!DECL_LANG_SPECIFIC (decl) || !DECL_TEMPLATE_INFO (decl))
3885 error ("template definition of non-template %q#D", decl);
3886 return decl;
3888 else
3889 tmpl = DECL_TI_TEMPLATE (decl);
3891 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
3892 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
3893 && DECL_TEMPLATE_SPECIALIZATION (decl)
3894 && DECL_MEMBER_TEMPLATE_P (tmpl))
3896 tree new_tmpl;
3898 /* The declaration is a specialization of a member
3899 template, declared outside the class. Therefore, the
3900 innermost template arguments will be NULL, so we
3901 replace them with the arguments determined by the
3902 earlier call to check_explicit_specialization. */
3903 args = DECL_TI_ARGS (decl);
3905 new_tmpl
3906 = build_template_decl (decl, current_template_parms,
3907 member_template_p);
3908 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
3909 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
3910 DECL_TI_TEMPLATE (decl) = new_tmpl;
3911 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
3912 DECL_TEMPLATE_INFO (new_tmpl)
3913 = tree_cons (tmpl, args, NULL_TREE);
3915 register_specialization (new_tmpl,
3916 most_general_template (tmpl),
3917 args,
3918 is_friend);
3919 return decl;
3922 /* Make sure the template headers we got make sense. */
3924 parms = DECL_TEMPLATE_PARMS (tmpl);
3925 i = TMPL_PARMS_DEPTH (parms);
3926 if (TMPL_ARGS_DEPTH (args) != i)
3928 error ("expected %d levels of template parms for %q#D, got %d",
3929 i, decl, TMPL_ARGS_DEPTH (args));
3931 else
3932 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
3934 a = TMPL_ARGS_LEVEL (args, i);
3935 t = INNERMOST_TEMPLATE_PARMS (parms);
3937 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
3939 if (current == decl)
3940 error ("got %d template parameters for %q#D",
3941 TREE_VEC_LENGTH (a), decl);
3942 else
3943 error ("got %d template parameters for %q#T",
3944 TREE_VEC_LENGTH (a), current);
3945 error (" but %d required", TREE_VEC_LENGTH (t));
3946 return error_mark_node;
3949 /* Perhaps we should also check that the parms are used in the
3950 appropriate qualifying scopes in the declarator? */
3952 if (current == decl)
3953 current = ctx;
3954 else
3955 current = (TYPE_P (current)
3956 ? TYPE_CONTEXT (current)
3957 : DECL_CONTEXT (current));
3961 DECL_TEMPLATE_RESULT (tmpl) = decl;
3962 TREE_TYPE (tmpl) = TREE_TYPE (decl);
3964 /* Push template declarations for global functions and types. Note
3965 that we do not try to push a global template friend declared in a
3966 template class; such a thing may well depend on the template
3967 parameters of the class. */
3968 if (new_template_p && !ctx
3969 && !(is_friend && template_class_depth (current_class_type) > 0))
3971 tmpl = pushdecl_namespace_level (tmpl, is_friend);
3972 if (tmpl == error_mark_node)
3973 return error_mark_node;
3975 /* Hide template friend classes that haven't been declared yet. */
3976 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
3978 DECL_ANTICIPATED (tmpl) = 1;
3979 DECL_FRIEND_P (tmpl) = 1;
3983 if (primary)
3985 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
3986 if (DECL_CONV_FN_P (tmpl))
3988 int depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
3990 /* It is a conversion operator. See if the type converted to
3991 depends on innermost template operands. */
3993 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
3994 depth))
3995 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
3999 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
4000 back to its most general template. If TMPL is a specialization,
4001 ARGS may only have the innermost set of arguments. Add the missing
4002 argument levels if necessary. */
4003 if (DECL_TEMPLATE_INFO (tmpl))
4004 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
4006 info = tree_cons (tmpl, args, NULL_TREE);
4008 if (DECL_IMPLICIT_TYPEDEF_P (decl))
4009 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
4010 else if (DECL_LANG_SPECIFIC (decl))
4011 DECL_TEMPLATE_INFO (decl) = info;
4013 return DECL_TEMPLATE_RESULT (tmpl);
4016 tree
4017 push_template_decl (tree decl)
4019 return push_template_decl_real (decl, false);
4022 /* Called when a class template TYPE is redeclared with the indicated
4023 template PARMS, e.g.:
4025 template <class T> struct S;
4026 template <class T> struct S {}; */
4028 bool
4029 redeclare_class_template (tree type, tree parms)
4031 tree tmpl;
4032 tree tmpl_parms;
4033 int i;
4035 if (!TYPE_TEMPLATE_INFO (type))
4037 error ("%qT is not a template type", type);
4038 return false;
4041 tmpl = TYPE_TI_TEMPLATE (type);
4042 if (!PRIMARY_TEMPLATE_P (tmpl))
4043 /* The type is nested in some template class. Nothing to worry
4044 about here; there are no new template parameters for the nested
4045 type. */
4046 return true;
4048 if (!parms)
4050 error ("template specifiers not specified in declaration of %qD",
4051 tmpl);
4052 return false;
4055 parms = INNERMOST_TEMPLATE_PARMS (parms);
4056 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
4058 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
4060 error ("previous declaration %q+D", tmpl);
4061 error ("used %d template parameter(s) instead of %d",
4062 TREE_VEC_LENGTH (tmpl_parms),
4063 TREE_VEC_LENGTH (parms));
4064 return false;
4067 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
4069 tree tmpl_parm;
4070 tree parm;
4071 tree tmpl_default;
4072 tree parm_default;
4074 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
4075 || TREE_VEC_ELT (parms, i) == error_mark_node)
4076 continue;
4078 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
4079 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4080 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
4081 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
4083 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
4084 TEMPLATE_DECL. */
4085 if (tmpl_parm != error_mark_node
4086 && (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
4087 || (TREE_CODE (tmpl_parm) != TYPE_DECL
4088 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))))
4090 error ("template parameter %q+#D", tmpl_parm);
4091 error ("redeclared here as %q#D", parm);
4092 return false;
4095 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
4097 /* We have in [temp.param]:
4099 A template-parameter may not be given default arguments
4100 by two different declarations in the same scope. */
4101 error ("redefinition of default argument for %q#D", parm);
4102 error ("%J original definition appeared here", tmpl_parm);
4103 return false;
4106 if (parm_default != NULL_TREE)
4107 /* Update the previous template parameters (which are the ones
4108 that will really count) with the new default value. */
4109 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
4110 else if (tmpl_default != NULL_TREE)
4111 /* Update the new parameters, too; they'll be used as the
4112 parameters for any members. */
4113 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
4116 return true;
4119 /* Simplify EXPR if it is a non-dependent expression. Returns the
4120 (possibly simplified) expression. */
4122 tree
4123 fold_non_dependent_expr (tree expr)
4125 if (expr == NULL_TREE)
4126 return NULL_TREE;
4128 /* If we're in a template, but EXPR isn't value dependent, simplify
4129 it. We're supposed to treat:
4131 template <typename T> void f(T[1 + 1]);
4132 template <typename T> void f(T[2]);
4134 as two declarations of the same function, for example. */
4135 if (processing_template_decl
4136 && !type_dependent_expression_p (expr)
4137 && !value_dependent_expression_p (expr))
4139 HOST_WIDE_INT saved_processing_template_decl;
4141 saved_processing_template_decl = processing_template_decl;
4142 processing_template_decl = 0;
4143 expr = tsubst_copy_and_build (expr,
4144 /*args=*/NULL_TREE,
4145 tf_error,
4146 /*in_decl=*/NULL_TREE,
4147 /*function_p=*/false,
4148 /*integral_constant_expression_p=*/true);
4149 processing_template_decl = saved_processing_template_decl;
4151 return expr;
4154 /* EXPR is an expression which is used in a constant-expression context.
4155 For instance, it could be a VAR_DECL with a constant initializer.
4156 Extract the innest constant expression.
4158 This is basically a more powerful version of
4159 integral_constant_value, which can be used also in templates where
4160 initializers can maintain a syntactic rather than semantic form
4161 (even if they are non-dependent, for access-checking purposes). */
4163 static tree
4164 fold_decl_constant_value (tree expr)
4166 tree const_expr = expr;
4169 expr = fold_non_dependent_expr (const_expr);
4170 const_expr = integral_constant_value (expr);
4172 while (expr != const_expr);
4174 return expr;
4177 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
4178 must be a function or a pointer-to-function type, as specified
4179 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
4180 and check that the resulting function has external linkage. */
4182 static tree
4183 convert_nontype_argument_function (tree type, tree expr)
4185 tree fns = expr;
4186 tree fn, fn_no_ptr;
4188 fn = instantiate_type (type, fns, tf_none);
4189 if (fn == error_mark_node)
4190 return error_mark_node;
4192 fn_no_ptr = fn;
4193 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
4194 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
4195 if (TREE_CODE (fn_no_ptr) == BASELINK)
4196 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
4198 /* [temp.arg.nontype]/1
4200 A template-argument for a non-type, non-template template-parameter
4201 shall be one of:
4202 [...]
4203 -- the address of an object or function with external linkage. */
4204 if (!DECL_EXTERNAL_LINKAGE_P (fn_no_ptr))
4206 error ("%qE is not a valid template argument for type %qT "
4207 "because function %qD has not external linkage",
4208 expr, type, fn_no_ptr);
4209 return NULL_TREE;
4212 return fn;
4215 /* Attempt to convert the non-type template parameter EXPR to the
4216 indicated TYPE. If the conversion is successful, return the
4217 converted value. If the conversion is unsuccessful, return
4218 NULL_TREE if we issued an error message, or error_mark_node if we
4219 did not. We issue error messages for out-and-out bad template
4220 parameters, but not simply because the conversion failed, since we
4221 might be just trying to do argument deduction. Both TYPE and EXPR
4222 must be non-dependent.
4224 The conversion follows the special rules described in
4225 [temp.arg.nontype], and it is much more strict than an implicit
4226 conversion.
4228 This function is called twice for each template argument (see
4229 lookup_template_class for a more accurate description of this
4230 problem). This means that we need to handle expressions which
4231 are not valid in a C++ source, but can be created from the
4232 first call (for instance, casts to perform conversions). These
4233 hacks can go away after we fix the double coercion problem. */
4235 static tree
4236 convert_nontype_argument (tree type, tree expr)
4238 tree expr_type;
4240 /* Detect immediately string literals as invalid non-type argument.
4241 This special-case is not needed for correctness (we would easily
4242 catch this later), but only to provide better diagnostic for this
4243 common user mistake. As suggested by DR 100, we do not mention
4244 linkage issues in the diagnostic as this is not the point. */
4245 if (TREE_CODE (expr) == STRING_CST)
4247 error ("%qE is not a valid template argument for type %qT "
4248 "because string literals can never be used in this context",
4249 expr, type);
4250 return NULL_TREE;
4253 /* If we are in a template, EXPR may be non-dependent, but still
4254 have a syntactic, rather than semantic, form. For example, EXPR
4255 might be a SCOPE_REF, rather than the VAR_DECL to which the
4256 SCOPE_REF refers. Preserving the qualifying scope is necessary
4257 so that access checking can be performed when the template is
4258 instantiated -- but here we need the resolved form so that we can
4259 convert the argument. */
4260 expr = fold_non_dependent_expr (expr);
4261 if (error_operand_p (expr))
4262 return error_mark_node;
4263 expr_type = TREE_TYPE (expr);
4265 /* HACK: Due to double coercion, we can get a
4266 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
4267 which is the tree that we built on the first call (see
4268 below when coercing to reference to object or to reference to
4269 function). We just strip everything and get to the arg.
4270 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
4271 for examples. */
4272 if (TREE_CODE (expr) == NOP_EXPR)
4274 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
4276 /* ??? Maybe we could use convert_from_reference here, but we
4277 would need to relax its constraints because the NOP_EXPR
4278 could actually change the type to something more cv-qualified,
4279 and this is not folded by convert_from_reference. */
4280 tree addr = TREE_OPERAND (expr, 0);
4281 gcc_assert (TREE_CODE (expr_type) == REFERENCE_TYPE);
4282 gcc_assert (TREE_CODE (addr) == ADDR_EXPR);
4283 gcc_assert (TREE_CODE (TREE_TYPE (addr)) == POINTER_TYPE);
4284 gcc_assert (same_type_ignoring_top_level_qualifiers_p
4285 (TREE_TYPE (expr_type),
4286 TREE_TYPE (TREE_TYPE (addr))));
4288 expr = TREE_OPERAND (addr, 0);
4289 expr_type = TREE_TYPE (expr);
4292 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
4293 parameter is a pointer to object, through decay and
4294 qualification conversion. Let's strip everything. */
4295 else if (TYPE_PTROBV_P (type))
4297 STRIP_NOPS (expr);
4298 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
4299 gcc_assert (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE);
4300 /* Skip the ADDR_EXPR only if it is part of the decay for
4301 an array. Otherwise, it is part of the original argument
4302 in the source code. */
4303 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == ARRAY_TYPE)
4304 expr = TREE_OPERAND (expr, 0);
4305 expr_type = TREE_TYPE (expr);
4309 /* [temp.arg.nontype]/5, bullet 1
4311 For a non-type template-parameter of integral or enumeration type,
4312 integral promotions (_conv.prom_) and integral conversions
4313 (_conv.integral_) are applied. */
4314 if (INTEGRAL_TYPE_P (type))
4316 if (!INTEGRAL_TYPE_P (expr_type))
4317 return error_mark_node;
4319 expr = fold_decl_constant_value (expr);
4320 /* Notice that there are constant expressions like '4 % 0' which
4321 do not fold into integer constants. */
4322 if (TREE_CODE (expr) != INTEGER_CST)
4324 error ("%qE is not a valid template argument for type %qT "
4325 "because it is a non-constant expression", expr, type);
4326 return NULL_TREE;
4329 /* At this point, an implicit conversion does what we want,
4330 because we already know that the expression is of integral
4331 type. */
4332 expr = ocp_convert (type, expr, CONV_IMPLICIT, LOOKUP_PROTECT);
4333 if (expr == error_mark_node)
4334 return error_mark_node;
4336 /* Conversion was allowed: fold it to a bare integer constant. */
4337 expr = fold (expr);
4339 /* [temp.arg.nontype]/5, bullet 2
4341 For a non-type template-parameter of type pointer to object,
4342 qualification conversions (_conv.qual_) and the array-to-pointer
4343 conversion (_conv.array_) are applied. */
4344 else if (TYPE_PTROBV_P (type))
4346 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
4348 A template-argument for a non-type, non-template template-parameter
4349 shall be one of: [...]
4351 -- the name of a non-type template-parameter;
4352 -- the address of an object or function with external linkage, [...]
4353 expressed as "& id-expression" where the & is optional if the name
4354 refers to a function or array, or if the corresponding
4355 template-parameter is a reference.
4357 Here, we do not care about functions, as they are invalid anyway
4358 for a parameter of type pointer-to-object. */
4360 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
4361 /* Non-type template parameters are OK. */
4363 else if (TREE_CODE (expr) != ADDR_EXPR
4364 && TREE_CODE (expr_type) != ARRAY_TYPE)
4366 if (TREE_CODE (expr) == VAR_DECL)
4368 error ("%qD is not a valid template argument "
4369 "because %qD is a variable, not the address of "
4370 "a variable",
4371 expr, expr);
4372 return NULL_TREE;
4374 /* Other values, like integer constants, might be valid
4375 non-type arguments of some other type. */
4376 return error_mark_node;
4378 else
4380 tree decl;
4382 decl = ((TREE_CODE (expr) == ADDR_EXPR)
4383 ? TREE_OPERAND (expr, 0) : expr);
4384 if (TREE_CODE (decl) != VAR_DECL)
4386 error ("%qE is not a valid template argument of type %qT "
4387 "because %qE is not a variable",
4388 expr, type, decl);
4389 return NULL_TREE;
4391 else if (!DECL_EXTERNAL_LINKAGE_P (decl))
4393 error ("%qE is not a valid template argument of type %qT "
4394 "because %qD does not have external linkage",
4395 expr, type, decl);
4396 return NULL_TREE;
4400 expr = decay_conversion (expr);
4401 if (expr == error_mark_node)
4402 return error_mark_node;
4404 expr = perform_qualification_conversions (type, expr);
4405 if (expr == error_mark_node)
4406 return error_mark_node;
4408 /* [temp.arg.nontype]/5, bullet 3
4410 For a non-type template-parameter of type reference to object, no
4411 conversions apply. The type referred to by the reference may be more
4412 cv-qualified than the (otherwise identical) type of the
4413 template-argument. The template-parameter is bound directly to the
4414 template-argument, which must be an lvalue. */
4415 else if (TYPE_REF_OBJ_P (type))
4417 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
4418 expr_type))
4419 return error_mark_node;
4421 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
4423 error ("%qE is not a valid template argument for type %qT "
4424 "because of conflicts in cv-qualification", expr, type);
4425 return NULL_TREE;
4428 if (!real_lvalue_p (expr))
4430 error ("%qE is not a valid template argument for type %qT "
4431 "because it is not an lvalue", expr, type);
4432 return NULL_TREE;
4435 /* [temp.arg.nontype]/1
4437 A template-argument for a non-type, non-template template-parameter
4438 shall be one of: [...]
4440 -- the address of an object or function with external linkage. */
4441 if (!DECL_EXTERNAL_LINKAGE_P (expr))
4443 error ("%qE is not a valid template argument for type %qT "
4444 "because object %qD has not external linkage",
4445 expr, type, expr);
4446 return NULL_TREE;
4449 expr = build_nop (type, build_address (expr));
4451 /* [temp.arg.nontype]/5, bullet 4
4453 For a non-type template-parameter of type pointer to function, only
4454 the function-to-pointer conversion (_conv.func_) is applied. If the
4455 template-argument represents a set of overloaded functions (or a
4456 pointer to such), the matching function is selected from the set
4457 (_over.over_). */
4458 else if (TYPE_PTRFN_P (type))
4460 /* If the argument is a template-id, we might not have enough
4461 context information to decay the pointer. */
4462 if (!type_unknown_p (expr_type))
4464 expr = decay_conversion (expr);
4465 if (expr == error_mark_node)
4466 return error_mark_node;
4469 expr = convert_nontype_argument_function (type, expr);
4470 if (!expr || expr == error_mark_node)
4471 return expr;
4473 /* [temp.arg.nontype]/5, bullet 5
4475 For a non-type template-parameter of type reference to function, no
4476 conversions apply. If the template-argument represents a set of
4477 overloaded functions, the matching function is selected from the set
4478 (_over.over_). */
4479 else if (TYPE_REFFN_P (type))
4481 if (TREE_CODE (expr) == ADDR_EXPR)
4483 error ("%qE is not a valid template argument for type %qT "
4484 "because it is a pointer", expr, type);
4485 inform ("try using %qE instead", TREE_OPERAND (expr, 0));
4486 return NULL_TREE;
4489 expr = convert_nontype_argument_function (TREE_TYPE (type), expr);
4490 if (!expr || expr == error_mark_node)
4491 return expr;
4493 expr = build_nop (type, build_address (expr));
4495 /* [temp.arg.nontype]/5, bullet 6
4497 For a non-type template-parameter of type pointer to member function,
4498 no conversions apply. If the template-argument represents a set of
4499 overloaded member functions, the matching member function is selected
4500 from the set (_over.over_). */
4501 else if (TYPE_PTRMEMFUNC_P (type))
4503 expr = instantiate_type (type, expr, tf_none);
4504 if (expr == error_mark_node)
4505 return error_mark_node;
4507 /* There is no way to disable standard conversions in
4508 resolve_address_of_overloaded_function (called by
4509 instantiate_type). It is possible that the call succeeded by
4510 converting &B::I to &D::I (where B is a base of D), so we need
4511 to reject this conversion here.
4513 Actually, even if there was a way to disable standard conversions,
4514 it would still be better to reject them here so that we can
4515 provide a superior diagnostic. */
4516 if (!same_type_p (TREE_TYPE (expr), type))
4518 /* Make sure we are just one standard conversion off. */
4519 gcc_assert (can_convert (type, TREE_TYPE (expr)));
4520 error ("%qE is not a valid template argument for type %qT "
4521 "because it is of type %qT", expr, type,
4522 TREE_TYPE (expr));
4523 inform ("standard conversions are not allowed in this context");
4524 return NULL_TREE;
4527 /* [temp.arg.nontype]/5, bullet 7
4529 For a non-type template-parameter of type pointer to data member,
4530 qualification conversions (_conv.qual_) are applied. */
4531 else if (TYPE_PTRMEM_P (type))
4533 expr = perform_qualification_conversions (type, expr);
4534 if (expr == error_mark_node)
4535 return expr;
4537 /* A template non-type parameter must be one of the above. */
4538 else
4539 gcc_unreachable ();
4541 /* Sanity check: did we actually convert the argument to the
4542 right type? */
4543 gcc_assert (same_type_p (type, TREE_TYPE (expr)));
4544 return expr;
4548 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
4549 template template parameters. Both PARM_PARMS and ARG_PARMS are
4550 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
4551 or PARM_DECL.
4553 Consider the example:
4554 template <class T> class A;
4555 template<template <class U> class TT> class B;
4557 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
4558 the parameters to A, and OUTER_ARGS contains A. */
4560 static int
4561 coerce_template_template_parms (tree parm_parms,
4562 tree arg_parms,
4563 tsubst_flags_t complain,
4564 tree in_decl,
4565 tree outer_args)
4567 int nparms, nargs, i;
4568 tree parm, arg;
4570 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
4571 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
4573 nparms = TREE_VEC_LENGTH (parm_parms);
4574 nargs = TREE_VEC_LENGTH (arg_parms);
4576 if (nargs != nparms)
4577 return 0;
4579 for (i = 0; i < nparms; ++i)
4581 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
4582 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
4583 continue;
4585 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
4586 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
4588 if (arg == NULL_TREE || arg == error_mark_node
4589 || parm == NULL_TREE || parm == error_mark_node)
4590 return 0;
4592 if (TREE_CODE (arg) != TREE_CODE (parm))
4593 return 0;
4595 switch (TREE_CODE (parm))
4597 case TEMPLATE_DECL:
4598 /* We encounter instantiations of templates like
4599 template <template <template <class> class> class TT>
4600 class C; */
4602 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
4603 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
4605 if (!coerce_template_template_parms
4606 (parmparm, argparm, complain, in_decl, outer_args))
4607 return 0;
4609 /* Fall through. */
4611 case TYPE_DECL:
4612 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))
4613 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg)))
4614 /* One is a parameter pack, the other is not. */
4615 return 0;
4616 break;
4618 case PARM_DECL:
4619 /* The tsubst call is used to handle cases such as
4621 template <int> class C {};
4622 template <class T, template <T> class TT> class D {};
4623 D<int, C> d;
4625 i.e. the parameter list of TT depends on earlier parameters. */
4626 if (!dependent_type_p (TREE_TYPE (arg))
4627 && !same_type_p
4628 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
4629 TREE_TYPE (arg)))
4630 return 0;
4632 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4633 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg)))
4634 /* One is a parameter pack, the other is not. */
4635 return 0;
4636 break;
4638 default:
4639 gcc_unreachable ();
4642 return 1;
4645 /* Convert the indicated template ARG as necessary to match the
4646 indicated template PARM. Returns the converted ARG, or
4647 error_mark_node if the conversion was unsuccessful. Error and
4648 warning messages are issued under control of COMPLAIN. This
4649 conversion is for the Ith parameter in the parameter list. ARGS is
4650 the full set of template arguments deduced so far. */
4652 static tree
4653 convert_template_argument (tree parm,
4654 tree arg,
4655 tree args,
4656 tsubst_flags_t complain,
4657 int i,
4658 tree in_decl)
4660 tree val;
4661 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
4662 tree check_arg = arg;
4664 if (TREE_CODE (arg) == TREE_LIST
4665 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
4667 /* The template argument was the name of some
4668 member function. That's usually
4669 invalid, but static members are OK. In any
4670 case, grab the underlying fields/functions
4671 and issue an error later if required. */
4672 arg = TREE_VALUE (arg);
4673 TREE_TYPE (arg) = unknown_type_node;
4676 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
4677 requires_type = (TREE_CODE (parm) == TYPE_DECL
4678 || requires_tmpl_type);
4680 /* When determining whether an argument pack expansion is a template,
4681 look at the pattern. */
4682 if (TREE_CODE (check_arg) == TYPE_PACK_EXPANSION)
4683 check_arg = PACK_EXPANSION_PATTERN (check_arg);
4685 is_tmpl_type =
4686 ((TREE_CODE (check_arg) == TEMPLATE_DECL
4687 && TREE_CODE (DECL_TEMPLATE_RESULT (check_arg)) == TYPE_DECL)
4688 || TREE_CODE (check_arg) == TEMPLATE_TEMPLATE_PARM
4689 || TREE_CODE (check_arg) == UNBOUND_CLASS_TEMPLATE);
4691 if (is_tmpl_type
4692 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
4693 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
4694 arg = TYPE_STUB_DECL (arg);
4696 is_type = TYPE_P (arg) || is_tmpl_type;
4698 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
4699 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
4701 pedwarn ("to refer to a type member of a template parameter, "
4702 "use %<typename %E%>", arg);
4704 arg = make_typename_type (TREE_OPERAND (arg, 0),
4705 TREE_OPERAND (arg, 1),
4706 typename_type,
4707 complain & tf_error);
4708 is_type = 1;
4710 if (is_type != requires_type)
4712 if (in_decl)
4714 if (complain & tf_error)
4716 error ("type/value mismatch at argument %d in template "
4717 "parameter list for %qD",
4718 i + 1, in_decl);
4719 if (is_type)
4720 error (" expected a constant of type %qT, got %qT",
4721 TREE_TYPE (parm),
4722 (is_tmpl_type ? DECL_NAME (arg) : arg));
4723 else if (requires_tmpl_type)
4724 error (" expected a class template, got %qE", arg);
4725 else
4726 error (" expected a type, got %qE", arg);
4729 return error_mark_node;
4731 if (is_tmpl_type ^ requires_tmpl_type)
4733 if (in_decl && (complain & tf_error))
4735 error ("type/value mismatch at argument %d in template "
4736 "parameter list for %qD",
4737 i + 1, in_decl);
4738 if (is_tmpl_type)
4739 error (" expected a type, got %qT", DECL_NAME (arg));
4740 else
4741 error (" expected a class template, got %qT", arg);
4743 return error_mark_node;
4746 if (is_type)
4748 if (requires_tmpl_type)
4750 if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
4751 /* The number of argument required is not known yet.
4752 Just accept it for now. */
4753 val = TREE_TYPE (arg);
4754 else
4756 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
4757 tree argparm;
4759 check_arg = arg;
4760 /* When determining whether a pack expansion is a template,
4761 look at the pattern. */
4762 if (TREE_CODE (check_arg) == TYPE_PACK_EXPANSION)
4763 check_arg = PACK_EXPANSION_PATTERN (check_arg);
4765 argparm = DECL_INNERMOST_TEMPLATE_PARMS (check_arg);
4767 if (coerce_template_template_parms (parmparm, argparm,
4768 complain, in_decl,
4769 args))
4771 val = arg;
4773 /* TEMPLATE_TEMPLATE_PARM node is preferred over
4774 TEMPLATE_DECL. */
4775 if (val != error_mark_node)
4777 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
4778 val = TREE_TYPE (val);
4779 else if (TREE_CODE (val) == TYPE_PACK_EXPANSION
4780 && DECL_TEMPLATE_TEMPLATE_PARM_P (check_arg))
4782 val = TREE_TYPE (check_arg);
4783 val = make_pack_expansion (val);
4787 else
4789 if (in_decl && (complain & tf_error))
4791 error ("type/value mismatch at argument %d in "
4792 "template parameter list for %qD",
4793 i + 1, in_decl);
4794 error (" expected a template of type %qD, got %qD",
4795 parm, arg);
4798 val = error_mark_node;
4802 else
4803 val = arg;
4804 /* We only form one instance of each template specialization.
4805 Therefore, if we use a non-canonical variant (i.e., a
4806 typedef), any future messages referring to the type will use
4807 the typedef, which is confusing if those future uses do not
4808 themselves also use the typedef. */
4809 if (TYPE_P (val))
4810 val = canonical_type_variant (val);
4812 else
4814 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
4816 if (invalid_nontype_parm_type_p (t, complain))
4817 return error_mark_node;
4819 if (!uses_template_parms (arg) && !uses_template_parms (t))
4820 /* We used to call digest_init here. However, digest_init
4821 will report errors, which we don't want when complain
4822 is zero. More importantly, digest_init will try too
4823 hard to convert things: for example, `0' should not be
4824 converted to pointer type at this point according to
4825 the standard. Accepting this is not merely an
4826 extension, since deciding whether or not these
4827 conversions can occur is part of determining which
4828 function template to call, or whether a given explicit
4829 argument specification is valid. */
4830 val = convert_nontype_argument (t, arg);
4831 else
4832 val = arg;
4834 if (val == NULL_TREE)
4835 val = error_mark_node;
4836 else if (val == error_mark_node && (complain & tf_error))
4837 error ("could not convert template argument %qE to %qT", arg, t);
4840 return val;
4843 /* Coerces the remaining template arguments in INNER_ARGS (from
4844 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
4845 Returns the coerced argument pack. PARM_IDX is the position of this
4846 parameter in the template parameter list. ARGS is the original
4847 template argument list. */
4848 static tree
4849 coerce_template_parameter_pack (tree parms,
4850 int parm_idx,
4851 tree args,
4852 tree inner_args,
4853 int arg_idx,
4854 tree new_args,
4855 int* lost,
4856 tree in_decl,
4857 tsubst_flags_t complain)
4859 tree parm = TREE_VEC_ELT (parms, parm_idx);
4860 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
4861 tree packed_args;
4862 tree argument_pack;
4863 tree packed_types = NULL_TREE;
4865 if (arg_idx > nargs)
4866 arg_idx = nargs;
4868 packed_args = make_tree_vec (nargs - arg_idx);
4870 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL
4871 && uses_parameter_packs (TREE_TYPE (TREE_VALUE (parm))))
4873 /* When the template parameter is a non-type template
4874 parameter pack whose type uses parameter packs, we need
4875 to look at each of the template arguments
4876 separately. Build a vector of the types for these
4877 non-type template parameters in PACKED_TYPES. */
4878 tree expansion
4879 = make_pack_expansion (TREE_TYPE (TREE_VALUE (parm)));
4880 packed_types = tsubst_pack_expansion (expansion, args,
4881 complain, in_decl);
4883 if (packed_types == error_mark_node)
4884 return error_mark_node;
4886 /* Check that we have the right number of arguments. */
4887 if (arg_idx < nargs
4888 && !PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx))
4889 && nargs - arg_idx != TREE_VEC_LENGTH (packed_types))
4891 int needed_parms
4892 = TREE_VEC_LENGTH (parms) - 1 + TREE_VEC_LENGTH (packed_types);
4893 error ("wrong number of template arguments (%d, should be %d)",
4894 nargs, needed_parms);
4895 return error_mark_node;
4898 /* If we aren't able to check the actual arguments now
4899 (because they haven't been expanded yet), we can at least
4900 verify that all of the types used for the non-type
4901 template parameter pack are, in fact, valid for non-type
4902 template parameters. */
4903 if (arg_idx < nargs
4904 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
4906 int j, len = TREE_VEC_LENGTH (packed_types);
4907 for (j = 0; j < len; ++j)
4909 tree t = TREE_VEC_ELT (packed_types, j);
4910 if (invalid_nontype_parm_type_p (t, complain))
4911 return error_mark_node;
4916 /* Convert the remaining arguments, which will be a part of the
4917 parameter pack "parm". */
4918 for (; arg_idx < nargs; ++arg_idx)
4920 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
4921 tree actual_parm = TREE_VALUE (parm);
4923 if (packed_types && !PACK_EXPANSION_P (arg))
4925 /* When we have a vector of types (corresponding to the
4926 non-type template parameter pack that uses parameter
4927 packs in its type, as mention above), and the
4928 argument is not an expansion (which expands to a
4929 currently unknown number of arguments), clone the
4930 parm and give it the next type in PACKED_TYPES. */
4931 actual_parm = copy_node (actual_parm);
4932 TREE_TYPE (actual_parm) =
4933 TREE_VEC_ELT (packed_types, arg_idx - parm_idx);
4936 if (arg != error_mark_node)
4937 arg = convert_template_argument (actual_parm,
4938 arg, new_args, complain, parm_idx,
4939 in_decl);
4940 if (arg == error_mark_node)
4941 (*lost)++;
4942 TREE_VEC_ELT (packed_args, arg_idx - parm_idx) = arg;
4945 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
4946 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
4947 argument_pack = make_node (TYPE_ARGUMENT_PACK);
4948 else
4950 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
4951 TREE_TYPE (argument_pack) = TREE_TYPE (TREE_VALUE (parm));
4952 TREE_CONSTANT (argument_pack) = 1;
4955 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
4956 return argument_pack;
4959 /* Convert all template arguments to their appropriate types, and
4960 return a vector containing the innermost resulting template
4961 arguments. If any error occurs, return error_mark_node. Error and
4962 warning messages are issued under control of COMPLAIN.
4964 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
4965 for arguments not specified in ARGS. Otherwise, if
4966 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
4967 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
4968 USE_DEFAULT_ARGS is false, then all arguments must be specified in
4969 ARGS. */
4971 static tree
4972 coerce_template_parms (tree parms,
4973 tree args,
4974 tree in_decl,
4975 tsubst_flags_t complain,
4976 bool require_all_args,
4977 bool use_default_args)
4979 int nparms, nargs, parm_idx, arg_idx, lost = 0;
4980 tree inner_args;
4981 tree new_args;
4982 tree new_inner_args;
4983 bool saved_skip_evaluation;
4985 /* When used as a boolean value, indicates whether this is a
4986 variadic template parameter list. Since it's an int, we can also
4987 subtract it from nparms to get the number of non-variadic
4988 parameters. */
4989 int variadic_p = 0;
4991 inner_args
4992 = expand_template_argument_pack (INNERMOST_TEMPLATE_ARGS (args));
4994 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
4995 nparms = TREE_VEC_LENGTH (parms);
4997 /* Determine if there are any parameter packs. */
4998 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
5000 tree tparm = TREE_VALUE (TREE_VEC_ELT (parms, parm_idx));
5001 if (template_parameter_pack_p (tparm))
5003 variadic_p = 1;
5004 break;
5008 if ((nargs > nparms - variadic_p && !variadic_p)
5009 || (nargs < nparms - variadic_p
5010 && require_all_args
5011 && (!use_default_args
5012 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
5013 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
5015 if (complain & tf_error)
5017 const char *or_more = "";
5018 if (variadic_p)
5020 or_more = " or more";
5021 --nparms;
5024 error ("wrong number of template arguments (%d, should be %d%s)",
5025 nargs, nparms, or_more);
5027 if (in_decl)
5028 error ("provided for %q+D", in_decl);
5031 return error_mark_node;
5034 /* We need to evaluate the template arguments, even though this
5035 template-id may be nested within a "sizeof". */
5036 saved_skip_evaluation = skip_evaluation;
5037 skip_evaluation = false;
5038 new_inner_args = make_tree_vec (nparms);
5039 new_args = add_outermost_template_args (args, new_inner_args);
5040 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
5042 tree arg;
5043 tree parm;
5045 /* Get the Ith template parameter. */
5046 parm = TREE_VEC_ELT (parms, parm_idx);
5048 if (parm == error_mark_node)
5050 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
5051 continue;
5054 /* Calculate the next argument. */
5055 if (template_parameter_pack_p (TREE_VALUE (parm)))
5057 /* All remaining arguments will be placed in the
5058 template parameter pack PARM. */
5059 arg = coerce_template_parameter_pack (parms, parm_idx, args,
5060 inner_args, arg_idx,
5061 new_args, &lost,
5062 in_decl, complain);
5064 /* Store this argument. */
5065 if (arg == error_mark_node)
5066 lost++;
5067 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
5069 /* We are done with all of the arguments. */
5070 arg_idx = nargs;
5072 continue;
5074 else if (arg_idx < nargs)
5076 arg = TREE_VEC_ELT (inner_args, arg_idx);
5078 if (arg && PACK_EXPANSION_P (arg))
5080 /* If ARG is a pack expansion, but PARM is not a
5081 template parameter pack (if it were, we would have
5082 handled it above), we're trying to expand into a
5083 fixed-length argument list. */
5084 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
5085 error ("cannot expand %<%E%> into a fixed-length "
5086 "argument list", arg);
5087 else
5088 error ("cannot expand %<%T%> into a fixed-length "
5089 "argument list", arg);
5090 return error_mark_node;
5093 else if (require_all_args)
5094 /* There must be a default arg in this case. */
5095 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
5096 complain, in_decl);
5097 else
5098 break;
5100 if (arg == error_mark_node)
5102 if (complain & tf_error)
5103 error ("template argument %d is invalid", arg_idx + 1);
5105 else if (!arg)
5106 /* This only occurs if there was an error in the template
5107 parameter list itself (which we would already have
5108 reported) that we are trying to recover from, e.g., a class
5109 template with a parameter list such as
5110 template<typename..., typename>. */
5111 return error_mark_node;
5112 else
5113 arg = convert_template_argument (TREE_VALUE (parm),
5114 arg, new_args, complain,
5115 parm_idx, in_decl);
5117 if (arg == error_mark_node)
5118 lost++;
5119 TREE_VEC_ELT (new_inner_args, arg_idx) = arg;
5121 skip_evaluation = saved_skip_evaluation;
5123 if (lost)
5124 return error_mark_node;
5126 return new_inner_args;
5129 /* Returns 1 if template args OT and NT are equivalent. */
5131 static int
5132 template_args_equal (tree ot, tree nt)
5134 if (nt == ot)
5135 return 1;
5137 if (TREE_CODE (nt) == TREE_VEC)
5138 /* For member templates */
5139 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
5140 else if (PACK_EXPANSION_P (ot))
5141 return PACK_EXPANSION_P (nt)
5142 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
5143 PACK_EXPANSION_PATTERN (nt));
5144 else if (TYPE_P (nt))
5145 return TYPE_P (ot) && same_type_p (ot, nt);
5146 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
5147 return 0;
5148 else
5149 return cp_tree_equal (ot, nt);
5152 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
5153 of template arguments. Returns 0 otherwise. */
5156 comp_template_args (tree oldargs, tree newargs)
5158 int i;
5160 oldargs = expand_template_argument_pack (oldargs);
5161 newargs = expand_template_argument_pack (newargs);
5163 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
5164 return 0;
5166 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
5168 tree nt = TREE_VEC_ELT (newargs, i);
5169 tree ot = TREE_VEC_ELT (oldargs, i);
5171 if (! template_args_equal (ot, nt))
5172 return 0;
5174 return 1;
5177 static void
5178 add_pending_template (tree d)
5180 tree ti = (TYPE_P (d)
5181 ? CLASSTYPE_TEMPLATE_INFO (d)
5182 : DECL_TEMPLATE_INFO (d));
5183 struct pending_template *pt;
5184 int level;
5186 if (TI_PENDING_TEMPLATE_FLAG (ti))
5187 return;
5189 /* We are called both from instantiate_decl, where we've already had a
5190 tinst_level pushed, and instantiate_template, where we haven't.
5191 Compensate. */
5192 level = !current_tinst_level || current_tinst_level->decl != d;
5194 if (level)
5195 push_tinst_level (d);
5197 pt = GGC_NEW (struct pending_template);
5198 pt->next = NULL;
5199 pt->tinst = current_tinst_level;
5200 if (last_pending_template)
5201 last_pending_template->next = pt;
5202 else
5203 pending_templates = pt;
5205 last_pending_template = pt;
5207 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
5209 if (level)
5210 pop_tinst_level ();
5214 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
5215 ARGLIST. Valid choices for FNS are given in the cp-tree.def
5216 documentation for TEMPLATE_ID_EXPR. */
5218 tree
5219 lookup_template_function (tree fns, tree arglist)
5221 tree type;
5223 if (fns == error_mark_node || arglist == error_mark_node)
5224 return error_mark_node;
5226 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
5227 gcc_assert (fns && (is_overloaded_fn (fns)
5228 || TREE_CODE (fns) == IDENTIFIER_NODE));
5230 if (BASELINK_P (fns))
5232 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
5233 unknown_type_node,
5234 BASELINK_FUNCTIONS (fns),
5235 arglist);
5236 return fns;
5239 type = TREE_TYPE (fns);
5240 if (TREE_CODE (fns) == OVERLOAD || !type)
5241 type = unknown_type_node;
5243 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
5246 /* Within the scope of a template class S<T>, the name S gets bound
5247 (in build_self_reference) to a TYPE_DECL for the class, not a
5248 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
5249 or one of its enclosing classes, and that type is a template,
5250 return the associated TEMPLATE_DECL. Otherwise, the original
5251 DECL is returned. */
5253 tree
5254 maybe_get_template_decl_from_type_decl (tree decl)
5256 return (decl != NULL_TREE
5257 && TREE_CODE (decl) == TYPE_DECL
5258 && DECL_ARTIFICIAL (decl)
5259 && CLASS_TYPE_P (TREE_TYPE (decl))
5260 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
5261 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
5264 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
5265 parameters, find the desired type.
5267 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
5269 IN_DECL, if non-NULL, is the template declaration we are trying to
5270 instantiate.
5272 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
5273 the class we are looking up.
5275 Issue error and warning messages under control of COMPLAIN.
5277 If the template class is really a local class in a template
5278 function, then the FUNCTION_CONTEXT is the function in which it is
5279 being instantiated.
5281 ??? Note that this function is currently called *twice* for each
5282 template-id: the first time from the parser, while creating the
5283 incomplete type (finish_template_type), and the second type during the
5284 real instantiation (instantiate_template_class). This is surely something
5285 that we want to avoid. It also causes some problems with argument
5286 coercion (see convert_nontype_argument for more information on this). */
5288 tree
5289 lookup_template_class (tree d1,
5290 tree arglist,
5291 tree in_decl,
5292 tree context,
5293 int entering_scope,
5294 tsubst_flags_t complain)
5296 tree template = NULL_TREE, parmlist;
5297 tree t;
5299 timevar_push (TV_NAME_LOOKUP);
5301 if (TREE_CODE (d1) == IDENTIFIER_NODE)
5303 tree value = innermost_non_namespace_value (d1);
5304 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
5305 template = value;
5306 else
5308 if (context)
5309 push_decl_namespace (context);
5310 template = lookup_name (d1);
5311 template = maybe_get_template_decl_from_type_decl (template);
5312 if (context)
5313 pop_decl_namespace ();
5315 if (template)
5316 context = DECL_CONTEXT (template);
5318 else if (TREE_CODE (d1) == TYPE_DECL && IS_AGGR_TYPE (TREE_TYPE (d1)))
5320 tree type = TREE_TYPE (d1);
5322 /* If we are declaring a constructor, say A<T>::A<T>, we will get
5323 an implicit typename for the second A. Deal with it. */
5324 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
5325 type = TREE_TYPE (type);
5327 if (CLASSTYPE_TEMPLATE_INFO (type))
5329 template = CLASSTYPE_TI_TEMPLATE (type);
5330 d1 = DECL_NAME (template);
5333 else if (TREE_CODE (d1) == ENUMERAL_TYPE
5334 || (TYPE_P (d1) && IS_AGGR_TYPE (d1)))
5336 template = TYPE_TI_TEMPLATE (d1);
5337 d1 = DECL_NAME (template);
5339 else if (TREE_CODE (d1) == TEMPLATE_DECL
5340 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
5342 template = d1;
5343 d1 = DECL_NAME (template);
5344 context = DECL_CONTEXT (template);
5347 /* Issue an error message if we didn't find a template. */
5348 if (! template)
5350 if (complain & tf_error)
5351 error ("%qT is not a template", d1);
5352 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
5355 if (TREE_CODE (template) != TEMPLATE_DECL
5356 /* Make sure it's a user visible template, if it was named by
5357 the user. */
5358 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (template)
5359 && !PRIMARY_TEMPLATE_P (template)))
5361 if (complain & tf_error)
5363 error ("non-template type %qT used as a template", d1);
5364 if (in_decl)
5365 error ("for template declaration %q+D", in_decl);
5367 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
5370 complain &= ~tf_user;
5372 if (DECL_TEMPLATE_TEMPLATE_PARM_P (template))
5374 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
5375 template arguments */
5377 tree parm;
5378 tree arglist2;
5380 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (template);
5382 /* Consider an example where a template template parameter declared as
5384 template <class T, class U = std::allocator<T> > class TT
5386 The template parameter level of T and U are one level larger than
5387 of TT. To proper process the default argument of U, say when an
5388 instantiation `TT<int>' is seen, we need to build the full
5389 arguments containing {int} as the innermost level. Outer levels,
5390 available when not appearing as default template argument, can be
5391 obtained from `current_template_args ()'.
5393 Suppose that TT is later substituted with std::vector. The above
5394 instantiation is `TT<int, std::allocator<T> >' with TT at
5395 level 1, and T at level 2, while the template arguments at level 1
5396 becomes {std::vector} and the inner level 2 is {int}. */
5398 if (current_template_parms)
5399 arglist = add_to_template_args (current_template_args (), arglist);
5401 arglist2 = coerce_template_parms (parmlist, arglist, template,
5402 complain,
5403 /*require_all_args=*/true,
5404 /*use_default_args=*/true);
5405 if (arglist2 == error_mark_node
5406 || (!uses_template_parms (arglist2)
5407 && check_instantiated_args (template, arglist2, complain)))
5408 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
5410 parm = bind_template_template_parm (TREE_TYPE (template), arglist2);
5411 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, parm);
5413 else
5415 tree template_type = TREE_TYPE (template);
5416 tree gen_tmpl;
5417 tree type_decl;
5418 tree found = NULL_TREE;
5419 int arg_depth;
5420 int parm_depth;
5421 int is_partial_instantiation;
5423 gen_tmpl = most_general_template (template);
5424 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
5425 parm_depth = TMPL_PARMS_DEPTH (parmlist);
5426 arg_depth = TMPL_ARGS_DEPTH (arglist);
5428 if (arg_depth == 1 && parm_depth > 1)
5430 /* We've been given an incomplete set of template arguments.
5431 For example, given:
5433 template <class T> struct S1 {
5434 template <class U> struct S2 {};
5435 template <class U> struct S2<U*> {};
5438 we will be called with an ARGLIST of `U*', but the
5439 TEMPLATE will be `template <class T> template
5440 <class U> struct S1<T>::S2'. We must fill in the missing
5441 arguments. */
5442 arglist
5443 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (template)),
5444 arglist);
5445 arg_depth = TMPL_ARGS_DEPTH (arglist);
5448 /* Now we should have enough arguments. */
5449 gcc_assert (parm_depth == arg_depth);
5451 /* From here on, we're only interested in the most general
5452 template. */
5453 template = gen_tmpl;
5455 /* Calculate the BOUND_ARGS. These will be the args that are
5456 actually tsubst'd into the definition to create the
5457 instantiation. */
5458 if (parm_depth > 1)
5460 /* We have multiple levels of arguments to coerce, at once. */
5461 int i;
5462 int saved_depth = TMPL_ARGS_DEPTH (arglist);
5464 tree bound_args = make_tree_vec (parm_depth);
5466 for (i = saved_depth,
5467 t = DECL_TEMPLATE_PARMS (template);
5468 i > 0 && t != NULL_TREE;
5469 --i, t = TREE_CHAIN (t))
5471 tree a = coerce_template_parms (TREE_VALUE (t),
5472 arglist, template,
5473 complain,
5474 /*require_all_args=*/true,
5475 /*use_default_args=*/true);
5477 /* Don't process further if one of the levels fails. */
5478 if (a == error_mark_node)
5480 /* Restore the ARGLIST to its full size. */
5481 TREE_VEC_LENGTH (arglist) = saved_depth;
5482 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
5485 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
5487 /* We temporarily reduce the length of the ARGLIST so
5488 that coerce_template_parms will see only the arguments
5489 corresponding to the template parameters it is
5490 examining. */
5491 TREE_VEC_LENGTH (arglist)--;
5494 /* Restore the ARGLIST to its full size. */
5495 TREE_VEC_LENGTH (arglist) = saved_depth;
5497 arglist = bound_args;
5499 else
5500 arglist
5501 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
5502 INNERMOST_TEMPLATE_ARGS (arglist),
5503 template,
5504 complain,
5505 /*require_all_args=*/true,
5506 /*use_default_args=*/true);
5508 if (arglist == error_mark_node)
5509 /* We were unable to bind the arguments. */
5510 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
5512 /* In the scope of a template class, explicit references to the
5513 template class refer to the type of the template, not any
5514 instantiation of it. For example, in:
5516 template <class T> class C { void f(C<T>); }
5518 the `C<T>' is just the same as `C'. Outside of the
5519 class, however, such a reference is an instantiation. */
5520 if (comp_template_args (TYPE_TI_ARGS (template_type),
5521 arglist))
5523 found = template_type;
5525 if (!entering_scope && PRIMARY_TEMPLATE_P (template))
5527 tree ctx;
5529 for (ctx = current_class_type;
5530 ctx && TREE_CODE (ctx) != NAMESPACE_DECL;
5531 ctx = (TYPE_P (ctx)
5532 ? TYPE_CONTEXT (ctx)
5533 : DECL_CONTEXT (ctx)))
5534 if (TYPE_P (ctx) && same_type_p (ctx, template_type))
5535 goto found_ctx;
5537 /* We're not in the scope of the class, so the
5538 TEMPLATE_TYPE is not the type we want after all. */
5539 found = NULL_TREE;
5540 found_ctx:;
5543 if (found)
5544 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
5546 /* If we already have this specialization, return it. */
5547 found = retrieve_specialization (template, arglist,
5548 /*class_specializations_p=*/false);
5549 if (found)
5550 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
5552 /* This type is a "partial instantiation" if any of the template
5553 arguments still involve template parameters. Note that we set
5554 IS_PARTIAL_INSTANTIATION for partial specializations as
5555 well. */
5556 is_partial_instantiation = uses_template_parms (arglist);
5558 /* If the deduced arguments are invalid, then the binding
5559 failed. */
5560 if (!is_partial_instantiation
5561 && check_instantiated_args (template,
5562 INNERMOST_TEMPLATE_ARGS (arglist),
5563 complain))
5564 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
5566 if (!is_partial_instantiation
5567 && !PRIMARY_TEMPLATE_P (template)
5568 && TREE_CODE (CP_DECL_CONTEXT (template)) == NAMESPACE_DECL)
5570 found = xref_tag_from_type (TREE_TYPE (template),
5571 DECL_NAME (template),
5572 /*tag_scope=*/ts_global);
5573 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
5576 context = tsubst (DECL_CONTEXT (template), arglist,
5577 complain, in_decl);
5578 if (!context)
5579 context = global_namespace;
5581 /* Create the type. */
5582 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
5584 if (!is_partial_instantiation)
5586 set_current_access_from_decl (TYPE_NAME (template_type));
5587 t = start_enum (TYPE_IDENTIFIER (template_type));
5589 else
5590 /* We don't want to call start_enum for this type, since
5591 the values for the enumeration constants may involve
5592 template parameters. And, no one should be interested
5593 in the enumeration constants for such a type. */
5594 t = make_node (ENUMERAL_TYPE);
5596 else
5598 t = make_aggr_type (TREE_CODE (template_type));
5599 CLASSTYPE_DECLARED_CLASS (t)
5600 = CLASSTYPE_DECLARED_CLASS (template_type);
5601 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
5602 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
5604 /* A local class. Make sure the decl gets registered properly. */
5605 if (context == current_function_decl)
5606 pushtag (DECL_NAME (template), t, /*tag_scope=*/ts_current);
5608 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
5609 /* This instantiation is another name for the primary
5610 template type. Set the TYPE_CANONICAL field
5611 appropriately. */
5612 TYPE_CANONICAL (t) = template_type;
5613 else if (any_template_arguments_need_structural_equality_p (arglist))
5614 /* Some of the template arguments require structural
5615 equality testing, so this template class requires
5616 structural equality testing. */
5617 SET_TYPE_STRUCTURAL_EQUALITY (t);
5620 /* If we called start_enum or pushtag above, this information
5621 will already be set up. */
5622 if (!TYPE_NAME (t))
5624 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
5626 type_decl = create_implicit_typedef (DECL_NAME (template), t);
5627 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
5628 TYPE_STUB_DECL (t) = type_decl;
5629 DECL_SOURCE_LOCATION (type_decl)
5630 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
5632 else
5633 type_decl = TYPE_NAME (t);
5635 TREE_PRIVATE (type_decl)
5636 = TREE_PRIVATE (TYPE_STUB_DECL (template_type));
5637 TREE_PROTECTED (type_decl)
5638 = TREE_PROTECTED (TYPE_STUB_DECL (template_type));
5639 DECL_IN_SYSTEM_HEADER (type_decl)
5640 = DECL_IN_SYSTEM_HEADER (template);
5641 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
5643 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
5644 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
5647 /* Set up the template information. We have to figure out which
5648 template is the immediate parent if this is a full
5649 instantiation. */
5650 if (parm_depth == 1 || is_partial_instantiation
5651 || !PRIMARY_TEMPLATE_P (template))
5652 /* This case is easy; there are no member templates involved. */
5653 found = template;
5654 else
5656 /* This is a full instantiation of a member template. Look
5657 for a partial instantiation of which this is an instance. */
5659 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
5660 found; found = TREE_CHAIN (found))
5662 int success;
5663 tree tmpl = CLASSTYPE_TI_TEMPLATE (TREE_VALUE (found));
5665 /* We only want partial instantiations, here, not
5666 specializations or full instantiations. */
5667 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_VALUE (found))
5668 || !uses_template_parms (TREE_VALUE (found)))
5669 continue;
5671 /* Temporarily reduce by one the number of levels in the
5672 ARGLIST and in FOUND so as to avoid comparing the
5673 last set of arguments. */
5674 TREE_VEC_LENGTH (arglist)--;
5675 TREE_VEC_LENGTH (TREE_PURPOSE (found)) --;
5677 /* See if the arguments match. If they do, then TMPL is
5678 the partial instantiation we want. */
5679 success = comp_template_args (TREE_PURPOSE (found), arglist);
5681 /* Restore the argument vectors to their full size. */
5682 TREE_VEC_LENGTH (arglist)++;
5683 TREE_VEC_LENGTH (TREE_PURPOSE (found))++;
5685 if (success)
5687 found = tmpl;
5688 break;
5692 if (!found)
5694 /* There was no partial instantiation. This happens
5695 where C<T> is a member template of A<T> and it's used
5696 in something like
5698 template <typename T> struct B { A<T>::C<int> m; };
5699 B<float>;
5701 Create the partial instantiation.
5703 TREE_VEC_LENGTH (arglist)--;
5704 found = tsubst (template, arglist, complain, NULL_TREE);
5705 TREE_VEC_LENGTH (arglist)++;
5709 SET_TYPE_TEMPLATE_INFO (t, tree_cons (found, arglist, NULL_TREE));
5710 DECL_TEMPLATE_INSTANTIATIONS (template)
5711 = tree_cons (arglist, t,
5712 DECL_TEMPLATE_INSTANTIATIONS (template));
5714 if (TREE_CODE (t) == ENUMERAL_TYPE
5715 && !is_partial_instantiation)
5716 /* Now that the type has been registered on the instantiations
5717 list, we set up the enumerators. Because the enumeration
5718 constants may involve the enumeration type itself, we make
5719 sure to register the type first, and then create the
5720 constants. That way, doing tsubst_expr for the enumeration
5721 constants won't result in recursive calls here; we'll find
5722 the instantiation and exit above. */
5723 tsubst_enum (template_type, t, arglist);
5725 if (is_partial_instantiation)
5726 /* If the type makes use of template parameters, the
5727 code that generates debugging information will crash. */
5728 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
5730 /* Possibly limit visibility based on template args. */
5731 TREE_PUBLIC (type_decl) = 1;
5732 determine_visibility (type_decl);
5734 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
5736 timevar_pop (TV_NAME_LOOKUP);
5739 struct pair_fn_data
5741 tree_fn_t fn;
5742 void *data;
5743 struct pointer_set_t *visited;
5746 /* Called from for_each_template_parm via walk_tree. */
5748 static tree
5749 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
5751 tree t = *tp;
5752 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
5753 tree_fn_t fn = pfd->fn;
5754 void *data = pfd->data;
5756 if (TYPE_P (t)
5757 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited))
5758 return error_mark_node;
5760 switch (TREE_CODE (t))
5762 case RECORD_TYPE:
5763 if (TYPE_PTRMEMFUNC_P (t))
5764 break;
5765 /* Fall through. */
5767 case UNION_TYPE:
5768 case ENUMERAL_TYPE:
5769 if (!TYPE_TEMPLATE_INFO (t))
5770 *walk_subtrees = 0;
5771 else if (for_each_template_parm (TREE_VALUE (TYPE_TEMPLATE_INFO (t)),
5772 fn, data, pfd->visited))
5773 return error_mark_node;
5774 break;
5776 case INTEGER_TYPE:
5777 if (for_each_template_parm (TYPE_MIN_VALUE (t),
5778 fn, data, pfd->visited)
5779 || for_each_template_parm (TYPE_MAX_VALUE (t),
5780 fn, data, pfd->visited))
5781 return error_mark_node;
5782 break;
5784 case METHOD_TYPE:
5785 /* Since we're not going to walk subtrees, we have to do this
5786 explicitly here. */
5787 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
5788 pfd->visited))
5789 return error_mark_node;
5790 /* Fall through. */
5792 case FUNCTION_TYPE:
5793 /* Check the return type. */
5794 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited))
5795 return error_mark_node;
5797 /* Check the parameter types. Since default arguments are not
5798 instantiated until they are needed, the TYPE_ARG_TYPES may
5799 contain expressions that involve template parameters. But,
5800 no-one should be looking at them yet. And, once they're
5801 instantiated, they don't contain template parameters, so
5802 there's no point in looking at them then, either. */
5804 tree parm;
5806 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
5807 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
5808 pfd->visited))
5809 return error_mark_node;
5811 /* Since we've already handled the TYPE_ARG_TYPES, we don't
5812 want walk_tree walking into them itself. */
5813 *walk_subtrees = 0;
5815 break;
5817 case TYPEOF_TYPE:
5818 if (for_each_template_parm (TYPE_FIELDS (t), fn, data,
5819 pfd->visited))
5820 return error_mark_node;
5821 break;
5823 case FUNCTION_DECL:
5824 case VAR_DECL:
5825 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
5826 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
5827 pfd->visited))
5828 return error_mark_node;
5829 /* Fall through. */
5831 case PARM_DECL:
5832 case CONST_DECL:
5833 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
5834 && for_each_template_parm (DECL_INITIAL (t), fn, data,
5835 pfd->visited))
5836 return error_mark_node;
5837 if (DECL_CONTEXT (t)
5838 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
5839 pfd->visited))
5840 return error_mark_node;
5841 break;
5843 case BOUND_TEMPLATE_TEMPLATE_PARM:
5844 /* Record template parameters such as `T' inside `TT<T>'. */
5845 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited))
5846 return error_mark_node;
5847 /* Fall through. */
5849 case TEMPLATE_TEMPLATE_PARM:
5850 case TEMPLATE_TYPE_PARM:
5851 case TEMPLATE_PARM_INDEX:
5852 if (fn && (*fn)(t, data))
5853 return error_mark_node;
5854 else if (!fn)
5855 return error_mark_node;
5856 break;
5858 case TEMPLATE_DECL:
5859 /* A template template parameter is encountered. */
5860 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
5861 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited))
5862 return error_mark_node;
5864 /* Already substituted template template parameter */
5865 *walk_subtrees = 0;
5866 break;
5868 case TYPENAME_TYPE:
5869 if (!fn
5870 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
5871 data, pfd->visited))
5872 return error_mark_node;
5873 break;
5875 case CONSTRUCTOR:
5876 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
5877 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
5878 (TREE_TYPE (t)), fn, data,
5879 pfd->visited))
5880 return error_mark_node;
5881 break;
5883 case INDIRECT_REF:
5884 case COMPONENT_REF:
5885 /* If there's no type, then this thing must be some expression
5886 involving template parameters. */
5887 if (!fn && !TREE_TYPE (t))
5888 return error_mark_node;
5889 break;
5891 case MODOP_EXPR:
5892 case CAST_EXPR:
5893 case REINTERPRET_CAST_EXPR:
5894 case CONST_CAST_EXPR:
5895 case STATIC_CAST_EXPR:
5896 case DYNAMIC_CAST_EXPR:
5897 case ARROW_EXPR:
5898 case DOTSTAR_EXPR:
5899 case TYPEID_EXPR:
5900 case PSEUDO_DTOR_EXPR:
5901 if (!fn)
5902 return error_mark_node;
5903 break;
5905 default:
5906 break;
5909 /* We didn't find any template parameters we liked. */
5910 return NULL_TREE;
5913 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
5914 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
5915 call FN with the parameter and the DATA.
5916 If FN returns nonzero, the iteration is terminated, and
5917 for_each_template_parm returns 1. Otherwise, the iteration
5918 continues. If FN never returns a nonzero value, the value
5919 returned by for_each_template_parm is 0. If FN is NULL, it is
5920 considered to be the function which always returns 1. */
5922 static int
5923 for_each_template_parm (tree t, tree_fn_t fn, void* data,
5924 struct pointer_set_t *visited)
5926 struct pair_fn_data pfd;
5927 int result;
5929 /* Set up. */
5930 pfd.fn = fn;
5931 pfd.data = data;
5933 /* Walk the tree. (Conceptually, we would like to walk without
5934 duplicates, but for_each_template_parm_r recursively calls
5935 for_each_template_parm, so we would need to reorganize a fair
5936 bit to use walk_tree_without_duplicates, so we keep our own
5937 visited list.) */
5938 if (visited)
5939 pfd.visited = visited;
5940 else
5941 pfd.visited = pointer_set_create ();
5942 result = cp_walk_tree (&t,
5943 for_each_template_parm_r,
5944 &pfd,
5945 pfd.visited) != NULL_TREE;
5947 /* Clean up. */
5948 if (!visited)
5950 pointer_set_destroy (pfd.visited);
5951 pfd.visited = 0;
5954 return result;
5957 /* Returns true if T depends on any template parameter. */
5960 uses_template_parms (tree t)
5962 bool dependent_p;
5963 int saved_processing_template_decl;
5965 saved_processing_template_decl = processing_template_decl;
5966 if (!saved_processing_template_decl)
5967 processing_template_decl = 1;
5968 if (TYPE_P (t))
5969 dependent_p = dependent_type_p (t);
5970 else if (TREE_CODE (t) == TREE_VEC)
5971 dependent_p = any_dependent_template_arguments_p (t);
5972 else if (TREE_CODE (t) == TREE_LIST)
5973 dependent_p = (uses_template_parms (TREE_VALUE (t))
5974 || uses_template_parms (TREE_CHAIN (t)));
5975 else if (TREE_CODE (t) == TYPE_DECL)
5976 dependent_p = dependent_type_p (TREE_TYPE (t));
5977 else if (DECL_P (t)
5978 || EXPR_P (t)
5979 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
5980 || TREE_CODE (t) == OVERLOAD
5981 || TREE_CODE (t) == BASELINK
5982 || TREE_CODE (t) == IDENTIFIER_NODE
5983 || TREE_CODE (t) == TRAIT_EXPR
5984 || CONSTANT_CLASS_P (t))
5985 dependent_p = (type_dependent_expression_p (t)
5986 || value_dependent_expression_p (t));
5987 else
5989 gcc_assert (t == error_mark_node);
5990 dependent_p = false;
5993 processing_template_decl = saved_processing_template_decl;
5995 return dependent_p;
5998 /* Returns true if T depends on any template parameter with level LEVEL. */
6001 uses_template_parms_level (tree t, int level)
6003 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL);
6006 static int tinst_depth;
6007 extern int max_tinst_depth;
6008 #ifdef GATHER_STATISTICS
6009 int depth_reached;
6010 #endif
6011 static int tinst_level_tick;
6012 static int last_template_error_tick;
6014 /* We're starting to instantiate D; record the template instantiation context
6015 for diagnostics and to restore it later. */
6017 static int
6018 push_tinst_level (tree d)
6020 struct tinst_level *new;
6022 if (tinst_depth >= max_tinst_depth)
6024 /* If the instantiation in question still has unbound template parms,
6025 we don't really care if we can't instantiate it, so just return.
6026 This happens with base instantiation for implicit `typename'. */
6027 if (uses_template_parms (d))
6028 return 0;
6030 last_template_error_tick = tinst_level_tick;
6031 error ("template instantiation depth exceeds maximum of %d (use "
6032 "-ftemplate-depth-NN to increase the maximum) instantiating %qD",
6033 max_tinst_depth, d);
6035 print_instantiation_context ();
6037 return 0;
6040 new = GGC_NEW (struct tinst_level);
6041 new->decl = d;
6042 new->locus = input_location;
6043 new->in_system_header_p = in_system_header;
6044 new->next = current_tinst_level;
6045 current_tinst_level = new;
6047 ++tinst_depth;
6048 #ifdef GATHER_STATISTICS
6049 if (tinst_depth > depth_reached)
6050 depth_reached = tinst_depth;
6051 #endif
6053 ++tinst_level_tick;
6054 return 1;
6057 /* We're done instantiating this template; return to the instantiation
6058 context. */
6060 static void
6061 pop_tinst_level (void)
6063 /* Restore the filename and line number stashed away when we started
6064 this instantiation. */
6065 input_location = current_tinst_level->locus;
6066 in_system_header = current_tinst_level->in_system_header_p;
6067 current_tinst_level = current_tinst_level->next;
6068 --tinst_depth;
6069 ++tinst_level_tick;
6072 /* We're instantiating a deferred template; restore the template
6073 instantiation context in which the instantiation was requested, which
6074 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
6076 static tree
6077 reopen_tinst_level (struct tinst_level *level)
6079 struct tinst_level *t;
6081 tinst_depth = 0;
6082 for (t = level; t; t = t->next)
6083 ++tinst_depth;
6085 current_tinst_level = level;
6086 pop_tinst_level ();
6087 return level->decl;
6090 /* Returns the TINST_LEVEL which gives the original instantiation
6091 context. */
6093 struct tinst_level *
6094 outermost_tinst_level (void)
6096 struct tinst_level *level = current_tinst_level;
6097 if (level)
6098 while (level->next)
6099 level = level->next;
6100 return level;
6103 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
6104 vector of template arguments, as for tsubst.
6106 Returns an appropriate tsubst'd friend declaration. */
6108 static tree
6109 tsubst_friend_function (tree decl, tree args)
6111 tree new_friend;
6113 if (TREE_CODE (decl) == FUNCTION_DECL
6114 && DECL_TEMPLATE_INSTANTIATION (decl)
6115 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
6116 /* This was a friend declared with an explicit template
6117 argument list, e.g.:
6119 friend void f<>(T);
6121 to indicate that f was a template instantiation, not a new
6122 function declaration. Now, we have to figure out what
6123 instantiation of what template. */
6125 tree template_id, arglist, fns;
6126 tree new_args;
6127 tree tmpl;
6128 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
6130 /* Friend functions are looked up in the containing namespace scope.
6131 We must enter that scope, to avoid finding member functions of the
6132 current cless with same name. */
6133 push_nested_namespace (ns);
6134 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
6135 tf_warning_or_error, NULL_TREE,
6136 /*integral_constant_expression_p=*/false);
6137 pop_nested_namespace (ns);
6138 arglist = tsubst (DECL_TI_ARGS (decl), args,
6139 tf_warning_or_error, NULL_TREE);
6140 template_id = lookup_template_function (fns, arglist);
6142 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
6143 tmpl = determine_specialization (template_id, new_friend,
6144 &new_args,
6145 /*need_member_template=*/0,
6146 TREE_VEC_LENGTH (args),
6147 tsk_none);
6148 return instantiate_template (tmpl, new_args, tf_error);
6151 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
6153 /* The NEW_FRIEND will look like an instantiation, to the
6154 compiler, but is not an instantiation from the point of view of
6155 the language. For example, we might have had:
6157 template <class T> struct S {
6158 template <class U> friend void f(T, U);
6161 Then, in S<int>, template <class U> void f(int, U) is not an
6162 instantiation of anything. */
6163 if (new_friend == error_mark_node)
6164 return error_mark_node;
6166 DECL_USE_TEMPLATE (new_friend) = 0;
6167 if (TREE_CODE (decl) == TEMPLATE_DECL)
6169 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
6170 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
6171 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
6174 /* The mangled name for the NEW_FRIEND is incorrect. The function
6175 is not a template instantiation and should not be mangled like
6176 one. Therefore, we forget the mangling here; we'll recompute it
6177 later if we need it. */
6178 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
6180 SET_DECL_RTL (new_friend, NULL_RTX);
6181 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
6184 if (DECL_NAMESPACE_SCOPE_P (new_friend))
6186 tree old_decl;
6187 tree new_friend_template_info;
6188 tree new_friend_result_template_info;
6189 tree ns;
6190 int new_friend_is_defn;
6192 /* We must save some information from NEW_FRIEND before calling
6193 duplicate decls since that function will free NEW_FRIEND if
6194 possible. */
6195 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
6196 new_friend_is_defn =
6197 (DECL_INITIAL (DECL_TEMPLATE_RESULT
6198 (template_for_substitution (new_friend)))
6199 != NULL_TREE);
6200 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
6202 /* This declaration is a `primary' template. */
6203 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
6205 new_friend_result_template_info
6206 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
6208 else
6209 new_friend_result_template_info = NULL_TREE;
6211 /* Make the init_value nonzero so pushdecl knows this is a defn. */
6212 if (new_friend_is_defn)
6213 DECL_INITIAL (new_friend) = error_mark_node;
6215 /* Inside pushdecl_namespace_level, we will push into the
6216 current namespace. However, the friend function should go
6217 into the namespace of the template. */
6218 ns = decl_namespace_context (new_friend);
6219 push_nested_namespace (ns);
6220 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
6221 pop_nested_namespace (ns);
6223 if (old_decl == error_mark_node)
6224 return error_mark_node;
6226 if (old_decl != new_friend)
6228 /* This new friend declaration matched an existing
6229 declaration. For example, given:
6231 template <class T> void f(T);
6232 template <class U> class C {
6233 template <class T> friend void f(T) {}
6236 the friend declaration actually provides the definition
6237 of `f', once C has been instantiated for some type. So,
6238 old_decl will be the out-of-class template declaration,
6239 while new_friend is the in-class definition.
6241 But, if `f' was called before this point, the
6242 instantiation of `f' will have DECL_TI_ARGS corresponding
6243 to `T' but not to `U', references to which might appear
6244 in the definition of `f'. Previously, the most general
6245 template for an instantiation of `f' was the out-of-class
6246 version; now it is the in-class version. Therefore, we
6247 run through all specialization of `f', adding to their
6248 DECL_TI_ARGS appropriately. In particular, they need a
6249 new set of outer arguments, corresponding to the
6250 arguments for this class instantiation.
6252 The same situation can arise with something like this:
6254 friend void f(int);
6255 template <class T> class C {
6256 friend void f(T) {}
6259 when `C<int>' is instantiated. Now, `f(int)' is defined
6260 in the class. */
6262 if (!new_friend_is_defn)
6263 /* On the other hand, if the in-class declaration does
6264 *not* provide a definition, then we don't want to alter
6265 existing definitions. We can just leave everything
6266 alone. */
6268 else
6270 /* Overwrite whatever template info was there before, if
6271 any, with the new template information pertaining to
6272 the declaration. */
6273 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
6275 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
6276 reregister_specialization (new_friend,
6277 most_general_template (old_decl),
6278 old_decl);
6279 else
6281 tree t;
6282 tree new_friend_args;
6284 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
6285 = new_friend_result_template_info;
6287 new_friend_args = TI_ARGS (new_friend_template_info);
6288 for (t = DECL_TEMPLATE_SPECIALIZATIONS (old_decl);
6289 t != NULL_TREE;
6290 t = TREE_CHAIN (t))
6292 tree spec = TREE_VALUE (t);
6294 DECL_TI_ARGS (spec)
6295 = add_outermost_template_args (new_friend_args,
6296 DECL_TI_ARGS (spec));
6299 /* Now, since specializations are always supposed to
6300 hang off of the most general template, we must move
6301 them. */
6302 t = most_general_template (old_decl);
6303 if (t != old_decl)
6305 DECL_TEMPLATE_SPECIALIZATIONS (t)
6306 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (t),
6307 DECL_TEMPLATE_SPECIALIZATIONS (old_decl));
6308 DECL_TEMPLATE_SPECIALIZATIONS (old_decl) = NULL_TREE;
6313 /* The information from NEW_FRIEND has been merged into OLD_DECL
6314 by duplicate_decls. */
6315 new_friend = old_decl;
6318 else
6320 tree context = DECL_CONTEXT (new_friend);
6321 bool dependent_p;
6323 /* In the code
6324 template <class T> class C {
6325 template <class U> friend void C1<U>::f (); // case 1
6326 friend void C2<T>::f (); // case 2
6328 we only need to make sure CONTEXT is a complete type for
6329 case 2. To distinguish between the two cases, we note that
6330 CONTEXT of case 1 remains dependent type after tsubst while
6331 this isn't true for case 2. */
6332 ++processing_template_decl;
6333 dependent_p = dependent_type_p (context);
6334 --processing_template_decl;
6336 if (!dependent_p
6337 && !complete_type_or_else (context, NULL_TREE))
6338 return error_mark_node;
6340 if (COMPLETE_TYPE_P (context))
6342 /* Check to see that the declaration is really present, and,
6343 possibly obtain an improved declaration. */
6344 tree fn = check_classfn (context,
6345 new_friend, NULL_TREE);
6347 if (fn)
6348 new_friend = fn;
6352 return new_friend;
6355 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
6356 template arguments, as for tsubst.
6358 Returns an appropriate tsubst'd friend type or error_mark_node on
6359 failure. */
6361 static tree
6362 tsubst_friend_class (tree friend_tmpl, tree args)
6364 tree friend_type;
6365 tree tmpl;
6366 tree context;
6368 context = DECL_CONTEXT (friend_tmpl);
6370 if (context)
6372 if (TREE_CODE (context) == NAMESPACE_DECL)
6373 push_nested_namespace (context);
6374 else
6375 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
6378 /* Look for a class template declaration. We look for hidden names
6379 because two friend declarations of the same template are the
6380 same. For example, in:
6382 struct A {
6383 template <typename> friend class F;
6385 template <typename> struct B {
6386 template <typename> friend class F;
6389 both F templates are the same. */
6390 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
6391 /*block_p=*/true, 0,
6392 LOOKUP_COMPLAIN | LOOKUP_HIDDEN);
6394 /* But, if we don't find one, it might be because we're in a
6395 situation like this:
6397 template <class T>
6398 struct S {
6399 template <class U>
6400 friend struct S;
6403 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
6404 for `S<int>', not the TEMPLATE_DECL. */
6405 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
6407 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
6408 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
6411 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
6413 /* The friend template has already been declared. Just
6414 check to see that the declarations match, and install any new
6415 default parameters. We must tsubst the default parameters,
6416 of course. We only need the innermost template parameters
6417 because that is all that redeclare_class_template will look
6418 at. */
6419 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
6420 > TMPL_ARGS_DEPTH (args))
6422 tree parms;
6423 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
6424 args, tf_warning_or_error);
6425 redeclare_class_template (TREE_TYPE (tmpl), parms);
6428 friend_type = TREE_TYPE (tmpl);
6430 else
6432 /* The friend template has not already been declared. In this
6433 case, the instantiation of the template class will cause the
6434 injection of this template into the global scope. */
6435 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
6436 if (tmpl == error_mark_node)
6437 return error_mark_node;
6439 /* The new TMPL is not an instantiation of anything, so we
6440 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
6441 the new type because that is supposed to be the corresponding
6442 template decl, i.e., TMPL. */
6443 DECL_USE_TEMPLATE (tmpl) = 0;
6444 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
6445 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
6446 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
6447 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
6449 /* Inject this template into the global scope. */
6450 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
6453 if (context)
6455 if (TREE_CODE (context) == NAMESPACE_DECL)
6456 pop_nested_namespace (context);
6457 else
6458 pop_nested_class ();
6461 return friend_type;
6464 /* Returns zero if TYPE cannot be completed later due to circularity.
6465 Otherwise returns one. */
6467 static int
6468 can_complete_type_without_circularity (tree type)
6470 if (type == NULL_TREE || type == error_mark_node)
6471 return 0;
6472 else if (COMPLETE_TYPE_P (type))
6473 return 1;
6474 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
6475 return can_complete_type_without_circularity (TREE_TYPE (type));
6476 else if (CLASS_TYPE_P (type)
6477 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
6478 return 0;
6479 else
6480 return 1;
6483 /* Apply any attributes which had to be deferred until instantiation
6484 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
6485 ARGS, COMPLAIN, IN_DECL are as tsubst. */
6487 static void
6488 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
6489 tree args, tsubst_flags_t complain, tree in_decl)
6491 tree last_dep = NULL_TREE;
6492 tree t;
6493 tree *p;
6495 for (t = attributes; t; t = TREE_CHAIN (t))
6496 if (ATTR_IS_DEPENDENT (t))
6498 last_dep = t;
6499 attributes = copy_list (attributes);
6500 break;
6503 if (DECL_P (*decl_p))
6504 p = &DECL_ATTRIBUTES (*decl_p);
6505 else
6506 p = &TYPE_ATTRIBUTES (*decl_p);
6508 if (last_dep)
6510 tree late_attrs = NULL_TREE;
6511 tree *q = &late_attrs;
6513 for (*p = attributes; *p; )
6515 t = *p;
6516 if (ATTR_IS_DEPENDENT (t))
6518 *p = TREE_CHAIN (t);
6519 TREE_CHAIN (t) = NULL_TREE;
6520 TREE_VALUE (t)
6521 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
6522 /*integral_constant_expression_p=*/false);
6523 *q = t;
6524 q = &TREE_CHAIN (t);
6526 else
6527 p = &TREE_CHAIN (t);
6530 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
6534 tree
6535 instantiate_class_template (tree type)
6537 tree template, args, pattern, t, member;
6538 tree typedecl;
6539 tree pbinfo;
6540 tree base_list;
6542 if (type == error_mark_node)
6543 return error_mark_node;
6545 if (TYPE_BEING_DEFINED (type)
6546 || COMPLETE_TYPE_P (type)
6547 || dependent_type_p (type))
6548 return type;
6550 /* Figure out which template is being instantiated. */
6551 template = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
6552 gcc_assert (TREE_CODE (template) == TEMPLATE_DECL);
6554 /* Determine what specialization of the original template to
6555 instantiate. */
6556 t = most_specialized_class (type, template);
6557 if (t == error_mark_node)
6559 TYPE_BEING_DEFINED (type) = 1;
6560 return error_mark_node;
6562 else if (t)
6564 /* This TYPE is actually an instantiation of a partial
6565 specialization. We replace the innermost set of ARGS with
6566 the arguments appropriate for substitution. For example,
6567 given:
6569 template <class T> struct S {};
6570 template <class T> struct S<T*> {};
6572 and supposing that we are instantiating S<int*>, ARGS will
6573 presently be {int*} -- but we need {int}. */
6574 pattern = TREE_TYPE (t);
6575 args = TREE_PURPOSE (t);
6577 else
6579 pattern = TREE_TYPE (template);
6580 args = CLASSTYPE_TI_ARGS (type);
6583 /* If the template we're instantiating is incomplete, then clearly
6584 there's nothing we can do. */
6585 if (!COMPLETE_TYPE_P (pattern))
6586 return type;
6588 /* If we've recursively instantiated too many templates, stop. */
6589 if (! push_tinst_level (type))
6590 return type;
6592 /* Now we're really doing the instantiation. Mark the type as in
6593 the process of being defined. */
6594 TYPE_BEING_DEFINED (type) = 1;
6596 /* We may be in the middle of deferred access check. Disable
6597 it now. */
6598 push_deferring_access_checks (dk_no_deferred);
6600 push_to_top_level ();
6602 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
6604 /* Set the input location to the template definition. This is needed
6605 if tsubsting causes an error. */
6606 typedecl = TYPE_MAIN_DECL (type);
6607 input_location = DECL_SOURCE_LOCATION (typedecl);
6608 in_system_header = DECL_IN_SYSTEM_HEADER (typedecl);
6610 TYPE_HAS_CONSTRUCTOR (type) = TYPE_HAS_CONSTRUCTOR (pattern);
6611 TYPE_HAS_NEW_OPERATOR (type) = TYPE_HAS_NEW_OPERATOR (pattern);
6612 TYPE_HAS_ARRAY_NEW_OPERATOR (type) = TYPE_HAS_ARRAY_NEW_OPERATOR (pattern);
6613 TYPE_GETS_DELETE (type) = TYPE_GETS_DELETE (pattern);
6614 TYPE_HAS_ASSIGN_REF (type) = TYPE_HAS_ASSIGN_REF (pattern);
6615 TYPE_HAS_CONST_ASSIGN_REF (type) = TYPE_HAS_CONST_ASSIGN_REF (pattern);
6616 TYPE_HAS_INIT_REF (type) = TYPE_HAS_INIT_REF (pattern);
6617 TYPE_HAS_CONST_INIT_REF (type) = TYPE_HAS_CONST_INIT_REF (pattern);
6618 TYPE_HAS_DEFAULT_CONSTRUCTOR (type) = TYPE_HAS_DEFAULT_CONSTRUCTOR (pattern);
6619 TYPE_HAS_CONVERSION (type) = TYPE_HAS_CONVERSION (pattern);
6620 TYPE_PACKED (type) = TYPE_PACKED (pattern);
6621 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
6622 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
6623 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
6624 if (ANON_AGGR_TYPE_P (pattern))
6625 SET_ANON_AGGR_TYPE_P (type);
6626 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
6628 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
6629 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
6632 pbinfo = TYPE_BINFO (pattern);
6634 /* We should never instantiate a nested class before its enclosing
6635 class; we need to look up the nested class by name before we can
6636 instantiate it, and that lookup should instantiate the enclosing
6637 class. */
6638 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
6639 || COMPLETE_TYPE_P (TYPE_CONTEXT (type))
6640 || TYPE_BEING_DEFINED (TYPE_CONTEXT (type)));
6642 base_list = NULL_TREE;
6643 if (BINFO_N_BASE_BINFOS (pbinfo))
6645 tree pbase_binfo;
6646 tree context = TYPE_CONTEXT (type);
6647 tree pushed_scope;
6648 int i;
6650 /* We must enter the scope containing the type, as that is where
6651 the accessibility of types named in dependent bases are
6652 looked up from. */
6653 pushed_scope = push_scope (context ? context : global_namespace);
6655 /* Substitute into each of the bases to determine the actual
6656 basetypes. */
6657 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
6659 tree base;
6660 tree access = BINFO_BASE_ACCESS (pbinfo, i);
6661 tree expanded_bases = NULL_TREE;
6662 int idx, len = 1;
6664 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
6666 expanded_bases =
6667 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
6668 args, tf_error, NULL_TREE);
6669 if (expanded_bases == error_mark_node)
6670 continue;
6672 len = TREE_VEC_LENGTH (expanded_bases);
6675 for (idx = 0; idx < len; idx++)
6677 if (expanded_bases)
6678 /* Extract the already-expanded base class. */
6679 base = TREE_VEC_ELT (expanded_bases, idx);
6680 else
6681 /* Substitute to figure out the base class. */
6682 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
6683 NULL_TREE);
6685 if (base == error_mark_node)
6686 continue;
6688 base_list = tree_cons (access, base, base_list);
6689 if (BINFO_VIRTUAL_P (pbase_binfo))
6690 TREE_TYPE (base_list) = integer_type_node;
6694 /* The list is now in reverse order; correct that. */
6695 base_list = nreverse (base_list);
6697 if (pushed_scope)
6698 pop_scope (pushed_scope);
6700 /* Now call xref_basetypes to set up all the base-class
6701 information. */
6702 xref_basetypes (type, base_list);
6704 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
6705 (int) ATTR_FLAG_TYPE_IN_PLACE,
6706 args, tf_error, NULL_TREE);
6708 /* Now that our base classes are set up, enter the scope of the
6709 class, so that name lookups into base classes, etc. will work
6710 correctly. This is precisely analogous to what we do in
6711 begin_class_definition when defining an ordinary non-template
6712 class, except we also need to push the enclosing classes. */
6713 push_nested_class (type);
6715 /* Now members are processed in the order of declaration. */
6716 for (member = CLASSTYPE_DECL_LIST (pattern);
6717 member; member = TREE_CHAIN (member))
6719 tree t = TREE_VALUE (member);
6721 if (TREE_PURPOSE (member))
6723 if (TYPE_P (t))
6725 /* Build new CLASSTYPE_NESTED_UTDS. */
6727 tree newtag;
6728 bool class_template_p;
6730 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
6731 && TYPE_LANG_SPECIFIC (t)
6732 && CLASSTYPE_IS_TEMPLATE (t));
6733 /* If the member is a class template, then -- even after
6734 substitution -- there may be dependent types in the
6735 template argument list for the class. We increment
6736 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
6737 that function will assume that no types are dependent
6738 when outside of a template. */
6739 if (class_template_p)
6740 ++processing_template_decl;
6741 newtag = tsubst (t, args, tf_error, NULL_TREE);
6742 if (class_template_p)
6743 --processing_template_decl;
6744 if (newtag == error_mark_node)
6745 continue;
6747 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
6749 tree name = TYPE_IDENTIFIER (t);
6751 if (class_template_p)
6752 /* Unfortunately, lookup_template_class sets
6753 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
6754 instantiation (i.e., for the type of a member
6755 template class nested within a template class.)
6756 This behavior is required for
6757 maybe_process_partial_specialization to work
6758 correctly, but is not accurate in this case;
6759 the TAG is not an instantiation of anything.
6760 (The corresponding TEMPLATE_DECL is an
6761 instantiation, but the TYPE is not.) */
6762 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
6764 /* Now, we call pushtag to put this NEWTAG into the scope of
6765 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
6766 pushtag calling push_template_decl. We don't have to do
6767 this for enums because it will already have been done in
6768 tsubst_enum. */
6769 if (name)
6770 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
6771 pushtag (name, newtag, /*tag_scope=*/ts_current);
6774 else if (TREE_CODE (t) == FUNCTION_DECL
6775 || DECL_FUNCTION_TEMPLATE_P (t))
6777 /* Build new TYPE_METHODS. */
6778 tree r;
6780 if (TREE_CODE (t) == TEMPLATE_DECL)
6781 ++processing_template_decl;
6782 r = tsubst (t, args, tf_error, NULL_TREE);
6783 if (TREE_CODE (t) == TEMPLATE_DECL)
6784 --processing_template_decl;
6785 set_current_access_from_decl (r);
6786 finish_member_declaration (r);
6788 else
6790 /* Build new TYPE_FIELDS. */
6791 if (TREE_CODE (t) == STATIC_ASSERT)
6793 tree condition =
6794 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
6795 tf_warning_or_error, NULL_TREE,
6796 /*integral_constant_expression_p=*/true);
6797 finish_static_assert (condition,
6798 STATIC_ASSERT_MESSAGE (t),
6799 STATIC_ASSERT_SOURCE_LOCATION (t),
6800 /*member_p=*/true);
6802 else if (TREE_CODE (t) != CONST_DECL)
6804 tree r;
6806 /* The the file and line for this declaration, to
6807 assist in error message reporting. Since we
6808 called push_tinst_level above, we don't need to
6809 restore these. */
6810 input_location = DECL_SOURCE_LOCATION (t);
6812 if (TREE_CODE (t) == TEMPLATE_DECL)
6813 ++processing_template_decl;
6814 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
6815 if (TREE_CODE (t) == TEMPLATE_DECL)
6816 --processing_template_decl;
6817 if (TREE_CODE (r) == VAR_DECL)
6819 /* In [temp.inst]:
6821 [t]he initialization (and any associated
6822 side-effects) of a static data member does
6823 not occur unless the static data member is
6824 itself used in a way that requires the
6825 definition of the static data member to
6826 exist.
6828 Therefore, we do not substitute into the
6829 initialized for the static data member here. */
6830 finish_static_data_member_decl
6832 /*init=*/NULL_TREE,
6833 /*init_const_expr_p=*/false,
6834 /*asmspec_tree=*/NULL_TREE,
6835 /*flags=*/0);
6836 if (DECL_INITIALIZED_IN_CLASS_P (r))
6837 check_static_variable_definition (r, TREE_TYPE (r));
6839 else if (TREE_CODE (r) == FIELD_DECL)
6841 /* Determine whether R has a valid type and can be
6842 completed later. If R is invalid, then it is
6843 replaced by error_mark_node so that it will not be
6844 added to TYPE_FIELDS. */
6845 tree rtype = TREE_TYPE (r);
6846 if (can_complete_type_without_circularity (rtype))
6847 complete_type (rtype);
6849 if (!COMPLETE_TYPE_P (rtype))
6851 cxx_incomplete_type_error (r, rtype);
6852 r = error_mark_node;
6856 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
6857 such a thing will already have been added to the field
6858 list by tsubst_enum in finish_member_declaration in the
6859 CLASSTYPE_NESTED_UTDS case above. */
6860 if (!(TREE_CODE (r) == TYPE_DECL
6861 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
6862 && DECL_ARTIFICIAL (r)))
6864 set_current_access_from_decl (r);
6865 finish_member_declaration (r);
6870 else
6872 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t))
6874 /* Build new CLASSTYPE_FRIEND_CLASSES. */
6876 tree friend_type = t;
6877 bool adjust_processing_template_decl = false;
6879 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
6881 /* template <class T> friend class C; */
6882 friend_type = tsubst_friend_class (friend_type, args);
6883 adjust_processing_template_decl = true;
6885 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
6887 /* template <class T> friend class C::D; */
6888 friend_type = tsubst (friend_type, args,
6889 tf_warning_or_error, NULL_TREE);
6890 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
6891 friend_type = TREE_TYPE (friend_type);
6892 adjust_processing_template_decl = true;
6894 else if (TREE_CODE (friend_type) == TYPENAME_TYPE)
6896 /* This could be either
6898 friend class T::C;
6900 when dependent_type_p is false or
6902 template <class U> friend class T::C;
6904 otherwise. */
6905 friend_type = tsubst (friend_type, args,
6906 tf_warning_or_error, NULL_TREE);
6907 /* Bump processing_template_decl for correct
6908 dependent_type_p calculation. */
6909 ++processing_template_decl;
6910 if (dependent_type_p (friend_type))
6911 adjust_processing_template_decl = true;
6912 --processing_template_decl;
6914 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
6915 && hidden_name_p (TYPE_NAME (friend_type)))
6917 /* friend class C;
6919 where C hasn't been declared yet. Let's lookup name
6920 from namespace scope directly, bypassing any name that
6921 come from dependent base class. */
6922 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
6924 /* The call to xref_tag_from_type does injection for friend
6925 classes. */
6926 push_nested_namespace (ns);
6927 friend_type =
6928 xref_tag_from_type (friend_type, NULL_TREE,
6929 /*tag_scope=*/ts_current);
6930 pop_nested_namespace (ns);
6932 else if (uses_template_parms (friend_type))
6933 /* friend class C<T>; */
6934 friend_type = tsubst (friend_type, args,
6935 tf_warning_or_error, NULL_TREE);
6936 /* Otherwise it's
6938 friend class C;
6940 where C is already declared or
6942 friend class C<int>;
6944 We don't have to do anything in these cases. */
6946 if (adjust_processing_template_decl)
6947 /* Trick make_friend_class into realizing that the friend
6948 we're adding is a template, not an ordinary class. It's
6949 important that we use make_friend_class since it will
6950 perform some error-checking and output cross-reference
6951 information. */
6952 ++processing_template_decl;
6954 if (friend_type != error_mark_node)
6955 make_friend_class (type, friend_type, /*complain=*/false);
6957 if (adjust_processing_template_decl)
6958 --processing_template_decl;
6960 else
6962 /* Build new DECL_FRIENDLIST. */
6963 tree r;
6965 /* The the file and line for this declaration, to
6966 assist in error message reporting. Since we
6967 called push_tinst_level above, we don't need to
6968 restore these. */
6969 input_location = DECL_SOURCE_LOCATION (t);
6971 if (TREE_CODE (t) == TEMPLATE_DECL)
6973 ++processing_template_decl;
6974 push_deferring_access_checks (dk_no_check);
6977 r = tsubst_friend_function (t, args);
6978 add_friend (type, r, /*complain=*/false);
6979 if (TREE_CODE (t) == TEMPLATE_DECL)
6981 pop_deferring_access_checks ();
6982 --processing_template_decl;
6988 /* Set the file and line number information to whatever is given for
6989 the class itself. This puts error messages involving generated
6990 implicit functions at a predictable point, and the same point
6991 that would be used for non-template classes. */
6992 input_location = DECL_SOURCE_LOCATION (typedecl);
6994 unreverse_member_declarations (type);
6995 finish_struct_1 (type);
6996 TYPE_BEING_DEFINED (type) = 0;
6998 /* Now that the class is complete, instantiate default arguments for
6999 any member functions. We don't do this earlier because the
7000 default arguments may reference members of the class. */
7001 if (!PRIMARY_TEMPLATE_P (template))
7002 for (t = TYPE_METHODS (type); t; t = TREE_CHAIN (t))
7003 if (TREE_CODE (t) == FUNCTION_DECL
7004 /* Implicitly generated member functions will not have template
7005 information; they are not instantiations, but instead are
7006 created "fresh" for each instantiation. */
7007 && DECL_TEMPLATE_INFO (t))
7008 tsubst_default_arguments (t);
7010 pop_nested_class ();
7011 pop_from_top_level ();
7012 pop_deferring_access_checks ();
7013 pop_tinst_level ();
7015 /* The vtable for a template class can be emitted in any translation
7016 unit in which the class is instantiated. When there is no key
7017 method, however, finish_struct_1 will already have added TYPE to
7018 the keyed_classes list. */
7019 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
7020 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
7022 return type;
7025 static tree
7026 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
7028 tree r;
7030 if (!t)
7031 r = t;
7032 else if (TYPE_P (t))
7033 r = tsubst (t, args, complain, in_decl);
7034 else
7036 r = tsubst_expr (t, args, complain, in_decl,
7037 /*integral_constant_expression_p=*/true);
7038 r = fold_non_dependent_expr (r);
7040 return r;
7043 /* Substitute ARGS into T, which is an pack expansion
7044 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
7045 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
7046 (if only a partial substitution could be performed) or
7047 ERROR_MARK_NODE if there was an error. */
7048 tree
7049 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
7050 tree in_decl)
7052 tree pattern;
7053 tree pack, packs = NULL_TREE, unsubstituted_packs = NULL_TREE;
7054 tree first_arg_pack; int i, len = -1;
7055 tree result;
7056 int incomplete = 0;
7058 gcc_assert (PACK_EXPANSION_P (t));
7059 pattern = PACK_EXPANSION_PATTERN (t);
7061 /* Determine the argument packs that will instantiate the parameter
7062 packs used in the expansion expression. While we're at it,
7063 compute the number of arguments to be expanded and make sure it
7064 is consistent. */
7065 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
7066 pack = TREE_CHAIN (pack))
7068 tree parm_pack = TREE_VALUE (pack);
7069 tree arg_pack = NULL_TREE;
7070 tree orig_arg = NULL_TREE;
7072 if (TREE_CODE (parm_pack) == PARM_DECL)
7074 if (local_specializations)
7075 arg_pack = retrieve_local_specialization (parm_pack);
7077 else
7079 int level, idx, levels;
7080 template_parm_level_and_index (parm_pack, &level, &idx);
7082 levels = TMPL_ARGS_DEPTH (args);
7083 if (level <= levels)
7084 arg_pack = TMPL_ARG (args, level, idx);
7087 orig_arg = arg_pack;
7088 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
7089 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
7091 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
7092 /* This can only happen if we forget to expand an argument
7093 pack somewhere else. Just return an error, silently. */
7095 result = make_tree_vec (1);
7096 TREE_VEC_ELT (result, 0) = error_mark_node;
7097 return result;
7100 if (arg_pack)
7102 int my_len =
7103 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
7105 /* It's all-or-nothing with incomplete argument packs. */
7106 if (incomplete && !ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
7107 return error_mark_node;
7109 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
7110 incomplete = 1;
7112 if (len < 0)
7114 len = my_len;
7115 first_arg_pack = arg_pack;
7117 else if (len != my_len)
7119 if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
7120 error ("mismatched argument pack lengths while expanding "
7121 "%<%T%>",
7122 pattern);
7123 else
7124 error ("mismatched argument pack lengths while expanding "
7125 "%<%E%>",
7126 pattern);
7127 return error_mark_node;
7130 /* Keep track of the parameter packs and their corresponding
7131 argument packs. */
7132 packs = tree_cons (parm_pack, arg_pack, packs);
7133 TREE_TYPE (packs) = orig_arg;
7135 else
7136 /* We can't substitute for this parameter pack. */
7137 unsubstituted_packs = tree_cons (TREE_PURPOSE (pack),
7138 TREE_VALUE (pack),
7139 unsubstituted_packs);
7142 /* We cannot expand this expansion expression, because we don't have
7143 all of the argument packs we need. Substitute into the pattern
7144 and return a PACK_EXPANSION_*. The caller will need to deal with
7145 that. */
7146 if (unsubstituted_packs)
7147 return make_pack_expansion (tsubst (pattern, args, complain,
7148 in_decl));
7150 /* We could not find any argument packs that work. */
7151 if (len < 0)
7152 return error_mark_node;
7154 /* For each argument in each argument pack, substitute into the
7155 pattern. */
7156 result = make_tree_vec (len + incomplete);
7157 for (i = 0; i < len + incomplete; ++i)
7159 /* For parameter pack, change the substitution of the parameter
7160 pack to the ith argument in its argument pack, then expand
7161 the pattern. */
7162 for (pack = packs; pack; pack = TREE_CHAIN (pack))
7164 tree parm = TREE_PURPOSE (pack);
7166 if (TREE_CODE (parm) == PARM_DECL)
7168 /* Select the Ith argument from the pack. */
7169 tree arg = make_node (ARGUMENT_PACK_SELECT);
7170 ARGUMENT_PACK_SELECT_FROM_PACK (arg) = TREE_VALUE (pack);
7171 ARGUMENT_PACK_SELECT_INDEX (arg) = i;
7172 mark_used (parm);
7173 register_local_specialization (arg, parm);
7175 else
7177 tree value = parm;
7178 int idx, level;
7179 template_parm_level_and_index (parm, &level, &idx);
7181 if (i < len)
7183 /* Select the Ith argument from the pack. */
7184 value = make_node (ARGUMENT_PACK_SELECT);
7185 ARGUMENT_PACK_SELECT_FROM_PACK (value) = TREE_VALUE (pack);
7186 ARGUMENT_PACK_SELECT_INDEX (value) = i;
7189 /* Update the corresponding argument. */
7190 TMPL_ARG (args, level, idx) = value;
7194 /* Substitute into the PATTERN with the altered arguments. */
7195 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
7196 TREE_VEC_ELT (result, i) =
7197 tsubst_expr (pattern, args, complain, in_decl,
7198 /*integral_constant_expression_p=*/false);
7199 else
7200 TREE_VEC_ELT (result, i) = tsubst (pattern, args, complain, in_decl);
7202 if (i == len)
7203 /* When we have incomplete argument packs, the last "expanded"
7204 result is itself a pack expansion, which allows us
7205 to deduce more arguments. */
7206 TREE_VEC_ELT (result, i) =
7207 make_pack_expansion (TREE_VEC_ELT (result, i));
7209 if (TREE_VEC_ELT (result, i) == error_mark_node)
7211 result = error_mark_node;
7212 break;
7216 /* Update ARGS to restore the substitution from parameter packs to
7217 their argument packs. */
7218 for (pack = packs; pack; pack = TREE_CHAIN (pack))
7220 tree parm = TREE_PURPOSE (pack);
7222 if (TREE_CODE (parm) == PARM_DECL)
7223 register_local_specialization (TREE_TYPE (pack), parm);
7224 else
7226 int idx, level;
7227 template_parm_level_and_index (parm, &level, &idx);
7229 /* Update the corresponding argument. */
7230 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
7231 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
7232 TREE_TYPE (pack);
7233 else
7234 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
7238 return result;
7241 /* Substitute ARGS into the vector or list of template arguments T. */
7243 static tree
7244 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
7246 tree orig_t = t;
7247 int len = TREE_VEC_LENGTH (t);
7248 int need_new = 0, i, expanded_len_adjust = 0, out;
7249 tree *elts = (tree *) alloca (len * sizeof (tree));
7251 for (i = 0; i < len; i++)
7253 tree orig_arg = TREE_VEC_ELT (t, i);
7254 tree new_arg;
7256 if (TREE_CODE (orig_arg) == TREE_VEC)
7257 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
7258 else if (PACK_EXPANSION_P (orig_arg))
7260 /* Substitute into an expansion expression. */
7261 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
7263 if (TREE_CODE (new_arg) == TREE_VEC)
7264 /* Add to the expanded length adjustment the number of
7265 expanded arguments. We subtract one from this
7266 measurement, because the argument pack expression
7267 itself is already counted as 1 in
7268 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
7269 the argument pack is empty. */
7270 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
7272 else if (ARGUMENT_PACK_P (orig_arg))
7274 /* Substitute into each of the arguments. */
7275 new_arg = make_node (TREE_CODE (orig_arg));
7277 SET_ARGUMENT_PACK_ARGS (
7278 new_arg,
7279 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
7280 args, complain, in_decl));
7282 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
7283 new_arg = error_mark_node;
7285 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
7286 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
7287 complain, in_decl);
7288 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
7290 if (TREE_TYPE (new_arg) == error_mark_node)
7291 new_arg = error_mark_node;
7294 else
7295 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
7297 if (new_arg == error_mark_node)
7298 return error_mark_node;
7300 elts[i] = new_arg;
7301 if (new_arg != orig_arg)
7302 need_new = 1;
7305 if (!need_new)
7306 return t;
7308 /* Make space for the expanded arguments coming from template
7309 argument packs. */
7310 t = make_tree_vec (len + expanded_len_adjust);
7311 for (i = 0, out = 0; i < len; i++)
7313 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
7314 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
7315 && TREE_CODE (elts[i]) == TREE_VEC)
7317 int idx;
7319 /* Now expand the template argument pack "in place". */
7320 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
7321 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
7323 else
7325 TREE_VEC_ELT (t, out) = elts[i];
7326 out++;
7330 return t;
7333 /* Return the result of substituting ARGS into the template parameters
7334 given by PARMS. If there are m levels of ARGS and m + n levels of
7335 PARMS, then the result will contain n levels of PARMS. For
7336 example, if PARMS is `template <class T> template <class U>
7337 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
7338 result will be `template <int*, double, class V>'. */
7340 static tree
7341 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
7343 tree r = NULL_TREE;
7344 tree* new_parms;
7346 /* When substituting into a template, we must set
7347 PROCESSING_TEMPLATE_DECL as the template parameters may be
7348 dependent if they are based on one-another, and the dependency
7349 predicates are short-circuit outside of templates. */
7350 ++processing_template_decl;
7352 for (new_parms = &r;
7353 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
7354 new_parms = &(TREE_CHAIN (*new_parms)),
7355 parms = TREE_CHAIN (parms))
7357 tree new_vec =
7358 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
7359 int i;
7361 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
7363 tree tuple;
7364 tree default_value;
7365 tree parm_decl;
7367 if (parms == error_mark_node)
7368 continue;
7370 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
7372 if (tuple == error_mark_node)
7373 continue;
7375 default_value = TREE_PURPOSE (tuple);
7376 parm_decl = TREE_VALUE (tuple);
7378 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
7379 if (TREE_CODE (parm_decl) == PARM_DECL
7380 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
7381 parm_decl = error_mark_node;
7382 default_value = tsubst_template_arg (default_value, args,
7383 complain, NULL_TREE);
7385 tuple = build_tree_list (default_value, parm_decl);
7386 TREE_VEC_ELT (new_vec, i) = tuple;
7389 *new_parms =
7390 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
7391 - TMPL_ARGS_DEPTH (args)),
7392 new_vec, NULL_TREE);
7395 --processing_template_decl;
7397 return r;
7400 /* Substitute the ARGS into the indicated aggregate (or enumeration)
7401 type T. If T is not an aggregate or enumeration type, it is
7402 handled as if by tsubst. IN_DECL is as for tsubst. If
7403 ENTERING_SCOPE is nonzero, T is the context for a template which
7404 we are presently tsubst'ing. Return the substituted value. */
7406 static tree
7407 tsubst_aggr_type (tree t,
7408 tree args,
7409 tsubst_flags_t complain,
7410 tree in_decl,
7411 int entering_scope)
7413 if (t == NULL_TREE)
7414 return NULL_TREE;
7416 switch (TREE_CODE (t))
7418 case RECORD_TYPE:
7419 if (TYPE_PTRMEMFUNC_P (t))
7420 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
7422 /* Else fall through. */
7423 case ENUMERAL_TYPE:
7424 case UNION_TYPE:
7425 if (TYPE_TEMPLATE_INFO (t))
7427 tree argvec;
7428 tree context;
7429 tree r;
7430 bool saved_skip_evaluation;
7432 /* In "sizeof(X<I>)" we need to evaluate "I". */
7433 saved_skip_evaluation = skip_evaluation;
7434 skip_evaluation = false;
7436 /* First, determine the context for the type we are looking
7437 up. */
7438 context = TYPE_CONTEXT (t);
7439 if (context)
7440 context = tsubst_aggr_type (context, args, complain,
7441 in_decl, /*entering_scope=*/1);
7443 /* Then, figure out what arguments are appropriate for the
7444 type we are trying to find. For example, given:
7446 template <class T> struct S;
7447 template <class T, class U> void f(T, U) { S<U> su; }
7449 and supposing that we are instantiating f<int, double>,
7450 then our ARGS will be {int, double}, but, when looking up
7451 S we only want {double}. */
7452 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
7453 complain, in_decl);
7454 if (argvec == error_mark_node)
7455 r = error_mark_node;
7456 else
7458 r = lookup_template_class (t, argvec, in_decl, context,
7459 entering_scope, complain);
7460 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
7463 skip_evaluation = saved_skip_evaluation;
7465 return r;
7467 else
7468 /* This is not a template type, so there's nothing to do. */
7469 return t;
7471 default:
7472 return tsubst (t, args, complain, in_decl);
7476 /* Substitute into the default argument ARG (a default argument for
7477 FN), which has the indicated TYPE. */
7479 tree
7480 tsubst_default_argument (tree fn, tree type, tree arg)
7482 tree saved_class_ptr = NULL_TREE;
7483 tree saved_class_ref = NULL_TREE;
7485 /* This default argument came from a template. Instantiate the
7486 default argument here, not in tsubst. In the case of
7487 something like:
7489 template <class T>
7490 struct S {
7491 static T t();
7492 void f(T = t());
7495 we must be careful to do name lookup in the scope of S<T>,
7496 rather than in the current class. */
7497 push_access_scope (fn);
7498 /* The "this" pointer is not valid in a default argument. */
7499 if (cfun)
7501 saved_class_ptr = current_class_ptr;
7502 cp_function_chain->x_current_class_ptr = NULL_TREE;
7503 saved_class_ref = current_class_ref;
7504 cp_function_chain->x_current_class_ref = NULL_TREE;
7507 push_deferring_access_checks(dk_no_deferred);
7508 /* The default argument expression may cause implicitly defined
7509 member functions to be synthesized, which will result in garbage
7510 collection. We must treat this situation as if we were within
7511 the body of function so as to avoid collecting live data on the
7512 stack. */
7513 ++function_depth;
7514 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
7515 tf_warning_or_error, NULL_TREE,
7516 /*integral_constant_expression_p=*/false);
7517 --function_depth;
7518 pop_deferring_access_checks();
7520 /* Restore the "this" pointer. */
7521 if (cfun)
7523 cp_function_chain->x_current_class_ptr = saved_class_ptr;
7524 cp_function_chain->x_current_class_ref = saved_class_ref;
7527 pop_access_scope (fn);
7529 /* Make sure the default argument is reasonable. */
7530 arg = check_default_argument (type, arg);
7532 return arg;
7535 /* Substitute into all the default arguments for FN. */
7537 static void
7538 tsubst_default_arguments (tree fn)
7540 tree arg;
7541 tree tmpl_args;
7543 tmpl_args = DECL_TI_ARGS (fn);
7545 /* If this function is not yet instantiated, we certainly don't need
7546 its default arguments. */
7547 if (uses_template_parms (tmpl_args))
7548 return;
7550 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
7551 arg;
7552 arg = TREE_CHAIN (arg))
7553 if (TREE_PURPOSE (arg))
7554 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
7555 TREE_VALUE (arg),
7556 TREE_PURPOSE (arg));
7559 /* Substitute the ARGS into the T, which is a _DECL. Return the
7560 result of the substitution. Issue error and warning messages under
7561 control of COMPLAIN. */
7563 static tree
7564 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
7566 location_t saved_loc;
7567 tree r = NULL_TREE;
7568 tree in_decl = t;
7570 /* Set the filename and linenumber to improve error-reporting. */
7571 saved_loc = input_location;
7572 input_location = DECL_SOURCE_LOCATION (t);
7574 switch (TREE_CODE (t))
7576 case TEMPLATE_DECL:
7578 /* We can get here when processing a member function template,
7579 member class template, and template template parameter of
7580 a template class. */
7581 tree decl = DECL_TEMPLATE_RESULT (t);
7582 tree spec;
7583 tree tmpl_args;
7584 tree full_args;
7586 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
7588 /* Template template parameter is treated here. */
7589 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
7590 if (new_type == error_mark_node)
7591 return error_mark_node;
7593 r = copy_decl (t);
7594 TREE_CHAIN (r) = NULL_TREE;
7595 TREE_TYPE (r) = new_type;
7596 DECL_TEMPLATE_RESULT (r)
7597 = build_decl (TYPE_DECL, DECL_NAME (decl), new_type);
7598 DECL_TEMPLATE_PARMS (r)
7599 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
7600 complain);
7601 TYPE_NAME (new_type) = r;
7602 break;
7605 /* We might already have an instance of this template.
7606 The ARGS are for the surrounding class type, so the
7607 full args contain the tsubst'd args for the context,
7608 plus the innermost args from the template decl. */
7609 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
7610 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
7611 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
7612 /* Because this is a template, the arguments will still be
7613 dependent, even after substitution. If
7614 PROCESSING_TEMPLATE_DECL is not set, the dependency
7615 predicates will short-circuit. */
7616 ++processing_template_decl;
7617 full_args = tsubst_template_args (tmpl_args, args,
7618 complain, in_decl);
7619 --processing_template_decl;
7620 if (full_args == error_mark_node)
7621 return error_mark_node;
7623 /* tsubst_template_args doesn't copy the vector if
7624 nothing changed. But, *something* should have
7625 changed. */
7626 gcc_assert (full_args != tmpl_args);
7628 spec = retrieve_specialization (t, full_args,
7629 /*class_specializations_p=*/true);
7630 if (spec != NULL_TREE)
7632 r = spec;
7633 break;
7636 /* Make a new template decl. It will be similar to the
7637 original, but will record the current template arguments.
7638 We also create a new function declaration, which is just
7639 like the old one, but points to this new template, rather
7640 than the old one. */
7641 r = copy_decl (t);
7642 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
7643 TREE_CHAIN (r) = NULL_TREE;
7645 DECL_TEMPLATE_INFO (r) = build_tree_list (t, args);
7647 if (TREE_CODE (decl) == TYPE_DECL)
7649 tree new_type;
7650 ++processing_template_decl;
7651 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
7652 --processing_template_decl;
7653 if (new_type == error_mark_node)
7654 return error_mark_node;
7656 TREE_TYPE (r) = new_type;
7657 CLASSTYPE_TI_TEMPLATE (new_type) = r;
7658 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
7659 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
7660 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
7662 else
7664 tree new_decl;
7665 ++processing_template_decl;
7666 new_decl = tsubst (decl, args, complain, in_decl);
7667 --processing_template_decl;
7668 if (new_decl == error_mark_node)
7669 return error_mark_node;
7671 DECL_TEMPLATE_RESULT (r) = new_decl;
7672 DECL_TI_TEMPLATE (new_decl) = r;
7673 TREE_TYPE (r) = TREE_TYPE (new_decl);
7674 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
7675 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
7678 SET_DECL_IMPLICIT_INSTANTIATION (r);
7679 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
7680 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
7682 /* The template parameters for this new template are all the
7683 template parameters for the old template, except the
7684 outermost level of parameters. */
7685 DECL_TEMPLATE_PARMS (r)
7686 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
7687 complain);
7689 if (PRIMARY_TEMPLATE_P (t))
7690 DECL_PRIMARY_TEMPLATE (r) = r;
7692 if (TREE_CODE (decl) != TYPE_DECL)
7693 /* Record this non-type partial instantiation. */
7694 register_specialization (r, t,
7695 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
7696 false);
7698 break;
7700 case FUNCTION_DECL:
7702 tree ctx;
7703 tree argvec = NULL_TREE;
7704 tree *friends;
7705 tree gen_tmpl;
7706 tree type;
7707 int member;
7708 int args_depth;
7709 int parms_depth;
7711 /* Nobody should be tsubst'ing into non-template functions. */
7712 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
7714 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
7716 tree spec;
7717 bool dependent_p;
7719 /* If T is not dependent, just return it. We have to
7720 increment PROCESSING_TEMPLATE_DECL because
7721 value_dependent_expression_p assumes that nothing is
7722 dependent when PROCESSING_TEMPLATE_DECL is zero. */
7723 ++processing_template_decl;
7724 dependent_p = value_dependent_expression_p (t);
7725 --processing_template_decl;
7726 if (!dependent_p)
7727 return t;
7729 /* Calculate the most general template of which R is a
7730 specialization, and the complete set of arguments used to
7731 specialize R. */
7732 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
7733 argvec = tsubst_template_args (DECL_TI_ARGS
7734 (DECL_TEMPLATE_RESULT (gen_tmpl)),
7735 args, complain, in_decl);
7737 /* Check to see if we already have this specialization. */
7738 spec = retrieve_specialization (gen_tmpl, argvec,
7739 /*class_specializations_p=*/false);
7741 if (spec)
7743 r = spec;
7744 break;
7747 /* We can see more levels of arguments than parameters if
7748 there was a specialization of a member template, like
7749 this:
7751 template <class T> struct S { template <class U> void f(); }
7752 template <> template <class U> void S<int>::f(U);
7754 Here, we'll be substituting into the specialization,
7755 because that's where we can find the code we actually
7756 want to generate, but we'll have enough arguments for
7757 the most general template.
7759 We also deal with the peculiar case:
7761 template <class T> struct S {
7762 template <class U> friend void f();
7764 template <class U> void f() {}
7765 template S<int>;
7766 template void f<double>();
7768 Here, the ARGS for the instantiation of will be {int,
7769 double}. But, we only need as many ARGS as there are
7770 levels of template parameters in CODE_PATTERN. We are
7771 careful not to get fooled into reducing the ARGS in
7772 situations like:
7774 template <class T> struct S { template <class U> void f(U); }
7775 template <class T> template <> void S<T>::f(int) {}
7777 which we can spot because the pattern will be a
7778 specialization in this case. */
7779 args_depth = TMPL_ARGS_DEPTH (args);
7780 parms_depth =
7781 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
7782 if (args_depth > parms_depth
7783 && !DECL_TEMPLATE_SPECIALIZATION (t))
7784 args = get_innermost_template_args (args, parms_depth);
7786 else
7788 /* This special case arises when we have something like this:
7790 template <class T> struct S {
7791 friend void f<int>(int, double);
7794 Here, the DECL_TI_TEMPLATE for the friend declaration
7795 will be an IDENTIFIER_NODE. We are being called from
7796 tsubst_friend_function, and we want only to create a
7797 new decl (R) with appropriate types so that we can call
7798 determine_specialization. */
7799 gen_tmpl = NULL_TREE;
7802 if (DECL_CLASS_SCOPE_P (t))
7804 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
7805 member = 2;
7806 else
7807 member = 1;
7808 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
7809 complain, t, /*entering_scope=*/1);
7811 else
7813 member = 0;
7814 ctx = DECL_CONTEXT (t);
7816 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
7817 if (type == error_mark_node)
7818 return error_mark_node;
7820 /* We do NOT check for matching decls pushed separately at this
7821 point, as they may not represent instantiations of this
7822 template, and in any case are considered separate under the
7823 discrete model. */
7824 r = copy_decl (t);
7825 DECL_USE_TEMPLATE (r) = 0;
7826 TREE_TYPE (r) = type;
7827 /* Clear out the mangled name and RTL for the instantiation. */
7828 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
7829 SET_DECL_RTL (r, NULL_RTX);
7830 DECL_INITIAL (r) = NULL_TREE;
7831 DECL_CONTEXT (r) = ctx;
7833 if (member && DECL_CONV_FN_P (r))
7834 /* Type-conversion operator. Reconstruct the name, in
7835 case it's the name of one of the template's parameters. */
7836 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
7838 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
7839 complain, t);
7840 DECL_RESULT (r) = NULL_TREE;
7842 TREE_STATIC (r) = 0;
7843 TREE_PUBLIC (r) = TREE_PUBLIC (t);
7844 DECL_EXTERNAL (r) = 1;
7845 /* If this is an instantiation of a function with internal
7846 linkage, we already know what object file linkage will be
7847 assigned to the instantiation. */
7848 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
7849 DECL_DEFER_OUTPUT (r) = 0;
7850 TREE_CHAIN (r) = NULL_TREE;
7851 DECL_PENDING_INLINE_INFO (r) = 0;
7852 DECL_PENDING_INLINE_P (r) = 0;
7853 DECL_SAVED_TREE (r) = NULL_TREE;
7854 TREE_USED (r) = 0;
7855 if (DECL_CLONED_FUNCTION (r))
7857 DECL_CLONED_FUNCTION (r) = tsubst (DECL_CLONED_FUNCTION (t),
7858 args, complain, t);
7859 TREE_CHAIN (r) = TREE_CHAIN (DECL_CLONED_FUNCTION (r));
7860 TREE_CHAIN (DECL_CLONED_FUNCTION (r)) = r;
7863 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
7864 this in the special friend case mentioned above where
7865 GEN_TMPL is NULL. */
7866 if (gen_tmpl)
7868 DECL_TEMPLATE_INFO (r)
7869 = tree_cons (gen_tmpl, argvec, NULL_TREE);
7870 SET_DECL_IMPLICIT_INSTANTIATION (r);
7871 register_specialization (r, gen_tmpl, argvec, false);
7873 /* We're not supposed to instantiate default arguments
7874 until they are called, for a template. But, for a
7875 declaration like:
7877 template <class T> void f ()
7878 { extern void g(int i = T()); }
7880 we should do the substitution when the template is
7881 instantiated. We handle the member function case in
7882 instantiate_class_template since the default arguments
7883 might refer to other members of the class. */
7884 if (!member
7885 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7886 && !uses_template_parms (argvec))
7887 tsubst_default_arguments (r);
7889 else
7890 DECL_TEMPLATE_INFO (r) = NULL_TREE;
7892 /* Copy the list of befriending classes. */
7893 for (friends = &DECL_BEFRIENDING_CLASSES (r);
7894 *friends;
7895 friends = &TREE_CHAIN (*friends))
7897 *friends = copy_node (*friends);
7898 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
7899 args, complain,
7900 in_decl);
7903 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
7905 maybe_retrofit_in_chrg (r);
7906 if (DECL_CONSTRUCTOR_P (r))
7907 grok_ctor_properties (ctx, r);
7908 /* If this is an instantiation of a member template, clone it.
7909 If it isn't, that'll be handled by
7910 clone_constructors_and_destructors. */
7911 if (PRIMARY_TEMPLATE_P (gen_tmpl))
7912 clone_function_decl (r, /*update_method_vec_p=*/0);
7914 else if (IDENTIFIER_OPNAME_P (DECL_NAME (r))
7915 && !grok_op_properties (r, (complain & tf_error) != 0))
7916 return error_mark_node;
7918 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
7919 SET_DECL_FRIEND_CONTEXT (r,
7920 tsubst (DECL_FRIEND_CONTEXT (t),
7921 args, complain, in_decl));
7923 /* Possibly limit visibility based on template args. */
7924 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
7925 if (DECL_VISIBILITY_SPECIFIED (t))
7927 DECL_VISIBILITY_SPECIFIED (r) = 0;
7928 DECL_ATTRIBUTES (r)
7929 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
7931 determine_visibility (r);
7933 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
7934 args, complain, in_decl);
7936 break;
7938 case PARM_DECL:
7940 tree type = NULL_TREE;
7941 int i, len = 1;
7942 tree expanded_types = NULL_TREE;
7943 tree prev_r = NULL_TREE;
7944 tree first_r = NULL_TREE;
7946 if (FUNCTION_PARAMETER_PACK_P (t))
7948 /* If there is a local specialization that isn't a
7949 parameter pack, it means that we're doing a "simple"
7950 substitution from inside tsubst_pack_expansion. Just
7951 return the local specialization (which will be a single
7952 parm). */
7953 tree spec = NULL_TREE;
7954 if (local_specializations)
7955 spec = retrieve_local_specialization (t);
7956 if (spec
7957 && TREE_CODE (spec) == PARM_DECL
7958 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
7959 return spec;
7961 /* Expand the TYPE_PACK_EXPANSION that provides the types for
7962 the parameters in this function parameter pack. */
7963 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
7964 complain, in_decl);
7965 if (TREE_CODE (expanded_types) == TREE_VEC)
7967 len = TREE_VEC_LENGTH (expanded_types);
7969 /* Zero-length parameter packs are boring. Just substitute
7970 into the chain. */
7971 if (len == 0)
7972 return tsubst (TREE_CHAIN (t), args, complain,
7973 TREE_CHAIN (t));
7975 else
7977 /* All we did was update the type. Make a note of that. */
7978 type = expanded_types;
7979 expanded_types = NULL_TREE;
7983 /* Loop through all of the parameter's we'll build. When T is
7984 a function parameter pack, LEN is the number of expanded
7985 types in EXPANDED_TYPES; otherwise, LEN is 1. */
7986 r = NULL_TREE;
7987 for (i = 0; i < len; ++i)
7989 prev_r = r;
7990 r = copy_node (t);
7991 if (DECL_TEMPLATE_PARM_P (t))
7992 SET_DECL_TEMPLATE_PARM_P (r);
7994 if (expanded_types)
7995 /* We're on the Ith parameter of the function parameter
7996 pack. */
7998 /* Get the Ith type. */
7999 type = TREE_VEC_ELT (expanded_types, i);
8001 if (DECL_NAME (r))
8002 /* Rename the parameter to include the index. */
8003 DECL_NAME (r) =
8004 make_ith_pack_parameter_name (DECL_NAME (r), i);
8006 else if (!type)
8007 /* We're dealing with a normal parameter. */
8008 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8010 type = type_decays_to (type);
8011 TREE_TYPE (r) = type;
8012 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
8014 if (DECL_INITIAL (r))
8016 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
8017 DECL_INITIAL (r) = TREE_TYPE (r);
8018 else
8019 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
8020 complain, in_decl);
8023 DECL_CONTEXT (r) = NULL_TREE;
8025 if (!DECL_TEMPLATE_PARM_P (r))
8026 DECL_ARG_TYPE (r) = type_passed_as (type);
8028 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
8029 args, complain, in_decl);
8031 /* Keep track of the first new parameter we
8032 generate. That's what will be returned to the
8033 caller. */
8034 if (!first_r)
8035 first_r = r;
8037 /* Build a proper chain of parameters when substituting
8038 into a function parameter pack. */
8039 if (prev_r)
8040 TREE_CHAIN (prev_r) = r;
8043 if (TREE_CHAIN (t))
8044 TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args,
8045 complain, TREE_CHAIN (t));
8047 /* FIRST_R contains the start of the chain we've built. */
8048 r = first_r;
8050 break;
8052 case FIELD_DECL:
8054 tree type;
8056 r = copy_decl (t);
8057 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8058 if (type == error_mark_node)
8059 return error_mark_node;
8060 TREE_TYPE (r) = type;
8061 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
8063 /* DECL_INITIAL gives the number of bits in a bit-field. */
8064 DECL_INITIAL (r)
8065 = tsubst_expr (DECL_INITIAL (t), args,
8066 complain, in_decl,
8067 /*integral_constant_expression_p=*/true);
8068 /* We don't have to set DECL_CONTEXT here; it is set by
8069 finish_member_declaration. */
8070 TREE_CHAIN (r) = NULL_TREE;
8071 if (VOID_TYPE_P (type))
8072 error ("instantiation of %q+D as type %qT", r, type);
8074 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
8075 args, complain, in_decl);
8077 break;
8079 case USING_DECL:
8080 /* We reach here only for member using decls. */
8081 if (DECL_DEPENDENT_P (t))
8083 r = do_class_using_decl
8084 (tsubst_copy (USING_DECL_SCOPE (t), args, complain, in_decl),
8085 tsubst_copy (DECL_NAME (t), args, complain, in_decl));
8086 if (!r)
8087 r = error_mark_node;
8089 else
8091 r = copy_node (t);
8092 TREE_CHAIN (r) = NULL_TREE;
8094 break;
8096 case TYPE_DECL:
8097 case VAR_DECL:
8099 tree argvec = NULL_TREE;
8100 tree gen_tmpl = NULL_TREE;
8101 tree spec;
8102 tree tmpl = NULL_TREE;
8103 tree ctx;
8104 tree type = NULL_TREE;
8105 bool local_p;
8107 if (TREE_CODE (t) == TYPE_DECL
8108 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
8110 /* If this is the canonical decl, we don't have to
8111 mess with instantiations, and often we can't (for
8112 typename, template type parms and such). Note that
8113 TYPE_NAME is not correct for the above test if
8114 we've copied the type for a typedef. */
8115 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8116 if (type == error_mark_node)
8117 return error_mark_node;
8118 r = TYPE_NAME (type);
8119 break;
8122 /* Check to see if we already have the specialization we
8123 need. */
8124 spec = NULL_TREE;
8125 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
8127 /* T is a static data member or namespace-scope entity.
8128 We have to substitute into namespace-scope variables
8129 (even though such entities are never templates) because
8130 of cases like:
8132 template <class T> void f() { extern T t; }
8134 where the entity referenced is not known until
8135 instantiation time. */
8136 local_p = false;
8137 ctx = DECL_CONTEXT (t);
8138 if (DECL_CLASS_SCOPE_P (t))
8140 ctx = tsubst_aggr_type (ctx, args,
8141 complain,
8142 in_decl, /*entering_scope=*/1);
8143 /* If CTX is unchanged, then T is in fact the
8144 specialization we want. That situation occurs when
8145 referencing a static data member within in its own
8146 class. We can use pointer equality, rather than
8147 same_type_p, because DECL_CONTEXT is always
8148 canonical. */
8149 if (ctx == DECL_CONTEXT (t))
8150 spec = t;
8153 if (!spec)
8155 tmpl = DECL_TI_TEMPLATE (t);
8156 gen_tmpl = most_general_template (tmpl);
8157 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
8158 spec = (retrieve_specialization
8159 (gen_tmpl, argvec,
8160 /*class_specializations_p=*/false));
8163 else
8165 /* A local variable. */
8166 local_p = true;
8167 /* Subsequent calls to pushdecl will fill this in. */
8168 ctx = NULL_TREE;
8169 spec = retrieve_local_specialization (t);
8171 /* If we already have the specialization we need, there is
8172 nothing more to do. */
8173 if (spec)
8175 r = spec;
8176 break;
8179 /* Create a new node for the specialization we need. */
8180 r = copy_decl (t);
8181 if (type == NULL_TREE)
8182 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8183 if (TREE_CODE (r) == VAR_DECL)
8185 /* Even if the original location is out of scope, the
8186 newly substituted one is not. */
8187 DECL_DEAD_FOR_LOCAL (r) = 0;
8188 DECL_INITIALIZED_P (r) = 0;
8189 DECL_TEMPLATE_INSTANTIATED (r) = 0;
8190 if (type == error_mark_node)
8191 return error_mark_node;
8192 if (TREE_CODE (type) == FUNCTION_TYPE)
8194 /* It may seem that this case cannot occur, since:
8196 typedef void f();
8197 void g() { f x; }
8199 declares a function, not a variable. However:
8201 typedef void f();
8202 template <typename T> void g() { T t; }
8203 template void g<f>();
8205 is an attempt to declare a variable with function
8206 type. */
8207 error ("variable %qD has function type",
8208 /* R is not yet sufficiently initialized, so we
8209 just use its name. */
8210 DECL_NAME (r));
8211 return error_mark_node;
8213 type = complete_type (type);
8214 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
8215 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (t);
8216 type = check_var_type (DECL_NAME (r), type);
8218 if (DECL_HAS_VALUE_EXPR_P (t))
8220 tree ve = DECL_VALUE_EXPR (t);
8221 ve = tsubst_expr (ve, args, complain, in_decl,
8222 /*constant_expression_p=*/false);
8223 SET_DECL_VALUE_EXPR (r, ve);
8226 else if (DECL_SELF_REFERENCE_P (t))
8227 SET_DECL_SELF_REFERENCE_P (r);
8228 TREE_TYPE (r) = type;
8229 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
8230 DECL_CONTEXT (r) = ctx;
8231 /* Clear out the mangled name and RTL for the instantiation. */
8232 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
8233 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
8234 SET_DECL_RTL (r, NULL_RTX);
8235 /* The initializer must not be expanded until it is required;
8236 see [temp.inst]. */
8237 DECL_INITIAL (r) = NULL_TREE;
8238 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
8239 SET_DECL_RTL (r, NULL_RTX);
8240 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
8241 if (TREE_CODE (r) == VAR_DECL)
8243 /* Possibly limit visibility based on template args. */
8244 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
8245 if (DECL_VISIBILITY_SPECIFIED (t))
8247 DECL_VISIBILITY_SPECIFIED (r) = 0;
8248 DECL_ATTRIBUTES (r)
8249 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
8251 determine_visibility (r);
8253 /* Preserve a typedef that names a type. */
8254 else if (TREE_CODE (r) == TYPE_DECL
8255 && DECL_ORIGINAL_TYPE (t)
8256 && type != error_mark_node)
8258 DECL_ORIGINAL_TYPE (r) = tsubst (DECL_ORIGINAL_TYPE (t),
8259 args, complain, in_decl);
8260 TREE_TYPE (r) = type = build_variant_type_copy (type);
8261 TYPE_NAME (type) = r;
8264 if (!local_p)
8266 /* A static data member declaration is always marked
8267 external when it is declared in-class, even if an
8268 initializer is present. We mimic the non-template
8269 processing here. */
8270 DECL_EXTERNAL (r) = 1;
8272 register_specialization (r, gen_tmpl, argvec, false);
8273 DECL_TEMPLATE_INFO (r) = tree_cons (tmpl, argvec, NULL_TREE);
8274 SET_DECL_IMPLICIT_INSTANTIATION (r);
8276 else
8277 register_local_specialization (r, t);
8279 TREE_CHAIN (r) = NULL_TREE;
8281 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
8282 (int) ATTR_FLAG_TYPE_IN_PLACE,
8283 args, complain, in_decl);
8284 layout_decl (r, 0);
8286 break;
8288 default:
8289 gcc_unreachable ();
8292 /* Restore the file and line information. */
8293 input_location = saved_loc;
8295 return r;
8298 /* Substitute into the ARG_TYPES of a function type. */
8300 static tree
8301 tsubst_arg_types (tree arg_types,
8302 tree args,
8303 tsubst_flags_t complain,
8304 tree in_decl)
8306 tree remaining_arg_types;
8307 tree type = NULL_TREE;
8308 int i = 1;
8309 tree expanded_args = NULL_TREE;
8310 tree default_arg;
8312 if (!arg_types || arg_types == void_list_node)
8313 return arg_types;
8315 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
8316 args, complain, in_decl);
8317 if (remaining_arg_types == error_mark_node)
8318 return error_mark_node;
8320 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
8322 /* For a pack expansion, perform substitution on the
8323 entire expression. Later on, we'll handle the arguments
8324 one-by-one. */
8325 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
8326 args, complain, in_decl);
8328 if (TREE_CODE (expanded_args) == TREE_VEC)
8329 /* So that we'll spin through the parameters, one by one. */
8330 i = TREE_VEC_LENGTH (expanded_args);
8331 else
8333 /* We only partially substituted into the parameter
8334 pack. Our type is TYPE_PACK_EXPANSION. */
8335 type = expanded_args;
8336 expanded_args = NULL_TREE;
8340 while (i > 0) {
8341 --i;
8343 if (expanded_args)
8344 type = TREE_VEC_ELT (expanded_args, i);
8345 else if (!type)
8346 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
8348 if (type == error_mark_node)
8349 return error_mark_node;
8350 if (VOID_TYPE_P (type))
8352 if (complain & tf_error)
8354 error ("invalid parameter type %qT", type);
8355 if (in_decl)
8356 error ("in declaration %q+D", in_decl);
8358 return error_mark_node;
8361 /* Do array-to-pointer, function-to-pointer conversion, and ignore
8362 top-level qualifiers as required. */
8363 type = TYPE_MAIN_VARIANT (type_decays_to (type));
8365 /* We do not substitute into default arguments here. The standard
8366 mandates that they be instantiated only when needed, which is
8367 done in build_over_call. */
8368 default_arg = TREE_PURPOSE (arg_types);
8370 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
8372 /* We've instantiated a template before its default arguments
8373 have been parsed. This can happen for a nested template
8374 class, and is not an error unless we require the default
8375 argument in a call of this function. */
8376 remaining_arg_types =
8377 tree_cons (default_arg, type, remaining_arg_types);
8378 VEC_safe_push (tree, gc, DEFARG_INSTANTIATIONS (default_arg),
8379 remaining_arg_types);
8381 else
8382 remaining_arg_types =
8383 hash_tree_cons (default_arg, type, remaining_arg_types);
8386 return remaining_arg_types;
8389 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
8390 *not* handle the exception-specification for FNTYPE, because the
8391 initial substitution of explicitly provided template parameters
8392 during argument deduction forbids substitution into the
8393 exception-specification:
8395 [temp.deduct]
8397 All references in the function type of the function template to the
8398 corresponding template parameters are replaced by the specified tem-
8399 plate argument values. If a substitution in a template parameter or
8400 in the function type of the function template results in an invalid
8401 type, type deduction fails. [Note: The equivalent substitution in
8402 exception specifications is done only when the function is instanti-
8403 ated, at which point a program is ill-formed if the substitution
8404 results in an invalid type.] */
8406 static tree
8407 tsubst_function_type (tree t,
8408 tree args,
8409 tsubst_flags_t complain,
8410 tree in_decl)
8412 tree return_type;
8413 tree arg_types;
8414 tree fntype;
8416 /* The TYPE_CONTEXT is not used for function/method types. */
8417 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
8419 /* Substitute the return type. */
8420 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8421 if (return_type == error_mark_node)
8422 return error_mark_node;
8423 /* The standard does not presently indicate that creation of a
8424 function type with an invalid return type is a deduction failure.
8425 However, that is clearly analogous to creating an array of "void"
8426 or a reference to a reference. This is core issue #486. */
8427 if (TREE_CODE (return_type) == ARRAY_TYPE
8428 || TREE_CODE (return_type) == FUNCTION_TYPE)
8430 if (complain & tf_error)
8432 if (TREE_CODE (return_type) == ARRAY_TYPE)
8433 error ("function returning an array");
8434 else
8435 error ("function returning a function");
8437 return error_mark_node;
8440 /* Substitute the argument types. */
8441 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
8442 complain, in_decl);
8443 if (arg_types == error_mark_node)
8444 return error_mark_node;
8446 if (TYPE_QUALS (return_type) != TYPE_UNQUALIFIED
8447 && in_decl != NULL_TREE
8448 && !TREE_NO_WARNING (in_decl)
8449 && (SCALAR_TYPE_P (return_type) || VOID_TYPE_P (return_type)))
8450 warning (OPT_Wreturn_type,
8451 "type qualifiers ignored on function return type");
8453 /* Construct a new type node and return it. */
8454 if (TREE_CODE (t) == FUNCTION_TYPE)
8455 fntype = build_function_type (return_type, arg_types);
8456 else
8458 tree r = TREE_TYPE (TREE_VALUE (arg_types));
8459 if (! IS_AGGR_TYPE (r))
8461 /* [temp.deduct]
8463 Type deduction may fail for any of the following
8464 reasons:
8466 -- Attempting to create "pointer to member of T" when T
8467 is not a class type. */
8468 if (complain & tf_error)
8469 error ("creating pointer to member function of non-class type %qT",
8471 return error_mark_node;
8474 fntype = build_method_type_directly (r, return_type,
8475 TREE_CHAIN (arg_types));
8477 fntype = cp_build_qualified_type_real (fntype, TYPE_QUALS (t), complain);
8478 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
8480 return fntype;
8483 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
8484 ARGS into that specification, and return the substituted
8485 specification. If there is no specification, return NULL_TREE. */
8487 static tree
8488 tsubst_exception_specification (tree fntype,
8489 tree args,
8490 tsubst_flags_t complain,
8491 tree in_decl)
8493 tree specs;
8494 tree new_specs;
8496 specs = TYPE_RAISES_EXCEPTIONS (fntype);
8497 new_specs = NULL_TREE;
8498 if (specs)
8500 if (! TREE_VALUE (specs))
8501 new_specs = specs;
8502 else
8503 while (specs)
8505 tree spec;
8506 int i, len = 1;
8507 tree expanded_specs = NULL_TREE;
8509 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
8511 /* Expand the pack expansion type. */
8512 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
8513 args, complain,
8514 in_decl);
8515 len = TREE_VEC_LENGTH (expanded_specs);
8518 for (i = 0; i < len; ++i)
8520 if (expanded_specs)
8521 spec = TREE_VEC_ELT (expanded_specs, i);
8522 else
8523 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
8524 if (spec == error_mark_node)
8525 return spec;
8526 new_specs = add_exception_specifier (new_specs, spec,
8527 complain);
8530 specs = TREE_CHAIN (specs);
8533 return new_specs;
8536 /* Take the tree structure T and replace template parameters used
8537 therein with the argument vector ARGS. IN_DECL is an associated
8538 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
8539 Issue error and warning messages under control of COMPLAIN. Note
8540 that we must be relatively non-tolerant of extensions here, in
8541 order to preserve conformance; if we allow substitutions that
8542 should not be allowed, we may allow argument deductions that should
8543 not succeed, and therefore report ambiguous overload situations
8544 where there are none. In theory, we could allow the substitution,
8545 but indicate that it should have failed, and allow our caller to
8546 make sure that the right thing happens, but we don't try to do this
8547 yet.
8549 This function is used for dealing with types, decls and the like;
8550 for expressions, use tsubst_expr or tsubst_copy. */
8552 static tree
8553 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
8555 tree type, r;
8557 if (t == NULL_TREE || t == error_mark_node
8558 || t == integer_type_node
8559 || t == void_type_node
8560 || t == char_type_node
8561 || t == unknown_type_node
8562 || TREE_CODE (t) == NAMESPACE_DECL)
8563 return t;
8565 if (DECL_P (t))
8566 return tsubst_decl (t, args, complain);
8568 if (TREE_CODE (t) == IDENTIFIER_NODE)
8569 type = IDENTIFIER_TYPE_VALUE (t);
8570 else
8571 type = TREE_TYPE (t);
8573 gcc_assert (type != unknown_type_node);
8575 /* Reuse typedefs. We need to do this to handle dependent attributes,
8576 such as attribute aligned. */
8577 if (TYPE_P (t)
8578 && TYPE_NAME (t)
8579 && TYPE_NAME (t) != TYPE_MAIN_DECL (t))
8581 tree decl = TYPE_NAME (t);
8583 if (DECL_CLASS_SCOPE_P (decl)
8584 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl)))
8586 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
8587 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
8588 r = retrieve_specialization (tmpl, gen_args, false);
8590 else if (DECL_FUNCTION_SCOPE_P (decl))
8591 r = retrieve_local_specialization (decl);
8592 else
8593 r = NULL_TREE;
8595 if (r)
8597 r = TREE_TYPE (r);
8598 r = cp_build_qualified_type_real
8599 (r, cp_type_quals (t) | cp_type_quals (r),
8600 complain | tf_ignore_bad_quals);
8601 return r;
8603 /* Else we must be instantiating the typedef, so fall through. */
8606 if (type
8607 && TREE_CODE (t) != TYPENAME_TYPE
8608 && TREE_CODE (t) != IDENTIFIER_NODE
8609 && TREE_CODE (t) != FUNCTION_TYPE
8610 && TREE_CODE (t) != METHOD_TYPE)
8611 type = tsubst (type, args, complain, in_decl);
8612 if (type == error_mark_node)
8613 return error_mark_node;
8615 switch (TREE_CODE (t))
8617 case RECORD_TYPE:
8618 case UNION_TYPE:
8619 case ENUMERAL_TYPE:
8620 return tsubst_aggr_type (t, args, complain, in_decl,
8621 /*entering_scope=*/0);
8623 case ERROR_MARK:
8624 case IDENTIFIER_NODE:
8625 case VOID_TYPE:
8626 case REAL_TYPE:
8627 case COMPLEX_TYPE:
8628 case VECTOR_TYPE:
8629 case BOOLEAN_TYPE:
8630 case INTEGER_CST:
8631 case REAL_CST:
8632 case STRING_CST:
8633 return t;
8635 case INTEGER_TYPE:
8636 if (t == integer_type_node)
8637 return t;
8639 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
8640 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
8641 return t;
8644 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
8646 max = tsubst_expr (omax, args, complain, in_decl,
8647 /*integral_constant_expression_p=*/false);
8648 max = fold_decl_constant_value (max);
8650 if (TREE_CODE (max) != INTEGER_CST
8651 && TREE_CODE (max) != TEMPLATE_PARM_INDEX
8652 && !at_function_scope_p ())
8654 if (complain & tf_error)
8655 error ("array bound is not an integer constant");
8656 return error_mark_node;
8659 /* [temp.deduct]
8661 Type deduction may fail for any of the following
8662 reasons:
8664 Attempting to create an array with a size that is
8665 zero or negative. */
8666 if (integer_zerop (max) && !(complain & tf_error))
8667 /* We must fail if performing argument deduction (as
8668 indicated by the state of complain), so that
8669 another substitution can be found. */
8670 return error_mark_node;
8671 else if (TREE_CODE (max) == INTEGER_CST
8672 && INT_CST_LT (max, integer_zero_node))
8674 if (complain & tf_error)
8675 error ("creating array with negative size (%qE)", max);
8677 return error_mark_node;
8680 return compute_array_index_type (NULL_TREE, max);
8683 case TEMPLATE_TYPE_PARM:
8684 case TEMPLATE_TEMPLATE_PARM:
8685 case BOUND_TEMPLATE_TEMPLATE_PARM:
8686 case TEMPLATE_PARM_INDEX:
8688 int idx;
8689 int level;
8690 int levels;
8691 tree arg = NULL_TREE;
8693 r = NULL_TREE;
8695 gcc_assert (TREE_VEC_LENGTH (args) > 0);
8696 template_parm_level_and_index (t, &level, &idx);
8698 levels = TMPL_ARGS_DEPTH (args);
8699 if (level <= levels)
8701 arg = TMPL_ARG (args, level, idx);
8703 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
8704 /* See through ARGUMENT_PACK_SELECT arguments. */
8705 arg = ARGUMENT_PACK_SELECT_ARG (arg);
8708 if (arg == error_mark_node)
8709 return error_mark_node;
8710 else if (arg != NULL_TREE)
8712 if (ARGUMENT_PACK_P (arg))
8713 /* If ARG is an argument pack, we don't actually want to
8714 perform a substitution here, because substitutions
8715 for argument packs are only done
8716 element-by-element. We can get to this point when
8717 substituting the type of a non-type template
8718 parameter pack, when that type actually contains
8719 template parameter packs from an outer template, e.g.,
8721 template<typename... Types> struct A {
8722 template<Types... Values> struct B { };
8723 }; */
8724 return t;
8726 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
8728 int quals;
8729 gcc_assert (TYPE_P (arg));
8731 /* cv-quals from the template are discarded when
8732 substituting in a function or reference type. */
8733 if (TREE_CODE (arg) == FUNCTION_TYPE
8734 || TREE_CODE (arg) == METHOD_TYPE
8735 || TREE_CODE (arg) == REFERENCE_TYPE)
8736 quals = cp_type_quals (arg);
8737 else
8738 quals = cp_type_quals (arg) | cp_type_quals (t);
8740 return cp_build_qualified_type_real
8741 (arg, quals, complain | tf_ignore_bad_quals);
8743 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
8745 /* We are processing a type constructed from a
8746 template template parameter. */
8747 tree argvec = tsubst (TYPE_TI_ARGS (t),
8748 args, complain, in_decl);
8749 if (argvec == error_mark_node)
8750 return error_mark_node;
8752 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
8753 are resolving nested-types in the signature of a
8754 member function templates. Otherwise ARG is a
8755 TEMPLATE_DECL and is the real template to be
8756 instantiated. */
8757 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
8758 arg = TYPE_NAME (arg);
8760 r = lookup_template_class (arg,
8761 argvec, in_decl,
8762 DECL_CONTEXT (arg),
8763 /*entering_scope=*/0,
8764 complain);
8765 return cp_build_qualified_type_real
8766 (r, TYPE_QUALS (t), complain);
8768 else
8769 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
8770 return arg;
8773 if (level == 1)
8774 /* This can happen during the attempted tsubst'ing in
8775 unify. This means that we don't yet have any information
8776 about the template parameter in question. */
8777 return t;
8779 /* If we get here, we must have been looking at a parm for a
8780 more deeply nested template. Make a new version of this
8781 template parameter, but with a lower level. */
8782 switch (TREE_CODE (t))
8784 case TEMPLATE_TYPE_PARM:
8785 case TEMPLATE_TEMPLATE_PARM:
8786 case BOUND_TEMPLATE_TEMPLATE_PARM:
8787 if (cp_type_quals (t))
8789 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
8790 r = cp_build_qualified_type_real
8791 (r, cp_type_quals (t),
8792 complain | (TREE_CODE (t) == TEMPLATE_TYPE_PARM
8793 ? tf_ignore_bad_quals : 0));
8795 else
8797 r = copy_type (t);
8798 TEMPLATE_TYPE_PARM_INDEX (r)
8799 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
8800 r, levels);
8801 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
8802 TYPE_MAIN_VARIANT (r) = r;
8803 TYPE_POINTER_TO (r) = NULL_TREE;
8804 TYPE_REFERENCE_TO (r) = NULL_TREE;
8806 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
8807 /* We have reduced the level of the template
8808 template parameter, but not the levels of its
8809 template parameters, so canonical_type_parameter
8810 will not be able to find the canonical template
8811 template parameter for this level. Thus, we
8812 require structural equality checking to compare
8813 TEMPLATE_TEMPLATE_PARMs. */
8814 SET_TYPE_STRUCTURAL_EQUALITY (r);
8815 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
8816 SET_TYPE_STRUCTURAL_EQUALITY (r);
8817 else
8818 TYPE_CANONICAL (r) = canonical_type_parameter (r);
8820 if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
8822 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
8823 complain, in_decl);
8824 if (argvec == error_mark_node)
8825 return error_mark_node;
8827 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
8828 = tree_cons (TYPE_TI_TEMPLATE (t), argvec, NULL_TREE);
8831 break;
8833 case TEMPLATE_PARM_INDEX:
8834 r = reduce_template_parm_level (t, type, levels);
8835 break;
8837 default:
8838 gcc_unreachable ();
8841 return r;
8844 case TREE_LIST:
8846 tree purpose, value, chain;
8848 if (t == void_list_node)
8849 return t;
8851 purpose = TREE_PURPOSE (t);
8852 if (purpose)
8854 purpose = tsubst (purpose, args, complain, in_decl);
8855 if (purpose == error_mark_node)
8856 return error_mark_node;
8858 value = TREE_VALUE (t);
8859 if (value)
8861 value = tsubst (value, args, complain, in_decl);
8862 if (value == error_mark_node)
8863 return error_mark_node;
8865 chain = TREE_CHAIN (t);
8866 if (chain && chain != void_type_node)
8868 chain = tsubst (chain, args, complain, in_decl);
8869 if (chain == error_mark_node)
8870 return error_mark_node;
8872 if (purpose == TREE_PURPOSE (t)
8873 && value == TREE_VALUE (t)
8874 && chain == TREE_CHAIN (t))
8875 return t;
8876 return hash_tree_cons (purpose, value, chain);
8879 case TREE_BINFO:
8880 /* We should never be tsubsting a binfo. */
8881 gcc_unreachable ();
8883 case TREE_VEC:
8884 /* A vector of template arguments. */
8885 gcc_assert (!type);
8886 return tsubst_template_args (t, args, complain, in_decl);
8888 case POINTER_TYPE:
8889 case REFERENCE_TYPE:
8891 enum tree_code code;
8893 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
8894 return t;
8896 code = TREE_CODE (t);
8899 /* [temp.deduct]
8901 Type deduction may fail for any of the following
8902 reasons:
8904 -- Attempting to create a pointer to reference type.
8905 -- Attempting to create a reference to a reference type or
8906 a reference to void.
8908 Core issue 106 says that creating a reference to a reference
8909 during instantiation is no longer a cause for failure. We
8910 only enforce this check in strict C++98 mode. */
8911 if ((TREE_CODE (type) == REFERENCE_TYPE
8912 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
8913 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
8915 static location_t last_loc;
8917 /* We keep track of the last time we issued this error
8918 message to avoid spewing a ton of messages during a
8919 single bad template instantiation. */
8920 if (complain & tf_error
8921 #ifdef USE_MAPPED_LOCATION
8922 && last_loc != input_location
8923 #else
8924 && (last_loc.line != input_line
8925 || last_loc.file != input_filename)
8926 #endif
8929 if (TREE_CODE (type) == VOID_TYPE)
8930 error ("forming reference to void");
8931 else
8932 error ("forming %s to reference type %qT",
8933 (code == POINTER_TYPE) ? "pointer" : "reference",
8934 type);
8935 last_loc = input_location;
8938 return error_mark_node;
8940 else if (code == POINTER_TYPE)
8942 r = build_pointer_type (type);
8943 if (TREE_CODE (type) == METHOD_TYPE)
8944 r = build_ptrmemfunc_type (r);
8946 else if (TREE_CODE (type) == REFERENCE_TYPE)
8947 /* In C++0x, during template argument substitution, when there is an
8948 attempt to create a reference to a reference type, reference
8949 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
8951 "If a template-argument for a template-parameter T names a type
8952 that is a reference to a type A, an attempt to create the type
8953 'lvalue reference to cv T' creates the type 'lvalue reference to
8954 A,' while an attempt to create the type type rvalue reference to
8955 cv T' creates the type T"
8957 r = cp_build_reference_type
8958 (TREE_TYPE (type),
8959 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
8960 else
8961 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
8962 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
8964 if (r != error_mark_node)
8965 /* Will this ever be needed for TYPE_..._TO values? */
8966 layout_type (r);
8968 return r;
8970 case OFFSET_TYPE:
8972 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
8973 if (r == error_mark_node || !IS_AGGR_TYPE (r))
8975 /* [temp.deduct]
8977 Type deduction may fail for any of the following
8978 reasons:
8980 -- Attempting to create "pointer to member of T" when T
8981 is not a class type. */
8982 if (complain & tf_error)
8983 error ("creating pointer to member of non-class type %qT", r);
8984 return error_mark_node;
8986 if (TREE_CODE (type) == REFERENCE_TYPE)
8988 if (complain & tf_error)
8989 error ("creating pointer to member reference type %qT", type);
8990 return error_mark_node;
8992 if (TREE_CODE (type) == VOID_TYPE)
8994 if (complain & tf_error)
8995 error ("creating pointer to member of type void");
8996 return error_mark_node;
8998 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
8999 if (TREE_CODE (type) == FUNCTION_TYPE)
9001 /* The type of the implicit object parameter gets its
9002 cv-qualifiers from the FUNCTION_TYPE. */
9003 tree method_type;
9004 tree this_type = cp_build_qualified_type (TYPE_MAIN_VARIANT (r),
9005 cp_type_quals (type));
9006 tree memptr;
9007 method_type = build_method_type_directly (this_type,
9008 TREE_TYPE (type),
9009 TYPE_ARG_TYPES (type));
9010 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
9011 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
9012 complain);
9014 else
9015 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
9016 TYPE_QUALS (t),
9017 complain);
9019 case FUNCTION_TYPE:
9020 case METHOD_TYPE:
9022 tree fntype;
9023 tree specs;
9024 fntype = tsubst_function_type (t, args, complain, in_decl);
9025 if (fntype == error_mark_node)
9026 return error_mark_node;
9028 /* Substitute the exception specification. */
9029 specs = tsubst_exception_specification (t, args, complain,
9030 in_decl);
9031 if (specs == error_mark_node)
9032 return error_mark_node;
9033 if (specs)
9034 fntype = build_exception_variant (fntype, specs);
9035 return fntype;
9037 case ARRAY_TYPE:
9039 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
9040 if (domain == error_mark_node)
9041 return error_mark_node;
9043 /* As an optimization, we avoid regenerating the array type if
9044 it will obviously be the same as T. */
9045 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
9046 return t;
9048 /* These checks should match the ones in grokdeclarator.
9050 [temp.deduct]
9052 The deduction may fail for any of the following reasons:
9054 -- Attempting to create an array with an element type that
9055 is void, a function type, or a reference type, or [DR337]
9056 an abstract class type. */
9057 if (TREE_CODE (type) == VOID_TYPE
9058 || TREE_CODE (type) == FUNCTION_TYPE
9059 || TREE_CODE (type) == REFERENCE_TYPE)
9061 if (complain & tf_error)
9062 error ("creating array of %qT", type);
9063 return error_mark_node;
9065 if (CLASS_TYPE_P (type) && CLASSTYPE_PURE_VIRTUALS (type))
9067 if (complain & tf_error)
9068 error ("creating array of %qT, which is an abstract class type",
9069 type);
9070 return error_mark_node;
9073 r = build_cplus_array_type (type, domain);
9075 if (TYPE_USER_ALIGN (t))
9077 TYPE_ALIGN (r) = TYPE_ALIGN (t);
9078 TYPE_USER_ALIGN (r) = 1;
9081 return r;
9084 case PLUS_EXPR:
9085 case MINUS_EXPR:
9087 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
9088 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
9090 if (e1 == error_mark_node || e2 == error_mark_node)
9091 return error_mark_node;
9093 return fold_build2 (TREE_CODE (t), TREE_TYPE (t), e1, e2);
9096 case NEGATE_EXPR:
9097 case NOP_EXPR:
9099 tree e = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
9100 if (e == error_mark_node)
9101 return error_mark_node;
9103 return fold_build1 (TREE_CODE (t), TREE_TYPE (t), e);
9106 case TYPENAME_TYPE:
9108 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
9109 in_decl, /*entering_scope=*/1);
9110 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
9111 complain, in_decl);
9113 if (ctx == error_mark_node || f == error_mark_node)
9114 return error_mark_node;
9116 if (!IS_AGGR_TYPE (ctx))
9118 if (complain & tf_error)
9119 error ("%qT is not a class, struct, or union type", ctx);
9120 return error_mark_node;
9122 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
9124 /* Normally, make_typename_type does not require that the CTX
9125 have complete type in order to allow things like:
9127 template <class T> struct S { typename S<T>::X Y; };
9129 But, such constructs have already been resolved by this
9130 point, so here CTX really should have complete type, unless
9131 it's a partial instantiation. */
9132 ctx = complete_type (ctx);
9133 if (!COMPLETE_TYPE_P (ctx))
9135 if (complain & tf_error)
9136 cxx_incomplete_type_error (NULL_TREE, ctx);
9137 return error_mark_node;
9141 f = make_typename_type (ctx, f, typename_type,
9142 (complain & tf_error) | tf_keep_type_decl);
9143 if (f == error_mark_node)
9144 return f;
9145 if (TREE_CODE (f) == TYPE_DECL)
9147 complain |= tf_ignore_bad_quals;
9148 f = TREE_TYPE (f);
9151 if (TREE_CODE (f) != TYPENAME_TYPE)
9153 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
9154 error ("%qT resolves to %qT, which is not an enumeration type",
9155 t, f);
9156 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
9157 error ("%qT resolves to %qT, which is is not a class type",
9158 t, f);
9161 return cp_build_qualified_type_real
9162 (f, cp_type_quals (f) | cp_type_quals (t), complain);
9165 case UNBOUND_CLASS_TEMPLATE:
9167 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
9168 in_decl, /*entering_scope=*/1);
9169 tree name = TYPE_IDENTIFIER (t);
9170 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
9172 if (ctx == error_mark_node || name == error_mark_node)
9173 return error_mark_node;
9175 if (parm_list)
9176 parm_list = tsubst_template_parms (parm_list, args, complain);
9177 return make_unbound_class_template (ctx, name, parm_list, complain);
9180 case INDIRECT_REF:
9181 case ADDR_EXPR:
9182 case CALL_EXPR:
9183 gcc_unreachable ();
9185 case ARRAY_REF:
9187 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
9188 tree e2 = tsubst_expr (TREE_OPERAND (t, 1), args, complain, in_decl,
9189 /*integral_constant_expression_p=*/false);
9190 if (e1 == error_mark_node || e2 == error_mark_node)
9191 return error_mark_node;
9193 return build_nt (ARRAY_REF, e1, e2, NULL_TREE, NULL_TREE);
9196 case SCOPE_REF:
9198 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
9199 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
9200 if (e1 == error_mark_node || e2 == error_mark_node)
9201 return error_mark_node;
9203 return build_qualified_name (/*type=*/NULL_TREE,
9204 e1, e2, QUALIFIED_NAME_IS_TEMPLATE (t));
9207 case TYPEOF_TYPE:
9209 tree type;
9211 type = finish_typeof (tsubst_expr
9212 (TYPEOF_TYPE_EXPR (t), args,
9213 complain, in_decl,
9214 /*integral_constant_expression_p=*/false));
9215 return cp_build_qualified_type_real (type,
9216 cp_type_quals (t)
9217 | cp_type_quals (type),
9218 complain);
9221 case DECLTYPE_TYPE:
9223 tree type;
9225 type =
9226 finish_decltype_type (tsubst_expr
9227 (DECLTYPE_TYPE_EXPR (t), args,
9228 complain, in_decl,
9229 /*integral_constant_expression_p=*/false),
9230 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t));
9231 return cp_build_qualified_type_real (type,
9232 cp_type_quals (t)
9233 | cp_type_quals (type),
9234 complain);
9237 case TYPE_ARGUMENT_PACK:
9238 case NONTYPE_ARGUMENT_PACK:
9240 tree r = make_node (TREE_CODE (t));
9241 tree packed_out =
9242 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
9243 args,
9244 complain,
9245 in_decl);
9246 SET_ARGUMENT_PACK_ARGS (r, packed_out);
9248 /* For template nontype argument packs, also substitute into
9249 the type. */
9250 if (TREE_CODE (t) == NONTYPE_ARGUMENT_PACK)
9251 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
9253 return r;
9255 break;
9257 default:
9258 sorry ("use of %qs in template",
9259 tree_code_name [(int) TREE_CODE (t)]);
9260 return error_mark_node;
9264 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
9265 type of the expression on the left-hand side of the "." or "->"
9266 operator. */
9268 static tree
9269 tsubst_baselink (tree baselink, tree object_type,
9270 tree args, tsubst_flags_t complain, tree in_decl)
9272 tree name;
9273 tree qualifying_scope;
9274 tree fns;
9275 tree optype;
9276 tree template_args = 0;
9277 bool template_id_p = false;
9279 /* A baselink indicates a function from a base class. Both the
9280 BASELINK_ACCESS_BINFO and the base class referenced may
9281 indicate bases of the template class, rather than the
9282 instantiated class. In addition, lookups that were not
9283 ambiguous before may be ambiguous now. Therefore, we perform
9284 the lookup again. */
9285 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
9286 qualifying_scope = tsubst (qualifying_scope, args,
9287 complain, in_decl);
9288 fns = BASELINK_FUNCTIONS (baselink);
9289 optype = BASELINK_OPTYPE (baselink);
9290 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
9292 template_id_p = true;
9293 template_args = TREE_OPERAND (fns, 1);
9294 fns = TREE_OPERAND (fns, 0);
9295 if (template_args)
9296 template_args = tsubst_template_args (template_args, args,
9297 complain, in_decl);
9299 name = DECL_NAME (get_first_fn (fns));
9300 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
9302 /* If lookup found a single function, mark it as used at this
9303 point. (If it lookup found multiple functions the one selected
9304 later by overload resolution will be marked as used at that
9305 point.) */
9306 if (BASELINK_P (baselink))
9307 fns = BASELINK_FUNCTIONS (baselink);
9308 if (!template_id_p && !really_overloaded_fn (fns))
9309 mark_used (OVL_CURRENT (fns));
9311 /* Add back the template arguments, if present. */
9312 if (BASELINK_P (baselink) && template_id_p)
9313 BASELINK_FUNCTIONS (baselink)
9314 = build_nt (TEMPLATE_ID_EXPR,
9315 BASELINK_FUNCTIONS (baselink),
9316 template_args);
9317 /* Update the conversion operator type. */
9318 BASELINK_OPTYPE (baselink)
9319 = tsubst (optype, args, complain, in_decl);
9321 if (!object_type)
9322 object_type = current_class_type;
9323 return adjust_result_of_qualified_name_lookup (baselink,
9324 qualifying_scope,
9325 object_type);
9328 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
9329 true if the qualified-id will be a postfix-expression in-and-of
9330 itself; false if more of the postfix-expression follows the
9331 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
9332 of "&". */
9334 static tree
9335 tsubst_qualified_id (tree qualified_id, tree args,
9336 tsubst_flags_t complain, tree in_decl,
9337 bool done, bool address_p)
9339 tree expr;
9340 tree scope;
9341 tree name;
9342 bool is_template;
9343 tree template_args;
9345 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
9347 /* Figure out what name to look up. */
9348 name = TREE_OPERAND (qualified_id, 1);
9349 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
9351 is_template = true;
9352 template_args = TREE_OPERAND (name, 1);
9353 if (template_args)
9354 template_args = tsubst_template_args (template_args, args,
9355 complain, in_decl);
9356 name = TREE_OPERAND (name, 0);
9358 else
9360 is_template = false;
9361 template_args = NULL_TREE;
9364 /* Substitute into the qualifying scope. When there are no ARGS, we
9365 are just trying to simplify a non-dependent expression. In that
9366 case the qualifying scope may be dependent, and, in any case,
9367 substituting will not help. */
9368 scope = TREE_OPERAND (qualified_id, 0);
9369 if (args)
9371 scope = tsubst (scope, args, complain, in_decl);
9372 expr = tsubst_copy (name, args, complain, in_decl);
9374 else
9375 expr = name;
9377 if (dependent_type_p (scope))
9378 return build_qualified_name (/*type=*/NULL_TREE,
9379 scope, expr,
9380 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
9382 if (!BASELINK_P (name) && !DECL_P (expr))
9384 if (TREE_CODE (expr) == BIT_NOT_EXPR)
9385 /* If this were actually a destructor call, it would have been
9386 parsed as such by the parser. */
9387 expr = error_mark_node;
9388 else
9389 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
9390 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
9391 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
9393 if (complain & tf_error)
9395 error ("dependent-name %qE is parsed as a non-type, but "
9396 "instantiation yields a type", qualified_id);
9397 inform ("say %<typename %E%> if a type is meant", qualified_id);
9399 return error_mark_node;
9403 if (DECL_P (expr))
9405 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
9406 scope);
9407 /* Remember that there was a reference to this entity. */
9408 mark_used (expr);
9411 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
9413 if (complain & tf_error)
9414 qualified_name_lookup_error (scope,
9415 TREE_OPERAND (qualified_id, 1),
9416 expr);
9417 return error_mark_node;
9420 if (is_template)
9421 expr = lookup_template_function (expr, template_args);
9423 if (expr == error_mark_node && complain & tf_error)
9424 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
9425 expr);
9426 else if (TYPE_P (scope))
9428 expr = (adjust_result_of_qualified_name_lookup
9429 (expr, scope, current_class_type));
9430 expr = (finish_qualified_id_expr
9431 (scope, expr, done, address_p,
9432 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
9433 /*template_arg_p=*/false));
9436 /* Expressions do not generally have reference type. */
9437 if (TREE_CODE (expr) != SCOPE_REF
9438 /* However, if we're about to form a pointer-to-member, we just
9439 want the referenced member referenced. */
9440 && TREE_CODE (expr) != OFFSET_REF)
9441 expr = convert_from_reference (expr);
9443 return expr;
9446 /* Like tsubst, but deals with expressions. This function just replaces
9447 template parms; to finish processing the resultant expression, use
9448 tsubst_expr. */
9450 static tree
9451 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9453 enum tree_code code;
9454 tree r;
9456 if (t == NULL_TREE || t == error_mark_node)
9457 return t;
9459 code = TREE_CODE (t);
9461 switch (code)
9463 case PARM_DECL:
9464 r = retrieve_local_specialization (t);
9465 gcc_assert (r != NULL);
9466 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
9467 r = ARGUMENT_PACK_SELECT_ARG (r);
9468 mark_used (r);
9469 return r;
9471 case CONST_DECL:
9473 tree enum_type;
9474 tree v;
9476 if (DECL_TEMPLATE_PARM_P (t))
9477 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
9478 /* There is no need to substitute into namespace-scope
9479 enumerators. */
9480 if (DECL_NAMESPACE_SCOPE_P (t))
9481 return t;
9482 /* If ARGS is NULL, then T is known to be non-dependent. */
9483 if (args == NULL_TREE)
9484 return integral_constant_value (t);
9486 /* Unfortunately, we cannot just call lookup_name here.
9487 Consider:
9489 template <int I> int f() {
9490 enum E { a = I };
9491 struct S { void g() { E e = a; } };
9494 When we instantiate f<7>::S::g(), say, lookup_name is not
9495 clever enough to find f<7>::a. */
9496 enum_type
9497 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
9498 /*entering_scope=*/0);
9500 for (v = TYPE_VALUES (enum_type);
9501 v != NULL_TREE;
9502 v = TREE_CHAIN (v))
9503 if (TREE_PURPOSE (v) == DECL_NAME (t))
9504 return TREE_VALUE (v);
9506 /* We didn't find the name. That should never happen; if
9507 name-lookup found it during preliminary parsing, we
9508 should find it again here during instantiation. */
9509 gcc_unreachable ();
9511 return t;
9513 case FIELD_DECL:
9514 if (DECL_CONTEXT (t))
9516 tree ctx;
9518 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
9519 /*entering_scope=*/1);
9520 if (ctx != DECL_CONTEXT (t))
9522 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
9523 if (!r)
9525 if (complain & tf_error)
9526 error ("using invalid field %qD", t);
9527 return error_mark_node;
9529 return r;
9533 return t;
9535 case VAR_DECL:
9536 case FUNCTION_DECL:
9537 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
9538 || local_variable_p (t))
9539 t = tsubst (t, args, complain, in_decl);
9540 mark_used (t);
9541 return t;
9543 case BASELINK:
9544 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
9546 case TEMPLATE_DECL:
9547 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9548 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
9549 args, complain, in_decl);
9550 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
9551 return tsubst (t, args, complain, in_decl);
9552 else if (DECL_CLASS_SCOPE_P (t)
9553 && uses_template_parms (DECL_CONTEXT (t)))
9555 /* Template template argument like the following example need
9556 special treatment:
9558 template <template <class> class TT> struct C {};
9559 template <class T> struct D {
9560 template <class U> struct E {};
9561 C<E> c; // #1
9563 D<int> d; // #2
9565 We are processing the template argument `E' in #1 for
9566 the template instantiation #2. Originally, `E' is a
9567 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
9568 have to substitute this with one having context `D<int>'. */
9570 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
9571 return lookup_field (context, DECL_NAME(t), 0, false);
9573 else
9574 /* Ordinary template template argument. */
9575 return t;
9577 case CAST_EXPR:
9578 case REINTERPRET_CAST_EXPR:
9579 case CONST_CAST_EXPR:
9580 case STATIC_CAST_EXPR:
9581 case DYNAMIC_CAST_EXPR:
9582 case NOP_EXPR:
9583 return build1
9584 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
9585 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
9587 case SIZEOF_EXPR:
9588 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
9590 /* We only want to compute the number of arguments. */
9591 tree expanded = tsubst_pack_expansion (TREE_OPERAND (t, 0), args,
9592 complain, in_decl);
9593 if (expanded == error_mark_node)
9594 return error_mark_node;
9595 return build_int_cst (size_type_node, TREE_VEC_LENGTH (expanded));
9597 /* Fall through */
9599 case INDIRECT_REF:
9600 case NEGATE_EXPR:
9601 case TRUTH_NOT_EXPR:
9602 case BIT_NOT_EXPR:
9603 case ADDR_EXPR:
9604 case UNARY_PLUS_EXPR: /* Unary + */
9605 case ALIGNOF_EXPR:
9606 case ARROW_EXPR:
9607 case THROW_EXPR:
9608 case TYPEID_EXPR:
9609 case REALPART_EXPR:
9610 case IMAGPART_EXPR:
9611 return build1
9612 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
9613 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
9615 case COMPONENT_REF:
9617 tree object;
9618 tree name;
9620 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
9621 name = TREE_OPERAND (t, 1);
9622 if (TREE_CODE (name) == BIT_NOT_EXPR)
9624 name = tsubst_copy (TREE_OPERAND (name, 0), args,
9625 complain, in_decl);
9626 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
9628 else if (TREE_CODE (name) == SCOPE_REF
9629 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
9631 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
9632 complain, in_decl);
9633 name = TREE_OPERAND (name, 1);
9634 name = tsubst_copy (TREE_OPERAND (name, 0), args,
9635 complain, in_decl);
9636 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
9637 name = build_qualified_name (/*type=*/NULL_TREE,
9638 base, name,
9639 /*template_p=*/false);
9641 else if (TREE_CODE (name) == BASELINK)
9642 name = tsubst_baselink (name,
9643 non_reference (TREE_TYPE (object)),
9644 args, complain,
9645 in_decl);
9646 else
9647 name = tsubst_copy (name, args, complain, in_decl);
9648 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
9651 case PLUS_EXPR:
9652 case MINUS_EXPR:
9653 case MULT_EXPR:
9654 case TRUNC_DIV_EXPR:
9655 case CEIL_DIV_EXPR:
9656 case FLOOR_DIV_EXPR:
9657 case ROUND_DIV_EXPR:
9658 case EXACT_DIV_EXPR:
9659 case BIT_AND_EXPR:
9660 case BIT_IOR_EXPR:
9661 case BIT_XOR_EXPR:
9662 case TRUNC_MOD_EXPR:
9663 case FLOOR_MOD_EXPR:
9664 case TRUTH_ANDIF_EXPR:
9665 case TRUTH_ORIF_EXPR:
9666 case TRUTH_AND_EXPR:
9667 case TRUTH_OR_EXPR:
9668 case RSHIFT_EXPR:
9669 case LSHIFT_EXPR:
9670 case RROTATE_EXPR:
9671 case LROTATE_EXPR:
9672 case EQ_EXPR:
9673 case NE_EXPR:
9674 case MAX_EXPR:
9675 case MIN_EXPR:
9676 case LE_EXPR:
9677 case GE_EXPR:
9678 case LT_EXPR:
9679 case GT_EXPR:
9680 case COMPOUND_EXPR:
9681 case DOTSTAR_EXPR:
9682 case MEMBER_REF:
9683 case PREDECREMENT_EXPR:
9684 case PREINCREMENT_EXPR:
9685 case POSTDECREMENT_EXPR:
9686 case POSTINCREMENT_EXPR:
9687 return build_nt
9688 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
9689 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
9691 case SCOPE_REF:
9692 return build_qualified_name (/*type=*/NULL_TREE,
9693 tsubst_copy (TREE_OPERAND (t, 0),
9694 args, complain, in_decl),
9695 tsubst_copy (TREE_OPERAND (t, 1),
9696 args, complain, in_decl),
9697 QUALIFIED_NAME_IS_TEMPLATE (t));
9699 case ARRAY_REF:
9700 return build_nt
9701 (ARRAY_REF,
9702 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
9703 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
9704 NULL_TREE, NULL_TREE);
9706 case CALL_EXPR:
9708 int n = VL_EXP_OPERAND_LENGTH (t);
9709 tree result = build_vl_exp (CALL_EXPR, n);
9710 int i;
9711 for (i = 0; i < n; i++)
9712 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
9713 complain, in_decl);
9714 return result;
9717 case COND_EXPR:
9718 case MODOP_EXPR:
9719 case PSEUDO_DTOR_EXPR:
9721 r = build_nt
9722 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
9723 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
9724 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
9725 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
9726 return r;
9729 case NEW_EXPR:
9731 r = build_nt
9732 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
9733 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
9734 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
9735 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
9736 return r;
9739 case DELETE_EXPR:
9741 r = build_nt
9742 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
9743 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
9744 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
9745 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
9746 return r;
9749 case TEMPLATE_ID_EXPR:
9751 /* Substituted template arguments */
9752 tree fn = TREE_OPERAND (t, 0);
9753 tree targs = TREE_OPERAND (t, 1);
9755 fn = tsubst_copy (fn, args, complain, in_decl);
9756 if (targs)
9757 targs = tsubst_template_args (targs, args, complain, in_decl);
9759 return lookup_template_function (fn, targs);
9762 case TREE_LIST:
9764 tree purpose, value, chain;
9766 if (t == void_list_node)
9767 return t;
9769 purpose = TREE_PURPOSE (t);
9770 if (purpose)
9771 purpose = tsubst_copy (purpose, args, complain, in_decl);
9772 value = TREE_VALUE (t);
9773 if (value)
9774 value = tsubst_copy (value, args, complain, in_decl);
9775 chain = TREE_CHAIN (t);
9776 if (chain && chain != void_type_node)
9777 chain = tsubst_copy (chain, args, complain, in_decl);
9778 if (purpose == TREE_PURPOSE (t)
9779 && value == TREE_VALUE (t)
9780 && chain == TREE_CHAIN (t))
9781 return t;
9782 return tree_cons (purpose, value, chain);
9785 case RECORD_TYPE:
9786 case UNION_TYPE:
9787 case ENUMERAL_TYPE:
9788 case INTEGER_TYPE:
9789 case TEMPLATE_TYPE_PARM:
9790 case TEMPLATE_TEMPLATE_PARM:
9791 case BOUND_TEMPLATE_TEMPLATE_PARM:
9792 case TEMPLATE_PARM_INDEX:
9793 case POINTER_TYPE:
9794 case REFERENCE_TYPE:
9795 case OFFSET_TYPE:
9796 case FUNCTION_TYPE:
9797 case METHOD_TYPE:
9798 case ARRAY_TYPE:
9799 case TYPENAME_TYPE:
9800 case UNBOUND_CLASS_TEMPLATE:
9801 case TYPEOF_TYPE:
9802 case DECLTYPE_TYPE:
9803 case TYPE_DECL:
9804 return tsubst (t, args, complain, in_decl);
9806 case IDENTIFIER_NODE:
9807 if (IDENTIFIER_TYPENAME_P (t))
9809 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
9810 return mangle_conv_op_name_for_type (new_type);
9812 else
9813 return t;
9815 case CONSTRUCTOR:
9816 /* This is handled by tsubst_copy_and_build. */
9817 gcc_unreachable ();
9819 case VA_ARG_EXPR:
9820 return build_x_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
9821 in_decl),
9822 tsubst (TREE_TYPE (t), args, complain, in_decl));
9824 case CLEANUP_POINT_EXPR:
9825 /* We shouldn't have built any of these during initial template
9826 generation. Instead, they should be built during instantiation
9827 in response to the saved STMT_IS_FULL_EXPR_P setting. */
9828 gcc_unreachable ();
9830 case OFFSET_REF:
9831 mark_used (TREE_OPERAND (t, 1));
9832 return t;
9834 case EXPR_PACK_EXPANSION:
9835 error ("invalid use of pack expansion expression");
9836 return error_mark_node;
9838 case NONTYPE_ARGUMENT_PACK:
9839 error ("use %<...%> to expand argument pack");
9840 return error_mark_node;
9842 default:
9843 return t;
9847 /* Like tsubst_copy, but specifically for OpenMP clauses. */
9849 static tree
9850 tsubst_omp_clauses (tree clauses, tree args, tsubst_flags_t complain,
9851 tree in_decl)
9853 tree new_clauses = NULL, nc, oc;
9855 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
9857 nc = copy_node (oc);
9858 OMP_CLAUSE_CHAIN (nc) = new_clauses;
9859 new_clauses = nc;
9861 switch (OMP_CLAUSE_CODE (nc))
9863 case OMP_CLAUSE_PRIVATE:
9864 case OMP_CLAUSE_SHARED:
9865 case OMP_CLAUSE_FIRSTPRIVATE:
9866 case OMP_CLAUSE_LASTPRIVATE:
9867 case OMP_CLAUSE_REDUCTION:
9868 case OMP_CLAUSE_COPYIN:
9869 case OMP_CLAUSE_COPYPRIVATE:
9870 case OMP_CLAUSE_IF:
9871 case OMP_CLAUSE_NUM_THREADS:
9872 case OMP_CLAUSE_SCHEDULE:
9873 OMP_CLAUSE_OPERAND (nc, 0)
9874 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
9875 in_decl, /*integral_constant_expression_p=*/false);
9876 break;
9877 case OMP_CLAUSE_NOWAIT:
9878 case OMP_CLAUSE_ORDERED:
9879 case OMP_CLAUSE_DEFAULT:
9880 break;
9881 default:
9882 gcc_unreachable ();
9886 return finish_omp_clauses (nreverse (new_clauses));
9889 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
9891 static tree
9892 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
9893 tree in_decl)
9895 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
9897 tree purpose, value, chain;
9899 if (t == NULL)
9900 return t;
9902 if (TREE_CODE (t) != TREE_LIST)
9903 return tsubst_copy_and_build (t, args, complain, in_decl,
9904 /*function_p=*/false,
9905 /*integral_constant_expression_p=*/false);
9907 if (t == void_list_node)
9908 return t;
9910 purpose = TREE_PURPOSE (t);
9911 if (purpose)
9912 purpose = RECUR (purpose);
9913 value = TREE_VALUE (t);
9914 if (value)
9915 value = RECUR (value);
9916 chain = TREE_CHAIN (t);
9917 if (chain && chain != void_type_node)
9918 chain = RECUR (chain);
9919 return tree_cons (purpose, value, chain);
9920 #undef RECUR
9923 /* Like tsubst_copy for expressions, etc. but also does semantic
9924 processing. */
9926 static tree
9927 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
9928 bool integral_constant_expression_p)
9930 #define RECUR(NODE) \
9931 tsubst_expr ((NODE), args, complain, in_decl, \
9932 integral_constant_expression_p)
9934 tree stmt, tmp;
9936 if (t == NULL_TREE || t == error_mark_node)
9937 return t;
9939 if (EXPR_HAS_LOCATION (t))
9940 input_location = EXPR_LOCATION (t);
9941 if (STATEMENT_CODE_P (TREE_CODE (t)))
9942 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
9944 switch (TREE_CODE (t))
9946 case STATEMENT_LIST:
9948 tree_stmt_iterator i;
9949 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
9950 RECUR (tsi_stmt (i));
9951 break;
9954 case CTOR_INITIALIZER:
9955 finish_mem_initializers (tsubst_initializer_list
9956 (TREE_OPERAND (t, 0), args));
9957 break;
9959 case RETURN_EXPR:
9960 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
9961 break;
9963 case EXPR_STMT:
9964 tmp = RECUR (EXPR_STMT_EXPR (t));
9965 if (EXPR_STMT_STMT_EXPR_RESULT (t))
9966 finish_stmt_expr_expr (tmp, cur_stmt_expr);
9967 else
9968 finish_expr_stmt (tmp);
9969 break;
9971 case USING_STMT:
9972 do_using_directive (RECUR (USING_STMT_NAMESPACE (t)));
9973 break;
9975 case DECL_EXPR:
9977 tree decl;
9978 tree init;
9980 decl = DECL_EXPR_DECL (t);
9981 if (TREE_CODE (decl) == LABEL_DECL)
9982 finish_label_decl (DECL_NAME (decl));
9983 else if (TREE_CODE (decl) == USING_DECL)
9985 tree scope = USING_DECL_SCOPE (decl);
9986 tree name = DECL_NAME (decl);
9987 tree decl;
9989 scope = RECUR (scope);
9990 decl = lookup_qualified_name (scope, name,
9991 /*is_type_p=*/false,
9992 /*complain=*/false);
9993 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
9994 qualified_name_lookup_error (scope, name, decl);
9995 else
9996 do_local_using_decl (decl, scope, name);
9998 else
10000 init = DECL_INITIAL (decl);
10001 decl = tsubst (decl, args, complain, in_decl);
10002 if (decl != error_mark_node)
10004 /* By marking the declaration as instantiated, we avoid
10005 trying to instantiate it. Since instantiate_decl can't
10006 handle local variables, and since we've already done
10007 all that needs to be done, that's the right thing to
10008 do. */
10009 if (TREE_CODE (decl) == VAR_DECL)
10010 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
10011 if (TREE_CODE (decl) == VAR_DECL
10012 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
10013 /* Anonymous aggregates are a special case. */
10014 finish_anon_union (decl);
10015 else
10017 maybe_push_decl (decl);
10018 if (TREE_CODE (decl) == VAR_DECL
10019 && DECL_PRETTY_FUNCTION_P (decl))
10021 /* For __PRETTY_FUNCTION__ we have to adjust the
10022 initializer. */
10023 const char *const name
10024 = cxx_printable_name (current_function_decl, 2);
10025 init = cp_fname_init (name, &TREE_TYPE (decl));
10027 else
10029 tree t = RECUR (init);
10031 if (init && !t)
10032 /* If we had an initializer but it
10033 instantiated to nothing,
10034 value-initialize the object. This will
10035 only occur when the initializer was a
10036 pack expansion where the parameter packs
10037 used in that expansion were of length
10038 zero. */
10039 init = build_default_init (TREE_TYPE (decl),
10040 NULL_TREE);
10041 else
10042 init = t;
10045 finish_decl (decl, init, NULL_TREE);
10050 /* A DECL_EXPR can also be used as an expression, in the condition
10051 clause of an if/for/while construct. */
10052 return decl;
10055 case FOR_STMT:
10056 stmt = begin_for_stmt ();
10057 RECUR (FOR_INIT_STMT (t));
10058 finish_for_init_stmt (stmt);
10059 tmp = RECUR (FOR_COND (t));
10060 finish_for_cond (tmp, stmt);
10061 tmp = RECUR (FOR_EXPR (t));
10062 finish_for_expr (tmp, stmt);
10063 RECUR (FOR_BODY (t));
10064 finish_for_stmt (stmt);
10065 break;
10067 case WHILE_STMT:
10068 stmt = begin_while_stmt ();
10069 tmp = RECUR (WHILE_COND (t));
10070 finish_while_stmt_cond (tmp, stmt);
10071 RECUR (WHILE_BODY (t));
10072 finish_while_stmt (stmt);
10073 break;
10075 case DO_STMT:
10076 stmt = begin_do_stmt ();
10077 RECUR (DO_BODY (t));
10078 finish_do_body (stmt);
10079 tmp = RECUR (DO_COND (t));
10080 finish_do_stmt (tmp, stmt);
10081 break;
10083 case IF_STMT:
10084 stmt = begin_if_stmt ();
10085 tmp = RECUR (IF_COND (t));
10086 finish_if_stmt_cond (tmp, stmt);
10087 RECUR (THEN_CLAUSE (t));
10088 finish_then_clause (stmt);
10090 if (ELSE_CLAUSE (t))
10092 begin_else_clause (stmt);
10093 RECUR (ELSE_CLAUSE (t));
10094 finish_else_clause (stmt);
10097 finish_if_stmt (stmt);
10098 break;
10100 case BIND_EXPR:
10101 if (BIND_EXPR_BODY_BLOCK (t))
10102 stmt = begin_function_body ();
10103 else
10104 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
10105 ? BCS_TRY_BLOCK : 0);
10107 RECUR (BIND_EXPR_BODY (t));
10109 if (BIND_EXPR_BODY_BLOCK (t))
10110 finish_function_body (stmt);
10111 else
10112 finish_compound_stmt (stmt);
10113 break;
10115 case BREAK_STMT:
10116 finish_break_stmt ();
10117 break;
10119 case CONTINUE_STMT:
10120 finish_continue_stmt ();
10121 break;
10123 case SWITCH_STMT:
10124 stmt = begin_switch_stmt ();
10125 tmp = RECUR (SWITCH_STMT_COND (t));
10126 finish_switch_cond (tmp, stmt);
10127 RECUR (SWITCH_STMT_BODY (t));
10128 finish_switch_stmt (stmt);
10129 break;
10131 case CASE_LABEL_EXPR:
10132 finish_case_label (RECUR (CASE_LOW (t)),
10133 RECUR (CASE_HIGH (t)));
10134 break;
10136 case LABEL_EXPR:
10137 finish_label_stmt (DECL_NAME (LABEL_EXPR_LABEL (t)));
10138 break;
10140 case GOTO_EXPR:
10141 tmp = GOTO_DESTINATION (t);
10142 if (TREE_CODE (tmp) != LABEL_DECL)
10143 /* Computed goto's must be tsubst'd into. On the other hand,
10144 non-computed gotos must not be; the identifier in question
10145 will have no binding. */
10146 tmp = RECUR (tmp);
10147 else
10148 tmp = DECL_NAME (tmp);
10149 finish_goto_stmt (tmp);
10150 break;
10152 case ASM_EXPR:
10153 tmp = finish_asm_stmt
10154 (ASM_VOLATILE_P (t),
10155 RECUR (ASM_STRING (t)),
10156 tsubst_copy_asm_operands (ASM_OUTPUTS (t), args, complain, in_decl),
10157 tsubst_copy_asm_operands (ASM_INPUTS (t), args, complain, in_decl),
10158 tsubst_copy_asm_operands (ASM_CLOBBERS (t), args, complain, in_decl));
10160 tree asm_expr = tmp;
10161 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
10162 asm_expr = TREE_OPERAND (asm_expr, 0);
10163 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
10165 break;
10167 case TRY_BLOCK:
10168 if (CLEANUP_P (t))
10170 stmt = begin_try_block ();
10171 RECUR (TRY_STMTS (t));
10172 finish_cleanup_try_block (stmt);
10173 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
10175 else
10177 tree compound_stmt = NULL_TREE;
10179 if (FN_TRY_BLOCK_P (t))
10180 stmt = begin_function_try_block (&compound_stmt);
10181 else
10182 stmt = begin_try_block ();
10184 RECUR (TRY_STMTS (t));
10186 if (FN_TRY_BLOCK_P (t))
10187 finish_function_try_block (stmt);
10188 else
10189 finish_try_block (stmt);
10191 RECUR (TRY_HANDLERS (t));
10192 if (FN_TRY_BLOCK_P (t))
10193 finish_function_handler_sequence (stmt, compound_stmt);
10194 else
10195 finish_handler_sequence (stmt);
10197 break;
10199 case HANDLER:
10201 tree decl = HANDLER_PARMS (t);
10203 if (decl)
10205 decl = tsubst (decl, args, complain, in_decl);
10206 /* Prevent instantiate_decl from trying to instantiate
10207 this variable. We've already done all that needs to be
10208 done. */
10209 if (decl != error_mark_node)
10210 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
10212 stmt = begin_handler ();
10213 finish_handler_parms (decl, stmt);
10214 RECUR (HANDLER_BODY (t));
10215 finish_handler (stmt);
10217 break;
10219 case TAG_DEFN:
10220 tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
10221 break;
10223 case STATIC_ASSERT:
10225 tree condition =
10226 tsubst_expr (STATIC_ASSERT_CONDITION (t),
10227 args,
10228 complain, in_decl,
10229 /*integral_constant_expression_p=*/true);
10230 finish_static_assert (condition,
10231 STATIC_ASSERT_MESSAGE (t),
10232 STATIC_ASSERT_SOURCE_LOCATION (t),
10233 /*member_p=*/false);
10235 break;
10237 case OMP_PARALLEL:
10238 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t),
10239 args, complain, in_decl);
10240 stmt = begin_omp_parallel ();
10241 RECUR (OMP_PARALLEL_BODY (t));
10242 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
10243 = OMP_PARALLEL_COMBINED (t);
10244 break;
10246 case OMP_FOR:
10248 tree clauses, decl, init, cond, incr, body, pre_body;
10250 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t),
10251 args, complain, in_decl);
10252 init = OMP_FOR_INIT (t);
10253 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
10254 decl = RECUR (TREE_OPERAND (init, 0));
10255 init = RECUR (TREE_OPERAND (init, 1));
10256 cond = RECUR (OMP_FOR_COND (t));
10257 incr = RECUR (OMP_FOR_INCR (t));
10259 stmt = begin_omp_structured_block ();
10261 pre_body = push_stmt_list ();
10262 RECUR (OMP_FOR_PRE_BODY (t));
10263 pre_body = pop_stmt_list (pre_body);
10265 body = push_stmt_list ();
10266 RECUR (OMP_FOR_BODY (t));
10267 body = pop_stmt_list (body);
10269 t = finish_omp_for (EXPR_LOCATION (t), decl, init, cond, incr, body,
10270 pre_body);
10271 if (t)
10272 OMP_FOR_CLAUSES (t) = clauses;
10274 add_stmt (finish_omp_structured_block (stmt));
10276 break;
10278 case OMP_SECTIONS:
10279 case OMP_SINGLE:
10280 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), args, complain, in_decl);
10281 stmt = push_stmt_list ();
10282 RECUR (OMP_BODY (t));
10283 stmt = pop_stmt_list (stmt);
10285 t = copy_node (t);
10286 OMP_BODY (t) = stmt;
10287 OMP_CLAUSES (t) = tmp;
10288 add_stmt (t);
10289 break;
10291 case OMP_SECTION:
10292 case OMP_CRITICAL:
10293 case OMP_MASTER:
10294 case OMP_ORDERED:
10295 stmt = push_stmt_list ();
10296 RECUR (OMP_BODY (t));
10297 stmt = pop_stmt_list (stmt);
10299 t = copy_node (t);
10300 OMP_BODY (t) = stmt;
10301 add_stmt (t);
10302 break;
10304 case OMP_ATOMIC:
10305 if (OMP_ATOMIC_DEPENDENT_P (t))
10307 tree op1 = TREE_OPERAND (t, 1);
10308 tree lhs = RECUR (TREE_OPERAND (op1, 0));
10309 tree rhs = RECUR (TREE_OPERAND (op1, 1));
10310 finish_omp_atomic (TREE_CODE (op1), lhs, rhs);
10312 break;
10314 case EXPR_PACK_EXPANSION:
10315 error ("invalid use of pack expansion expression");
10316 return error_mark_node;
10318 case NONTYPE_ARGUMENT_PACK:
10319 error ("use %<...%> to expand argument pack");
10320 return error_mark_node;
10322 default:
10323 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
10325 return tsubst_copy_and_build (t, args, complain, in_decl,
10326 /*function_p=*/false,
10327 integral_constant_expression_p);
10330 return NULL_TREE;
10331 #undef RECUR
10334 /* T is a postfix-expression that is not being used in a function
10335 call. Return the substituted version of T. */
10337 static tree
10338 tsubst_non_call_postfix_expression (tree t, tree args,
10339 tsubst_flags_t complain,
10340 tree in_decl)
10342 if (TREE_CODE (t) == SCOPE_REF)
10343 t = tsubst_qualified_id (t, args, complain, in_decl,
10344 /*done=*/false, /*address_p=*/false);
10345 else
10346 t = tsubst_copy_and_build (t, args, complain, in_decl,
10347 /*function_p=*/false,
10348 /*integral_constant_expression_p=*/false);
10350 return t;
10353 /* Like tsubst but deals with expressions and performs semantic
10354 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
10356 tree
10357 tsubst_copy_and_build (tree t,
10358 tree args,
10359 tsubst_flags_t complain,
10360 tree in_decl,
10361 bool function_p,
10362 bool integral_constant_expression_p)
10364 #define RECUR(NODE) \
10365 tsubst_copy_and_build (NODE, args, complain, in_decl, \
10366 /*function_p=*/false, \
10367 integral_constant_expression_p)
10369 tree op1;
10371 if (t == NULL_TREE || t == error_mark_node)
10372 return t;
10374 switch (TREE_CODE (t))
10376 case USING_DECL:
10377 t = DECL_NAME (t);
10378 /* Fall through. */
10379 case IDENTIFIER_NODE:
10381 tree decl;
10382 cp_id_kind idk;
10383 bool non_integral_constant_expression_p;
10384 const char *error_msg;
10386 if (IDENTIFIER_TYPENAME_P (t))
10388 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10389 t = mangle_conv_op_name_for_type (new_type);
10392 /* Look up the name. */
10393 decl = lookup_name (t);
10395 /* By convention, expressions use ERROR_MARK_NODE to indicate
10396 failure, not NULL_TREE. */
10397 if (decl == NULL_TREE)
10398 decl = error_mark_node;
10400 decl = finish_id_expression (t, decl, NULL_TREE,
10401 &idk,
10402 integral_constant_expression_p,
10403 /*allow_non_integral_constant_expression_p=*/false,
10404 &non_integral_constant_expression_p,
10405 /*template_p=*/false,
10406 /*done=*/true,
10407 /*address_p=*/false,
10408 /*template_arg_p=*/false,
10409 &error_msg);
10410 if (error_msg)
10411 error (error_msg);
10412 if (!function_p && TREE_CODE (decl) == IDENTIFIER_NODE)
10413 decl = unqualified_name_lookup_error (decl);
10414 return decl;
10417 case TEMPLATE_ID_EXPR:
10419 tree object;
10420 tree template = RECUR (TREE_OPERAND (t, 0));
10421 tree targs = TREE_OPERAND (t, 1);
10423 if (targs)
10424 targs = tsubst_template_args (targs, args, complain, in_decl);
10426 if (TREE_CODE (template) == COMPONENT_REF)
10428 object = TREE_OPERAND (template, 0);
10429 template = TREE_OPERAND (template, 1);
10431 else
10432 object = NULL_TREE;
10433 template = lookup_template_function (template, targs);
10435 if (object)
10436 return build3 (COMPONENT_REF, TREE_TYPE (template),
10437 object, template, NULL_TREE);
10438 else
10439 return baselink_for_fns (template);
10442 case INDIRECT_REF:
10444 tree r = RECUR (TREE_OPERAND (t, 0));
10446 if (REFERENCE_REF_P (t))
10448 /* A type conversion to reference type will be enclosed in
10449 such an indirect ref, but the substitution of the cast
10450 will have also added such an indirect ref. */
10451 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
10452 r = convert_from_reference (r);
10454 else
10455 r = build_x_indirect_ref (r, "unary *");
10456 return r;
10459 case NOP_EXPR:
10460 return build_nop
10461 (tsubst (TREE_TYPE (t), args, complain, in_decl),
10462 RECUR (TREE_OPERAND (t, 0)));
10464 case CAST_EXPR:
10465 case REINTERPRET_CAST_EXPR:
10466 case CONST_CAST_EXPR:
10467 case DYNAMIC_CAST_EXPR:
10468 case STATIC_CAST_EXPR:
10470 tree type;
10471 tree op;
10473 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10474 if (integral_constant_expression_p
10475 && !cast_valid_in_integral_constant_expression_p (type))
10477 error ("a cast to a type other than an integral or "
10478 "enumeration type cannot appear in a constant-expression");
10479 return error_mark_node;
10482 op = RECUR (TREE_OPERAND (t, 0));
10484 switch (TREE_CODE (t))
10486 case CAST_EXPR:
10487 return build_functional_cast (type, op);
10488 case REINTERPRET_CAST_EXPR:
10489 return build_reinterpret_cast (type, op);
10490 case CONST_CAST_EXPR:
10491 return build_const_cast (type, op);
10492 case DYNAMIC_CAST_EXPR:
10493 return build_dynamic_cast (type, op);
10494 case STATIC_CAST_EXPR:
10495 return build_static_cast (type, op);
10496 default:
10497 gcc_unreachable ();
10501 case POSTDECREMENT_EXPR:
10502 case POSTINCREMENT_EXPR:
10503 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
10504 args, complain, in_decl);
10505 return build_x_unary_op (TREE_CODE (t), op1);
10507 case PREDECREMENT_EXPR:
10508 case PREINCREMENT_EXPR:
10509 case NEGATE_EXPR:
10510 case BIT_NOT_EXPR:
10511 case ABS_EXPR:
10512 case TRUTH_NOT_EXPR:
10513 case UNARY_PLUS_EXPR: /* Unary + */
10514 case REALPART_EXPR:
10515 case IMAGPART_EXPR:
10516 return build_x_unary_op (TREE_CODE (t), RECUR (TREE_OPERAND (t, 0)));
10518 case ADDR_EXPR:
10519 op1 = TREE_OPERAND (t, 0);
10520 if (TREE_CODE (op1) == SCOPE_REF)
10521 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
10522 /*done=*/true, /*address_p=*/true);
10523 else
10524 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
10525 in_decl);
10526 if (TREE_CODE (op1) == LABEL_DECL)
10527 return finish_label_address_expr (DECL_NAME (op1));
10528 return build_x_unary_op (ADDR_EXPR, op1);
10530 case PLUS_EXPR:
10531 case MINUS_EXPR:
10532 case MULT_EXPR:
10533 case TRUNC_DIV_EXPR:
10534 case CEIL_DIV_EXPR:
10535 case FLOOR_DIV_EXPR:
10536 case ROUND_DIV_EXPR:
10537 case EXACT_DIV_EXPR:
10538 case BIT_AND_EXPR:
10539 case BIT_IOR_EXPR:
10540 case BIT_XOR_EXPR:
10541 case TRUNC_MOD_EXPR:
10542 case FLOOR_MOD_EXPR:
10543 case TRUTH_ANDIF_EXPR:
10544 case TRUTH_ORIF_EXPR:
10545 case TRUTH_AND_EXPR:
10546 case TRUTH_OR_EXPR:
10547 case RSHIFT_EXPR:
10548 case LSHIFT_EXPR:
10549 case RROTATE_EXPR:
10550 case LROTATE_EXPR:
10551 case EQ_EXPR:
10552 case NE_EXPR:
10553 case MAX_EXPR:
10554 case MIN_EXPR:
10555 case LE_EXPR:
10556 case GE_EXPR:
10557 case LT_EXPR:
10558 case GT_EXPR:
10559 case MEMBER_REF:
10560 case DOTSTAR_EXPR:
10561 return build_x_binary_op
10562 (TREE_CODE (t),
10563 RECUR (TREE_OPERAND (t, 0)),
10564 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
10565 ? ERROR_MARK
10566 : TREE_CODE (TREE_OPERAND (t, 0))),
10567 RECUR (TREE_OPERAND (t, 1)),
10568 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
10569 ? ERROR_MARK
10570 : TREE_CODE (TREE_OPERAND (t, 1))),
10571 /*overloaded_p=*/NULL);
10573 case SCOPE_REF:
10574 return tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
10575 /*address_p=*/false);
10576 case ARRAY_REF:
10577 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
10578 args, complain, in_decl);
10579 return build_x_binary_op (ARRAY_REF, op1,
10580 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
10581 ? ERROR_MARK
10582 : TREE_CODE (TREE_OPERAND (t, 0))),
10583 RECUR (TREE_OPERAND (t, 1)),
10584 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
10585 ? ERROR_MARK
10586 : TREE_CODE (TREE_OPERAND (t, 1))),
10587 /*overloaded_p=*/NULL);
10589 case SIZEOF_EXPR:
10590 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
10592 /* We only want to compute the number of arguments. */
10593 tree expanded = tsubst_pack_expansion (TREE_OPERAND (t, 0), args,
10594 complain, in_decl);
10595 if (expanded == error_mark_node)
10596 return error_mark_node;
10597 return build_int_cst (size_type_node, TREE_VEC_LENGTH (expanded));
10599 /* Fall through */
10601 case ALIGNOF_EXPR:
10602 op1 = TREE_OPERAND (t, 0);
10603 if (!args)
10605 /* When there are no ARGS, we are trying to evaluate a
10606 non-dependent expression from the parser. Trying to do
10607 the substitutions may not work. */
10608 if (!TYPE_P (op1))
10609 op1 = TREE_TYPE (op1);
10611 else
10613 ++skip_evaluation;
10614 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
10615 /*function_p=*/false,
10616 /*integral_constant_expression_p=*/false);
10617 --skip_evaluation;
10619 if (TYPE_P (op1))
10620 return cxx_sizeof_or_alignof_type (op1, TREE_CODE (t), true);
10621 else
10622 return cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t));
10624 case MODOP_EXPR:
10626 tree r = build_x_modify_expr
10627 (RECUR (TREE_OPERAND (t, 0)),
10628 TREE_CODE (TREE_OPERAND (t, 1)),
10629 RECUR (TREE_OPERAND (t, 2)));
10630 /* TREE_NO_WARNING must be set if either the expression was
10631 parenthesized or it uses an operator such as >>= rather
10632 than plain assignment. In the former case, it was already
10633 set and must be copied. In the latter case,
10634 build_x_modify_expr sets it and it must not be reset
10635 here. */
10636 if (TREE_NO_WARNING (t))
10637 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
10638 return r;
10641 case ARROW_EXPR:
10642 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
10643 args, complain, in_decl);
10644 /* Remember that there was a reference to this entity. */
10645 if (DECL_P (op1))
10646 mark_used (op1);
10647 return build_x_arrow (op1);
10649 case NEW_EXPR:
10651 tree init = RECUR (TREE_OPERAND (t, 3));
10653 if (TREE_OPERAND (t, 3) && !init)
10654 /* If there was an initializer in the the original tree, but
10655 it instantiated to an empty list, then we should pass on
10656 VOID_ZERO_NODE to tell build_new that it was an empty
10657 initializer () rather than no initializer. This can only
10658 happen when the initializer is a pack expansion whose
10659 parameter packs are of length zero. */
10660 init = void_zero_node;
10662 return build_new
10663 (RECUR (TREE_OPERAND (t, 0)),
10664 RECUR (TREE_OPERAND (t, 1)),
10665 RECUR (TREE_OPERAND (t, 2)),
10666 init,
10667 NEW_EXPR_USE_GLOBAL (t));
10670 case DELETE_EXPR:
10671 return delete_sanity
10672 (RECUR (TREE_OPERAND (t, 0)),
10673 RECUR (TREE_OPERAND (t, 1)),
10674 DELETE_EXPR_USE_VEC (t),
10675 DELETE_EXPR_USE_GLOBAL (t));
10677 case COMPOUND_EXPR:
10678 return build_x_compound_expr (RECUR (TREE_OPERAND (t, 0)),
10679 RECUR (TREE_OPERAND (t, 1)));
10681 case CALL_EXPR:
10683 tree function;
10684 tree call_args;
10685 bool qualified_p;
10686 bool koenig_p;
10688 function = CALL_EXPR_FN (t);
10689 /* When we parsed the expression, we determined whether or
10690 not Koenig lookup should be performed. */
10691 koenig_p = KOENIG_LOOKUP_P (t);
10692 if (TREE_CODE (function) == SCOPE_REF)
10694 qualified_p = true;
10695 function = tsubst_qualified_id (function, args, complain, in_decl,
10696 /*done=*/false,
10697 /*address_p=*/false);
10699 else
10701 if (TREE_CODE (function) == COMPONENT_REF)
10703 tree op = TREE_OPERAND (function, 1);
10705 qualified_p = (TREE_CODE (op) == SCOPE_REF
10706 || (BASELINK_P (op)
10707 && BASELINK_QUALIFIED_P (op)));
10709 else
10710 qualified_p = false;
10712 function = tsubst_copy_and_build (function, args, complain,
10713 in_decl,
10714 !qualified_p,
10715 integral_constant_expression_p);
10717 if (BASELINK_P (function))
10718 qualified_p = true;
10721 /* FIXME: Rewrite this so as not to construct an arglist. */
10722 call_args = RECUR (CALL_EXPR_ARGS (t));
10724 /* We do not perform argument-dependent lookup if normal
10725 lookup finds a non-function, in accordance with the
10726 expected resolution of DR 218. */
10727 if (koenig_p
10728 && ((is_overloaded_fn (function)
10729 /* If lookup found a member function, the Koenig lookup is
10730 not appropriate, even if an unqualified-name was used
10731 to denote the function. */
10732 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
10733 || TREE_CODE (function) == IDENTIFIER_NODE))
10734 function = perform_koenig_lookup (function, call_args);
10736 if (TREE_CODE (function) == IDENTIFIER_NODE)
10738 unqualified_name_lookup_error (function);
10739 return error_mark_node;
10742 /* Remember that there was a reference to this entity. */
10743 if (DECL_P (function))
10744 mark_used (function);
10746 if (TREE_CODE (function) == OFFSET_REF)
10747 return build_offset_ref_call_from_tree (function, call_args);
10748 if (TREE_CODE (function) == COMPONENT_REF)
10750 if (!BASELINK_P (TREE_OPERAND (function, 1)))
10751 return finish_call_expr (function, call_args,
10752 /*disallow_virtual=*/false,
10753 /*koenig_p=*/false);
10754 else
10755 return (build_new_method_call
10756 (TREE_OPERAND (function, 0),
10757 TREE_OPERAND (function, 1),
10758 call_args, NULL_TREE,
10759 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
10760 /*fn_p=*/NULL));
10762 return finish_call_expr (function, call_args,
10763 /*disallow_virtual=*/qualified_p,
10764 koenig_p);
10767 case COND_EXPR:
10768 return build_x_conditional_expr
10769 (RECUR (TREE_OPERAND (t, 0)),
10770 RECUR (TREE_OPERAND (t, 1)),
10771 RECUR (TREE_OPERAND (t, 2)));
10773 case PSEUDO_DTOR_EXPR:
10774 return finish_pseudo_destructor_expr
10775 (RECUR (TREE_OPERAND (t, 0)),
10776 RECUR (TREE_OPERAND (t, 1)),
10777 RECUR (TREE_OPERAND (t, 2)));
10779 case TREE_LIST:
10781 tree purpose, value, chain;
10783 if (t == void_list_node)
10784 return t;
10786 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
10787 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
10789 /* We have pack expansions, so expand those and
10790 create a new list out of it. */
10791 tree purposevec = NULL_TREE;
10792 tree valuevec = NULL_TREE;
10793 tree chain;
10794 int i, len = -1;
10796 /* Expand the argument expressions. */
10797 if (TREE_PURPOSE (t))
10798 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
10799 complain, in_decl);
10800 if (TREE_VALUE (t))
10801 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
10802 complain, in_decl);
10804 /* Build the rest of the list. */
10805 chain = TREE_CHAIN (t);
10806 if (chain && chain != void_type_node)
10807 chain = RECUR (chain);
10809 /* Determine the number of arguments. */
10810 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
10812 len = TREE_VEC_LENGTH (purposevec);
10813 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
10815 else if (TREE_CODE (valuevec) == TREE_VEC)
10816 len = TREE_VEC_LENGTH (valuevec);
10817 else
10819 /* Since we only performed a partial substitution into
10820 the argument pack, we only return a single list
10821 node. */
10822 if (purposevec == TREE_PURPOSE (t)
10823 && valuevec == TREE_VALUE (t)
10824 && chain == TREE_CHAIN (t))
10825 return t;
10827 return tree_cons (purposevec, valuevec, chain);
10830 /* Convert the argument vectors into a TREE_LIST */
10831 i = len;
10832 while (i > 0)
10834 /* Grab the Ith values. */
10835 i--;
10836 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
10837 : NULL_TREE;
10838 value
10839 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
10840 : NULL_TREE;
10842 /* Build the list (backwards). */
10843 chain = tree_cons (purpose, value, chain);
10846 return chain;
10849 purpose = TREE_PURPOSE (t);
10850 if (purpose)
10851 purpose = RECUR (purpose);
10852 value = TREE_VALUE (t);
10853 if (value)
10854 value = RECUR (value);
10855 chain = TREE_CHAIN (t);
10856 if (chain && chain != void_type_node)
10857 chain = RECUR (chain);
10858 if (purpose == TREE_PURPOSE (t)
10859 && value == TREE_VALUE (t)
10860 && chain == TREE_CHAIN (t))
10861 return t;
10862 return tree_cons (purpose, value, chain);
10865 case COMPONENT_REF:
10867 tree object;
10868 tree object_type;
10869 tree member;
10871 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
10872 args, complain, in_decl);
10873 /* Remember that there was a reference to this entity. */
10874 if (DECL_P (object))
10875 mark_used (object);
10876 object_type = TREE_TYPE (object);
10878 member = TREE_OPERAND (t, 1);
10879 if (BASELINK_P (member))
10880 member = tsubst_baselink (member,
10881 non_reference (TREE_TYPE (object)),
10882 args, complain, in_decl);
10883 else
10884 member = tsubst_copy (member, args, complain, in_decl);
10885 if (member == error_mark_node)
10886 return error_mark_node;
10888 if (object_type && !CLASS_TYPE_P (object_type))
10890 if (TREE_CODE (member) == BIT_NOT_EXPR)
10891 return finish_pseudo_destructor_expr (object,
10892 NULL_TREE,
10893 object_type);
10894 else if (TREE_CODE (member) == SCOPE_REF
10895 && (TREE_CODE (TREE_OPERAND (member, 1)) == BIT_NOT_EXPR))
10896 return finish_pseudo_destructor_expr (object,
10897 object,
10898 object_type);
10900 else if (TREE_CODE (member) == SCOPE_REF
10901 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
10903 tree tmpl;
10904 tree args;
10906 /* Lookup the template functions now that we know what the
10907 scope is. */
10908 tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
10909 args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
10910 member = lookup_qualified_name (TREE_OPERAND (member, 0), tmpl,
10911 /*is_type_p=*/false,
10912 /*complain=*/false);
10913 if (BASELINK_P (member))
10915 BASELINK_FUNCTIONS (member)
10916 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
10917 args);
10918 member = (adjust_result_of_qualified_name_lookup
10919 (member, BINFO_TYPE (BASELINK_BINFO (member)),
10920 object_type));
10922 else
10924 qualified_name_lookup_error (object_type, tmpl, member);
10925 return error_mark_node;
10928 else if (TREE_CODE (member) == SCOPE_REF
10929 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
10930 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
10932 if (complain & tf_error)
10934 if (TYPE_P (TREE_OPERAND (member, 0)))
10935 error ("%qT is not a class or namespace",
10936 TREE_OPERAND (member, 0));
10937 else
10938 error ("%qD is not a class or namespace",
10939 TREE_OPERAND (member, 0));
10941 return error_mark_node;
10943 else if (TREE_CODE (member) == FIELD_DECL)
10944 return finish_non_static_data_member (member, object, NULL_TREE);
10946 return finish_class_member_access_expr (object, member,
10947 /*template_p=*/false);
10950 case THROW_EXPR:
10951 return build_throw
10952 (RECUR (TREE_OPERAND (t, 0)));
10954 case CONSTRUCTOR:
10956 VEC(constructor_elt,gc) *n;
10957 constructor_elt *ce;
10958 unsigned HOST_WIDE_INT idx;
10959 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10960 bool process_index_p;
10961 int newlen;
10962 bool need_copy_p = false;
10964 if (type == error_mark_node)
10965 return error_mark_node;
10967 /* digest_init will do the wrong thing if we let it. */
10968 if (type && TYPE_PTRMEMFUNC_P (type))
10969 return t;
10971 /* We do not want to process the index of aggregate
10972 initializers as they are identifier nodes which will be
10973 looked up by digest_init. */
10974 process_index_p = !(type && IS_AGGR_TYPE (type));
10976 n = VEC_copy (constructor_elt, gc, CONSTRUCTOR_ELTS (t));
10977 newlen = VEC_length (constructor_elt, n);
10978 for (idx = 0; VEC_iterate (constructor_elt, n, idx, ce); idx++)
10980 if (ce->index && process_index_p)
10981 ce->index = RECUR (ce->index);
10983 if (PACK_EXPANSION_P (ce->value))
10985 /* Substitute into the pack expansion. */
10986 ce->value = tsubst_pack_expansion (ce->value, args, complain,
10987 in_decl);
10989 if (ce->value == error_mark_node)
10991 else if (TREE_VEC_LENGTH (ce->value) == 1)
10992 /* Just move the argument into place. */
10993 ce->value = TREE_VEC_ELT (ce->value, 0);
10994 else
10996 /* Update the length of the final CONSTRUCTOR
10997 arguments vector, and note that we will need to
10998 copy.*/
10999 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
11000 need_copy_p = true;
11003 else
11004 ce->value = RECUR (ce->value);
11007 if (need_copy_p)
11009 VEC(constructor_elt,gc) *old_n = n;
11011 n = VEC_alloc (constructor_elt, gc, newlen);
11012 for (idx = 0; VEC_iterate (constructor_elt, old_n, idx, ce);
11013 idx++)
11015 if (TREE_CODE (ce->value) == TREE_VEC)
11017 int i, len = TREE_VEC_LENGTH (ce->value);
11018 for (i = 0; i < len; ++i)
11019 CONSTRUCTOR_APPEND_ELT (n, 0,
11020 TREE_VEC_ELT (ce->value, i));
11022 else
11023 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
11027 if (TREE_HAS_CONSTRUCTOR (t))
11028 return finish_compound_literal (type, n);
11030 return build_constructor (NULL_TREE, n);
11033 case TYPEID_EXPR:
11035 tree operand_0 = RECUR (TREE_OPERAND (t, 0));
11036 if (TYPE_P (operand_0))
11037 return get_typeid (operand_0);
11038 return build_typeid (operand_0);
11041 case VAR_DECL:
11042 if (!args)
11043 return t;
11044 /* Fall through */
11046 case PARM_DECL:
11048 tree r = tsubst_copy (t, args, complain, in_decl);
11050 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
11051 /* If the original type was a reference, we'll be wrapped in
11052 the appropriate INDIRECT_REF. */
11053 r = convert_from_reference (r);
11054 return r;
11057 case VA_ARG_EXPR:
11058 return build_x_va_arg (RECUR (TREE_OPERAND (t, 0)),
11059 tsubst_copy (TREE_TYPE (t), args, complain,
11060 in_decl));
11062 case OFFSETOF_EXPR:
11063 return finish_offsetof (RECUR (TREE_OPERAND (t, 0)));
11065 case TRAIT_EXPR:
11067 tree type1 = tsubst_copy (TRAIT_EXPR_TYPE1 (t), args,
11068 complain, in_decl);
11070 tree type2 = TRAIT_EXPR_TYPE2 (t);
11071 if (type2)
11072 type2 = tsubst_copy (type2, args, complain, in_decl);
11074 return finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2);
11077 case STMT_EXPR:
11079 tree old_stmt_expr = cur_stmt_expr;
11080 tree stmt_expr = begin_stmt_expr ();
11082 cur_stmt_expr = stmt_expr;
11083 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
11084 integral_constant_expression_p);
11085 stmt_expr = finish_stmt_expr (stmt_expr, false);
11086 cur_stmt_expr = old_stmt_expr;
11088 return stmt_expr;
11091 case CONST_DECL:
11092 t = tsubst_copy (t, args, complain, in_decl);
11093 /* As in finish_id_expression, we resolve enumeration constants
11094 to their underlying values. */
11095 if (TREE_CODE (t) == CONST_DECL)
11097 used_types_insert (TREE_TYPE (t));
11098 return DECL_INITIAL (t);
11100 return t;
11102 default:
11103 /* Handle Objective-C++ constructs, if appropriate. */
11105 tree subst
11106 = objcp_tsubst_copy_and_build (t, args, complain,
11107 in_decl, /*function_p=*/false);
11108 if (subst)
11109 return subst;
11111 return tsubst_copy (t, args, complain, in_decl);
11114 #undef RECUR
11117 /* Verify that the instantiated ARGS are valid. For type arguments,
11118 make sure that the type's linkage is ok. For non-type arguments,
11119 make sure they are constants if they are integral or enumerations.
11120 Emit an error under control of COMPLAIN, and return TRUE on error. */
11122 static bool
11123 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
11125 int ix, len = DECL_NTPARMS (tmpl);
11126 bool result = false;
11128 for (ix = 0; ix != len; ix++)
11130 tree t = TREE_VEC_ELT (args, ix);
11132 if (TYPE_P (t))
11134 /* [basic.link]: A name with no linkage (notably, the name
11135 of a class or enumeration declared in a local scope)
11136 shall not be used to declare an entity with linkage.
11137 This implies that names with no linkage cannot be used as
11138 template arguments. */
11139 tree nt = no_linkage_check (t, /*relaxed_p=*/false);
11141 if (nt)
11143 /* DR 488 makes use of a type with no linkage cause
11144 type deduction to fail. */
11145 if (complain & tf_error)
11147 if (TYPE_ANONYMOUS_P (nt))
11148 error ("%qT is/uses anonymous type", t);
11149 else
11150 error ("template argument for %qD uses local type %qT",
11151 tmpl, t);
11153 result = true;
11155 /* In order to avoid all sorts of complications, we do not
11156 allow variably-modified types as template arguments. */
11157 else if (variably_modified_type_p (t, NULL_TREE))
11159 if (complain & tf_error)
11160 error ("%qT is a variably modified type", t);
11161 result = true;
11164 /* A non-type argument of integral or enumerated type must be a
11165 constant. */
11166 else if (TREE_TYPE (t)
11167 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
11168 && !TREE_CONSTANT (t))
11170 if (complain & tf_error)
11171 error ("integral expression %qE is not constant", t);
11172 result = true;
11175 if (result && (complain & tf_error))
11176 error (" trying to instantiate %qD", tmpl);
11177 return result;
11180 /* Instantiate the indicated variable or function template TMPL with
11181 the template arguments in TARG_PTR. */
11183 tree
11184 instantiate_template (tree tmpl, tree targ_ptr, tsubst_flags_t complain)
11186 tree fndecl;
11187 tree gen_tmpl;
11188 tree spec;
11189 HOST_WIDE_INT saved_processing_template_decl;
11191 if (tmpl == error_mark_node)
11192 return error_mark_node;
11194 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
11196 /* If this function is a clone, handle it specially. */
11197 if (DECL_CLONED_FUNCTION_P (tmpl))
11199 tree spec;
11200 tree clone;
11202 spec = instantiate_template (DECL_CLONED_FUNCTION (tmpl), targ_ptr,
11203 complain);
11204 if (spec == error_mark_node)
11205 return error_mark_node;
11207 /* Look for the clone. */
11208 FOR_EACH_CLONE (clone, spec)
11209 if (DECL_NAME (clone) == DECL_NAME (tmpl))
11210 return clone;
11211 /* We should always have found the clone by now. */
11212 gcc_unreachable ();
11213 return NULL_TREE;
11216 /* Check to see if we already have this specialization. */
11217 spec = retrieve_specialization (tmpl, targ_ptr,
11218 /*class_specializations_p=*/false);
11219 if (spec != NULL_TREE)
11220 return spec;
11222 gen_tmpl = most_general_template (tmpl);
11223 if (tmpl != gen_tmpl)
11225 /* The TMPL is a partial instantiation. To get a full set of
11226 arguments we must add the arguments used to perform the
11227 partial instantiation. */
11228 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
11229 targ_ptr);
11231 /* Check to see if we already have this specialization. */
11232 spec = retrieve_specialization (gen_tmpl, targ_ptr,
11233 /*class_specializations_p=*/false);
11234 if (spec != NULL_TREE)
11235 return spec;
11238 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
11239 complain))
11240 return error_mark_node;
11242 /* We are building a FUNCTION_DECL, during which the access of its
11243 parameters and return types have to be checked. However this
11244 FUNCTION_DECL which is the desired context for access checking
11245 is not built yet. We solve this chicken-and-egg problem by
11246 deferring all checks until we have the FUNCTION_DECL. */
11247 push_deferring_access_checks (dk_deferred);
11249 /* Although PROCESSING_TEMPLATE_DECL may be true at this point
11250 (because, for example, we have encountered a non-dependent
11251 function call in the body of a template function and must now
11252 determine which of several overloaded functions will be called),
11253 within the instantiation itself we are not processing a
11254 template. */
11255 saved_processing_template_decl = processing_template_decl;
11256 processing_template_decl = 0;
11257 /* Substitute template parameters to obtain the specialization. */
11258 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
11259 targ_ptr, complain, gen_tmpl);
11260 processing_template_decl = saved_processing_template_decl;
11261 if (fndecl == error_mark_node)
11262 return error_mark_node;
11264 /* Now we know the specialization, compute access previously
11265 deferred. */
11266 push_access_scope (fndecl);
11267 perform_deferred_access_checks ();
11268 pop_access_scope (fndecl);
11269 pop_deferring_access_checks ();
11271 /* The DECL_TI_TEMPLATE should always be the immediate parent
11272 template, not the most general template. */
11273 DECL_TI_TEMPLATE (fndecl) = tmpl;
11275 /* If we've just instantiated the main entry point for a function,
11276 instantiate all the alternate entry points as well. We do this
11277 by cloning the instantiation of the main entry point, not by
11278 instantiating the template clones. */
11279 if (TREE_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (TREE_CHAIN (gen_tmpl)))
11280 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
11282 return fndecl;
11285 /* The FN is a TEMPLATE_DECL for a function. The ARGS are the
11286 arguments that are being used when calling it. TARGS is a vector
11287 into which the deduced template arguments are placed.
11289 Return zero for success, 2 for an incomplete match that doesn't resolve
11290 all the types, and 1 for complete failure. An error message will be
11291 printed only for an incomplete match.
11293 If FN is a conversion operator, or we are trying to produce a specific
11294 specialization, RETURN_TYPE is the return type desired.
11296 The EXPLICIT_TARGS are explicit template arguments provided via a
11297 template-id.
11299 The parameter STRICT is one of:
11301 DEDUCE_CALL:
11302 We are deducing arguments for a function call, as in
11303 [temp.deduct.call].
11305 DEDUCE_CONV:
11306 We are deducing arguments for a conversion function, as in
11307 [temp.deduct.conv].
11309 DEDUCE_EXACT:
11310 We are deducing arguments when doing an explicit instantiation
11311 as in [temp.explicit], when determining an explicit specialization
11312 as in [temp.expl.spec], or when taking the address of a function
11313 template, as in [temp.deduct.funcaddr]. */
11316 fn_type_unification (tree fn,
11317 tree explicit_targs,
11318 tree targs,
11319 tree args,
11320 tree return_type,
11321 unification_kind_t strict,
11322 int flags)
11324 tree parms;
11325 tree fntype;
11326 int result;
11327 bool incomplete_argument_packs_p = false;
11329 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
11331 fntype = TREE_TYPE (fn);
11332 if (explicit_targs)
11334 /* [temp.deduct]
11336 The specified template arguments must match the template
11337 parameters in kind (i.e., type, nontype, template), and there
11338 must not be more arguments than there are parameters;
11339 otherwise type deduction fails.
11341 Nontype arguments must match the types of the corresponding
11342 nontype template parameters, or must be convertible to the
11343 types of the corresponding nontype parameters as specified in
11344 _temp.arg.nontype_, otherwise type deduction fails.
11346 All references in the function type of the function template
11347 to the corresponding template parameters are replaced by the
11348 specified template argument values. If a substitution in a
11349 template parameter or in the function type of the function
11350 template results in an invalid type, type deduction fails. */
11351 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
11352 int i, len = TREE_VEC_LENGTH (tparms);
11353 tree converted_args;
11354 bool incomplete = false;
11356 if (explicit_targs == error_mark_node)
11357 return 1;
11359 converted_args
11360 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE, tf_none,
11361 /*require_all_args=*/false,
11362 /*use_default_args=*/false));
11363 if (converted_args == error_mark_node)
11364 return 1;
11366 /* Substitute the explicit args into the function type. This is
11367 necessary so that, for instance, explicitly declared function
11368 arguments can match null pointed constants. If we were given
11369 an incomplete set of explicit args, we must not do semantic
11370 processing during substitution as we could create partial
11371 instantiations. */
11372 for (i = 0; i < len; i++)
11374 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
11375 bool parameter_pack = false;
11377 /* Dig out the actual parm. */
11378 if (TREE_CODE (parm) == TYPE_DECL
11379 || TREE_CODE (parm) == TEMPLATE_DECL)
11381 parm = TREE_TYPE (parm);
11382 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
11384 else if (TREE_CODE (parm) == PARM_DECL)
11386 parm = DECL_INITIAL (parm);
11387 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
11390 if (parameter_pack)
11392 int level, idx;
11393 tree targ;
11394 template_parm_level_and_index (parm, &level, &idx);
11396 /* Mark the argument pack as "incomplete". We could
11397 still deduce more arguments during unification. */
11398 targ = TMPL_ARG (converted_args, level, idx);
11399 if (targ)
11401 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
11402 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
11403 = ARGUMENT_PACK_ARGS (targ);
11406 /* We have some incomplete argument packs. */
11407 incomplete_argument_packs_p = true;
11411 if (incomplete_argument_packs_p)
11412 /* Any substitution is guaranteed to be incomplete if there
11413 are incomplete argument packs, because we can still deduce
11414 more arguments. */
11415 incomplete = 1;
11416 else
11417 incomplete = NUM_TMPL_ARGS (explicit_targs) != NUM_TMPL_ARGS (targs);
11419 processing_template_decl += incomplete;
11420 fntype = tsubst (fntype, converted_args, tf_none, NULL_TREE);
11421 processing_template_decl -= incomplete;
11423 if (fntype == error_mark_node)
11424 return 1;
11426 /* Place the explicitly specified arguments in TARGS. */
11427 for (i = NUM_TMPL_ARGS (converted_args); i--;)
11428 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
11431 /* Never do unification on the 'this' parameter. */
11432 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
11434 if (return_type)
11436 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
11437 args = tree_cons (NULL_TREE, return_type, args);
11440 /* We allow incomplete unification without an error message here
11441 because the standard doesn't seem to explicitly prohibit it. Our
11442 callers must be ready to deal with unification failures in any
11443 event. */
11444 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
11445 targs, parms, args, /*subr=*/0,
11446 strict, flags);
11448 if (result == 0 && incomplete_argument_packs_p)
11450 int i, len = NUM_TMPL_ARGS (targs);
11452 /* Clear the "incomplete" flags on all argument packs. */
11453 for (i = 0; i < len; i++)
11455 tree arg = TREE_VEC_ELT (targs, i);
11456 if (ARGUMENT_PACK_P (arg))
11458 ARGUMENT_PACK_INCOMPLETE_P (arg) = 0;
11459 ARGUMENT_PACK_EXPLICIT_ARGS (arg) = NULL_TREE;
11464 if (result == 0)
11465 /* All is well so far. Now, check:
11467 [temp.deduct]
11469 When all template arguments have been deduced, all uses of
11470 template parameters in nondeduced contexts are replaced with
11471 the corresponding deduced argument values. If the
11472 substitution results in an invalid type, as described above,
11473 type deduction fails. */
11474 if (tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE)
11475 == error_mark_node)
11476 return 1;
11478 return result;
11481 /* Adjust types before performing type deduction, as described in
11482 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
11483 sections are symmetric. PARM is the type of a function parameter
11484 or the return type of the conversion function. ARG is the type of
11485 the argument passed to the call, or the type of the value
11486 initialized with the result of the conversion function.
11487 ARG_EXPR is the original argument expression, which may be null. */
11489 static int
11490 maybe_adjust_types_for_deduction (unification_kind_t strict,
11491 tree* parm,
11492 tree* arg,
11493 tree arg_expr)
11495 int result = 0;
11497 switch (strict)
11499 case DEDUCE_CALL:
11500 break;
11502 case DEDUCE_CONV:
11504 /* Swap PARM and ARG throughout the remainder of this
11505 function; the handling is precisely symmetric since PARM
11506 will initialize ARG rather than vice versa. */
11507 tree* temp = parm;
11508 parm = arg;
11509 arg = temp;
11510 break;
11513 case DEDUCE_EXACT:
11514 /* There is nothing to do in this case. */
11515 return 0;
11517 default:
11518 gcc_unreachable ();
11521 if (TREE_CODE (*parm) != REFERENCE_TYPE)
11523 /* [temp.deduct.call]
11525 If P is not a reference type:
11527 --If A is an array type, the pointer type produced by the
11528 array-to-pointer standard conversion (_conv.array_) is
11529 used in place of A for type deduction; otherwise,
11531 --If A is a function type, the pointer type produced by
11532 the function-to-pointer standard conversion
11533 (_conv.func_) is used in place of A for type deduction;
11534 otherwise,
11536 --If A is a cv-qualified type, the top level
11537 cv-qualifiers of A's type are ignored for type
11538 deduction. */
11539 if (TREE_CODE (*arg) == ARRAY_TYPE)
11540 *arg = build_pointer_type (TREE_TYPE (*arg));
11541 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
11542 *arg = build_pointer_type (*arg);
11543 else
11544 *arg = TYPE_MAIN_VARIANT (*arg);
11547 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
11548 of the form T&&, where T is a template parameter, and the argument
11549 is an lvalue, T is deduced as A& */
11550 if (TREE_CODE (*parm) == REFERENCE_TYPE
11551 && TYPE_REF_IS_RVALUE (*parm)
11552 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
11553 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
11554 && arg_expr && real_lvalue_p (arg_expr))
11555 *arg = build_reference_type (*arg);
11557 /* [temp.deduct.call]
11559 If P is a cv-qualified type, the top level cv-qualifiers
11560 of P's type are ignored for type deduction. If P is a
11561 reference type, the type referred to by P is used for
11562 type deduction. */
11563 *parm = TYPE_MAIN_VARIANT (*parm);
11564 if (TREE_CODE (*parm) == REFERENCE_TYPE)
11566 *parm = TREE_TYPE (*parm);
11567 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
11570 /* DR 322. For conversion deduction, remove a reference type on parm
11571 too (which has been swapped into ARG). */
11572 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
11573 *arg = TREE_TYPE (*arg);
11575 return result;
11578 /* Most parms like fn_type_unification.
11580 If SUBR is 1, we're being called recursively (to unify the
11581 arguments of a function or method parameter of a function
11582 template). */
11584 static int
11585 type_unification_real (tree tparms,
11586 tree targs,
11587 tree xparms,
11588 tree xargs,
11589 int subr,
11590 unification_kind_t strict,
11591 int flags)
11593 tree parm, arg, arg_expr;
11594 int i;
11595 int ntparms = TREE_VEC_LENGTH (tparms);
11596 int sub_strict;
11597 int saw_undeduced = 0;
11598 tree parms, args;
11600 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
11601 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
11602 gcc_assert (!xargs || TREE_CODE (xargs) == TREE_LIST);
11603 gcc_assert (ntparms > 0);
11605 switch (strict)
11607 case DEDUCE_CALL:
11608 sub_strict = (UNIFY_ALLOW_OUTER_LEVEL | UNIFY_ALLOW_MORE_CV_QUAL
11609 | UNIFY_ALLOW_DERIVED);
11610 break;
11612 case DEDUCE_CONV:
11613 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
11614 break;
11616 case DEDUCE_EXACT:
11617 sub_strict = UNIFY_ALLOW_NONE;
11618 break;
11620 default:
11621 gcc_unreachable ();
11624 again:
11625 parms = xparms;
11626 args = xargs;
11628 while (parms && parms != void_list_node
11629 && args && args != void_list_node)
11631 if (TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
11632 break;
11634 parm = TREE_VALUE (parms);
11635 parms = TREE_CHAIN (parms);
11636 arg = TREE_VALUE (args);
11637 args = TREE_CHAIN (args);
11638 arg_expr = NULL;
11640 if (arg == error_mark_node)
11641 return 1;
11642 if (arg == unknown_type_node)
11643 /* We can't deduce anything from this, but we might get all the
11644 template args from other function args. */
11645 continue;
11647 /* Conversions will be performed on a function argument that
11648 corresponds with a function parameter that contains only
11649 non-deducible template parameters and explicitly specified
11650 template parameters. */
11651 if (!uses_template_parms (parm))
11653 tree type;
11655 if (!TYPE_P (arg))
11656 type = TREE_TYPE (arg);
11657 else
11658 type = arg;
11660 if (same_type_p (parm, type))
11661 continue;
11662 if (strict != DEDUCE_EXACT
11663 && can_convert_arg (parm, type, TYPE_P (arg) ? NULL_TREE : arg,
11664 flags))
11665 continue;
11667 return 1;
11670 if (!TYPE_P (arg))
11672 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
11673 if (type_unknown_p (arg))
11675 /* [temp.deduct.type]
11677 A template-argument can be deduced from a pointer to
11678 function or pointer to member function argument if
11679 the set of overloaded functions does not contain
11680 function templates and at most one of a set of
11681 overloaded functions provides a unique match. */
11682 if (resolve_overloaded_unification
11683 (tparms, targs, parm, arg, strict, sub_strict))
11684 continue;
11686 return 1;
11688 arg_expr = arg;
11689 arg = unlowered_expr_type (arg);
11690 if (arg == error_mark_node)
11691 return 1;
11695 int arg_strict = sub_strict;
11697 if (!subr)
11698 arg_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg,
11699 arg_expr);
11701 if (unify (tparms, targs, parm, arg, arg_strict))
11702 return 1;
11707 if (parms
11708 && parms != void_list_node
11709 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
11711 /* Unify the remaining arguments with the pack expansion type. */
11712 tree argvec;
11713 tree parmvec = make_tree_vec (1);
11714 int len = 0;
11715 tree t;
11717 /* Count the number of arguments that remain. */
11718 for (t = args; t && t != void_list_node; t = TREE_CHAIN (t))
11719 len++;
11721 /* Allocate a TREE_VEC and copy in all of the arguments */
11722 argvec = make_tree_vec (len);
11723 for (i = 0; args && args != void_list_node; args = TREE_CHAIN (args))
11725 TREE_VEC_ELT (argvec, i) = TREE_VALUE (args);
11726 ++i;
11729 /* Copy the parameter into parmvec. */
11730 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
11731 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
11732 /*call_args_p=*/true, /*subr=*/subr))
11733 return 1;
11735 /* Advance to the end of the list of parameters. */
11736 parms = TREE_CHAIN (parms);
11739 /* Fail if we've reached the end of the parm list, and more args
11740 are present, and the parm list isn't variadic. */
11741 if (args && args != void_list_node && parms == void_list_node)
11742 return 1;
11743 /* Fail if parms are left and they don't have default values. */
11744 if (parms && parms != void_list_node
11745 && TREE_PURPOSE (parms) == NULL_TREE)
11746 return 1;
11748 if (!subr)
11749 for (i = 0; i < ntparms; i++)
11750 if (!TREE_VEC_ELT (targs, i))
11752 tree tparm;
11754 if (TREE_VEC_ELT (tparms, i) == error_mark_node)
11755 continue;
11757 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
11759 /* If this is an undeduced nontype parameter that depends on
11760 a type parameter, try another pass; its type may have been
11761 deduced from a later argument than the one from which
11762 this parameter can be deduced. */
11763 if (TREE_CODE (tparm) == PARM_DECL
11764 && uses_template_parms (TREE_TYPE (tparm))
11765 && !saw_undeduced++)
11766 goto again;
11768 /* Core issue #226 (C++0x) [temp.deduct]:
11770 If a template argument has not been deduced, its
11771 default template argument, if any, is used.
11773 When we are in C++98 mode, TREE_PURPOSE will either
11774 be NULL_TREE or ERROR_MARK_NODE, so we do not need
11775 to explicitly check cxx_dialect here. */
11776 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
11778 tree arg = tsubst (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)),
11779 targs, tf_none, NULL_TREE);
11780 if (arg == error_mark_node)
11781 return 1;
11782 else
11784 TREE_VEC_ELT (targs, i) = arg;
11785 continue;
11789 /* If the type parameter is a parameter pack, then it will
11790 be deduced to an empty parameter pack. */
11791 if (template_parameter_pack_p (tparm))
11793 tree arg;
11795 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
11797 arg = make_node (NONTYPE_ARGUMENT_PACK);
11798 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
11799 TREE_CONSTANT (arg) = 1;
11801 else
11802 arg = make_node (TYPE_ARGUMENT_PACK);
11804 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
11806 TREE_VEC_ELT (targs, i) = arg;
11807 continue;
11810 return 2;
11813 return 0;
11816 /* Subroutine of type_unification_real. Args are like the variables
11817 at the call site. ARG is an overloaded function (or template-id);
11818 we try deducing template args from each of the overloads, and if
11819 only one succeeds, we go with that. Modifies TARGS and returns
11820 true on success. */
11822 static bool
11823 resolve_overloaded_unification (tree tparms,
11824 tree targs,
11825 tree parm,
11826 tree arg,
11827 unification_kind_t strict,
11828 int sub_strict)
11830 tree tempargs = copy_node (targs);
11831 int good = 0;
11832 bool addr_p;
11834 if (TREE_CODE (arg) == ADDR_EXPR)
11836 arg = TREE_OPERAND (arg, 0);
11837 addr_p = true;
11839 else
11840 addr_p = false;
11842 if (TREE_CODE (arg) == COMPONENT_REF)
11843 /* Handle `&x' where `x' is some static or non-static member
11844 function name. */
11845 arg = TREE_OPERAND (arg, 1);
11847 if (TREE_CODE (arg) == OFFSET_REF)
11848 arg = TREE_OPERAND (arg, 1);
11850 /* Strip baselink information. */
11851 if (BASELINK_P (arg))
11852 arg = BASELINK_FUNCTIONS (arg);
11854 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
11856 /* If we got some explicit template args, we need to plug them into
11857 the affected templates before we try to unify, in case the
11858 explicit args will completely resolve the templates in question. */
11860 tree expl_subargs = TREE_OPERAND (arg, 1);
11861 arg = TREE_OPERAND (arg, 0);
11863 for (; arg; arg = OVL_NEXT (arg))
11865 tree fn = OVL_CURRENT (arg);
11866 tree subargs, elem;
11868 if (TREE_CODE (fn) != TEMPLATE_DECL)
11869 continue;
11871 subargs = get_bindings (fn, DECL_TEMPLATE_RESULT (fn),
11872 expl_subargs, /*check_ret=*/false);
11873 if (subargs)
11875 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
11876 good += try_one_overload (tparms, targs, tempargs, parm,
11877 elem, strict, sub_strict, addr_p);
11881 else if (TREE_CODE (arg) != OVERLOAD
11882 && TREE_CODE (arg) != FUNCTION_DECL)
11883 /* If ARG is, for example, "(0, &f)" then its type will be unknown
11884 -- but the deduction does not succeed because the expression is
11885 not just the function on its own. */
11886 return false;
11887 else
11888 for (; arg; arg = OVL_NEXT (arg))
11889 good += try_one_overload (tparms, targs, tempargs, parm,
11890 TREE_TYPE (OVL_CURRENT (arg)),
11891 strict, sub_strict, addr_p);
11893 /* [temp.deduct.type] A template-argument can be deduced from a pointer
11894 to function or pointer to member function argument if the set of
11895 overloaded functions does not contain function templates and at most
11896 one of a set of overloaded functions provides a unique match.
11898 So if we found multiple possibilities, we return success but don't
11899 deduce anything. */
11901 if (good == 1)
11903 int i = TREE_VEC_LENGTH (targs);
11904 for (; i--; )
11905 if (TREE_VEC_ELT (tempargs, i))
11906 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
11908 if (good)
11909 return true;
11911 return false;
11914 /* Subroutine of resolve_overloaded_unification; does deduction for a single
11915 overload. Fills TARGS with any deduced arguments, or error_mark_node if
11916 different overloads deduce different arguments for a given parm.
11917 ADDR_P is true if the expression for which deduction is being
11918 performed was of the form "& fn" rather than simply "fn".
11920 Returns 1 on success. */
11922 static int
11923 try_one_overload (tree tparms,
11924 tree orig_targs,
11925 tree targs,
11926 tree parm,
11927 tree arg,
11928 unification_kind_t strict,
11929 int sub_strict,
11930 bool addr_p)
11932 int nargs;
11933 tree tempargs;
11934 int i;
11936 /* [temp.deduct.type] A template-argument can be deduced from a pointer
11937 to function or pointer to member function argument if the set of
11938 overloaded functions does not contain function templates and at most
11939 one of a set of overloaded functions provides a unique match.
11941 So if this is a template, just return success. */
11943 if (uses_template_parms (arg))
11944 return 1;
11946 if (TREE_CODE (arg) == METHOD_TYPE)
11947 arg = build_ptrmemfunc_type (build_pointer_type (arg));
11948 else if (addr_p)
11949 arg = build_pointer_type (arg);
11951 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
11953 /* We don't copy orig_targs for this because if we have already deduced
11954 some template args from previous args, unify would complain when we
11955 try to deduce a template parameter for the same argument, even though
11956 there isn't really a conflict. */
11957 nargs = TREE_VEC_LENGTH (targs);
11958 tempargs = make_tree_vec (nargs);
11960 if (unify (tparms, tempargs, parm, arg, sub_strict) != 0)
11961 return 0;
11963 /* First make sure we didn't deduce anything that conflicts with
11964 explicitly specified args. */
11965 for (i = nargs; i--; )
11967 tree elt = TREE_VEC_ELT (tempargs, i);
11968 tree oldelt = TREE_VEC_ELT (orig_targs, i);
11970 if (!elt)
11971 /*NOP*/;
11972 else if (uses_template_parms (elt))
11973 /* Since we're unifying against ourselves, we will fill in
11974 template args used in the function parm list with our own
11975 template parms. Discard them. */
11976 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
11977 else if (oldelt && !template_args_equal (oldelt, elt))
11978 return 0;
11981 for (i = nargs; i--; )
11983 tree elt = TREE_VEC_ELT (tempargs, i);
11985 if (elt)
11986 TREE_VEC_ELT (targs, i) = elt;
11989 return 1;
11992 /* PARM is a template class (perhaps with unbound template
11993 parameters). ARG is a fully instantiated type. If ARG can be
11994 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
11995 TARGS are as for unify. */
11997 static tree
11998 try_class_unification (tree tparms, tree targs, tree parm, tree arg)
12000 tree copy_of_targs;
12002 if (!CLASSTYPE_TEMPLATE_INFO (arg)
12003 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
12004 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
12005 return NULL_TREE;
12007 /* We need to make a new template argument vector for the call to
12008 unify. If we used TARGS, we'd clutter it up with the result of
12009 the attempted unification, even if this class didn't work out.
12010 We also don't want to commit ourselves to all the unifications
12011 we've already done, since unification is supposed to be done on
12012 an argument-by-argument basis. In other words, consider the
12013 following pathological case:
12015 template <int I, int J, int K>
12016 struct S {};
12018 template <int I, int J>
12019 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
12021 template <int I, int J, int K>
12022 void f(S<I, J, K>, S<I, I, I>);
12024 void g() {
12025 S<0, 0, 0> s0;
12026 S<0, 1, 2> s2;
12028 f(s0, s2);
12031 Now, by the time we consider the unification involving `s2', we
12032 already know that we must have `f<0, 0, 0>'. But, even though
12033 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
12034 because there are two ways to unify base classes of S<0, 1, 2>
12035 with S<I, I, I>. If we kept the already deduced knowledge, we
12036 would reject the possibility I=1. */
12037 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
12039 /* If unification failed, we're done. */
12040 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
12041 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE))
12042 return NULL_TREE;
12044 return arg;
12047 /* Given a template type PARM and a class type ARG, find the unique
12048 base type in ARG that is an instance of PARM. We do not examine
12049 ARG itself; only its base-classes. If there is not exactly one
12050 appropriate base class, return NULL_TREE. PARM may be the type of
12051 a partial specialization, as well as a plain template type. Used
12052 by unify. */
12054 static tree
12055 get_template_base (tree tparms, tree targs, tree parm, tree arg)
12057 tree rval = NULL_TREE;
12058 tree binfo;
12060 gcc_assert (IS_AGGR_TYPE_CODE (TREE_CODE (arg)));
12062 binfo = TYPE_BINFO (complete_type (arg));
12063 if (!binfo)
12064 /* The type could not be completed. */
12065 return NULL_TREE;
12067 /* Walk in inheritance graph order. The search order is not
12068 important, and this avoids multiple walks of virtual bases. */
12069 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
12071 tree r = try_class_unification (tparms, targs, parm, BINFO_TYPE (binfo));
12073 if (r)
12075 /* If there is more than one satisfactory baseclass, then:
12077 [temp.deduct.call]
12079 If they yield more than one possible deduced A, the type
12080 deduction fails.
12082 applies. */
12083 if (rval && !same_type_p (r, rval))
12084 return NULL_TREE;
12086 rval = r;
12090 return rval;
12093 /* Returns the level of DECL, which declares a template parameter. */
12095 static int
12096 template_decl_level (tree decl)
12098 switch (TREE_CODE (decl))
12100 case TYPE_DECL:
12101 case TEMPLATE_DECL:
12102 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
12104 case PARM_DECL:
12105 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
12107 default:
12108 gcc_unreachable ();
12110 return 0;
12113 /* Decide whether ARG can be unified with PARM, considering only the
12114 cv-qualifiers of each type, given STRICT as documented for unify.
12115 Returns nonzero iff the unification is OK on that basis. */
12117 static int
12118 check_cv_quals_for_unify (int strict, tree arg, tree parm)
12120 int arg_quals = cp_type_quals (arg);
12121 int parm_quals = cp_type_quals (parm);
12123 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
12124 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
12126 /* Although a CVR qualifier is ignored when being applied to a
12127 substituted template parameter ([8.3.2]/1 for example), that
12128 does not apply during deduction [14.8.2.4]/1, (even though
12129 that is not explicitly mentioned, [14.8.2.4]/9 indicates
12130 this). Except when we're allowing additional CV qualifiers
12131 at the outer level [14.8.2.1]/3,1st bullet. */
12132 if ((TREE_CODE (arg) == REFERENCE_TYPE
12133 || TREE_CODE (arg) == FUNCTION_TYPE
12134 || TREE_CODE (arg) == METHOD_TYPE)
12135 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
12136 return 0;
12138 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
12139 && (parm_quals & TYPE_QUAL_RESTRICT))
12140 return 0;
12143 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
12144 && (arg_quals & parm_quals) != parm_quals)
12145 return 0;
12147 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
12148 && (parm_quals & arg_quals) != arg_quals)
12149 return 0;
12151 return 1;
12154 /* Determines the LEVEL and INDEX for the template parameter PARM. */
12155 void
12156 template_parm_level_and_index (tree parm, int* level, int* index)
12158 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
12159 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
12160 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
12162 *index = TEMPLATE_TYPE_IDX (parm);
12163 *level = TEMPLATE_TYPE_LEVEL (parm);
12165 else
12167 *index = TEMPLATE_PARM_IDX (parm);
12168 *level = TEMPLATE_PARM_LEVEL (parm);
12172 /* Unifies the remaining arguments in PACKED_ARGS with the pack
12173 expansion at the end of PACKED_PARMS. Returns 0 if the type
12174 deduction succeeds, 1 otherwise. STRICT is the same as in
12175 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
12176 call argument list. We'll need to adjust the arguments to make them
12177 types. SUBR tells us if this is from a recursive call to
12178 type_unification_real. */
12180 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
12181 tree packed_args, int strict, bool call_args_p,
12182 bool subr)
12184 tree parm
12185 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
12186 tree pattern = PACK_EXPANSION_PATTERN (parm);
12187 tree pack, packs = NULL_TREE;
12188 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
12189 int len = TREE_VEC_LENGTH (packed_args);
12191 /* Determine the parameter packs we will be deducing from the
12192 pattern, and record their current deductions. */
12193 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
12194 pack; pack = TREE_CHAIN (pack))
12196 tree parm_pack = TREE_VALUE (pack);
12197 int idx, level;
12199 /* Determine the index and level of this parameter pack. */
12200 template_parm_level_and_index (parm_pack, &level, &idx);
12202 /* Keep track of the parameter packs and their corresponding
12203 argument packs. */
12204 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
12205 TREE_TYPE (packs) = make_tree_vec (len - start);
12208 /* Loop through all of the arguments that have not yet been
12209 unified and unify each with the pattern. */
12210 for (i = start; i < len; i++)
12212 tree parm = pattern;
12214 /* For each parameter pack, clear out the deduced value so that
12215 we can deduce it again. */
12216 for (pack = packs; pack; pack = TREE_CHAIN (pack))
12218 int idx, level;
12219 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12221 TMPL_ARG (targs, level, idx) = NULL_TREE;
12224 /* Unify the pattern with the current argument. */
12226 tree arg = TREE_VEC_ELT (packed_args, i);
12227 int arg_strict = strict;
12228 bool skip_arg_p = false;
12230 if (call_args_p)
12232 int sub_strict;
12234 /* This mirrors what we do in type_unification_real. */
12235 switch (strict)
12237 case DEDUCE_CALL:
12238 sub_strict = (UNIFY_ALLOW_OUTER_LEVEL
12239 | UNIFY_ALLOW_MORE_CV_QUAL
12240 | UNIFY_ALLOW_DERIVED);
12241 break;
12243 case DEDUCE_CONV:
12244 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
12245 break;
12247 case DEDUCE_EXACT:
12248 sub_strict = UNIFY_ALLOW_NONE;
12249 break;
12251 default:
12252 gcc_unreachable ();
12255 if (!TYPE_P (arg))
12257 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
12258 if (type_unknown_p (arg))
12260 /* [temp.deduct.type] A template-argument can be
12261 deduced from a pointer to function or pointer
12262 to member function argument if the set of
12263 overloaded functions does not contain function
12264 templates and at most one of a set of
12265 overloaded functions provides a unique
12266 match. */
12268 if (resolve_overloaded_unification
12269 (tparms, targs, parm, arg, strict, sub_strict)
12270 != 0)
12271 return 1;
12272 skip_arg_p = true;
12275 if (!skip_arg_p)
12277 arg = TREE_TYPE (arg);
12278 if (arg == error_mark_node)
12279 return 1;
12283 arg_strict = sub_strict;
12285 if (!subr)
12286 arg_strict |=
12287 maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
12290 if (!skip_arg_p)
12292 if (unify (tparms, targs, parm, arg, arg_strict))
12293 return 1;
12297 /* For each parameter pack, collect the deduced value. */
12298 for (pack = packs; pack; pack = TREE_CHAIN (pack))
12300 int idx, level;
12301 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12303 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
12304 TMPL_ARG (targs, level, idx);
12308 /* Verify that the results of unification with the parameter packs
12309 produce results consistent with what we've seen before, and make
12310 the deduced argument packs available. */
12311 for (pack = packs; pack; pack = TREE_CHAIN (pack))
12313 tree old_pack = TREE_VALUE (pack);
12314 tree new_args = TREE_TYPE (pack);
12316 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
12318 /* Prepend the explicit arguments onto NEW_ARGS. */
12319 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
12320 tree old_args = new_args;
12321 int i, explicit_len = TREE_VEC_LENGTH (explicit_args);
12322 int len = explicit_len + TREE_VEC_LENGTH (old_args);
12324 /* Copy the explicit arguments. */
12325 new_args = make_tree_vec (len);
12326 for (i = 0; i < explicit_len; i++)
12327 TREE_VEC_ELT (new_args, i) = TREE_VEC_ELT (explicit_args, i);
12329 /* Copy the deduced arguments. */
12330 for (; i < len; i++)
12331 TREE_VEC_ELT (new_args, i) =
12332 TREE_VEC_ELT (old_args, i - explicit_len);
12335 if (!old_pack)
12337 tree result;
12338 int idx, level;
12340 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12342 /* Build the deduced *_ARGUMENT_PACK. */
12343 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
12345 result = make_node (NONTYPE_ARGUMENT_PACK);
12346 TREE_TYPE (result) =
12347 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
12348 TREE_CONSTANT (result) = 1;
12350 else
12351 result = make_node (TYPE_ARGUMENT_PACK);
12353 SET_ARGUMENT_PACK_ARGS (result, new_args);
12355 /* Note the deduced argument packs for this parameter
12356 pack. */
12357 TMPL_ARG (targs, level, idx) = result;
12359 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
12360 && (ARGUMENT_PACK_ARGS (old_pack)
12361 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
12363 /* We only had the explicitly-provided arguments before, but
12364 now we have a complete set of arguments. */
12365 int idx, level;
12366 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
12367 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12369 /* Keep the original deduced argument pack. */
12370 TMPL_ARG (targs, level, idx) = old_pack;
12372 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
12373 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
12374 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
12376 else if (!comp_template_args (ARGUMENT_PACK_ARGS (old_pack),
12377 new_args))
12378 /* Inconsistent unification of this parameter pack. */
12379 return 1;
12380 else
12382 int idx, level;
12384 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12386 /* Keep the original deduced argument pack. */
12387 TMPL_ARG (targs, level, idx) = old_pack;
12391 return 0;
12394 /* Deduce the value of template parameters. TPARMS is the (innermost)
12395 set of template parameters to a template. TARGS is the bindings
12396 for those template parameters, as determined thus far; TARGS may
12397 include template arguments for outer levels of template parameters
12398 as well. PARM is a parameter to a template function, or a
12399 subcomponent of that parameter; ARG is the corresponding argument.
12400 This function attempts to match PARM with ARG in a manner
12401 consistent with the existing assignments in TARGS. If more values
12402 are deduced, then TARGS is updated.
12404 Returns 0 if the type deduction succeeds, 1 otherwise. The
12405 parameter STRICT is a bitwise or of the following flags:
12407 UNIFY_ALLOW_NONE:
12408 Require an exact match between PARM and ARG.
12409 UNIFY_ALLOW_MORE_CV_QUAL:
12410 Allow the deduced ARG to be more cv-qualified (by qualification
12411 conversion) than ARG.
12412 UNIFY_ALLOW_LESS_CV_QUAL:
12413 Allow the deduced ARG to be less cv-qualified than ARG.
12414 UNIFY_ALLOW_DERIVED:
12415 Allow the deduced ARG to be a template base class of ARG,
12416 or a pointer to a template base class of the type pointed to by
12417 ARG.
12418 UNIFY_ALLOW_INTEGER:
12419 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
12420 case for more information.
12421 UNIFY_ALLOW_OUTER_LEVEL:
12422 This is the outermost level of a deduction. Used to determine validity
12423 of qualification conversions. A valid qualification conversion must
12424 have const qualified pointers leading up to the inner type which
12425 requires additional CV quals, except at the outer level, where const
12426 is not required [conv.qual]. It would be normal to set this flag in
12427 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
12428 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
12429 This is the outermost level of a deduction, and PARM can be more CV
12430 qualified at this point.
12431 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
12432 This is the outermost level of a deduction, and PARM can be less CV
12433 qualified at this point. */
12435 static int
12436 unify (tree tparms, tree targs, tree parm, tree arg, int strict)
12438 int idx;
12439 tree targ;
12440 tree tparm;
12441 int strict_in = strict;
12443 /* I don't think this will do the right thing with respect to types.
12444 But the only case I've seen it in so far has been array bounds, where
12445 signedness is the only information lost, and I think that will be
12446 okay. */
12447 while (TREE_CODE (parm) == NOP_EXPR)
12448 parm = TREE_OPERAND (parm, 0);
12450 if (arg == error_mark_node)
12451 return 1;
12452 if (arg == unknown_type_node)
12453 /* We can't deduce anything from this, but we might get all the
12454 template args from other function args. */
12455 return 0;
12457 /* If PARM uses template parameters, then we can't bail out here,
12458 even if ARG == PARM, since we won't record unifications for the
12459 template parameters. We might need them if we're trying to
12460 figure out which of two things is more specialized. */
12461 if (arg == parm && !uses_template_parms (parm))
12462 return 0;
12464 /* Immediately reject some pairs that won't unify because of
12465 cv-qualification mismatches. */
12466 if (TREE_CODE (arg) == TREE_CODE (parm)
12467 && TYPE_P (arg)
12468 /* It is the elements of the array which hold the cv quals of an array
12469 type, and the elements might be template type parms. We'll check
12470 when we recurse. */
12471 && TREE_CODE (arg) != ARRAY_TYPE
12472 /* We check the cv-qualifiers when unifying with template type
12473 parameters below. We want to allow ARG `const T' to unify with
12474 PARM `T' for example, when computing which of two templates
12475 is more specialized, for example. */
12476 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
12477 && !check_cv_quals_for_unify (strict_in, arg, parm))
12478 return 1;
12480 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
12481 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
12482 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
12483 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
12484 strict &= ~UNIFY_ALLOW_DERIVED;
12485 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
12486 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
12488 switch (TREE_CODE (parm))
12490 case TYPENAME_TYPE:
12491 case SCOPE_REF:
12492 case UNBOUND_CLASS_TEMPLATE:
12493 /* In a type which contains a nested-name-specifier, template
12494 argument values cannot be deduced for template parameters used
12495 within the nested-name-specifier. */
12496 return 0;
12498 case TEMPLATE_TYPE_PARM:
12499 case TEMPLATE_TEMPLATE_PARM:
12500 case BOUND_TEMPLATE_TEMPLATE_PARM:
12501 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
12502 if (tparm == error_mark_node)
12503 return 1;
12505 if (TEMPLATE_TYPE_LEVEL (parm)
12506 != template_decl_level (tparm))
12507 /* The PARM is not one we're trying to unify. Just check
12508 to see if it matches ARG. */
12509 return (TREE_CODE (arg) == TREE_CODE (parm)
12510 && same_type_p (parm, arg)) ? 0 : 1;
12511 idx = TEMPLATE_TYPE_IDX (parm);
12512 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
12513 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
12515 /* Check for mixed types and values. */
12516 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
12517 && TREE_CODE (tparm) != TYPE_DECL)
12518 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
12519 && TREE_CODE (tparm) != TEMPLATE_DECL))
12520 return 1;
12522 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
12524 /* ARG must be constructed from a template class or a template
12525 template parameter. */
12526 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
12527 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
12528 return 1;
12531 tree parmvec = TYPE_TI_ARGS (parm);
12532 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
12533 tree argtmplvec
12534 = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_TI_TEMPLATE (arg));
12535 int i;
12537 /* The resolution to DR150 makes clear that default
12538 arguments for an N-argument may not be used to bind T
12539 to a template template parameter with fewer than N
12540 parameters. It is not safe to permit the binding of
12541 default arguments as an extension, as that may change
12542 the meaning of a conforming program. Consider:
12544 struct Dense { static const unsigned int dim = 1; };
12546 template <template <typename> class View,
12547 typename Block>
12548 void operator+(float, View<Block> const&);
12550 template <typename Block,
12551 unsigned int Dim = Block::dim>
12552 struct Lvalue_proxy { operator float() const; };
12554 void
12555 test_1d (void) {
12556 Lvalue_proxy<Dense> p;
12557 float b;
12558 b + p;
12561 Here, if Lvalue_proxy is permitted to bind to View, then
12562 the global operator+ will be used; if they are not, the
12563 Lvalue_proxy will be converted to float. */
12564 if (coerce_template_parms (argtmplvec, parmvec,
12565 TYPE_TI_TEMPLATE (parm),
12566 tf_none,
12567 /*require_all_args=*/true,
12568 /*use_default_args=*/false)
12569 == error_mark_node)
12570 return 1;
12572 /* Deduce arguments T, i from TT<T> or TT<i>.
12573 We check each element of PARMVEC and ARGVEC individually
12574 rather than the whole TREE_VEC since they can have
12575 different number of elements. */
12577 for (i = 0; i < TREE_VEC_LENGTH (parmvec); ++i)
12579 if (unify (tparms, targs,
12580 TREE_VEC_ELT (parmvec, i),
12581 TREE_VEC_ELT (argvec, i),
12582 UNIFY_ALLOW_NONE))
12583 return 1;
12586 arg = TYPE_TI_TEMPLATE (arg);
12588 /* Fall through to deduce template name. */
12591 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
12592 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
12594 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
12596 /* Simple cases: Value already set, does match or doesn't. */
12597 if (targ != NULL_TREE && template_args_equal (targ, arg))
12598 return 0;
12599 else if (targ)
12600 return 1;
12602 else
12604 /* If PARM is `const T' and ARG is only `int', we don't have
12605 a match unless we are allowing additional qualification.
12606 If ARG is `const int' and PARM is just `T' that's OK;
12607 that binds `const int' to `T'. */
12608 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
12609 arg, parm))
12610 return 1;
12612 /* Consider the case where ARG is `const volatile int' and
12613 PARM is `const T'. Then, T should be `volatile int'. */
12614 arg = cp_build_qualified_type_real
12615 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
12616 if (arg == error_mark_node)
12617 return 1;
12619 /* Simple cases: Value already set, does match or doesn't. */
12620 if (targ != NULL_TREE && same_type_p (targ, arg))
12621 return 0;
12622 else if (targ)
12623 return 1;
12625 /* Make sure that ARG is not a variable-sized array. (Note
12626 that were talking about variable-sized arrays (like
12627 `int[n]'), rather than arrays of unknown size (like
12628 `int[]').) We'll get very confused by such a type since
12629 the bound of the array will not be computable in an
12630 instantiation. Besides, such types are not allowed in
12631 ISO C++, so we can do as we please here. */
12632 if (variably_modified_type_p (arg, NULL_TREE))
12633 return 1;
12636 /* If ARG is a parameter pack or an expansion, we cannot unify
12637 against it unless PARM is also a parameter pack. */
12638 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
12639 && !template_parameter_pack_p (parm))
12640 return 1;
12642 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
12643 return 0;
12645 case TEMPLATE_PARM_INDEX:
12646 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
12647 if (tparm == error_mark_node)
12648 return 1;
12650 if (TEMPLATE_PARM_LEVEL (parm)
12651 != template_decl_level (tparm))
12652 /* The PARM is not one we're trying to unify. Just check
12653 to see if it matches ARG. */
12654 return !(TREE_CODE (arg) == TREE_CODE (parm)
12655 && cp_tree_equal (parm, arg));
12657 idx = TEMPLATE_PARM_IDX (parm);
12658 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
12660 if (targ)
12661 return !cp_tree_equal (targ, arg);
12663 /* [temp.deduct.type] If, in the declaration of a function template
12664 with a non-type template-parameter, the non-type
12665 template-parameter is used in an expression in the function
12666 parameter-list and, if the corresponding template-argument is
12667 deduced, the template-argument type shall match the type of the
12668 template-parameter exactly, except that a template-argument
12669 deduced from an array bound may be of any integral type.
12670 The non-type parameter might use already deduced type parameters. */
12671 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
12672 if (!TREE_TYPE (arg))
12673 /* Template-parameter dependent expression. Just accept it for now.
12674 It will later be processed in convert_template_argument. */
12676 else if (same_type_p (TREE_TYPE (arg), tparm))
12677 /* OK */;
12678 else if ((strict & UNIFY_ALLOW_INTEGER)
12679 && (TREE_CODE (tparm) == INTEGER_TYPE
12680 || TREE_CODE (tparm) == BOOLEAN_TYPE))
12681 /* Convert the ARG to the type of PARM; the deduced non-type
12682 template argument must exactly match the types of the
12683 corresponding parameter. */
12684 arg = fold (build_nop (TREE_TYPE (parm), arg));
12685 else if (uses_template_parms (tparm))
12686 /* We haven't deduced the type of this parameter yet. Try again
12687 later. */
12688 return 0;
12689 else
12690 return 1;
12692 /* If ARG is a parameter pack or an expansion, we cannot unify
12693 against it unless PARM is also a parameter pack. */
12694 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
12695 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
12696 return 1;
12698 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
12699 return 0;
12701 case PTRMEM_CST:
12703 /* A pointer-to-member constant can be unified only with
12704 another constant. */
12705 if (TREE_CODE (arg) != PTRMEM_CST)
12706 return 1;
12708 /* Just unify the class member. It would be useless (and possibly
12709 wrong, depending on the strict flags) to unify also
12710 PTRMEM_CST_CLASS, because we want to be sure that both parm and
12711 arg refer to the same variable, even if through different
12712 classes. For instance:
12714 struct A { int x; };
12715 struct B : A { };
12717 Unification of &A::x and &B::x must succeed. */
12718 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
12719 PTRMEM_CST_MEMBER (arg), strict);
12722 case POINTER_TYPE:
12724 if (TREE_CODE (arg) != POINTER_TYPE)
12725 return 1;
12727 /* [temp.deduct.call]
12729 A can be another pointer or pointer to member type that can
12730 be converted to the deduced A via a qualification
12731 conversion (_conv.qual_).
12733 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
12734 This will allow for additional cv-qualification of the
12735 pointed-to types if appropriate. */
12737 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
12738 /* The derived-to-base conversion only persists through one
12739 level of pointers. */
12740 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
12742 return unify (tparms, targs, TREE_TYPE (parm),
12743 TREE_TYPE (arg), strict);
12746 case REFERENCE_TYPE:
12747 if (TREE_CODE (arg) != REFERENCE_TYPE)
12748 return 1;
12749 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
12750 strict & UNIFY_ALLOW_MORE_CV_QUAL);
12752 case ARRAY_TYPE:
12753 if (TREE_CODE (arg) != ARRAY_TYPE)
12754 return 1;
12755 if ((TYPE_DOMAIN (parm) == NULL_TREE)
12756 != (TYPE_DOMAIN (arg) == NULL_TREE))
12757 return 1;
12758 if (TYPE_DOMAIN (parm) != NULL_TREE)
12760 tree parm_max;
12761 tree arg_max;
12762 bool parm_cst;
12763 bool arg_cst;
12765 /* Our representation of array types uses "N - 1" as the
12766 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
12767 not an integer constant. We cannot unify arbitrarily
12768 complex expressions, so we eliminate the MINUS_EXPRs
12769 here. */
12770 parm_max = TYPE_MAX_VALUE (TYPE_DOMAIN (parm));
12771 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
12772 if (!parm_cst)
12774 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
12775 parm_max = TREE_OPERAND (parm_max, 0);
12777 arg_max = TYPE_MAX_VALUE (TYPE_DOMAIN (arg));
12778 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
12779 if (!arg_cst)
12781 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
12782 trying to unify the type of a variable with the type
12783 of a template parameter. For example:
12785 template <unsigned int N>
12786 void f (char (&) [N]);
12787 int g();
12788 void h(int i) {
12789 char a[g(i)];
12790 f(a);
12793 Here, the type of the ARG will be "int [g(i)]", and
12794 may be a SAVE_EXPR, etc. */
12795 if (TREE_CODE (arg_max) != MINUS_EXPR)
12796 return 1;
12797 arg_max = TREE_OPERAND (arg_max, 0);
12800 /* If only one of the bounds used a MINUS_EXPR, compensate
12801 by adding one to the other bound. */
12802 if (parm_cst && !arg_cst)
12803 parm_max = fold_build2 (PLUS_EXPR,
12804 integer_type_node,
12805 parm_max,
12806 integer_one_node);
12807 else if (arg_cst && !parm_cst)
12808 arg_max = fold_build2 (PLUS_EXPR,
12809 integer_type_node,
12810 arg_max,
12811 integer_one_node);
12813 if (unify (tparms, targs, parm_max, arg_max, UNIFY_ALLOW_INTEGER))
12814 return 1;
12816 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
12817 strict & UNIFY_ALLOW_MORE_CV_QUAL);
12819 case REAL_TYPE:
12820 case COMPLEX_TYPE:
12821 case VECTOR_TYPE:
12822 case INTEGER_TYPE:
12823 case BOOLEAN_TYPE:
12824 case ENUMERAL_TYPE:
12825 case VOID_TYPE:
12826 if (TREE_CODE (arg) != TREE_CODE (parm))
12827 return 1;
12829 /* We have already checked cv-qualification at the top of the
12830 function. */
12831 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
12832 return 1;
12834 /* As far as unification is concerned, this wins. Later checks
12835 will invalidate it if necessary. */
12836 return 0;
12838 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
12839 /* Type INTEGER_CST can come from ordinary constant template args. */
12840 case INTEGER_CST:
12841 while (TREE_CODE (arg) == NOP_EXPR)
12842 arg = TREE_OPERAND (arg, 0);
12844 if (TREE_CODE (arg) != INTEGER_CST)
12845 return 1;
12846 return !tree_int_cst_equal (parm, arg);
12848 case TREE_VEC:
12850 int i;
12851 if (TREE_CODE (arg) != TREE_VEC)
12852 return 1;
12853 if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
12854 return 1;
12855 for (i = 0; i < TREE_VEC_LENGTH (parm); ++i)
12856 if (unify (tparms, targs,
12857 TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
12858 UNIFY_ALLOW_NONE))
12859 return 1;
12860 return 0;
12863 case RECORD_TYPE:
12864 case UNION_TYPE:
12865 if (TREE_CODE (arg) != TREE_CODE (parm))
12866 return 1;
12868 if (TYPE_PTRMEMFUNC_P (parm))
12870 if (!TYPE_PTRMEMFUNC_P (arg))
12871 return 1;
12873 return unify (tparms, targs,
12874 TYPE_PTRMEMFUNC_FN_TYPE (parm),
12875 TYPE_PTRMEMFUNC_FN_TYPE (arg),
12876 strict);
12879 if (CLASSTYPE_TEMPLATE_INFO (parm))
12881 tree t = NULL_TREE;
12883 if (strict_in & UNIFY_ALLOW_DERIVED)
12885 /* First, we try to unify the PARM and ARG directly. */
12886 t = try_class_unification (tparms, targs,
12887 parm, arg);
12889 if (!t)
12891 /* Fallback to the special case allowed in
12892 [temp.deduct.call]:
12894 If P is a class, and P has the form
12895 template-id, then A can be a derived class of
12896 the deduced A. Likewise, if P is a pointer to
12897 a class of the form template-id, A can be a
12898 pointer to a derived class pointed to by the
12899 deduced A. */
12900 t = get_template_base (tparms, targs, parm, arg);
12902 if (!t)
12903 return 1;
12906 else if (CLASSTYPE_TEMPLATE_INFO (arg)
12907 && (CLASSTYPE_TI_TEMPLATE (parm)
12908 == CLASSTYPE_TI_TEMPLATE (arg)))
12909 /* Perhaps PARM is something like S<U> and ARG is S<int>.
12910 Then, we should unify `int' and `U'. */
12911 t = arg;
12912 else
12913 /* There's no chance of unification succeeding. */
12914 return 1;
12916 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
12917 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE);
12919 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
12920 return 1;
12921 return 0;
12923 case METHOD_TYPE:
12924 case FUNCTION_TYPE:
12925 if (TREE_CODE (arg) != TREE_CODE (parm))
12926 return 1;
12928 /* CV qualifications for methods can never be deduced, they must
12929 match exactly. We need to check them explicitly here,
12930 because type_unification_real treats them as any other
12931 cvqualified parameter. */
12932 if (TREE_CODE (parm) == METHOD_TYPE
12933 && (!check_cv_quals_for_unify
12934 (UNIFY_ALLOW_NONE,
12935 TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (arg))),
12936 TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (parm))))))
12937 return 1;
12939 if (unify (tparms, targs, TREE_TYPE (parm),
12940 TREE_TYPE (arg), UNIFY_ALLOW_NONE))
12941 return 1;
12942 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
12943 TYPE_ARG_TYPES (arg), 1, DEDUCE_EXACT,
12944 LOOKUP_NORMAL);
12946 case OFFSET_TYPE:
12947 /* Unify a pointer to member with a pointer to member function, which
12948 deduces the type of the member as a function type. */
12949 if (TYPE_PTRMEMFUNC_P (arg))
12951 tree method_type;
12952 tree fntype;
12953 cp_cv_quals cv_quals;
12955 /* Check top-level cv qualifiers */
12956 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
12957 return 1;
12959 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
12960 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg), UNIFY_ALLOW_NONE))
12961 return 1;
12963 /* Determine the type of the function we are unifying against. */
12964 method_type = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (arg));
12965 fntype =
12966 build_function_type (TREE_TYPE (method_type),
12967 TREE_CHAIN (TYPE_ARG_TYPES (method_type)));
12969 /* Extract the cv-qualifiers of the member function from the
12970 implicit object parameter and place them on the function
12971 type to be restored later. */
12972 cv_quals =
12973 cp_type_quals(TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (method_type))));
12974 fntype = build_qualified_type (fntype, cv_quals);
12975 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict);
12978 if (TREE_CODE (arg) != OFFSET_TYPE)
12979 return 1;
12980 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
12981 TYPE_OFFSET_BASETYPE (arg), UNIFY_ALLOW_NONE))
12982 return 1;
12983 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
12984 strict);
12986 case CONST_DECL:
12987 if (DECL_TEMPLATE_PARM_P (parm))
12988 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict);
12989 if (arg != integral_constant_value (parm))
12990 return 1;
12991 return 0;
12993 case FIELD_DECL:
12994 case TEMPLATE_DECL:
12995 /* Matched cases are handled by the ARG == PARM test above. */
12996 return 1;
12998 case TYPE_ARGUMENT_PACK:
12999 case NONTYPE_ARGUMENT_PACK:
13001 tree packed_parms = ARGUMENT_PACK_ARGS (parm);
13002 tree packed_args = ARGUMENT_PACK_ARGS (arg);
13003 int i, len = TREE_VEC_LENGTH (packed_parms);
13004 int argslen = TREE_VEC_LENGTH (packed_args);
13005 int parm_variadic_p = 0;
13007 /* Check if the parameters end in a pack, making them variadic. */
13008 if (len > 0
13009 && PACK_EXPANSION_P (TREE_VEC_ELT (packed_parms, len - 1)))
13010 parm_variadic_p = 1;
13012 /* If we don't have enough arguments to satisfy the parameters
13013 (not counting the pack expression at the end), or we have
13014 too many arguments for a parameter list that doesn't end in
13015 a pack expression, we can't unify. */
13016 if (argslen < (len - parm_variadic_p)
13017 || (argslen > len && !parm_variadic_p))
13018 return 1;
13020 /* Unify all of the parameters that precede the (optional)
13021 pack expression. */
13022 for (i = 0; i < len - parm_variadic_p; ++i)
13024 if (unify (tparms, targs, TREE_VEC_ELT (packed_parms, i),
13025 TREE_VEC_ELT (packed_args, i), strict))
13026 return 1;
13029 if (parm_variadic_p)
13030 return unify_pack_expansion (tparms, targs,
13031 packed_parms, packed_args,
13032 strict, /*call_args_p=*/false,
13033 /*subr=*/false);
13034 return 0;
13037 break;
13039 case TYPEOF_TYPE:
13040 case DECLTYPE_TYPE:
13041 /* Cannot deduce anything from TYPEOF_TYPE or DECLTYPE_TYPE
13042 nodes. */
13043 return 0;
13045 default:
13046 gcc_assert (EXPR_P (parm));
13048 /* We must be looking at an expression. This can happen with
13049 something like:
13051 template <int I>
13052 void foo(S<I>, S<I + 2>);
13054 This is a "nondeduced context":
13056 [deduct.type]
13058 The nondeduced contexts are:
13060 --A type that is a template-id in which one or more of
13061 the template-arguments is an expression that references
13062 a template-parameter.
13064 In these cases, we assume deduction succeeded, but don't
13065 actually infer any unifications. */
13067 if (!uses_template_parms (parm)
13068 && !template_args_equal (parm, arg))
13069 return 1;
13070 else
13071 return 0;
13075 /* Note that DECL can be defined in this translation unit, if
13076 required. */
13078 static void
13079 mark_definable (tree decl)
13081 tree clone;
13082 DECL_NOT_REALLY_EXTERN (decl) = 1;
13083 FOR_EACH_CLONE (clone, decl)
13084 DECL_NOT_REALLY_EXTERN (clone) = 1;
13087 /* Called if RESULT is explicitly instantiated, or is a member of an
13088 explicitly instantiated class. */
13090 void
13091 mark_decl_instantiated (tree result, int extern_p)
13093 SET_DECL_EXPLICIT_INSTANTIATION (result);
13095 /* If this entity has already been written out, it's too late to
13096 make any modifications. */
13097 if (TREE_ASM_WRITTEN (result))
13098 return;
13100 if (TREE_CODE (result) != FUNCTION_DECL)
13101 /* The TREE_PUBLIC flag for function declarations will have been
13102 set correctly by tsubst. */
13103 TREE_PUBLIC (result) = 1;
13105 /* This might have been set by an earlier implicit instantiation. */
13106 DECL_COMDAT (result) = 0;
13108 if (extern_p)
13109 DECL_NOT_REALLY_EXTERN (result) = 0;
13110 else
13112 mark_definable (result);
13113 /* Always make artificials weak. */
13114 if (DECL_ARTIFICIAL (result) && flag_weak)
13115 comdat_linkage (result);
13116 /* For WIN32 we also want to put explicit instantiations in
13117 linkonce sections. */
13118 else if (TREE_PUBLIC (result))
13119 maybe_make_one_only (result);
13122 /* If EXTERN_P, then this function will not be emitted -- unless
13123 followed by an explicit instantiation, at which point its linkage
13124 will be adjusted. If !EXTERN_P, then this function will be
13125 emitted here. In neither circumstance do we want
13126 import_export_decl to adjust the linkage. */
13127 DECL_INTERFACE_KNOWN (result) = 1;
13130 /* Given two function templates PAT1 and PAT2, return:
13132 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
13133 -1 if PAT2 is more specialized than PAT1.
13134 0 if neither is more specialized.
13136 LEN indicates the number of parameters we should consider
13137 (defaulted parameters should not be considered).
13139 The 1998 std underspecified function template partial ordering, and
13140 DR214 addresses the issue. We take pairs of arguments, one from
13141 each of the templates, and deduce them against each other. One of
13142 the templates will be more specialized if all the *other*
13143 template's arguments deduce against its arguments and at least one
13144 of its arguments *does* *not* deduce against the other template's
13145 corresponding argument. Deduction is done as for class templates.
13146 The arguments used in deduction have reference and top level cv
13147 qualifiers removed. Iff both arguments were originally reference
13148 types *and* deduction succeeds in both directions, the template
13149 with the more cv-qualified argument wins for that pairing (if
13150 neither is more cv-qualified, they both are equal). Unlike regular
13151 deduction, after all the arguments have been deduced in this way,
13152 we do *not* verify the deduced template argument values can be
13153 substituted into non-deduced contexts, nor do we have to verify
13154 that all template arguments have been deduced. */
13157 more_specialized_fn (tree pat1, tree pat2, int len)
13159 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
13160 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
13161 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
13162 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
13163 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
13164 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
13165 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
13166 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
13167 int better1 = 0;
13168 int better2 = 0;
13170 /* Remove the this parameter from non-static member functions. If
13171 one is a non-static member function and the other is not a static
13172 member function, remove the first parameter from that function
13173 also. This situation occurs for operator functions where we
13174 locate both a member function (with this pointer) and non-member
13175 operator (with explicit first operand). */
13176 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
13178 len--; /* LEN is the number of significant arguments for DECL1 */
13179 args1 = TREE_CHAIN (args1);
13180 if (!DECL_STATIC_FUNCTION_P (decl2))
13181 args2 = TREE_CHAIN (args2);
13183 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
13185 args2 = TREE_CHAIN (args2);
13186 if (!DECL_STATIC_FUNCTION_P (decl1))
13188 len--;
13189 args1 = TREE_CHAIN (args1);
13193 /* If only one is a conversion operator, they are unordered. */
13194 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
13195 return 0;
13197 /* Consider the return type for a conversion function */
13198 if (DECL_CONV_FN_P (decl1))
13200 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
13201 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
13202 len++;
13205 processing_template_decl++;
13207 while (len--)
13209 tree arg1 = TREE_VALUE (args1);
13210 tree arg2 = TREE_VALUE (args2);
13211 int deduce1, deduce2;
13212 int quals1 = -1;
13213 int quals2 = -1;
13215 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
13216 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
13218 /* When both arguments are pack expansions, we need only
13219 unify the patterns themselves. */
13220 arg1 = PACK_EXPANSION_PATTERN (arg1);
13221 arg2 = PACK_EXPANSION_PATTERN (arg2);
13223 /* This is the last comparison we need to do. */
13224 len = 0;
13227 if (TREE_CODE (arg1) == REFERENCE_TYPE)
13229 arg1 = TREE_TYPE (arg1);
13230 quals1 = cp_type_quals (arg1);
13233 if (TREE_CODE (arg2) == REFERENCE_TYPE)
13235 arg2 = TREE_TYPE (arg2);
13236 quals2 = cp_type_quals (arg2);
13239 if ((quals1 < 0) != (quals2 < 0))
13241 /* Only of the args is a reference, see if we should apply
13242 array/function pointer decay to it. This is not part of
13243 DR214, but is, IMHO, consistent with the deduction rules
13244 for the function call itself, and with our earlier
13245 implementation of the underspecified partial ordering
13246 rules. (nathan). */
13247 if (quals1 >= 0)
13249 switch (TREE_CODE (arg1))
13251 case ARRAY_TYPE:
13252 arg1 = TREE_TYPE (arg1);
13253 /* FALLTHROUGH. */
13254 case FUNCTION_TYPE:
13255 arg1 = build_pointer_type (arg1);
13256 break;
13258 default:
13259 break;
13262 else
13264 switch (TREE_CODE (arg2))
13266 case ARRAY_TYPE:
13267 arg2 = TREE_TYPE (arg2);
13268 /* FALLTHROUGH. */
13269 case FUNCTION_TYPE:
13270 arg2 = build_pointer_type (arg2);
13271 break;
13273 default:
13274 break;
13279 arg1 = TYPE_MAIN_VARIANT (arg1);
13280 arg2 = TYPE_MAIN_VARIANT (arg2);
13282 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
13284 int i, len2 = list_length (args2);
13285 tree parmvec = make_tree_vec (1);
13286 tree argvec = make_tree_vec (len2);
13287 tree ta = args2;
13289 /* Setup the parameter vector, which contains only ARG1. */
13290 TREE_VEC_ELT (parmvec, 0) = arg1;
13292 /* Setup the argument vector, which contains the remaining
13293 arguments. */
13294 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
13295 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
13297 deduce1 = !unify_pack_expansion (tparms1, targs1, parmvec,
13298 argvec, UNIFY_ALLOW_NONE,
13299 /*call_args_p=*/false,
13300 /*subr=*/0);
13302 /* We cannot deduce in the other direction, because ARG1 is
13303 a pack expansion but ARG2 is not. */
13304 deduce2 = 0;
13306 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
13308 int i, len1 = list_length (args1);
13309 tree parmvec = make_tree_vec (1);
13310 tree argvec = make_tree_vec (len1);
13311 tree ta = args1;
13313 /* Setup the parameter vector, which contains only ARG1. */
13314 TREE_VEC_ELT (parmvec, 0) = arg2;
13316 /* Setup the argument vector, which contains the remaining
13317 arguments. */
13318 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
13319 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
13321 deduce2 = !unify_pack_expansion (tparms2, targs2, parmvec,
13322 argvec, UNIFY_ALLOW_NONE,
13323 /*call_args_p=*/false,
13324 /*subr=*/0);
13326 /* We cannot deduce in the other direction, because ARG2 is
13327 a pack expansion but ARG1 is not.*/
13328 deduce1 = 0;
13331 else
13333 /* The normal case, where neither argument is a pack
13334 expansion. */
13335 deduce1 = !unify (tparms1, targs1, arg1, arg2, UNIFY_ALLOW_NONE);
13336 deduce2 = !unify (tparms2, targs2, arg2, arg1, UNIFY_ALLOW_NONE);
13339 if (!deduce1)
13340 better2 = -1;
13341 if (!deduce2)
13342 better1 = -1;
13343 if (better1 < 0 && better2 < 0)
13344 /* We've failed to deduce something in either direction.
13345 These must be unordered. */
13346 break;
13348 if (deduce1 && deduce2 && quals1 >= 0 && quals2 >= 0)
13350 /* Deduces in both directions, see if quals can
13351 disambiguate. Pretend the worse one failed to deduce. */
13352 if ((quals1 & quals2) == quals2)
13353 deduce1 = 0;
13354 if ((quals1 & quals2) == quals1)
13355 deduce2 = 0;
13357 if (deduce1 && !deduce2 && !better2)
13358 better2 = 1;
13359 if (deduce2 && !deduce1 && !better1)
13360 better1 = 1;
13362 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
13363 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
13364 /* We have already processed all of the arguments in our
13365 handing of the pack expansion type. */
13366 len = 0;
13368 args1 = TREE_CHAIN (args1);
13369 args2 = TREE_CHAIN (args2);
13372 processing_template_decl--;
13374 /* All things being equal, if the next argument is a pack expansion
13375 for one function but not for the other, prefer the
13376 non-variadic function. */
13377 if ((better1 > 0) - (better2 > 0) == 0
13378 && args1 && TREE_VALUE (args1)
13379 && args2 && TREE_VALUE (args2))
13381 if (TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION)
13382 return TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION ? 0 : -1;
13383 else if (TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION)
13384 return 1;
13387 return (better1 > 0) - (better2 > 0);
13390 /* Determine which of two partial specializations is more specialized.
13392 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
13393 to the first partial specialization. The TREE_VALUE is the
13394 innermost set of template parameters for the partial
13395 specialization. PAT2 is similar, but for the second template.
13397 Return 1 if the first partial specialization is more specialized;
13398 -1 if the second is more specialized; 0 if neither is more
13399 specialized.
13401 See [temp.class.order] for information about determining which of
13402 two templates is more specialized. */
13404 static int
13405 more_specialized_class (tree pat1, tree pat2)
13407 tree targs;
13408 tree tmpl1, tmpl2;
13409 int winner = 0;
13410 bool any_deductions = false;
13412 tmpl1 = TREE_TYPE (pat1);
13413 tmpl2 = TREE_TYPE (pat2);
13415 /* Just like what happens for functions, if we are ordering between
13416 different class template specializations, we may encounter dependent
13417 types in the arguments, and we need our dependency check functions
13418 to behave correctly. */
13419 ++processing_template_decl;
13420 targs = get_class_bindings (TREE_VALUE (pat1),
13421 CLASSTYPE_TI_ARGS (tmpl1),
13422 CLASSTYPE_TI_ARGS (tmpl2));
13423 if (targs)
13425 --winner;
13426 any_deductions = true;
13429 targs = get_class_bindings (TREE_VALUE (pat2),
13430 CLASSTYPE_TI_ARGS (tmpl2),
13431 CLASSTYPE_TI_ARGS (tmpl1));
13432 if (targs)
13434 ++winner;
13435 any_deductions = true;
13437 --processing_template_decl;
13439 /* In the case of a tie where at least one of the class templates
13440 has a parameter pack at the end, the template with the most
13441 non-packed parameters wins. */
13442 if (winner == 0
13443 && any_deductions
13444 && (template_args_variadic_p (TREE_PURPOSE (pat1))
13445 || template_args_variadic_p (TREE_PURPOSE (pat2))))
13447 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
13448 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
13449 int len1 = TREE_VEC_LENGTH (args1);
13450 int len2 = TREE_VEC_LENGTH (args2);
13452 /* We don't count the pack expansion at the end. */
13453 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
13454 --len1;
13455 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
13456 --len2;
13458 if (len1 > len2)
13459 return 1;
13460 else if (len1 < len2)
13461 return -1;
13464 return winner;
13467 /* Return the template arguments that will produce the function signature
13468 DECL from the function template FN, with the explicit template
13469 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
13470 also match. Return NULL_TREE if no satisfactory arguments could be
13471 found. */
13473 static tree
13474 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
13476 int ntparms = DECL_NTPARMS (fn);
13477 tree targs = make_tree_vec (ntparms);
13478 tree decl_type;
13479 tree decl_arg_types;
13481 /* Substitute the explicit template arguments into the type of DECL.
13482 The call to fn_type_unification will handle substitution into the
13483 FN. */
13484 decl_type = TREE_TYPE (decl);
13485 if (explicit_args && uses_template_parms (decl_type))
13487 tree tmpl;
13488 tree converted_args;
13490 if (DECL_TEMPLATE_INFO (decl))
13491 tmpl = DECL_TI_TEMPLATE (decl);
13492 else
13493 /* We can get here for some invalid specializations. */
13494 return NULL_TREE;
13496 converted_args
13497 = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
13498 explicit_args, NULL_TREE,
13499 tf_none,
13500 /*require_all_args=*/false,
13501 /*use_default_args=*/false);
13502 if (converted_args == error_mark_node)
13503 return NULL_TREE;
13505 decl_type = tsubst (decl_type, converted_args, tf_none, NULL_TREE);
13506 if (decl_type == error_mark_node)
13507 return NULL_TREE;
13510 /* Never do unification on the 'this' parameter. */
13511 decl_arg_types = skip_artificial_parms_for (decl,
13512 TYPE_ARG_TYPES (decl_type));
13514 if (fn_type_unification (fn, explicit_args, targs,
13515 decl_arg_types,
13516 (check_rettype || DECL_CONV_FN_P (fn)
13517 ? TREE_TYPE (decl_type) : NULL_TREE),
13518 DEDUCE_EXACT, LOOKUP_NORMAL))
13519 return NULL_TREE;
13521 return targs;
13524 /* Return the innermost template arguments that, when applied to a
13525 template specialization whose innermost template parameters are
13526 TPARMS, and whose specialization arguments are PARMS, yield the
13527 ARGS.
13529 For example, suppose we have:
13531 template <class T, class U> struct S {};
13532 template <class T> struct S<T*, int> {};
13534 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
13535 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
13536 int}. The resulting vector will be {double}, indicating that `T'
13537 is bound to `double'. */
13539 static tree
13540 get_class_bindings (tree tparms, tree spec_args, tree args)
13542 int i, ntparms = TREE_VEC_LENGTH (tparms);
13543 tree deduced_args;
13544 tree innermost_deduced_args;
13546 innermost_deduced_args = make_tree_vec (ntparms);
13547 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
13549 deduced_args = copy_node (args);
13550 SET_TMPL_ARGS_LEVEL (deduced_args,
13551 TMPL_ARGS_DEPTH (deduced_args),
13552 innermost_deduced_args);
13554 else
13555 deduced_args = innermost_deduced_args;
13557 if (unify (tparms, deduced_args,
13558 INNERMOST_TEMPLATE_ARGS (spec_args),
13559 INNERMOST_TEMPLATE_ARGS (args),
13560 UNIFY_ALLOW_NONE))
13561 return NULL_TREE;
13563 for (i = 0; i < ntparms; ++i)
13564 if (! TREE_VEC_ELT (innermost_deduced_args, i))
13565 return NULL_TREE;
13567 /* Verify that nondeduced template arguments agree with the type
13568 obtained from argument deduction.
13570 For example:
13572 struct A { typedef int X; };
13573 template <class T, class U> struct C {};
13574 template <class T> struct C<T, typename T::X> {};
13576 Then with the instantiation `C<A, int>', we can deduce that
13577 `T' is `A' but unify () does not check whether `typename T::X'
13578 is `int'. */
13579 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
13580 if (spec_args == error_mark_node
13581 /* We only need to check the innermost arguments; the other
13582 arguments will always agree. */
13583 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
13584 INNERMOST_TEMPLATE_ARGS (args)))
13585 return NULL_TREE;
13587 return deduced_args;
13590 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
13591 Return the TREE_LIST node with the most specialized template, if
13592 any. If there is no most specialized template, the error_mark_node
13593 is returned.
13595 Note that this function does not look at, or modify, the
13596 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
13597 returned is one of the elements of INSTANTIATIONS, callers may
13598 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
13599 and retrieve it from the value returned. */
13601 tree
13602 most_specialized_instantiation (tree templates)
13604 tree fn, champ;
13606 ++processing_template_decl;
13608 champ = templates;
13609 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
13611 int fate = 0;
13613 if (get_bindings (TREE_VALUE (champ),
13614 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
13615 NULL_TREE, /*check_ret=*/false))
13616 fate--;
13618 if (get_bindings (TREE_VALUE (fn),
13619 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
13620 NULL_TREE, /*check_ret=*/false))
13621 fate++;
13623 if (fate == -1)
13624 champ = fn;
13625 else if (!fate)
13627 /* Equally specialized, move to next function. If there
13628 is no next function, nothing's most specialized. */
13629 fn = TREE_CHAIN (fn);
13630 champ = fn;
13631 if (!fn)
13632 break;
13636 if (champ)
13637 /* Now verify that champ is better than everything earlier in the
13638 instantiation list. */
13639 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
13640 if (get_bindings (TREE_VALUE (champ),
13641 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
13642 NULL_TREE, /*check_ret=*/false)
13643 || !get_bindings (TREE_VALUE (fn),
13644 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
13645 NULL_TREE, /*check_ret=*/false))
13647 champ = NULL_TREE;
13648 break;
13651 processing_template_decl--;
13653 if (!champ)
13654 return error_mark_node;
13656 return champ;
13659 /* If DECL is a specialization of some template, return the most
13660 general such template. Otherwise, returns NULL_TREE.
13662 For example, given:
13664 template <class T> struct S { template <class U> void f(U); };
13666 if TMPL is `template <class U> void S<int>::f(U)' this will return
13667 the full template. This function will not trace past partial
13668 specializations, however. For example, given in addition:
13670 template <class T> struct S<T*> { template <class U> void f(U); };
13672 if TMPL is `template <class U> void S<int*>::f(U)' this will return
13673 `template <class T> template <class U> S<T*>::f(U)'. */
13675 tree
13676 most_general_template (tree decl)
13678 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
13679 an immediate specialization. */
13680 if (TREE_CODE (decl) == FUNCTION_DECL)
13682 if (DECL_TEMPLATE_INFO (decl)) {
13683 decl = DECL_TI_TEMPLATE (decl);
13685 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
13686 template friend. */
13687 if (TREE_CODE (decl) != TEMPLATE_DECL)
13688 return NULL_TREE;
13689 } else
13690 return NULL_TREE;
13693 /* Look for more and more general templates. */
13694 while (DECL_TEMPLATE_INFO (decl))
13696 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
13697 (See cp-tree.h for details.) */
13698 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
13699 break;
13701 if (CLASS_TYPE_P (TREE_TYPE (decl))
13702 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
13703 break;
13705 /* Stop if we run into an explicitly specialized class template. */
13706 if (!DECL_NAMESPACE_SCOPE_P (decl)
13707 && DECL_CONTEXT (decl)
13708 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
13709 break;
13711 decl = DECL_TI_TEMPLATE (decl);
13714 return decl;
13717 /* Return the most specialized of the class template partial
13718 specializations of TMPL which can produce TYPE, a specialization of
13719 TMPL. The value returned is actually a TREE_LIST; the TREE_TYPE is
13720 a _TYPE node corresponding to the partial specialization, while the
13721 TREE_PURPOSE is the set of template arguments that must be
13722 substituted into the TREE_TYPE in order to generate TYPE.
13724 If the choice of partial specialization is ambiguous, a diagnostic
13725 is issued, and the error_mark_node is returned. If there are no
13726 partial specializations of TMPL matching TYPE, then NULL_TREE is
13727 returned. */
13729 static tree
13730 most_specialized_class (tree type, tree tmpl)
13732 tree list = NULL_TREE;
13733 tree t;
13734 tree champ;
13735 int fate;
13736 bool ambiguous_p;
13737 tree args;
13738 tree outer_args = NULL_TREE;
13740 tmpl = most_general_template (tmpl);
13741 args = CLASSTYPE_TI_ARGS (type);
13743 /* For determining which partial specialization to use, only the
13744 innermost args are interesting. */
13745 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
13747 outer_args = strip_innermost_template_args (args, 1);
13748 args = INNERMOST_TEMPLATE_ARGS (args);
13751 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
13753 tree partial_spec_args;
13754 tree spec_args;
13755 tree parms = TREE_VALUE (t);
13757 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
13758 if (outer_args)
13760 int i;
13762 ++processing_template_decl;
13764 /* Discard the outer levels of args, and then substitute in the
13765 template args from the enclosing class. */
13766 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
13767 partial_spec_args = tsubst_template_args
13768 (partial_spec_args, outer_args, tf_none, NULL_TREE);
13770 /* PARMS already refers to just the innermost parms, but the
13771 template parms in partial_spec_args had their levels lowered
13772 by tsubst, so we need to do the same for the parm list. We
13773 can't just tsubst the TREE_VEC itself, as tsubst wants to
13774 treat a TREE_VEC as an argument vector. */
13775 parms = copy_node (parms);
13776 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
13777 TREE_VEC_ELT (parms, i) =
13778 tsubst (TREE_VEC_ELT (parms, i), outer_args, tf_none, NULL_TREE);
13780 --processing_template_decl;
13782 spec_args = get_class_bindings (parms,
13783 partial_spec_args,
13784 args);
13785 if (spec_args)
13787 if (outer_args)
13788 spec_args = add_to_template_args (outer_args, spec_args);
13789 list = tree_cons (spec_args, TREE_VALUE (t), list);
13790 TREE_TYPE (list) = TREE_TYPE (t);
13794 if (! list)
13795 return NULL_TREE;
13797 ambiguous_p = false;
13798 t = list;
13799 champ = t;
13800 t = TREE_CHAIN (t);
13801 for (; t; t = TREE_CHAIN (t))
13803 fate = more_specialized_class (champ, t);
13804 if (fate == 1)
13806 else
13808 if (fate == 0)
13810 t = TREE_CHAIN (t);
13811 if (! t)
13813 ambiguous_p = true;
13814 break;
13817 champ = t;
13821 if (!ambiguous_p)
13822 for (t = list; t && t != champ; t = TREE_CHAIN (t))
13824 fate = more_specialized_class (champ, t);
13825 if (fate != 1)
13827 ambiguous_p = true;
13828 break;
13832 if (ambiguous_p)
13834 const char *str = "candidates are:";
13835 error ("ambiguous class template instantiation for %q#T", type);
13836 for (t = list; t; t = TREE_CHAIN (t))
13838 error ("%s %+#T", str, TREE_TYPE (t));
13839 str = " ";
13841 return error_mark_node;
13844 return champ;
13847 /* Explicitly instantiate DECL. */
13849 void
13850 do_decl_instantiation (tree decl, tree storage)
13852 tree result = NULL_TREE;
13853 int extern_p = 0;
13855 if (!decl || decl == error_mark_node)
13856 /* An error occurred, for which grokdeclarator has already issued
13857 an appropriate message. */
13858 return;
13859 else if (! DECL_LANG_SPECIFIC (decl))
13861 error ("explicit instantiation of non-template %q#D", decl);
13862 return;
13864 else if (TREE_CODE (decl) == VAR_DECL)
13866 /* There is an asymmetry here in the way VAR_DECLs and
13867 FUNCTION_DECLs are handled by grokdeclarator. In the case of
13868 the latter, the DECL we get back will be marked as a
13869 template instantiation, and the appropriate
13870 DECL_TEMPLATE_INFO will be set up. This does not happen for
13871 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
13872 should handle VAR_DECLs as it currently handles
13873 FUNCTION_DECLs. */
13874 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
13875 if (!result || TREE_CODE (result) != VAR_DECL)
13877 error ("no matching template for %qD found", decl);
13878 return;
13880 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
13882 error ("type %qT for explicit instantiation %qD does not match "
13883 "declared type %qT", TREE_TYPE (result), decl,
13884 TREE_TYPE (decl));
13885 return;
13888 else if (TREE_CODE (decl) != FUNCTION_DECL)
13890 error ("explicit instantiation of %q#D", decl);
13891 return;
13893 else
13894 result = decl;
13896 /* Check for various error cases. Note that if the explicit
13897 instantiation is valid the RESULT will currently be marked as an
13898 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
13899 until we get here. */
13901 if (DECL_TEMPLATE_SPECIALIZATION (result))
13903 /* DR 259 [temp.spec].
13905 Both an explicit instantiation and a declaration of an explicit
13906 specialization shall not appear in a program unless the explicit
13907 instantiation follows a declaration of the explicit specialization.
13909 For a given set of template parameters, if an explicit
13910 instantiation of a template appears after a declaration of an
13911 explicit specialization for that template, the explicit
13912 instantiation has no effect. */
13913 return;
13915 else if (DECL_EXPLICIT_INSTANTIATION (result))
13917 /* [temp.spec]
13919 No program shall explicitly instantiate any template more
13920 than once.
13922 We check DECL_NOT_REALLY_EXTERN so as not to complain when
13923 the first instantiation was `extern' and the second is not,
13924 and EXTERN_P for the opposite case. */
13925 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
13926 pedwarn ("duplicate explicit instantiation of %q#D", result);
13927 /* If an "extern" explicit instantiation follows an ordinary
13928 explicit instantiation, the template is instantiated. */
13929 if (extern_p)
13930 return;
13932 else if (!DECL_IMPLICIT_INSTANTIATION (result))
13934 error ("no matching template for %qD found", result);
13935 return;
13937 else if (!DECL_TEMPLATE_INFO (result))
13939 pedwarn ("explicit instantiation of non-template %q#D", result);
13940 return;
13943 if (storage == NULL_TREE)
13945 else if (storage == ridpointers[(int) RID_EXTERN])
13947 if (pedantic && !in_system_header)
13948 pedwarn ("ISO C++ forbids the use of %<extern%> on explicit "
13949 "instantiations");
13950 extern_p = 1;
13952 else
13953 error ("storage class %qD applied to template instantiation", storage);
13955 check_explicit_instantiation_namespace (result);
13956 mark_decl_instantiated (result, extern_p);
13957 if (! extern_p)
13958 instantiate_decl (result, /*defer_ok=*/1,
13959 /*expl_inst_class_mem_p=*/false);
13962 static void
13963 mark_class_instantiated (tree t, int extern_p)
13965 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
13966 SET_CLASSTYPE_INTERFACE_KNOWN (t);
13967 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
13968 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
13969 if (! extern_p)
13971 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
13972 rest_of_type_compilation (t, 1);
13976 /* Called from do_type_instantiation through binding_table_foreach to
13977 do recursive instantiation for the type bound in ENTRY. */
13978 static void
13979 bt_instantiate_type_proc (binding_entry entry, void *data)
13981 tree storage = *(tree *) data;
13983 if (IS_AGGR_TYPE (entry->type)
13984 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
13985 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
13988 /* Called from do_type_instantiation to instantiate a member
13989 (a member function or a static member variable) of an
13990 explicitly instantiated class template. */
13991 static void
13992 instantiate_class_member (tree decl, int extern_p)
13994 mark_decl_instantiated (decl, extern_p);
13995 if (! extern_p)
13996 instantiate_decl (decl, /*defer_ok=*/1,
13997 /*expl_inst_class_mem_p=*/true);
14000 /* Perform an explicit instantiation of template class T. STORAGE, if
14001 non-null, is the RID for extern, inline or static. COMPLAIN is
14002 nonzero if this is called from the parser, zero if called recursively,
14003 since the standard is unclear (as detailed below). */
14005 void
14006 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
14008 int extern_p = 0;
14009 int nomem_p = 0;
14010 int static_p = 0;
14011 int previous_instantiation_extern_p = 0;
14013 if (TREE_CODE (t) == TYPE_DECL)
14014 t = TREE_TYPE (t);
14016 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
14018 error ("explicit instantiation of non-template type %qT", t);
14019 return;
14022 complete_type (t);
14024 if (!COMPLETE_TYPE_P (t))
14026 if (complain & tf_error)
14027 error ("explicit instantiation of %q#T before definition of template",
14029 return;
14032 if (storage != NULL_TREE)
14034 if (pedantic && !in_system_header)
14035 pedwarn("ISO C++ forbids the use of %qE on explicit instantiations",
14036 storage);
14038 if (storage == ridpointers[(int) RID_INLINE])
14039 nomem_p = 1;
14040 else if (storage == ridpointers[(int) RID_EXTERN])
14041 extern_p = 1;
14042 else if (storage == ridpointers[(int) RID_STATIC])
14043 static_p = 1;
14044 else
14046 error ("storage class %qD applied to template instantiation",
14047 storage);
14048 extern_p = 0;
14052 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
14054 /* DR 259 [temp.spec].
14056 Both an explicit instantiation and a declaration of an explicit
14057 specialization shall not appear in a program unless the explicit
14058 instantiation follows a declaration of the explicit specialization.
14060 For a given set of template parameters, if an explicit
14061 instantiation of a template appears after a declaration of an
14062 explicit specialization for that template, the explicit
14063 instantiation has no effect. */
14064 return;
14066 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
14068 /* [temp.spec]
14070 No program shall explicitly instantiate any template more
14071 than once.
14073 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
14074 instantiation was `extern'. If EXTERN_P then the second is.
14075 These cases are OK. */
14076 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
14078 if (!previous_instantiation_extern_p && !extern_p
14079 && (complain & tf_error))
14080 pedwarn ("duplicate explicit instantiation of %q#T", t);
14082 /* If we've already instantiated the template, just return now. */
14083 if (!CLASSTYPE_INTERFACE_ONLY (t))
14084 return;
14087 check_explicit_instantiation_namespace (TYPE_NAME (t));
14088 mark_class_instantiated (t, extern_p);
14090 if (nomem_p)
14091 return;
14094 tree tmp;
14096 /* In contrast to implicit instantiation, where only the
14097 declarations, and not the definitions, of members are
14098 instantiated, we have here:
14100 [temp.explicit]
14102 The explicit instantiation of a class template specialization
14103 implies the instantiation of all of its members not
14104 previously explicitly specialized in the translation unit
14105 containing the explicit instantiation.
14107 Of course, we can't instantiate member template classes, since
14108 we don't have any arguments for them. Note that the standard
14109 is unclear on whether the instantiation of the members are
14110 *explicit* instantiations or not. However, the most natural
14111 interpretation is that it should be an explicit instantiation. */
14113 if (! static_p)
14114 for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
14115 if (TREE_CODE (tmp) == FUNCTION_DECL
14116 && DECL_TEMPLATE_INSTANTIATION (tmp))
14117 instantiate_class_member (tmp, extern_p);
14119 for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
14120 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
14121 instantiate_class_member (tmp, extern_p);
14123 if (CLASSTYPE_NESTED_UTDS (t))
14124 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
14125 bt_instantiate_type_proc, &storage);
14129 /* Given a function DECL, which is a specialization of TMPL, modify
14130 DECL to be a re-instantiation of TMPL with the same template
14131 arguments. TMPL should be the template into which tsubst'ing
14132 should occur for DECL, not the most general template.
14134 One reason for doing this is a scenario like this:
14136 template <class T>
14137 void f(const T&, int i);
14139 void g() { f(3, 7); }
14141 template <class T>
14142 void f(const T& t, const int i) { }
14144 Note that when the template is first instantiated, with
14145 instantiate_template, the resulting DECL will have no name for the
14146 first parameter, and the wrong type for the second. So, when we go
14147 to instantiate the DECL, we regenerate it. */
14149 static void
14150 regenerate_decl_from_template (tree decl, tree tmpl)
14152 /* The arguments used to instantiate DECL, from the most general
14153 template. */
14154 tree args;
14155 tree code_pattern;
14157 args = DECL_TI_ARGS (decl);
14158 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
14160 /* Make sure that we can see identifiers, and compute access
14161 correctly. */
14162 push_access_scope (decl);
14164 if (TREE_CODE (decl) == FUNCTION_DECL)
14166 tree decl_parm;
14167 tree pattern_parm;
14168 tree specs;
14169 int args_depth;
14170 int parms_depth;
14172 args_depth = TMPL_ARGS_DEPTH (args);
14173 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
14174 if (args_depth > parms_depth)
14175 args = get_innermost_template_args (args, parms_depth);
14177 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
14178 args, tf_error, NULL_TREE);
14179 if (specs)
14180 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
14181 specs);
14183 /* Merge parameter declarations. */
14184 decl_parm = skip_artificial_parms_for (decl,
14185 DECL_ARGUMENTS (decl));
14186 pattern_parm
14187 = skip_artificial_parms_for (code_pattern,
14188 DECL_ARGUMENTS (code_pattern));
14189 while (decl_parm && !FUNCTION_PARAMETER_PACK_P (pattern_parm))
14191 tree parm_type;
14192 tree attributes;
14194 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
14195 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
14196 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
14197 NULL_TREE);
14198 parm_type = type_decays_to (parm_type);
14199 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
14200 TREE_TYPE (decl_parm) = parm_type;
14201 attributes = DECL_ATTRIBUTES (pattern_parm);
14202 if (DECL_ATTRIBUTES (decl_parm) != attributes)
14204 DECL_ATTRIBUTES (decl_parm) = attributes;
14205 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
14207 decl_parm = TREE_CHAIN (decl_parm);
14208 pattern_parm = TREE_CHAIN (pattern_parm);
14210 /* Merge any parameters that match with the function parameter
14211 pack. */
14212 if (pattern_parm && FUNCTION_PARAMETER_PACK_P (pattern_parm))
14214 int i, len;
14215 tree expanded_types;
14216 /* Expand the TYPE_PACK_EXPANSION that provides the types for
14217 the parameters in this function parameter pack. */
14218 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
14219 args, tf_error, NULL_TREE);
14220 len = TREE_VEC_LENGTH (expanded_types);
14221 for (i = 0; i < len; i++)
14223 tree parm_type;
14224 tree attributes;
14226 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
14227 /* Rename the parameter to include the index. */
14228 DECL_NAME (decl_parm) =
14229 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
14230 parm_type = TREE_VEC_ELT (expanded_types, i);
14231 parm_type = type_decays_to (parm_type);
14232 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
14233 TREE_TYPE (decl_parm) = parm_type;
14234 attributes = DECL_ATTRIBUTES (pattern_parm);
14235 if (DECL_ATTRIBUTES (decl_parm) != attributes)
14237 DECL_ATTRIBUTES (decl_parm) = attributes;
14238 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
14240 decl_parm = TREE_CHAIN (decl_parm);
14243 /* Merge additional specifiers from the CODE_PATTERN. */
14244 if (DECL_DECLARED_INLINE_P (code_pattern)
14245 && !DECL_DECLARED_INLINE_P (decl))
14246 DECL_DECLARED_INLINE_P (decl) = 1;
14247 if (DECL_INLINE (code_pattern) && !DECL_INLINE (decl))
14248 DECL_INLINE (decl) = 1;
14250 else if (TREE_CODE (decl) == VAR_DECL)
14251 DECL_INITIAL (decl) =
14252 tsubst_expr (DECL_INITIAL (code_pattern), args,
14253 tf_error, DECL_TI_TEMPLATE (decl),
14254 /*integral_constant_expression_p=*/false);
14255 else
14256 gcc_unreachable ();
14258 pop_access_scope (decl);
14261 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
14262 substituted to get DECL. */
14264 tree
14265 template_for_substitution (tree decl)
14267 tree tmpl = DECL_TI_TEMPLATE (decl);
14269 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
14270 for the instantiation. This is not always the most general
14271 template. Consider, for example:
14273 template <class T>
14274 struct S { template <class U> void f();
14275 template <> void f<int>(); };
14277 and an instantiation of S<double>::f<int>. We want TD to be the
14278 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
14279 while (/* An instantiation cannot have a definition, so we need a
14280 more general template. */
14281 DECL_TEMPLATE_INSTANTIATION (tmpl)
14282 /* We must also deal with friend templates. Given:
14284 template <class T> struct S {
14285 template <class U> friend void f() {};
14288 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
14289 so far as the language is concerned, but that's still
14290 where we get the pattern for the instantiation from. On
14291 other hand, if the definition comes outside the class, say:
14293 template <class T> struct S {
14294 template <class U> friend void f();
14296 template <class U> friend void f() {}
14298 we don't need to look any further. That's what the check for
14299 DECL_INITIAL is for. */
14300 || (TREE_CODE (decl) == FUNCTION_DECL
14301 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
14302 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
14304 /* The present template, TD, should not be a definition. If it
14305 were a definition, we should be using it! Note that we
14306 cannot restructure the loop to just keep going until we find
14307 a template with a definition, since that might go too far if
14308 a specialization was declared, but not defined. */
14309 gcc_assert (TREE_CODE (decl) != VAR_DECL
14310 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
14312 /* Fetch the more general template. */
14313 tmpl = DECL_TI_TEMPLATE (tmpl);
14316 return tmpl;
14319 /* Produce the definition of D, a _DECL generated from a template. If
14320 DEFER_OK is nonzero, then we don't have to actually do the
14321 instantiation now; we just have to do it sometime. Normally it is
14322 an error if this is an explicit instantiation but D is undefined.
14323 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
14324 explicitly instantiated class template. */
14326 tree
14327 instantiate_decl (tree d, int defer_ok,
14328 bool expl_inst_class_mem_p)
14330 tree tmpl = DECL_TI_TEMPLATE (d);
14331 tree gen_args;
14332 tree args;
14333 tree td;
14334 tree code_pattern;
14335 tree spec;
14336 tree gen_tmpl;
14337 bool pattern_defined;
14338 int need_push;
14339 location_t saved_loc = input_location;
14340 int saved_in_system_header = in_system_header;
14341 bool external_p;
14343 /* This function should only be used to instantiate templates for
14344 functions and static member variables. */
14345 gcc_assert (TREE_CODE (d) == FUNCTION_DECL
14346 || TREE_CODE (d) == VAR_DECL);
14348 /* Variables are never deferred; if instantiation is required, they
14349 are instantiated right away. That allows for better code in the
14350 case that an expression refers to the value of the variable --
14351 if the variable has a constant value the referring expression can
14352 take advantage of that fact. */
14353 if (TREE_CODE (d) == VAR_DECL)
14354 defer_ok = 0;
14356 /* Don't instantiate cloned functions. Instead, instantiate the
14357 functions they cloned. */
14358 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
14359 d = DECL_CLONED_FUNCTION (d);
14361 if (DECL_TEMPLATE_INSTANTIATED (d))
14362 /* D has already been instantiated. It might seem reasonable to
14363 check whether or not D is an explicit instantiation, and, if so,
14364 stop here. But when an explicit instantiation is deferred
14365 until the end of the compilation, DECL_EXPLICIT_INSTANTIATION
14366 is set, even though we still need to do the instantiation. */
14367 return d;
14369 /* If we already have a specialization of this declaration, then
14370 there's no reason to instantiate it. Note that
14371 retrieve_specialization gives us both instantiations and
14372 specializations, so we must explicitly check
14373 DECL_TEMPLATE_SPECIALIZATION. */
14374 gen_tmpl = most_general_template (tmpl);
14375 gen_args = DECL_TI_ARGS (d);
14376 spec = retrieve_specialization (gen_tmpl, gen_args,
14377 /*class_specializations_p=*/false);
14378 if (spec != NULL_TREE && DECL_TEMPLATE_SPECIALIZATION (spec))
14379 return spec;
14381 /* This needs to happen before any tsubsting. */
14382 if (! push_tinst_level (d))
14383 return d;
14385 timevar_push (TV_PARSE);
14387 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
14388 for the instantiation. */
14389 td = template_for_substitution (d);
14390 code_pattern = DECL_TEMPLATE_RESULT (td);
14392 /* We should never be trying to instantiate a member of a class
14393 template or partial specialization. */
14394 gcc_assert (d != code_pattern);
14396 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
14397 || DECL_TEMPLATE_SPECIALIZATION (td))
14398 /* In the case of a friend template whose definition is provided
14399 outside the class, we may have too many arguments. Drop the
14400 ones we don't need. The same is true for specializations. */
14401 args = get_innermost_template_args
14402 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
14403 else
14404 args = gen_args;
14406 if (TREE_CODE (d) == FUNCTION_DECL)
14407 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE);
14408 else
14409 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
14411 /* We may be in the middle of deferred access check. Disable it now. */
14412 push_deferring_access_checks (dk_no_deferred);
14414 /* Unless an explicit instantiation directive has already determined
14415 the linkage of D, remember that a definition is available for
14416 this entity. */
14417 if (pattern_defined
14418 && !DECL_INTERFACE_KNOWN (d)
14419 && !DECL_NOT_REALLY_EXTERN (d))
14420 mark_definable (d);
14422 input_location = DECL_SOURCE_LOCATION (d);
14423 in_system_header = DECL_IN_SYSTEM_HEADER (d);
14425 /* If D is a member of an explicitly instantiated class template,
14426 and no definition is available, treat it like an implicit
14427 instantiation. */
14428 if (!pattern_defined && expl_inst_class_mem_p
14429 && DECL_EXPLICIT_INSTANTIATION (d))
14431 DECL_NOT_REALLY_EXTERN (d) = 0;
14432 DECL_INTERFACE_KNOWN (d) = 0;
14433 SET_DECL_IMPLICIT_INSTANTIATION (d);
14436 if (!defer_ok)
14438 /* Recheck the substitutions to obtain any warning messages
14439 about ignoring cv qualifiers. */
14440 tree gen = DECL_TEMPLATE_RESULT (gen_tmpl);
14441 tree type = TREE_TYPE (gen);
14443 /* Make sure that we can see identifiers, and compute access
14444 correctly. D is already the target FUNCTION_DECL with the
14445 right context. */
14446 push_access_scope (d);
14448 if (TREE_CODE (gen) == FUNCTION_DECL)
14450 tsubst (DECL_ARGUMENTS (gen), gen_args, tf_warning_or_error, d);
14451 tsubst_exception_specification (type, gen_args, tf_warning_or_error,
14453 /* Don't simply tsubst the function type, as that will give
14454 duplicate warnings about poor parameter qualifications.
14455 The function arguments are the same as the decl_arguments
14456 without the top level cv qualifiers. */
14457 type = TREE_TYPE (type);
14459 tsubst (type, gen_args, tf_warning_or_error, d);
14461 pop_access_scope (d);
14464 /* Check to see whether we know that this template will be
14465 instantiated in some other file, as with "extern template"
14466 extension. */
14467 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
14468 /* In general, we do not instantiate such templates... */
14469 if (external_p
14470 /* ... but we instantiate inline functions so that we can inline
14471 them and ... */
14472 && ! (TREE_CODE (d) == FUNCTION_DECL && DECL_INLINE (d))
14473 /* ... we instantiate static data members whose values are
14474 needed in integral constant expressions. */
14475 && ! (TREE_CODE (d) == VAR_DECL
14476 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (d)))
14477 goto out;
14478 /* Defer all other templates, unless we have been explicitly
14479 forbidden from doing so. */
14480 if (/* If there is no definition, we cannot instantiate the
14481 template. */
14482 ! pattern_defined
14483 /* If it's OK to postpone instantiation, do so. */
14484 || defer_ok
14485 /* If this is a static data member that will be defined
14486 elsewhere, we don't want to instantiate the entire data
14487 member, but we do want to instantiate the initializer so that
14488 we can substitute that elsewhere. */
14489 || (external_p && TREE_CODE (d) == VAR_DECL))
14491 /* The definition of the static data member is now required so
14492 we must substitute the initializer. */
14493 if (TREE_CODE (d) == VAR_DECL
14494 && !DECL_INITIAL (d)
14495 && DECL_INITIAL (code_pattern))
14497 tree ns;
14498 tree init;
14500 ns = decl_namespace_context (d);
14501 push_nested_namespace (ns);
14502 push_nested_class (DECL_CONTEXT (d));
14503 init = tsubst_expr (DECL_INITIAL (code_pattern),
14504 args,
14505 tf_warning_or_error, NULL_TREE,
14506 /*integral_constant_expression_p=*/false);
14507 cp_finish_decl (d, init, /*init_const_expr_p=*/false,
14508 /*asmspec_tree=*/NULL_TREE,
14509 LOOKUP_ONLYCONVERTING);
14510 pop_nested_class ();
14511 pop_nested_namespace (ns);
14514 /* We restore the source position here because it's used by
14515 add_pending_template. */
14516 input_location = saved_loc;
14518 if (at_eof && !pattern_defined
14519 && DECL_EXPLICIT_INSTANTIATION (d))
14520 /* [temp.explicit]
14522 The definition of a non-exported function template, a
14523 non-exported member function template, or a non-exported
14524 member function or static data member of a class template
14525 shall be present in every translation unit in which it is
14526 explicitly instantiated. */
14527 pedwarn
14528 ("explicit instantiation of %qD but no definition available", d);
14530 /* ??? Historically, we have instantiated inline functions, even
14531 when marked as "extern template". */
14532 if (!(external_p && TREE_CODE (d) == VAR_DECL))
14533 add_pending_template (d);
14534 goto out;
14536 /* Tell the repository that D is available in this translation unit
14537 -- and see if it is supposed to be instantiated here. */
14538 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
14540 /* In a PCH file, despite the fact that the repository hasn't
14541 requested instantiation in the PCH it is still possible that
14542 an instantiation will be required in a file that includes the
14543 PCH. */
14544 if (pch_file)
14545 add_pending_template (d);
14546 /* Instantiate inline functions so that the inliner can do its
14547 job, even though we'll not be emitting a copy of this
14548 function. */
14549 if (!(TREE_CODE (d) == FUNCTION_DECL
14550 && flag_inline_trees
14551 && DECL_DECLARED_INLINE_P (d)))
14552 goto out;
14555 need_push = !cfun || !global_bindings_p ();
14556 if (need_push)
14557 push_to_top_level ();
14559 /* Mark D as instantiated so that recursive calls to
14560 instantiate_decl do not try to instantiate it again. */
14561 DECL_TEMPLATE_INSTANTIATED (d) = 1;
14563 /* Regenerate the declaration in case the template has been modified
14564 by a subsequent redeclaration. */
14565 regenerate_decl_from_template (d, td);
14567 /* We already set the file and line above. Reset them now in case
14568 they changed as a result of calling regenerate_decl_from_template. */
14569 input_location = DECL_SOURCE_LOCATION (d);
14571 if (TREE_CODE (d) == VAR_DECL)
14573 tree init;
14575 /* Clear out DECL_RTL; whatever was there before may not be right
14576 since we've reset the type of the declaration. */
14577 SET_DECL_RTL (d, NULL_RTX);
14578 DECL_IN_AGGR_P (d) = 0;
14580 /* The initializer is placed in DECL_INITIAL by
14581 regenerate_decl_from_template. Pull it out so that
14582 finish_decl can process it. */
14583 init = DECL_INITIAL (d);
14584 DECL_INITIAL (d) = NULL_TREE;
14585 DECL_INITIALIZED_P (d) = 0;
14587 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
14588 initializer. That function will defer actual emission until
14589 we have a chance to determine linkage. */
14590 DECL_EXTERNAL (d) = 0;
14592 /* Enter the scope of D so that access-checking works correctly. */
14593 push_nested_class (DECL_CONTEXT (d));
14594 finish_decl (d, init, NULL_TREE);
14595 pop_nested_class ();
14597 else if (TREE_CODE (d) == FUNCTION_DECL)
14599 htab_t saved_local_specializations;
14600 tree subst_decl;
14601 tree tmpl_parm;
14602 tree spec_parm;
14604 /* Save away the current list, in case we are instantiating one
14605 template from within the body of another. */
14606 saved_local_specializations = local_specializations;
14608 /* Set up the list of local specializations. */
14609 local_specializations = htab_create (37,
14610 hash_local_specialization,
14611 eq_local_specializations,
14612 NULL);
14614 /* Set up context. */
14615 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
14617 /* Create substitution entries for the parameters. */
14618 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
14619 tmpl_parm = DECL_ARGUMENTS (subst_decl);
14620 spec_parm = DECL_ARGUMENTS (d);
14621 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
14623 register_local_specialization (spec_parm, tmpl_parm);
14624 spec_parm = skip_artificial_parms_for (d, spec_parm);
14625 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
14627 while (tmpl_parm && !FUNCTION_PARAMETER_PACK_P (tmpl_parm))
14629 register_local_specialization (spec_parm, tmpl_parm);
14630 tmpl_parm = TREE_CHAIN (tmpl_parm);
14631 spec_parm = TREE_CHAIN (spec_parm);
14633 if (tmpl_parm && FUNCTION_PARAMETER_PACK_P (tmpl_parm))
14635 /* Collect all of the extra "packed" parameters into an
14636 argument pack. */
14637 tree parmvec;
14638 tree parmtypevec;
14639 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
14640 tree argtypepack = make_node (TYPE_ARGUMENT_PACK);
14641 int i, len = 0;
14642 tree t;
14644 /* Count how many parameters remain. */
14645 for (t = spec_parm; t; t = TREE_CHAIN (t))
14646 len++;
14648 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
14649 parmvec = make_tree_vec (len);
14650 parmtypevec = make_tree_vec (len);
14651 for(i = 0; i < len; i++, spec_parm = TREE_CHAIN (spec_parm))
14653 TREE_VEC_ELT (parmvec, i) = spec_parm;
14654 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
14657 /* Build the argument packs. */
14658 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
14659 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
14660 TREE_TYPE (argpack) = argtypepack;
14662 /* Register the (value) argument pack as a specialization of
14663 TMPL_PARM, then move on. */
14664 register_local_specialization (argpack, tmpl_parm);
14665 tmpl_parm = TREE_CHAIN (tmpl_parm);
14667 gcc_assert (!spec_parm);
14669 /* Substitute into the body of the function. */
14670 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
14671 tf_warning_or_error, tmpl,
14672 /*integral_constant_expression_p=*/false);
14674 /* Set the current input_location to the end of the function
14675 so that finish_function knows where we are. */
14676 input_location = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
14678 /* We don't need the local specializations any more. */
14679 htab_delete (local_specializations);
14680 local_specializations = saved_local_specializations;
14682 /* Finish the function. */
14683 d = finish_function (0);
14684 expand_or_defer_fn (d);
14687 /* We're not deferring instantiation any more. */
14688 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
14690 if (need_push)
14691 pop_from_top_level ();
14693 out:
14694 input_location = saved_loc;
14695 in_system_header = saved_in_system_header;
14696 pop_deferring_access_checks ();
14697 pop_tinst_level ();
14699 timevar_pop (TV_PARSE);
14701 return d;
14704 /* Run through the list of templates that we wish we could
14705 instantiate, and instantiate any we can. RETRIES is the
14706 number of times we retry pending template instantiation. */
14708 void
14709 instantiate_pending_templates (int retries)
14711 int reconsider;
14712 location_t saved_loc = input_location;
14713 int saved_in_system_header = in_system_header;
14715 /* Instantiating templates may trigger vtable generation. This in turn
14716 may require further template instantiations. We place a limit here
14717 to avoid infinite loop. */
14718 if (pending_templates && retries >= max_tinst_depth)
14720 tree decl = pending_templates->tinst->decl;
14722 error ("template instantiation depth exceeds maximum of %d"
14723 " instantiating %q+D, possibly from virtual table generation"
14724 " (use -ftemplate-depth-NN to increase the maximum)",
14725 max_tinst_depth, decl);
14726 if (TREE_CODE (decl) == FUNCTION_DECL)
14727 /* Pretend that we defined it. */
14728 DECL_INITIAL (decl) = error_mark_node;
14729 return;
14734 struct pending_template **t = &pending_templates;
14735 struct pending_template *last = NULL;
14736 reconsider = 0;
14737 while (*t)
14739 tree instantiation = reopen_tinst_level ((*t)->tinst);
14740 bool complete = false;
14742 if (TYPE_P (instantiation))
14744 tree fn;
14746 if (!COMPLETE_TYPE_P (instantiation))
14748 instantiate_class_template (instantiation);
14749 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
14750 for (fn = TYPE_METHODS (instantiation);
14752 fn = TREE_CHAIN (fn))
14753 if (! DECL_ARTIFICIAL (fn))
14754 instantiate_decl (fn,
14755 /*defer_ok=*/0,
14756 /*expl_inst_class_mem_p=*/false);
14757 if (COMPLETE_TYPE_P (instantiation))
14758 reconsider = 1;
14761 complete = COMPLETE_TYPE_P (instantiation);
14763 else
14765 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
14766 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
14768 instantiation
14769 = instantiate_decl (instantiation,
14770 /*defer_ok=*/0,
14771 /*expl_inst_class_mem_p=*/false);
14772 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
14773 reconsider = 1;
14776 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
14777 || DECL_TEMPLATE_INSTANTIATED (instantiation));
14780 if (complete)
14781 /* If INSTANTIATION has been instantiated, then we don't
14782 need to consider it again in the future. */
14783 *t = (*t)->next;
14784 else
14786 last = *t;
14787 t = &(*t)->next;
14789 tinst_depth = 0;
14790 current_tinst_level = NULL;
14792 last_pending_template = last;
14794 while (reconsider);
14796 input_location = saved_loc;
14797 in_system_header = saved_in_system_header;
14800 /* Substitute ARGVEC into T, which is a list of initializers for
14801 either base class or a non-static data member. The TREE_PURPOSEs
14802 are DECLs, and the TREE_VALUEs are the initializer values. Used by
14803 instantiate_decl. */
14805 static tree
14806 tsubst_initializer_list (tree t, tree argvec)
14808 tree inits = NULL_TREE;
14810 for (; t; t = TREE_CHAIN (t))
14812 tree decl;
14813 tree init;
14814 tree expanded_bases = NULL_TREE;
14815 tree expanded_arguments = NULL_TREE;
14816 int i, len = 1;
14818 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
14820 tree expr;
14821 tree arg;
14823 /* Expand the base class expansion type into separate base
14824 classes. */
14825 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
14826 tf_warning_or_error,
14827 NULL_TREE);
14828 if (expanded_bases == error_mark_node)
14829 continue;
14831 /* We'll be building separate TREE_LISTs of arguments for
14832 each base. */
14833 len = TREE_VEC_LENGTH (expanded_bases);
14834 expanded_arguments = make_tree_vec (len);
14835 for (i = 0; i < len; i++)
14836 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
14838 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
14839 expand each argument in the TREE_VALUE of t. */
14840 expr = make_node (EXPR_PACK_EXPANSION);
14841 PACK_EXPANSION_PARAMETER_PACKS (expr) =
14842 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
14844 /* Substitute parameter packs into each argument in the
14845 TREE_LIST. */
14846 in_base_initializer = 1;
14847 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
14849 tree expanded_exprs;
14851 /* Expand the argument. */
14852 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
14853 expanded_exprs = tsubst_pack_expansion (expr, argvec,
14854 tf_warning_or_error,
14855 NULL_TREE);
14857 /* Prepend each of the expanded expressions to the
14858 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
14859 for (i = 0; i < len; i++)
14861 TREE_VEC_ELT (expanded_arguments, i) =
14862 tree_cons (NULL_TREE, TREE_VEC_ELT (expanded_exprs, i),
14863 TREE_VEC_ELT (expanded_arguments, i));
14866 in_base_initializer = 0;
14868 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
14869 since we built them backwards. */
14870 for (i = 0; i < len; i++)
14872 TREE_VEC_ELT (expanded_arguments, i) =
14873 nreverse (TREE_VEC_ELT (expanded_arguments, i));
14877 for (i = 0; i < len; ++i)
14879 if (expanded_bases)
14881 decl = TREE_VEC_ELT (expanded_bases, i);
14882 decl = expand_member_init (decl);
14883 init = TREE_VEC_ELT (expanded_arguments, i);
14885 else
14887 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
14888 tf_warning_or_error, NULL_TREE);
14890 decl = expand_member_init (decl);
14891 if (decl && !DECL_P (decl))
14892 in_base_initializer = 1;
14894 init = tsubst_expr (TREE_VALUE (t), argvec,
14895 tf_warning_or_error, NULL_TREE,
14896 /*integral_constant_expression_p=*/false);
14897 in_base_initializer = 0;
14900 if (decl)
14902 init = build_tree_list (decl, init);
14903 TREE_CHAIN (init) = inits;
14904 inits = init;
14908 return inits;
14911 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
14913 static void
14914 set_current_access_from_decl (tree decl)
14916 if (TREE_PRIVATE (decl))
14917 current_access_specifier = access_private_node;
14918 else if (TREE_PROTECTED (decl))
14919 current_access_specifier = access_protected_node;
14920 else
14921 current_access_specifier = access_public_node;
14924 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
14925 is the instantiation (which should have been created with
14926 start_enum) and ARGS are the template arguments to use. */
14928 static void
14929 tsubst_enum (tree tag, tree newtag, tree args)
14931 tree e;
14933 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
14935 tree value;
14936 tree decl;
14938 decl = TREE_VALUE (e);
14939 /* Note that in a template enum, the TREE_VALUE is the
14940 CONST_DECL, not the corresponding INTEGER_CST. */
14941 value = tsubst_expr (DECL_INITIAL (decl),
14942 args, tf_warning_or_error, NULL_TREE,
14943 /*integral_constant_expression_p=*/true);
14945 /* Give this enumeration constant the correct access. */
14946 set_current_access_from_decl (decl);
14948 /* Actually build the enumerator itself. */
14949 build_enumerator (DECL_NAME (decl), value, newtag);
14952 finish_enum (newtag);
14953 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
14954 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
14957 /* DECL is a FUNCTION_DECL that is a template specialization. Return
14958 its type -- but without substituting the innermost set of template
14959 arguments. So, innermost set of template parameters will appear in
14960 the type. */
14962 tree
14963 get_mostly_instantiated_function_type (tree decl)
14965 tree fn_type;
14966 tree tmpl;
14967 tree targs;
14968 tree tparms;
14969 int parm_depth;
14971 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
14972 targs = DECL_TI_ARGS (decl);
14973 tparms = DECL_TEMPLATE_PARMS (tmpl);
14974 parm_depth = TMPL_PARMS_DEPTH (tparms);
14976 /* There should be as many levels of arguments as there are levels
14977 of parameters. */
14978 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
14980 fn_type = TREE_TYPE (tmpl);
14982 if (parm_depth == 1)
14983 /* No substitution is necessary. */
14985 else
14987 int i, save_access_control;
14988 tree partial_args;
14990 /* Replace the innermost level of the TARGS with NULL_TREEs to
14991 let tsubst know not to substitute for those parameters. */
14992 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
14993 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
14994 SET_TMPL_ARGS_LEVEL (partial_args, i,
14995 TMPL_ARGS_LEVEL (targs, i));
14996 SET_TMPL_ARGS_LEVEL (partial_args,
14997 TMPL_ARGS_DEPTH (targs),
14998 make_tree_vec (DECL_NTPARMS (tmpl)));
15000 /* Disable access control as this function is used only during
15001 name-mangling. */
15002 save_access_control = flag_access_control;
15003 flag_access_control = 0;
15005 ++processing_template_decl;
15006 /* Now, do the (partial) substitution to figure out the
15007 appropriate function type. */
15008 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
15009 --processing_template_decl;
15011 /* Substitute into the template parameters to obtain the real
15012 innermost set of parameters. This step is important if the
15013 innermost set of template parameters contains value
15014 parameters whose types depend on outer template parameters. */
15015 TREE_VEC_LENGTH (partial_args)--;
15016 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
15018 flag_access_control = save_access_control;
15021 return fn_type;
15024 /* Return truthvalue if we're processing a template different from
15025 the last one involved in diagnostics. */
15027 problematic_instantiation_changed (void)
15029 return last_template_error_tick != tinst_level_tick;
15032 /* Remember current template involved in diagnostics. */
15033 void
15034 record_last_problematic_instantiation (void)
15036 last_template_error_tick = tinst_level_tick;
15039 struct tinst_level *
15040 current_instantiation (void)
15042 return current_tinst_level;
15045 /* [temp.param] Check that template non-type parm TYPE is of an allowable
15046 type. Return zero for ok, nonzero for disallowed. Issue error and
15047 warning messages under control of COMPLAIN. */
15049 static int
15050 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
15052 if (INTEGRAL_TYPE_P (type))
15053 return 0;
15054 else if (POINTER_TYPE_P (type))
15055 return 0;
15056 else if (TYPE_PTR_TO_MEMBER_P (type))
15057 return 0;
15058 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
15059 return 0;
15060 else if (TREE_CODE (type) == TYPENAME_TYPE)
15061 return 0;
15063 if (complain & tf_error)
15064 error ("%q#T is not a valid type for a template constant parameter", type);
15065 return 1;
15068 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
15069 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
15071 static bool
15072 dependent_type_p_r (tree type)
15074 tree scope;
15076 /* [temp.dep.type]
15078 A type is dependent if it is:
15080 -- a template parameter. Template template parameters are types
15081 for us (since TYPE_P holds true for them) so we handle
15082 them here. */
15083 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
15084 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
15085 return true;
15086 /* -- a qualified-id with a nested-name-specifier which contains a
15087 class-name that names a dependent type or whose unqualified-id
15088 names a dependent type. */
15089 if (TREE_CODE (type) == TYPENAME_TYPE)
15090 return true;
15091 /* -- a cv-qualified type where the cv-unqualified type is
15092 dependent. */
15093 type = TYPE_MAIN_VARIANT (type);
15094 /* -- a compound type constructed from any dependent type. */
15095 if (TYPE_PTR_TO_MEMBER_P (type))
15096 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
15097 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
15098 (type)));
15099 else if (TREE_CODE (type) == POINTER_TYPE
15100 || TREE_CODE (type) == REFERENCE_TYPE)
15101 return dependent_type_p (TREE_TYPE (type));
15102 else if (TREE_CODE (type) == FUNCTION_TYPE
15103 || TREE_CODE (type) == METHOD_TYPE)
15105 tree arg_type;
15107 if (dependent_type_p (TREE_TYPE (type)))
15108 return true;
15109 for (arg_type = TYPE_ARG_TYPES (type);
15110 arg_type;
15111 arg_type = TREE_CHAIN (arg_type))
15112 if (dependent_type_p (TREE_VALUE (arg_type)))
15113 return true;
15114 return false;
15116 /* -- an array type constructed from any dependent type or whose
15117 size is specified by a constant expression that is
15118 value-dependent. */
15119 if (TREE_CODE (type) == ARRAY_TYPE)
15121 if (TYPE_DOMAIN (type)
15122 && ((value_dependent_expression_p
15123 (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
15124 || (type_dependent_expression_p
15125 (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))))
15126 return true;
15127 return dependent_type_p (TREE_TYPE (type));
15130 /* -- a template-id in which either the template name is a template
15131 parameter ... */
15132 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
15133 return true;
15134 /* ... or any of the template arguments is a dependent type or
15135 an expression that is type-dependent or value-dependent. */
15136 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
15137 && (any_dependent_template_arguments_p
15138 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
15139 return true;
15141 /* All TYPEOF_TYPEs and DECLTYPE_TYPEs are dependent; if the
15142 argument of the `typeof' expression is not type-dependent, then
15143 it should already been have resolved. */
15144 if (TREE_CODE (type) == TYPEOF_TYPE
15145 || TREE_CODE (type) == DECLTYPE_TYPE)
15146 return true;
15148 /* A template argument pack is dependent if any of its packed
15149 arguments are. */
15150 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
15152 tree args = ARGUMENT_PACK_ARGS (type);
15153 int i, len = TREE_VEC_LENGTH (args);
15154 for (i = 0; i < len; ++i)
15155 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
15156 return true;
15159 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
15160 be template parameters. */
15161 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
15162 return true;
15164 /* The standard does not specifically mention types that are local
15165 to template functions or local classes, but they should be
15166 considered dependent too. For example:
15168 template <int I> void f() {
15169 enum E { a = I };
15170 S<sizeof (E)> s;
15173 The size of `E' cannot be known until the value of `I' has been
15174 determined. Therefore, `E' must be considered dependent. */
15175 scope = TYPE_CONTEXT (type);
15176 if (scope && TYPE_P (scope))
15177 return dependent_type_p (scope);
15178 else if (scope && TREE_CODE (scope) == FUNCTION_DECL)
15179 return type_dependent_expression_p (scope);
15181 /* Other types are non-dependent. */
15182 return false;
15185 /* Returns TRUE if TYPE is dependent, in the sense of
15186 [temp.dep.type]. */
15188 bool
15189 dependent_type_p (tree type)
15191 /* If there are no template parameters in scope, then there can't be
15192 any dependent types. */
15193 if (!processing_template_decl)
15195 /* If we are not processing a template, then nobody should be
15196 providing us with a dependent type. */
15197 gcc_assert (type);
15198 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM);
15199 return false;
15202 /* If the type is NULL, we have not computed a type for the entity
15203 in question; in that case, the type is dependent. */
15204 if (!type)
15205 return true;
15207 /* Erroneous types can be considered non-dependent. */
15208 if (type == error_mark_node)
15209 return false;
15211 /* If we have not already computed the appropriate value for TYPE,
15212 do so now. */
15213 if (!TYPE_DEPENDENT_P_VALID (type))
15215 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
15216 TYPE_DEPENDENT_P_VALID (type) = 1;
15219 return TYPE_DEPENDENT_P (type);
15222 /* Returns TRUE if EXPRESSION is dependent, according to CRITERION. */
15224 static bool
15225 dependent_scope_ref_p (tree expression, bool criterion (tree))
15227 tree scope;
15228 tree name;
15230 gcc_assert (TREE_CODE (expression) == SCOPE_REF);
15232 if (!TYPE_P (TREE_OPERAND (expression, 0)))
15233 return true;
15235 scope = TREE_OPERAND (expression, 0);
15236 name = TREE_OPERAND (expression, 1);
15238 /* [temp.dep.expr]
15240 An id-expression is type-dependent if it contains a
15241 nested-name-specifier that contains a class-name that names a
15242 dependent type. */
15243 /* The suggested resolution to Core Issue 2 implies that if the
15244 qualifying type is the current class, then we must peek
15245 inside it. */
15246 if (DECL_P (name)
15247 && currently_open_class (scope)
15248 && !criterion (name))
15249 return false;
15250 if (dependent_type_p (scope))
15251 return true;
15253 return false;
15256 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
15257 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
15258 expression. */
15260 bool
15261 value_dependent_expression_p (tree expression)
15263 if (!processing_template_decl)
15264 return false;
15266 /* A name declared with a dependent type. */
15267 if (DECL_P (expression) && type_dependent_expression_p (expression))
15268 return true;
15270 switch (TREE_CODE (expression))
15272 case IDENTIFIER_NODE:
15273 /* A name that has not been looked up -- must be dependent. */
15274 return true;
15276 case TEMPLATE_PARM_INDEX:
15277 /* A non-type template parm. */
15278 return true;
15280 case CONST_DECL:
15281 /* A non-type template parm. */
15282 if (DECL_TEMPLATE_PARM_P (expression))
15283 return true;
15284 return false;
15286 case VAR_DECL:
15287 /* A constant with integral or enumeration type and is initialized
15288 with an expression that is value-dependent. */
15289 if (DECL_INITIAL (expression)
15290 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (expression))
15291 && value_dependent_expression_p (DECL_INITIAL (expression)))
15292 return true;
15293 return false;
15295 case DYNAMIC_CAST_EXPR:
15296 case STATIC_CAST_EXPR:
15297 case CONST_CAST_EXPR:
15298 case REINTERPRET_CAST_EXPR:
15299 case CAST_EXPR:
15300 /* These expressions are value-dependent if the type to which
15301 the cast occurs is dependent or the expression being casted
15302 is value-dependent. */
15304 tree type = TREE_TYPE (expression);
15306 if (dependent_type_p (type))
15307 return true;
15309 /* A functional cast has a list of operands. */
15310 expression = TREE_OPERAND (expression, 0);
15311 if (!expression)
15313 /* If there are no operands, it must be an expression such
15314 as "int()". This should not happen for aggregate types
15315 because it would form non-constant expressions. */
15316 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
15318 return false;
15321 if (TREE_CODE (expression) == TREE_LIST)
15322 return any_value_dependent_elements_p (expression);
15324 return value_dependent_expression_p (expression);
15327 case SIZEOF_EXPR:
15328 case ALIGNOF_EXPR:
15329 /* A `sizeof' expression is value-dependent if the operand is
15330 type-dependent or is a pack expansion. */
15331 expression = TREE_OPERAND (expression, 0);
15332 if (PACK_EXPANSION_P (expression))
15333 return true;
15334 else if (TYPE_P (expression))
15335 return dependent_type_p (expression);
15336 return type_dependent_expression_p (expression);
15338 case SCOPE_REF:
15339 return dependent_scope_ref_p (expression, value_dependent_expression_p);
15341 case COMPONENT_REF:
15342 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
15343 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
15345 case CALL_EXPR:
15346 /* A CALL_EXPR may appear in a constant expression if it is a
15347 call to a builtin function, e.g., __builtin_constant_p. All
15348 such calls are value-dependent. */
15349 return true;
15351 case NONTYPE_ARGUMENT_PACK:
15352 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
15353 is value-dependent. */
15355 tree values = ARGUMENT_PACK_ARGS (expression);
15356 int i, len = TREE_VEC_LENGTH (values);
15358 for (i = 0; i < len; ++i)
15359 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
15360 return true;
15362 return false;
15365 case TRAIT_EXPR:
15367 tree type2 = TRAIT_EXPR_TYPE2 (expression);
15368 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
15369 || (type2 ? dependent_type_p (type2) : false));
15372 case MODOP_EXPR:
15373 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
15374 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
15376 default:
15377 /* A constant expression is value-dependent if any subexpression is
15378 value-dependent. */
15379 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
15381 case tcc_reference:
15382 case tcc_unary:
15383 return (value_dependent_expression_p
15384 (TREE_OPERAND (expression, 0)));
15386 case tcc_comparison:
15387 case tcc_binary:
15388 return ((value_dependent_expression_p
15389 (TREE_OPERAND (expression, 0)))
15390 || (value_dependent_expression_p
15391 (TREE_OPERAND (expression, 1))));
15393 case tcc_expression:
15394 case tcc_vl_exp:
15396 int i;
15397 for (i = 0; i < TREE_OPERAND_LENGTH (expression); ++i)
15398 /* In some cases, some of the operands may be missing.
15399 (For example, in the case of PREDECREMENT_EXPR, the
15400 amount to increment by may be missing.) That doesn't
15401 make the expression dependent. */
15402 if (TREE_OPERAND (expression, i)
15403 && (value_dependent_expression_p
15404 (TREE_OPERAND (expression, i))))
15405 return true;
15406 return false;
15409 default:
15410 break;
15414 /* The expression is not value-dependent. */
15415 return false;
15418 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
15419 [temp.dep.expr]. */
15421 bool
15422 type_dependent_expression_p (tree expression)
15424 if (!processing_template_decl)
15425 return false;
15427 if (expression == error_mark_node)
15428 return false;
15430 /* An unresolved name is always dependent. */
15431 if (TREE_CODE (expression) == IDENTIFIER_NODE
15432 || TREE_CODE (expression) == USING_DECL)
15433 return true;
15435 /* Some expression forms are never type-dependent. */
15436 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
15437 || TREE_CODE (expression) == SIZEOF_EXPR
15438 || TREE_CODE (expression) == ALIGNOF_EXPR
15439 || TREE_CODE (expression) == TRAIT_EXPR
15440 || TREE_CODE (expression) == TYPEID_EXPR
15441 || TREE_CODE (expression) == DELETE_EXPR
15442 || TREE_CODE (expression) == VEC_DELETE_EXPR
15443 || TREE_CODE (expression) == THROW_EXPR)
15444 return false;
15446 /* The types of these expressions depends only on the type to which
15447 the cast occurs. */
15448 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
15449 || TREE_CODE (expression) == STATIC_CAST_EXPR
15450 || TREE_CODE (expression) == CONST_CAST_EXPR
15451 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
15452 || TREE_CODE (expression) == CAST_EXPR)
15453 return dependent_type_p (TREE_TYPE (expression));
15455 /* The types of these expressions depends only on the type created
15456 by the expression. */
15457 if (TREE_CODE (expression) == NEW_EXPR
15458 || TREE_CODE (expression) == VEC_NEW_EXPR)
15460 /* For NEW_EXPR tree nodes created inside a template, either
15461 the object type itself or a TREE_LIST may appear as the
15462 operand 1. */
15463 tree type = TREE_OPERAND (expression, 1);
15464 if (TREE_CODE (type) == TREE_LIST)
15465 /* This is an array type. We need to check array dimensions
15466 as well. */
15467 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
15468 || value_dependent_expression_p
15469 (TREE_OPERAND (TREE_VALUE (type), 1));
15470 else
15471 return dependent_type_p (type);
15474 if (TREE_CODE (expression) == SCOPE_REF
15475 && dependent_scope_ref_p (expression,
15476 type_dependent_expression_p))
15477 return true;
15479 if (TREE_CODE (expression) == FUNCTION_DECL
15480 && DECL_LANG_SPECIFIC (expression)
15481 && DECL_TEMPLATE_INFO (expression)
15482 && (any_dependent_template_arguments_p
15483 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
15484 return true;
15486 if (TREE_CODE (expression) == TEMPLATE_DECL
15487 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
15488 return false;
15490 if (TREE_CODE (expression) == STMT_EXPR)
15491 expression = stmt_expr_value_expr (expression);
15493 if (TREE_TYPE (expression) == unknown_type_node)
15495 if (TREE_CODE (expression) == ADDR_EXPR)
15496 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
15497 if (TREE_CODE (expression) == COMPONENT_REF
15498 || TREE_CODE (expression) == OFFSET_REF)
15500 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
15501 return true;
15502 expression = TREE_OPERAND (expression, 1);
15503 if (TREE_CODE (expression) == IDENTIFIER_NODE)
15504 return false;
15506 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
15507 if (TREE_CODE (expression) == SCOPE_REF)
15508 return false;
15510 if (TREE_CODE (expression) == BASELINK)
15511 expression = BASELINK_FUNCTIONS (expression);
15513 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
15515 if (any_dependent_template_arguments_p
15516 (TREE_OPERAND (expression, 1)))
15517 return true;
15518 expression = TREE_OPERAND (expression, 0);
15520 gcc_assert (TREE_CODE (expression) == OVERLOAD
15521 || TREE_CODE (expression) == FUNCTION_DECL);
15523 while (expression)
15525 if (type_dependent_expression_p (OVL_CURRENT (expression)))
15526 return true;
15527 expression = OVL_NEXT (expression);
15529 return false;
15532 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
15534 return (dependent_type_p (TREE_TYPE (expression)));
15537 /* Returns TRUE if ARGS (a TREE_LIST of arguments to a function call)
15538 contains a type-dependent expression. */
15540 bool
15541 any_type_dependent_arguments_p (const_tree args)
15543 while (args)
15545 tree arg = TREE_VALUE (args);
15547 if (type_dependent_expression_p (arg))
15548 return true;
15549 args = TREE_CHAIN (args);
15551 return false;
15554 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
15555 expressions) contains any value-dependent expressions. */
15557 bool
15558 any_value_dependent_elements_p (const_tree list)
15560 for (; list; list = TREE_CHAIN (list))
15561 if (value_dependent_expression_p (TREE_VALUE (list)))
15562 return true;
15564 return false;
15567 /* Returns TRUE if the ARG (a template argument) is dependent. */
15569 bool
15570 dependent_template_arg_p (tree arg)
15572 if (!processing_template_decl)
15573 return false;
15575 if (TREE_CODE (arg) == TEMPLATE_DECL
15576 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
15577 return dependent_template_p (arg);
15578 else if (ARGUMENT_PACK_P (arg))
15580 tree args = ARGUMENT_PACK_ARGS (arg);
15581 int i, len = TREE_VEC_LENGTH (args);
15582 for (i = 0; i < len; ++i)
15584 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
15585 return true;
15588 return false;
15590 else if (TYPE_P (arg))
15591 return dependent_type_p (arg);
15592 else
15593 return (type_dependent_expression_p (arg)
15594 || value_dependent_expression_p (arg));
15597 /* Returns true if ARGS (a collection of template arguments) contains
15598 any types that require structural equality testing. */
15600 bool
15601 any_template_arguments_need_structural_equality_p (tree args)
15603 int i;
15604 int j;
15606 if (!args)
15607 return false;
15608 if (args == error_mark_node)
15609 return true;
15611 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
15613 tree level = TMPL_ARGS_LEVEL (args, i + 1);
15614 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
15616 tree arg = TREE_VEC_ELT (level, j);
15617 tree packed_args = NULL_TREE;
15618 int k, len = 1;
15620 if (ARGUMENT_PACK_P (arg))
15622 /* Look inside the argument pack. */
15623 packed_args = ARGUMENT_PACK_ARGS (arg);
15624 len = TREE_VEC_LENGTH (packed_args);
15627 for (k = 0; k < len; ++k)
15629 if (packed_args)
15630 arg = TREE_VEC_ELT (packed_args, k);
15632 if (error_operand_p (arg))
15633 return true;
15634 else if (TREE_CODE (arg) == TEMPLATE_DECL
15635 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
15636 continue;
15637 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
15638 return true;
15639 else if (!TYPE_P (arg) && TREE_TYPE (arg)
15640 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
15641 return true;
15646 return false;
15649 /* Returns true if ARGS (a collection of template arguments) contains
15650 any dependent arguments. */
15652 bool
15653 any_dependent_template_arguments_p (const_tree args)
15655 int i;
15656 int j;
15658 if (!args)
15659 return false;
15660 if (args == error_mark_node)
15661 return true;
15663 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
15665 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
15666 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
15667 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
15668 return true;
15671 return false;
15674 /* Returns TRUE if the template TMPL is dependent. */
15676 bool
15677 dependent_template_p (tree tmpl)
15679 if (TREE_CODE (tmpl) == OVERLOAD)
15681 while (tmpl)
15683 if (dependent_template_p (OVL_FUNCTION (tmpl)))
15684 return true;
15685 tmpl = OVL_CHAIN (tmpl);
15687 return false;
15690 /* Template template parameters are dependent. */
15691 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
15692 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
15693 return true;
15694 /* So are names that have not been looked up. */
15695 if (TREE_CODE (tmpl) == SCOPE_REF
15696 || TREE_CODE (tmpl) == IDENTIFIER_NODE)
15697 return true;
15698 /* So are member templates of dependent classes. */
15699 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
15700 return dependent_type_p (DECL_CONTEXT (tmpl));
15701 return false;
15704 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
15706 bool
15707 dependent_template_id_p (tree tmpl, tree args)
15709 return (dependent_template_p (tmpl)
15710 || any_dependent_template_arguments_p (args));
15713 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
15714 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
15715 no such TYPE can be found. Note that this function peers inside
15716 uninstantiated templates and therefore should be used only in
15717 extremely limited situations. ONLY_CURRENT_P restricts this
15718 peering to the currently open classes hierarchy (which is required
15719 when comparing types). */
15721 tree
15722 resolve_typename_type (tree type, bool only_current_p)
15724 tree scope;
15725 tree name;
15726 tree decl;
15727 int quals;
15728 tree pushed_scope;
15729 tree result;
15731 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
15733 scope = TYPE_CONTEXT (type);
15734 name = TYPE_IDENTIFIER (type);
15736 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
15737 it first before we can figure out what NAME refers to. */
15738 if (TREE_CODE (scope) == TYPENAME_TYPE)
15739 scope = resolve_typename_type (scope, only_current_p);
15740 /* If we don't know what SCOPE refers to, then we cannot resolve the
15741 TYPENAME_TYPE. */
15742 if (TREE_CODE (scope) == TYPENAME_TYPE)
15743 return type;
15744 /* If the SCOPE is a template type parameter, we have no way of
15745 resolving the name. */
15746 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
15747 return type;
15748 /* If the SCOPE is not the current instantiation, there's no reason
15749 to look inside it. */
15750 if (only_current_p && !currently_open_class (scope))
15751 return type;
15752 /* If SCOPE isn't the template itself, it will not have a valid
15753 TYPE_FIELDS list. */
15754 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
15755 /* scope is either the template itself or a compatible instantiation
15756 like X<T>, so look up the name in the original template. */
15757 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
15758 else
15759 /* scope is a partial instantiation, so we can't do the lookup or we
15760 will lose the template arguments. */
15761 return type;
15762 /* Enter the SCOPE so that name lookup will be resolved as if we
15763 were in the class definition. In particular, SCOPE will no
15764 longer be considered a dependent type. */
15765 pushed_scope = push_scope (scope);
15766 /* Look up the declaration. */
15767 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true);
15769 result = NULL_TREE;
15771 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
15772 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
15773 if (!decl)
15774 /*nop*/;
15775 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == IDENTIFIER_NODE
15776 && TREE_CODE (decl) == TYPE_DECL)
15778 result = TREE_TYPE (decl);
15779 if (result == error_mark_node)
15780 result = NULL_TREE;
15782 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
15783 && DECL_CLASS_TEMPLATE_P (decl))
15785 tree tmpl;
15786 tree args;
15787 /* Obtain the template and the arguments. */
15788 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
15789 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
15790 /* Instantiate the template. */
15791 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
15792 /*entering_scope=*/0,
15793 tf_error | tf_user);
15794 if (result == error_mark_node)
15795 result = NULL_TREE;
15798 /* Leave the SCOPE. */
15799 if (pushed_scope)
15800 pop_scope (pushed_scope);
15802 /* If we failed to resolve it, return the original typename. */
15803 if (!result)
15804 return type;
15806 /* If lookup found a typename type, resolve that too. */
15807 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
15809 /* Ill-formed programs can cause infinite recursion here, so we
15810 must catch that. */
15811 TYPENAME_IS_RESOLVING_P (type) = 1;
15812 result = resolve_typename_type (result, only_current_p);
15813 TYPENAME_IS_RESOLVING_P (type) = 0;
15816 /* Qualify the resulting type. */
15817 quals = cp_type_quals (type);
15818 if (quals)
15819 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
15821 return result;
15824 /* EXPR is an expression which is not type-dependent. Return a proxy
15825 for EXPR that can be used to compute the types of larger
15826 expressions containing EXPR. */
15828 tree
15829 build_non_dependent_expr (tree expr)
15831 tree inner_expr;
15833 /* Preserve null pointer constants so that the type of things like
15834 "p == 0" where "p" is a pointer can be determined. */
15835 if (null_ptr_cst_p (expr))
15836 return expr;
15837 /* Preserve OVERLOADs; the functions must be available to resolve
15838 types. */
15839 inner_expr = expr;
15840 if (TREE_CODE (inner_expr) == STMT_EXPR)
15841 inner_expr = stmt_expr_value_expr (inner_expr);
15842 if (TREE_CODE (inner_expr) == ADDR_EXPR)
15843 inner_expr = TREE_OPERAND (inner_expr, 0);
15844 if (TREE_CODE (inner_expr) == COMPONENT_REF)
15845 inner_expr = TREE_OPERAND (inner_expr, 1);
15846 if (is_overloaded_fn (inner_expr)
15847 || TREE_CODE (inner_expr) == OFFSET_REF)
15848 return expr;
15849 /* There is no need to return a proxy for a variable. */
15850 if (TREE_CODE (expr) == VAR_DECL)
15851 return expr;
15852 /* Preserve string constants; conversions from string constants to
15853 "char *" are allowed, even though normally a "const char *"
15854 cannot be used to initialize a "char *". */
15855 if (TREE_CODE (expr) == STRING_CST)
15856 return expr;
15857 /* Preserve arithmetic constants, as an optimization -- there is no
15858 reason to create a new node. */
15859 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
15860 return expr;
15861 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
15862 There is at least one place where we want to know that a
15863 particular expression is a throw-expression: when checking a ?:
15864 expression, there are special rules if the second or third
15865 argument is a throw-expression. */
15866 if (TREE_CODE (expr) == THROW_EXPR)
15867 return expr;
15869 if (TREE_CODE (expr) == COND_EXPR)
15870 return build3 (COND_EXPR,
15871 TREE_TYPE (expr),
15872 TREE_OPERAND (expr, 0),
15873 (TREE_OPERAND (expr, 1)
15874 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
15875 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
15876 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
15877 if (TREE_CODE (expr) == COMPOUND_EXPR
15878 && !COMPOUND_EXPR_OVERLOADED (expr))
15879 return build2 (COMPOUND_EXPR,
15880 TREE_TYPE (expr),
15881 TREE_OPERAND (expr, 0),
15882 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
15884 /* If the type is unknown, it can't really be non-dependent */
15885 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
15887 /* Otherwise, build a NON_DEPENDENT_EXPR.
15889 REFERENCE_TYPEs are not stripped for expressions in templates
15890 because doing so would play havoc with mangling. Consider, for
15891 example:
15893 template <typename T> void f<T& g>() { g(); }
15895 In the body of "f", the expression for "g" will have
15896 REFERENCE_TYPE, even though the standard says that it should
15897 not. The reason is that we must preserve the syntactic form of
15898 the expression so that mangling (say) "f<g>" inside the body of
15899 "f" works out correctly. Therefore, the REFERENCE_TYPE is
15900 stripped here. */
15901 return build1 (NON_DEPENDENT_EXPR, non_reference (TREE_TYPE (expr)), expr);
15904 /* ARGS is a TREE_LIST of expressions as arguments to a function call.
15905 Return a new TREE_LIST with the various arguments replaced with
15906 equivalent non-dependent expressions. */
15908 tree
15909 build_non_dependent_args (tree args)
15911 tree a;
15912 tree new_args;
15914 new_args = NULL_TREE;
15915 for (a = args; a; a = TREE_CHAIN (a))
15916 new_args = tree_cons (NULL_TREE,
15917 build_non_dependent_expr (TREE_VALUE (a)),
15918 new_args);
15919 return nreverse (new_args);
15922 #include "gt-cp-pt.h"