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 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 2, or (at your option)
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 COPYING. If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 /* Known bugs or deficiencies include:
26 all methods must be provided in header files; can't use a source
27 file that contains only the method templates and "just win". */
31 #include "coretypes.h"
35 #include "pointer-set.h"
39 #include "cp-objcp-common.h"
40 #include "tree-inline.h"
47 #include "tree-iterator.h"
49 /* The type of functions taking a tree, and some additional data, and
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 The TREE_PURPOSE of each entry is either a DECL (for a function or
57 static data member), or a TYPE (for a class) indicating what we are
58 hoping to instantiate. The TREE_VALUE is not used. */
59 static GTY(()) tree pending_templates;
60 static GTY(()) tree last_pending_template;
62 int processing_template_parmlist;
63 static int template_header_count;
65 static GTY(()) tree saved_trees;
66 static GTY(()) varray_type inline_parm_levels;
67 static size_t inline_parm_levels_used;
69 static GTY(()) tree current_tinst_level;
71 static GTY(()) tree saved_access_scope;
73 /* Live only within one (recursive) call to tsubst_expr. We use
74 this to pass the statement expression node from the STMT_EXPR
75 to the EXPR_STMT that is its result. */
76 static tree cur_stmt_expr;
78 /* A map from local variable declarations in the body of the template
79 presently being instantiated to the corresponding instantiated
81 static htab_t local_specializations;
83 #define UNIFY_ALLOW_NONE 0
84 #define UNIFY_ALLOW_MORE_CV_QUAL 1
85 #define UNIFY_ALLOW_LESS_CV_QUAL 2
86 #define UNIFY_ALLOW_DERIVED 4
87 #define UNIFY_ALLOW_INTEGER 8
88 #define UNIFY_ALLOW_OUTER_LEVEL 16
89 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
90 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
92 static void push_access_scope (tree);
93 static void pop_access_scope (tree);
94 static int resolve_overloaded_unification (tree, tree, tree, tree,
95 unification_kind_t, int);
96 static int try_one_overload (tree, tree, tree, tree, tree,
97 unification_kind_t, int, bool);
98 static int unify (tree, tree, tree, tree, int);
99 static void add_pending_template (tree);
100 static void reopen_tinst_level (tree);
101 static tree classtype_mangled_name (tree);
102 static char* mangle_class_name_for_template (const char *, tree, tree);
103 static tree tsubst_initializer_list (tree, tree);
104 static tree get_class_bindings (tree, tree, tree);
105 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t, int);
106 static void tsubst_enum (tree, tree, tree);
107 static tree add_to_template_args (tree, tree);
108 static tree add_outermost_template_args (tree, tree);
109 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
110 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*);
111 static int type_unification_real (tree, tree, tree, tree,
112 int, unification_kind_t, int);
113 static void note_template_header (int);
114 static tree convert_nontype_argument_function (tree, tree);
115 static tree convert_nontype_argument (tree, tree);
116 static tree convert_template_argument (tree, tree, tree,
117 tsubst_flags_t, int, tree);
118 static int for_each_template_parm (tree, tree_fn_t, void*,
119 struct pointer_set_t*);
120 static tree build_template_parm_index (int, int, int, tree, tree);
121 static int inline_needs_template_parms (tree);
122 static void push_inline_template_parms_recursive (tree, int);
123 static tree retrieve_local_specialization (tree);
124 static void register_local_specialization (tree, tree);
125 static tree reduce_template_parm_level (tree, tree, int);
126 static int mark_template_parm (tree, void *);
127 static int template_parm_this_level_p (tree, void *);
128 static tree tsubst_friend_function (tree, tree);
129 static tree tsubst_friend_class (tree, tree);
130 static int can_complete_type_without_circularity (tree);
131 static tree get_bindings (tree, tree, tree, bool);
132 static int template_decl_level (tree);
133 static int check_cv_quals_for_unify (int, tree, tree);
134 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
135 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
136 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
137 static void regenerate_decl_from_template (tree, tree);
138 static tree most_specialized (tree, tree, tree);
139 static tree most_specialized_class (tree, tree);
140 static int template_class_depth_real (tree, int);
141 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
142 static tree tsubst_arg_types (tree, tree, tsubst_flags_t, tree);
143 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
144 static void check_specialization_scope (void);
145 static tree process_partial_specialization (tree);
146 static void set_current_access_from_decl (tree);
147 static void check_default_tmpl_args (tree, tree, int, int);
148 static tree tsubst_call_declarator_parms (tree, tree, tsubst_flags_t, tree);
149 static tree get_template_base (tree, tree, tree, tree);
150 static int verify_class_unification (tree, tree, tree);
151 static tree try_class_unification (tree, tree, tree, tree);
152 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
154 static tree determine_specialization (tree, tree, tree *, int, int);
155 static int template_args_equal (tree, tree);
156 static void tsubst_default_arguments (tree);
157 static tree for_each_template_parm_r (tree *, int *, void *);
158 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
159 static void copy_default_args_to_explicit_spec (tree);
160 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
161 static int eq_local_specializations (const void *, const void *);
162 static bool dependent_type_p_r (tree);
163 static tree tsubst (tree, tree, tsubst_flags_t, tree);
164 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree);
165 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
167 /* Make the current scope suitable for access checking when we are
168 processing T. T can be FUNCTION_DECL for instantiated function
169 template, or VAR_DECL for static member variable (need by
170 instantiate_decl). */
173 push_access_scope (tree t)
175 gcc_assert (TREE_CODE (t) == FUNCTION_DECL
176 || TREE_CODE (t) == VAR_DECL);
178 if (DECL_FRIEND_CONTEXT (t))
179 push_nested_class (DECL_FRIEND_CONTEXT (t));
180 else if (DECL_CLASS_SCOPE_P (t))
181 push_nested_class (DECL_CONTEXT (t));
183 push_to_top_level ();
185 if (TREE_CODE (t) == FUNCTION_DECL)
187 saved_access_scope = tree_cons
188 (NULL_TREE, current_function_decl, saved_access_scope);
189 current_function_decl = t;
193 /* Restore the scope set up by push_access_scope. T is the node we
197 pop_access_scope (tree t)
199 if (TREE_CODE (t) == FUNCTION_DECL)
201 current_function_decl = TREE_VALUE (saved_access_scope);
202 saved_access_scope = TREE_CHAIN (saved_access_scope);
205 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
208 pop_from_top_level ();
211 /* Do any processing required when DECL (a member template
212 declaration) is finished. Returns the TEMPLATE_DECL corresponding
213 to DECL, unless it is a specialization, in which case the DECL
214 itself is returned. */
217 finish_member_template_decl (tree decl)
219 if (decl == error_mark_node)
220 return error_mark_node;
222 gcc_assert (DECL_P (decl));
224 if (TREE_CODE (decl) == TYPE_DECL)
228 type = TREE_TYPE (decl);
229 if (IS_AGGR_TYPE (type)
230 && CLASSTYPE_TEMPLATE_INFO (type)
231 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
233 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
234 check_member_template (tmpl);
239 else if (TREE_CODE (decl) == FIELD_DECL)
240 error ("data member %qD cannot be a member template", decl);
241 else if (DECL_TEMPLATE_INFO (decl))
243 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
245 check_member_template (DECL_TI_TEMPLATE (decl));
246 return DECL_TI_TEMPLATE (decl);
252 error ("invalid member template declaration %qD", decl);
254 return error_mark_node;
257 /* Returns the template nesting level of the indicated class TYPE.
267 A<T>::B<U> has depth two, while A<T> has depth one.
268 Both A<T>::B<int> and A<int>::B<U> have depth one, if
269 COUNT_SPECIALIZATIONS is 0 or if they are instantiations, not
272 This function is guaranteed to return 0 if passed NULL_TREE so
273 that, for example, `template_class_depth (current_class_type)' is
277 template_class_depth_real (tree type, int count_specializations)
282 type && TREE_CODE (type) != NAMESPACE_DECL;
283 type = (TREE_CODE (type) == FUNCTION_DECL)
284 ? CP_DECL_CONTEXT (type) : TYPE_CONTEXT (type))
286 if (TREE_CODE (type) != FUNCTION_DECL)
288 if (CLASSTYPE_TEMPLATE_INFO (type)
289 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
290 && ((count_specializations
291 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
292 || uses_template_parms (CLASSTYPE_TI_ARGS (type))))
297 if (DECL_TEMPLATE_INFO (type)
298 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (type))
299 && ((count_specializations
300 && DECL_TEMPLATE_SPECIALIZATION (type))
301 || uses_template_parms (DECL_TI_ARGS (type))))
309 /* Returns the template nesting level of the indicated class TYPE.
310 Like template_class_depth_real, but instantiations do not count in
314 template_class_depth (tree type)
316 return template_class_depth_real (type, /*count_specializations=*/0);
319 /* Returns 1 if processing DECL as part of do_pending_inlines
320 needs us to push template parms. */
323 inline_needs_template_parms (tree decl)
325 if (! DECL_TEMPLATE_INFO (decl))
328 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
329 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
332 /* Subroutine of maybe_begin_member_template_processing.
333 Push the template parms in PARMS, starting from LEVELS steps into the
334 chain, and ending at the beginning, since template parms are listed
338 push_inline_template_parms_recursive (tree parmlist, int levels)
340 tree parms = TREE_VALUE (parmlist);
344 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
346 ++processing_template_decl;
347 current_template_parms
348 = tree_cons (size_int (processing_template_decl),
349 parms, current_template_parms);
350 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
352 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
354 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
356 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
357 gcc_assert (DECL_P (parm));
359 switch (TREE_CODE (parm))
368 /* Make a CONST_DECL as is done in process_template_parm.
369 It is ugly that we recreate this here; the original
370 version built in process_template_parm is no longer
372 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
374 DECL_ARTIFICIAL (decl) = 1;
375 TREE_CONSTANT (decl) = 1;
376 TREE_INVARIANT (decl) = 1;
377 TREE_READONLY (decl) = 1;
378 DECL_INITIAL (decl) = DECL_INITIAL (parm);
379 SET_DECL_TEMPLATE_PARM_P (decl);
390 /* Restore the template parameter context for a member template or
391 a friend template defined in a class definition. */
394 maybe_begin_member_template_processing (tree decl)
399 if (inline_needs_template_parms (decl))
401 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
402 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
404 if (DECL_TEMPLATE_SPECIALIZATION (decl))
407 parms = TREE_CHAIN (parms);
410 push_inline_template_parms_recursive (parms, levels);
413 /* Remember how many levels of template parameters we pushed so that
414 we can pop them later. */
415 if (!inline_parm_levels)
416 VARRAY_INT_INIT (inline_parm_levels, 4, "inline_parm_levels");
417 if (inline_parm_levels_used == inline_parm_levels->num_elements)
418 VARRAY_GROW (inline_parm_levels, 2 * inline_parm_levels_used);
419 VARRAY_INT (inline_parm_levels, inline_parm_levels_used) = levels;
420 ++inline_parm_levels_used;
423 /* Undo the effects of maybe_begin_member_template_processing. */
426 maybe_end_member_template_processing (void)
430 if (!inline_parm_levels_used)
433 --inline_parm_levels_used;
435 i < VARRAY_INT (inline_parm_levels, inline_parm_levels_used);
438 --processing_template_decl;
439 current_template_parms = TREE_CHAIN (current_template_parms);
444 /* Return a new template argument vector which contains all of ARGS,
445 but has as its innermost set of arguments the EXTRA_ARGS. */
448 add_to_template_args (tree args, tree extra_args)
455 extra_depth = TMPL_ARGS_DEPTH (extra_args);
456 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
458 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
459 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
461 for (j = 1; j <= extra_depth; ++j, ++i)
462 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
467 /* Like add_to_template_args, but only the outermost ARGS are added to
468 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
469 (EXTRA_ARGS) levels are added. This function is used to combine
470 the template arguments from a partial instantiation with the
471 template arguments used to attain the full instantiation from the
472 partial instantiation. */
475 add_outermost_template_args (tree args, tree extra_args)
479 /* If there are more levels of EXTRA_ARGS than there are ARGS,
480 something very fishy is going on. */
481 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
483 /* If *all* the new arguments will be the EXTRA_ARGS, just return
485 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
488 /* For the moment, we make ARGS look like it contains fewer levels. */
489 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
491 new_args = add_to_template_args (args, extra_args);
493 /* Now, we restore ARGS to its full dimensions. */
494 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
499 /* Return the N levels of innermost template arguments from the ARGS. */
502 get_innermost_template_args (tree args, int n)
510 /* If N is 1, just return the innermost set of template arguments. */
512 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
514 /* If we're not removing anything, just return the arguments we were
516 extra_levels = TMPL_ARGS_DEPTH (args) - n;
517 gcc_assert (extra_levels >= 0);
518 if (extra_levels == 0)
521 /* Make a new set of arguments, not containing the outer arguments. */
522 new_args = make_tree_vec (n);
523 for (i = 1; i <= n; ++i)
524 SET_TMPL_ARGS_LEVEL (new_args, i,
525 TMPL_ARGS_LEVEL (args, i + extra_levels));
530 /* We've got a template header coming up; push to a new level for storing
534 begin_template_parm_list (void)
536 /* We use a non-tag-transparent scope here, which causes pushtag to
537 put tags in this scope, rather than in the enclosing class or
538 namespace scope. This is the right thing, since we want
539 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
540 global template class, push_template_decl handles putting the
541 TEMPLATE_DECL into top-level scope. For a nested template class,
544 template <class T> struct S1 {
545 template <class T> struct S2 {};
548 pushtag contains special code to call pushdecl_with_scope on the
549 TEMPLATE_DECL for S2. */
550 begin_scope (sk_template_parms, NULL);
551 ++processing_template_decl;
552 ++processing_template_parmlist;
553 note_template_header (0);
556 /* This routine is called when a specialization is declared. If it is
557 invalid to declare a specialization here, an error is reported. */
560 check_specialization_scope (void)
562 tree scope = current_scope ();
566 An explicit specialization shall be declared in the namespace of
567 which the template is a member, or, for member templates, in the
568 namespace of which the enclosing class or enclosing class
569 template is a member. An explicit specialization of a member
570 function, member class or static data member of a class template
571 shall be declared in the namespace of which the class template
573 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
574 error ("explicit specialization in non-namespace scope %qD", scope);
578 In an explicit specialization declaration for a member of a class
579 template or a member template that appears in namespace scope,
580 the member template and some of its enclosing class templates may
581 remain unspecialized, except that the declaration shall not
582 explicitly specialize a class member template if its enclosing
583 class templates are not explicitly specialized as well. */
584 if (current_template_parms)
585 error ("enclosing class templates are not explicitly specialized");
588 /* We've just seen template <>. */
591 begin_specialization (void)
593 begin_scope (sk_template_spec, NULL);
594 note_template_header (1);
595 check_specialization_scope ();
598 /* Called at then end of processing a declaration preceded by
602 end_specialization (void)
605 reset_specialization ();
608 /* Any template <>'s that we have seen thus far are not referring to a
609 function specialization. */
612 reset_specialization (void)
614 processing_specialization = 0;
615 template_header_count = 0;
618 /* We've just seen a template header. If SPECIALIZATION is nonzero,
619 it was of the form template <>. */
622 note_template_header (int specialization)
624 processing_specialization = specialization;
625 template_header_count++;
628 /* We're beginning an explicit instantiation. */
631 begin_explicit_instantiation (void)
633 gcc_assert (!processing_explicit_instantiation);
634 processing_explicit_instantiation = true;
639 end_explicit_instantiation (void)
641 gcc_assert (processing_explicit_instantiation);
642 processing_explicit_instantiation = false;
645 /* A explicit specialization or partial specialization TMPL is being
646 declared. Check that the namespace in which the specialization is
647 occurring is permissible. Returns false iff it is invalid to
648 specialize TMPL in the current namespace. */
651 check_specialization_namespace (tree tmpl)
653 tree tpl_ns = decl_namespace_context (tmpl);
657 An explicit specialization shall be declared in the namespace of
658 which the template is a member, or, for member templates, in the
659 namespace of which the enclosing class or enclosing class
660 template is a member. An explicit specialization of a member
661 function, member class or static data member of a class template
662 shall be declared in the namespace of which the class template is
664 if (is_associated_namespace (current_namespace, tpl_ns))
665 /* Same or super-using namespace. */
669 pedwarn ("specialization of %qD in different namespace", tmpl);
670 cp_pedwarn_at (" from definition of %q#D", tmpl);
675 /* The TYPE is being declared. If it is a template type, that means it
676 is a partial specialization. Do appropriate error-checking. */
679 maybe_process_partial_specialization (tree type)
681 /* TYPE maybe an ERROR_MARK_NODE. */
682 tree context = TYPE_P (type) ? TYPE_CONTEXT (type) : NULL_TREE;
684 if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
686 /* This is for ordinary explicit specialization and partial
687 specialization of a template class such as:
689 template <> class C<int>;
693 template <class T> class C<T*>;
695 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
697 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
698 && !COMPLETE_TYPE_P (type))
700 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
701 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
702 if (processing_template_decl)
703 push_template_decl (TYPE_MAIN_DECL (type));
705 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
706 error ("specialization of %qT after instantiation", type);
708 else if (CLASS_TYPE_P (type)
709 && !CLASSTYPE_USE_TEMPLATE (type)
710 && CLASSTYPE_TEMPLATE_INFO (type)
711 && context && CLASS_TYPE_P (context)
712 && CLASSTYPE_TEMPLATE_INFO (context))
714 /* This is for an explicit specialization of member class
715 template according to [temp.expl.spec/18]:
717 template <> template <class U> class C<int>::D;
719 The context `C<int>' must be an implicit instantiation.
720 Otherwise this is just a member class template declared
723 template <> class C<int> { template <class U> class D; };
724 template <> template <class U> class C<int>::D;
726 In the first case, `C<int>::D' is a specialization of `C<T>::D'
727 while in the second case, `C<int>::D' is a primary template
728 and `C<T>::D' may not exist. */
730 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
731 && !COMPLETE_TYPE_P (type))
735 if (current_namespace
736 != decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type)))
738 pedwarn ("specializing %q#T in different namespace", type);
739 cp_pedwarn_at (" from definition of %q#D",
740 CLASSTYPE_TI_TEMPLATE (type));
743 /* Check for invalid specialization after instantiation:
745 template <> template <> class C<int>::D<int>;
746 template <> template <class U> class C<int>::D; */
748 for (t = DECL_TEMPLATE_INSTANTIATIONS
749 (most_general_template (CLASSTYPE_TI_TEMPLATE (type)));
750 t; t = TREE_CHAIN (t))
751 if (TREE_VALUE (t) != type
752 && TYPE_CONTEXT (TREE_VALUE (t)) == context)
753 error ("specialization %qT after instantiation %qT",
754 type, TREE_VALUE (t));
756 /* Mark TYPE as a specialization. And as a result, we only
757 have one level of template argument for the innermost
759 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
760 CLASSTYPE_TI_ARGS (type)
761 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
764 else if (processing_specialization)
765 error ("explicit specialization of non-template %qT", type);
768 /* Returns nonzero if we can optimize the retrieval of specializations
769 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
770 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
773 optimize_specialization_lookup_p (tree tmpl)
775 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
776 && DECL_CLASS_SCOPE_P (tmpl)
777 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
779 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
780 /* The optimized lookup depends on the fact that the
781 template arguments for the member function template apply
782 purely to the containing class, which is not true if the
783 containing class is an explicit or partial
785 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
786 && !DECL_MEMBER_TEMPLATE_P (tmpl)
787 && !DECL_CONV_FN_P (tmpl)
788 /* It is possible to have a template that is not a member
789 template and is not a member of a template class:
791 template <typename T>
792 struct S { friend A::f(); };
794 Here, the friend function is a template, but the context does
795 not have template information. The optimized lookup relies
796 on having ARGS be the template arguments for both the class
797 and the function template. */
798 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
801 /* Retrieve the specialization (in the sense of [temp.spec] - a
802 specialization is either an instantiation or an explicit
803 specialization) of TMPL for the given template ARGS. If there is
804 no such specialization, return NULL_TREE. The ARGS are a vector of
805 arguments, or a vector of vectors of arguments, in the case of
806 templates with more than one level of parameters.
808 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
809 then we search for a partial specialization matching ARGS. This
810 parameter is ignored if TMPL is not a class template. */
813 retrieve_specialization (tree tmpl, tree args,
814 bool class_specializations_p)
816 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
818 /* There should be as many levels of arguments as there are
819 levels of parameters. */
820 gcc_assert (TMPL_ARGS_DEPTH (args)
821 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
823 if (optimize_specialization_lookup_p (tmpl))
826 tree class_specialization;
827 VEC(tree,gc) *methods;
831 /* The template arguments actually apply to the containing
832 class. Find the class specialization with those
834 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
836 = retrieve_specialization (class_template, args,
837 /*class_specializations_p=*/false);
838 if (!class_specialization)
840 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
841 for the specialization. */
842 idx = class_method_index_for_fn (class_specialization, tmpl);
845 /* Iterate through the methods with the indicated name, looking
846 for the one that has an instance of TMPL. */
847 methods = CLASSTYPE_METHOD_VEC (class_specialization);
848 for (fns = VEC_index (tree, methods, idx); fns; fns = OVL_NEXT (fns))
850 tree fn = OVL_CURRENT (fns);
851 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl)
861 /* Class templates store their instantiations on the
862 DECL_TEMPLATE_INSTANTIATIONS list; other templates use the
863 DECL_TEMPLATE_SPECIALIZATIONS list. */
864 if (!class_specializations_p
865 && TREE_CODE (DECL_TEMPLATE_RESULT (tmpl)) == TYPE_DECL)
866 sp = &DECL_TEMPLATE_INSTANTIATIONS (tmpl);
868 sp = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
870 /* Iterate through the list until we find a matching template. */
871 while (*sp != NULL_TREE)
875 if (comp_template_args (TREE_PURPOSE (spec), args))
877 /* Use the move-to-front heuristic to speed up future
881 *sp = TREE_CHAIN (*sp);
882 TREE_CHAIN (spec) = *head;
885 return TREE_VALUE (spec);
887 sp = &TREE_CHAIN (spec);
894 /* Like retrieve_specialization, but for local declarations. */
897 retrieve_local_specialization (tree tmpl)
899 tree spec = htab_find_with_hash (local_specializations, tmpl,
900 htab_hash_pointer (tmpl));
901 return spec ? TREE_PURPOSE (spec) : NULL_TREE;
904 /* Returns nonzero iff DECL is a specialization of TMPL. */
907 is_specialization_of (tree decl, tree tmpl)
911 if (TREE_CODE (decl) == FUNCTION_DECL)
915 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
921 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
923 for (t = TREE_TYPE (decl);
925 t = CLASSTYPE_USE_TEMPLATE (t)
926 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
927 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
934 /* Returns nonzero iff DECL is a specialization of friend declaration
935 FRIEND according to [temp.friend]. */
938 is_specialization_of_friend (tree decl, tree friend)
940 bool need_template = true;
943 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
944 || TREE_CODE (decl) == TYPE_DECL);
946 /* For [temp.friend/6] when FRIEND is an ordinary member function
947 of a template class, we want to check if DECL is a specialization
949 if (TREE_CODE (friend) == FUNCTION_DECL
950 && DECL_TEMPLATE_INFO (friend)
951 && !DECL_USE_TEMPLATE (friend))
953 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
954 friend = DECL_TI_TEMPLATE (friend);
955 need_template = false;
957 else if (TREE_CODE (friend) == TEMPLATE_DECL
958 && !PRIMARY_TEMPLATE_P (friend))
959 need_template = false;
961 /* There is nothing to do if this is not a template friend. */
962 if (TREE_CODE (friend) != TEMPLATE_DECL)
965 if (is_specialization_of (decl, friend))
969 A member of a class template may be declared to be a friend of a
970 non-template class. In this case, the corresponding member of
971 every specialization of the class template is a friend of the
972 class granting friendship.
974 For example, given a template friend declaration
976 template <class T> friend void A<T>::f();
978 the member function below is considered a friend
980 template <> struct A<int> {
984 For this type of template friend, TEMPLATE_DEPTH below will be
985 nonzero. To determine if DECL is a friend of FRIEND, we first
986 check if the enclosing class is a specialization of another. */
988 template_depth = template_class_depth (DECL_CONTEXT (friend));
990 && DECL_CLASS_SCOPE_P (decl)
991 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
992 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend))))
994 /* Next, we check the members themselves. In order to handle
995 a few tricky cases, such as when FRIEND's are
997 template <class T> friend void A<T>::g(T t);
998 template <class T> template <T t> friend void A<T>::h();
1002 void A<int>::g(int);
1003 template <int> void A<int>::h();
1005 we need to figure out ARGS, the template arguments from
1006 the context of DECL. This is required for template substitution
1007 of `T' in the function parameter of `g' and template parameter
1008 of `h' in the above examples. Here ARGS corresponds to `int'. */
1010 tree context = DECL_CONTEXT (decl);
1011 tree args = NULL_TREE;
1012 int current_depth = 0;
1014 while (current_depth < template_depth)
1016 if (CLASSTYPE_TEMPLATE_INFO (context))
1018 if (current_depth == 0)
1019 args = TYPE_TI_ARGS (context);
1021 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1024 context = TYPE_CONTEXT (context);
1027 if (TREE_CODE (decl) == FUNCTION_DECL)
1032 tree friend_args_type;
1033 tree decl_args_type;
1035 /* Make sure that both DECL and FRIEND are templates or
1037 is_template = DECL_TEMPLATE_INFO (decl)
1038 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1039 if (need_template ^ is_template)
1041 else if (is_template)
1043 /* If both are templates, check template parameter list. */
1045 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
1047 if (!comp_template_parms
1048 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1052 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1055 decl_type = TREE_TYPE (decl);
1057 friend_type = tsubst_function_type (TREE_TYPE (friend), args,
1058 tf_none, NULL_TREE);
1059 if (friend_type == error_mark_node)
1062 /* Check if return types match. */
1063 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1066 /* Check if function parameter types match, ignoring the
1067 `this' parameter. */
1068 friend_args_type = TYPE_ARG_TYPES (friend_type);
1069 decl_args_type = TYPE_ARG_TYPES (decl_type);
1070 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend))
1071 friend_args_type = TREE_CHAIN (friend_args_type);
1072 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1073 decl_args_type = TREE_CHAIN (decl_args_type);
1075 return compparms (decl_args_type, friend_args_type);
1079 /* DECL is a TYPE_DECL */
1081 tree decl_type = TREE_TYPE (decl);
1083 /* Make sure that both DECL and FRIEND are templates or
1086 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1087 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1089 if (need_template ^ is_template)
1091 else if (is_template)
1094 /* If both are templates, check the name of the two
1095 TEMPLATE_DECL's first because is_friend didn't. */
1096 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1097 != DECL_NAME (friend))
1100 /* Now check template parameter list. */
1102 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
1104 return comp_template_parms
1105 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1109 return (DECL_NAME (decl)
1110 == DECL_NAME (friend));
1116 /* Register the specialization SPEC as a specialization of TMPL with
1117 the indicated ARGS. Returns SPEC, or an equivalent prior
1118 declaration, if available. */
1121 register_specialization (tree spec, tree tmpl, tree args)
1125 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1127 if (TREE_CODE (spec) == FUNCTION_DECL
1128 && uses_template_parms (DECL_TI_ARGS (spec)))
1129 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1130 register it; we want the corresponding TEMPLATE_DECL instead.
1131 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1132 the more obvious `uses_template_parms (spec)' to avoid problems
1133 with default function arguments. In particular, given
1134 something like this:
1136 template <class T> void f(T t1, T t = T())
1138 the default argument expression is not substituted for in an
1139 instantiation unless and until it is actually needed. */
1142 /* There should be as many levels of arguments as there are
1143 levels of parameters. */
1144 gcc_assert (TMPL_ARGS_DEPTH (args)
1145 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
1147 fn = retrieve_specialization (tmpl, args,
1148 /*class_specializations_p=*/false);
1149 /* We can sometimes try to re-register a specialization that we've
1150 already got. In particular, regenerate_decl_from_template calls
1151 duplicate_decls which will update the specialization list. But,
1152 we'll still get called again here anyhow. It's more convenient
1153 to simply allow this than to try to prevent it. */
1156 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1158 if (DECL_TEMPLATE_INSTANTIATION (fn))
1161 || DECL_EXPLICIT_INSTANTIATION (fn))
1163 error ("specialization of %qD after instantiation",
1169 /* This situation should occur only if the first
1170 specialization is an implicit instantiation, the
1171 second is an explicit specialization, and the
1172 implicit instantiation has not yet been used. That
1173 situation can occur if we have implicitly
1174 instantiated a member function and then specialized
1177 We can also wind up here if a friend declaration that
1178 looked like an instantiation turns out to be a
1181 template <class T> void foo(T);
1182 class S { friend void foo<>(int) };
1183 template <> void foo(int);
1185 We transform the existing DECL in place so that any
1186 pointers to it become pointers to the updated
1189 If there was a definition for the template, but not
1190 for the specialization, we want this to look as if
1191 there were no definition, and vice versa. */
1192 DECL_INITIAL (fn) = NULL_TREE;
1193 duplicate_decls (spec, fn);
1198 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1200 if (!duplicate_decls (spec, fn) && DECL_INITIAL (spec))
1201 /* Dup decl failed, but this is a new definition. Set the
1202 line number so any errors match this new
1204 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1210 /* A specialization must be declared in the same namespace as the
1211 template it is specializing. */
1212 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1213 && !check_specialization_namespace (tmpl))
1214 DECL_CONTEXT (spec) = decl_namespace_context (tmpl);
1216 if (!optimize_specialization_lookup_p (tmpl))
1217 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
1218 = tree_cons (args, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
1223 /* Unregister the specialization SPEC as a specialization of TMPL.
1224 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1225 if the SPEC was listed as a specialization of TMPL. */
1228 reregister_specialization (tree spec, tree tmpl, tree new_spec)
1232 for (s = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
1234 s = &TREE_CHAIN (*s))
1235 if (TREE_VALUE (*s) == spec)
1238 *s = TREE_CHAIN (*s);
1240 TREE_VALUE (*s) = new_spec;
1247 /* Compare an entry in the local specializations hash table P1 (which
1248 is really a pointer to a TREE_LIST) with P2 (which is really a
1252 eq_local_specializations (const void *p1, const void *p2)
1254 return TREE_VALUE ((tree) p1) == (tree) p2;
1257 /* Hash P1, an entry in the local specializations table. */
1260 hash_local_specialization (const void* p1)
1262 return htab_hash_pointer (TREE_VALUE ((tree) p1));
1265 /* Like register_specialization, but for local declarations. We are
1266 registering SPEC, an instantiation of TMPL. */
1269 register_local_specialization (tree spec, tree tmpl)
1273 slot = htab_find_slot_with_hash (local_specializations, tmpl,
1274 htab_hash_pointer (tmpl), INSERT);
1275 *slot = build_tree_list (spec, tmpl);
1278 /* Print the list of candidate FNS in an error message. */
1281 print_candidates (tree fns)
1285 const char *str = "candidates are:";
1287 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn))
1291 for (f = TREE_VALUE (fn); f; f = OVL_NEXT (f))
1292 cp_error_at ("%s %+#D", str, OVL_CURRENT (f));
1297 /* Returns the template (one of the functions given by TEMPLATE_ID)
1298 which can be specialized to match the indicated DECL with the
1299 explicit template args given in TEMPLATE_ID. The DECL may be
1300 NULL_TREE if none is available. In that case, the functions in
1301 TEMPLATE_ID are non-members.
1303 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1304 specialization of a member template.
1306 The TEMPLATE_COUNT is the number of references to qualifying
1307 template classes that appeared in the name of the function. See
1308 check_explicit_specialization for a more accurate description.
1310 The template args (those explicitly specified and those deduced)
1311 are output in a newly created vector *TARGS_OUT.
1313 If it is impossible to determine the result, an error message is
1314 issued. The error_mark_node is returned to indicate failure. */
1317 determine_specialization (tree template_id,
1320 int need_member_template,
1325 tree explicit_targs;
1326 tree candidates = NULL_TREE;
1327 tree templates = NULL_TREE;
1329 struct cp_binding_level *b;
1331 *targs_out = NULL_TREE;
1333 if (template_id == error_mark_node)
1334 return error_mark_node;
1336 fns = TREE_OPERAND (template_id, 0);
1337 explicit_targs = TREE_OPERAND (template_id, 1);
1339 if (fns == error_mark_node)
1340 return error_mark_node;
1342 /* Check for baselinks. */
1343 if (BASELINK_P (fns))
1344 fns = BASELINK_FUNCTIONS (fns);
1346 if (!is_overloaded_fn (fns))
1348 error ("%qD is not a function template", fns);
1349 return error_mark_node;
1352 /* Count the number of template headers specified for this
1355 for (b = current_binding_level;
1356 b->kind == sk_template_parms;
1360 for (; fns; fns = OVL_NEXT (fns))
1362 tree fn = OVL_CURRENT (fns);
1364 if (TREE_CODE (fn) == TEMPLATE_DECL)
1366 tree decl_arg_types;
1369 /* DECL might be a specialization of FN. */
1371 /* Adjust the type of DECL in case FN is a static member. */
1372 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1373 if (DECL_STATIC_FUNCTION_P (fn)
1374 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1375 decl_arg_types = TREE_CHAIN (decl_arg_types);
1377 /* Check that the number of function parameters matches.
1379 template <class T> void f(int i = 0);
1380 template <> void f<int>();
1381 The specialization f<int> is invalid but is not caught
1382 by get_bindings below. */
1384 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1385 if (list_length (fn_arg_types) != list_length (decl_arg_types))
1388 /* For a non-static member function, we need to make sure that
1389 the const qualification is the same. This can be done by
1390 checking the 'this' in the argument list. */
1391 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1392 && !same_type_p (TREE_VALUE (fn_arg_types),
1393 TREE_VALUE (decl_arg_types)))
1396 /* In case of explicit specialization, we need to check if
1397 the number of template headers appearing in the specialization
1398 is correct. This is usually done in check_explicit_specialization,
1399 but the check done there cannot be exhaustive when specializing
1400 member functions. Consider the following code:
1402 template <> void A<int>::f(int);
1403 template <> template <> void A<int>::f(int);
1405 Assuming that A<int> is not itself an explicit specialization
1406 already, the first line specializes "f" which is a non-template
1407 member function, whilst the second line specializes "f" which
1408 is a template member function. So both lines are syntactically
1409 correct, and check_explicit_specialization does not reject
1412 Here, we can do better, as we are matching the specialization
1413 against the declarations. We count the number of template
1414 headers, and we check if they match TEMPLATE_COUNT + 1
1415 (TEMPLATE_COUNT is the number of qualifying template classes,
1416 plus there must be another header for the member template
1419 Notice that if header_count is zero, this is not a
1420 specialization but rather a template instantiation, so there
1421 is no check we can perform here. */
1422 if (header_count && header_count != template_count + 1)
1425 /* Check that the number of template arguments at the
1426 innermost level for DECL is the same as for FN. */
1427 if (current_binding_level->kind == sk_template_parms
1428 && !current_binding_level->explicit_spec_p
1429 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1430 != TREE_VEC_LENGTH (TREE_VALUE (current_template_parms))))
1433 /* See whether this function might be a specialization of this
1435 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1438 /* We cannot deduce template arguments that when used to
1439 specialize TMPL will produce DECL. */
1442 /* Save this template, and the arguments deduced. */
1443 templates = tree_cons (targs, fn, templates);
1445 else if (need_member_template)
1446 /* FN is an ordinary member function, and we need a
1447 specialization of a member template. */
1449 else if (TREE_CODE (fn) != FUNCTION_DECL)
1450 /* We can get IDENTIFIER_NODEs here in certain erroneous
1453 else if (!DECL_FUNCTION_MEMBER_P (fn))
1454 /* This is just an ordinary non-member function. Nothing can
1455 be a specialization of that. */
1457 else if (DECL_ARTIFICIAL (fn))
1458 /* Cannot specialize functions that are created implicitly. */
1462 tree decl_arg_types;
1464 /* This is an ordinary member function. However, since
1465 we're here, we can assume it's enclosing class is a
1466 template class. For example,
1468 template <typename T> struct S { void f(); };
1469 template <> void S<int>::f() {}
1471 Here, S<int>::f is a non-template, but S<int> is a
1472 template class. If FN has the same type as DECL, we
1473 might be in business. */
1475 if (!DECL_TEMPLATE_INFO (fn))
1476 /* Its enclosing class is an explicit specialization
1477 of a template class. This is not a candidate. */
1480 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1481 TREE_TYPE (TREE_TYPE (fn))))
1482 /* The return types differ. */
1485 /* Adjust the type of DECL in case FN is a static member. */
1486 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1487 if (DECL_STATIC_FUNCTION_P (fn)
1488 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1489 decl_arg_types = TREE_CHAIN (decl_arg_types);
1491 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1494 candidates = tree_cons (NULL_TREE, fn, candidates);
1498 if (templates && TREE_CHAIN (templates))
1504 It is possible for a specialization with a given function
1505 signature to be instantiated from more than one function
1506 template. In such cases, explicit specification of the
1507 template arguments must be used to uniquely identify the
1508 function template specialization being specialized.
1510 Note that here, there's no suggestion that we're supposed to
1511 determine which of the candidate templates is most
1512 specialized. However, we, also have:
1516 Partial ordering of overloaded function template
1517 declarations is used in the following contexts to select
1518 the function template to which a function template
1519 specialization refers:
1521 -- when an explicit specialization refers to a function
1524 So, we do use the partial ordering rules, at least for now.
1525 This extension can only serve to make invalid programs valid,
1526 so it's safe. And, there is strong anecdotal evidence that
1527 the committee intended the partial ordering rules to apply;
1528 the EDG front-end has that behavior, and John Spicer claims
1529 that the committee simply forgot to delete the wording in
1530 [temp.expl.spec]. */
1531 tree tmpl = most_specialized (templates, decl, explicit_targs);
1532 if (tmpl && tmpl != error_mark_node)
1534 targs = get_bindings (tmpl, decl, explicit_targs, /*check_ret=*/true);
1535 templates = tree_cons (targs, tmpl, NULL_TREE);
1539 if (templates == NULL_TREE && candidates == NULL_TREE)
1541 cp_error_at ("template-id %qD for %q+D does not match any template "
1544 return error_mark_node;
1546 else if ((templates && TREE_CHAIN (templates))
1547 || (candidates && TREE_CHAIN (candidates))
1548 || (templates && candidates))
1550 cp_error_at ("ambiguous template specialization %qD for %q+D",
1552 chainon (candidates, templates);
1553 print_candidates (candidates);
1554 return error_mark_node;
1557 /* We have one, and exactly one, match. */
1560 /* It was a specialization of an ordinary member function in a
1562 *targs_out = copy_node (DECL_TI_ARGS (TREE_VALUE (candidates)));
1563 return DECL_TI_TEMPLATE (TREE_VALUE (candidates));
1566 /* It was a specialization of a template. */
1567 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
1568 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
1570 *targs_out = copy_node (targs);
1571 SET_TMPL_ARGS_LEVEL (*targs_out,
1572 TMPL_ARGS_DEPTH (*targs_out),
1573 TREE_PURPOSE (templates));
1576 *targs_out = TREE_PURPOSE (templates);
1577 return TREE_VALUE (templates);
1580 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
1581 but with the default argument values filled in from those in the
1585 copy_default_args_to_explicit_spec_1 (tree spec_types,
1588 tree new_spec_types;
1593 if (spec_types == void_list_node)
1594 return void_list_node;
1596 /* Substitute into the rest of the list. */
1598 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
1599 TREE_CHAIN (tmpl_types));
1601 /* Add the default argument for this parameter. */
1602 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
1603 TREE_VALUE (spec_types),
1607 /* DECL is an explicit specialization. Replicate default arguments
1608 from the template it specializes. (That way, code like:
1610 template <class T> void f(T = 3);
1611 template <> void f(double);
1614 works, as required.) An alternative approach would be to look up
1615 the correct default arguments at the call-site, but this approach
1616 is consistent with how implicit instantiations are handled. */
1619 copy_default_args_to_explicit_spec (tree decl)
1624 tree new_spec_types;
1628 tree object_type = NULL_TREE;
1629 tree in_charge = NULL_TREE;
1630 tree vtt = NULL_TREE;
1632 /* See if there's anything we need to do. */
1633 tmpl = DECL_TI_TEMPLATE (decl);
1634 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
1635 for (t = tmpl_types; t; t = TREE_CHAIN (t))
1636 if (TREE_PURPOSE (t))
1641 old_type = TREE_TYPE (decl);
1642 spec_types = TYPE_ARG_TYPES (old_type);
1644 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1646 /* Remove the this pointer, but remember the object's type for
1648 object_type = TREE_TYPE (TREE_VALUE (spec_types));
1649 spec_types = TREE_CHAIN (spec_types);
1650 tmpl_types = TREE_CHAIN (tmpl_types);
1652 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
1654 /* DECL may contain more parameters than TMPL due to the extra
1655 in-charge parameter in constructors and destructors. */
1656 in_charge = spec_types;
1657 spec_types = TREE_CHAIN (spec_types);
1659 if (DECL_HAS_VTT_PARM_P (decl))
1662 spec_types = TREE_CHAIN (spec_types);
1666 /* Compute the merged default arguments. */
1668 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
1670 /* Compute the new FUNCTION_TYPE. */
1674 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
1679 /* Put the in-charge parameter back. */
1680 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
1681 TREE_VALUE (in_charge),
1684 new_type = build_method_type_directly (object_type,
1685 TREE_TYPE (old_type),
1689 new_type = build_function_type (TREE_TYPE (old_type),
1691 new_type = cp_build_type_attribute_variant (new_type,
1692 TYPE_ATTRIBUTES (old_type));
1693 new_type = build_exception_variant (new_type,
1694 TYPE_RAISES_EXCEPTIONS (old_type));
1695 TREE_TYPE (decl) = new_type;
1698 /* Check to see if the function just declared, as indicated in
1699 DECLARATOR, and in DECL, is a specialization of a function
1700 template. We may also discover that the declaration is an explicit
1701 instantiation at this point.
1703 Returns DECL, or an equivalent declaration that should be used
1704 instead if all goes well. Issues an error message if something is
1705 amiss. Returns error_mark_node if the error is not easily
1708 FLAGS is a bitmask consisting of the following flags:
1710 2: The function has a definition.
1711 4: The function is a friend.
1713 The TEMPLATE_COUNT is the number of references to qualifying
1714 template classes that appeared in the name of the function. For
1717 template <class T> struct S { void f(); };
1720 the TEMPLATE_COUNT would be 1. However, explicitly specialized
1721 classes are not counted in the TEMPLATE_COUNT, so that in
1723 template <class T> struct S {};
1724 template <> struct S<int> { void f(); }
1725 template <> void S<int>::f();
1727 the TEMPLATE_COUNT would be 0. (Note that this declaration is
1728 invalid; there should be no template <>.)
1730 If the function is a specialization, it is marked as such via
1731 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
1732 is set up correctly, and it is added to the list of specializations
1733 for that template. */
1736 check_explicit_specialization (tree declarator,
1741 int have_def = flags & 2;
1742 int is_friend = flags & 4;
1743 int specialization = 0;
1744 int explicit_instantiation = 0;
1745 int member_specialization = 0;
1746 tree ctype = DECL_CLASS_CONTEXT (decl);
1747 tree dname = DECL_NAME (decl);
1752 if (!processing_specialization)
1755 tsk = tsk_excessive_parms;
1758 tsk = current_tmpl_spec_kind (template_count);
1763 if (processing_specialization)
1766 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1768 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1771 /* This could be something like:
1773 template <class T> void f(T);
1774 class S { friend void f<>(int); } */
1778 /* This case handles bogus declarations like template <>
1779 template <class T> void f<int>(); */
1781 error ("template-id %qD in declaration of primary template",
1788 case tsk_invalid_member_spec:
1789 /* The error has already been reported in
1790 check_specialization_scope. */
1791 return error_mark_node;
1793 case tsk_invalid_expl_inst:
1794 error ("template parameter list used in explicit instantiation");
1800 error ("definition provided for explicit instantiation");
1802 explicit_instantiation = 1;
1805 case tsk_excessive_parms:
1806 case tsk_insufficient_parms:
1807 if (tsk == tsk_excessive_parms)
1808 error ("too many template parameter lists in declaration of %qD",
1810 else if (template_header_count)
1811 error("too few template parameter lists in declaration of %qD", decl);
1813 error("explicit specialization of %qD must be introduced by "
1814 "%<template <>%>", decl);
1818 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1820 member_specialization = 1;
1826 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1828 /* This case handles bogus declarations like template <>
1829 template <class T> void f<int>(); */
1831 if (uses_template_parms (declarator))
1832 error ("function template partial specialization %qD "
1833 "is not allowed", declarator);
1835 error ("template-id %qD in declaration of primary template",
1840 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
1841 /* This is a specialization of a member template, without
1842 specialization the containing class. Something like:
1844 template <class T> struct S {
1845 template <class U> void f (U);
1847 template <> template <class U> void S<int>::f(U) {}
1849 That's a specialization -- but of the entire template. */
1857 if (specialization || member_specialization)
1859 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
1860 for (; t; t = TREE_CHAIN (t))
1861 if (TREE_PURPOSE (t))
1864 ("default argument specified in explicit specialization");
1867 if (current_lang_name == lang_name_c)
1868 error ("template specialization with C linkage");
1871 if (specialization || member_specialization || explicit_instantiation)
1873 tree tmpl = NULL_TREE;
1874 tree targs = NULL_TREE;
1876 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
1877 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
1881 gcc_assert (TREE_CODE (declarator) == IDENTIFIER_NODE);
1886 /* If there is no class context, the explicit instantiation
1887 must be at namespace scope. */
1888 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
1890 /* Find the namespace binding, using the declaration
1892 fns = namespace_binding (dname, CP_DECL_CONTEXT (decl));
1893 if (!fns || !is_overloaded_fn (fns))
1895 error ("%qD is not a template function", dname);
1896 fns = error_mark_node;
1900 declarator = lookup_template_function (fns, NULL_TREE);
1903 if (declarator == error_mark_node)
1904 return error_mark_node;
1906 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
1908 if (!explicit_instantiation)
1909 /* A specialization in class scope. This is invalid,
1910 but the error will already have been flagged by
1911 check_specialization_scope. */
1912 return error_mark_node;
1915 /* It's not valid to write an explicit instantiation in
1918 class C { template void f(); }
1920 This case is caught by the parser. However, on
1923 template class C { void f(); };
1925 (which is invalid) we can get here. The error will be
1932 else if (ctype != NULL_TREE
1933 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
1936 /* Find the list of functions in ctype that have the same
1937 name as the declared function. */
1938 tree name = TREE_OPERAND (declarator, 0);
1939 tree fns = NULL_TREE;
1942 if (constructor_name_p (name, ctype))
1944 int is_constructor = DECL_CONSTRUCTOR_P (decl);
1946 if (is_constructor ? !TYPE_HAS_CONSTRUCTOR (ctype)
1947 : !CLASSTYPE_DESTRUCTORS (ctype))
1949 /* From [temp.expl.spec]:
1951 If such an explicit specialization for the member
1952 of a class template names an implicitly-declared
1953 special member function (clause _special_), the
1954 program is ill-formed.
1956 Similar language is found in [temp.explicit]. */
1957 error ("specialization of implicitly-declared special member function");
1958 return error_mark_node;
1961 name = is_constructor ? ctor_identifier : dtor_identifier;
1964 if (!DECL_CONV_FN_P (decl))
1966 idx = lookup_fnfields_1 (ctype, name);
1968 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (ctype), idx);
1972 VEC(tree,gc) *methods;
1975 /* For a type-conversion operator, we cannot do a
1976 name-based lookup. We might be looking for `operator
1977 int' which will be a specialization of `operator T'.
1978 So, we find *all* the conversion operators, and then
1979 select from them. */
1982 methods = CLASSTYPE_METHOD_VEC (ctype);
1984 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
1985 VEC_iterate (tree, methods, idx, ovl);
1988 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
1989 /* There are no more conversion functions. */
1992 /* Glue all these conversion functions together
1993 with those we already have. */
1994 for (; ovl; ovl = OVL_NEXT (ovl))
1995 fns = ovl_cons (OVL_CURRENT (ovl), fns);
1999 if (fns == NULL_TREE)
2001 error ("no member function %qD declared in %qT", name, ctype);
2002 return error_mark_node;
2005 TREE_OPERAND (declarator, 0) = fns;
2008 /* Figure out what exactly is being specialized at this point.
2009 Note that for an explicit instantiation, even one for a
2010 member function, we cannot tell apriori whether the
2011 instantiation is for a member template, or just a member
2012 function of a template class. Even if a member template is
2013 being instantiated, the member template arguments may be
2014 elided if they can be deduced from the rest of the
2016 tmpl = determine_specialization (declarator, decl,
2018 member_specialization,
2021 if (!tmpl || tmpl == error_mark_node)
2022 /* We couldn't figure out what this declaration was
2024 return error_mark_node;
2027 tree gen_tmpl = most_general_template (tmpl);
2029 if (explicit_instantiation)
2031 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2032 is done by do_decl_instantiation later. */
2034 int arg_depth = TMPL_ARGS_DEPTH (targs);
2035 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2037 if (arg_depth > parm_depth)
2039 /* If TMPL is not the most general template (for
2040 example, if TMPL is a friend template that is
2041 injected into namespace scope), then there will
2042 be too many levels of TARGS. Remove some of them
2047 new_targs = make_tree_vec (parm_depth);
2048 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2049 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2050 = TREE_VEC_ELT (targs, i);
2054 return instantiate_template (tmpl, targs, tf_error);
2057 /* If we thought that the DECL was a member function, but it
2058 turns out to be specializing a static member function,
2059 make DECL a static member function as well. */
2060 if (DECL_STATIC_FUNCTION_P (tmpl)
2061 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2062 revert_static_member_fn (decl);
2064 /* If this is a specialization of a member template of a
2065 template class. In we want to return the TEMPLATE_DECL,
2066 not the specialization of it. */
2067 if (tsk == tsk_template)
2069 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2070 DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl)) = NULL_TREE;
2073 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2074 DECL_SOURCE_LOCATION (DECL_TEMPLATE_RESULT (tmpl))
2075 = DECL_SOURCE_LOCATION (decl);
2076 /* We want to use the argument list specified in the
2077 definition, not in the original declaration. */
2078 DECL_ARGUMENTS (DECL_TEMPLATE_RESULT (tmpl))
2079 = DECL_ARGUMENTS (decl);
2084 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2085 DECL_TEMPLATE_INFO (decl) = tree_cons (tmpl, targs, NULL_TREE);
2087 /* Inherit default function arguments from the template
2088 DECL is specializing. */
2089 copy_default_args_to_explicit_spec (decl);
2091 /* This specialization has the same protection as the
2092 template it specializes. */
2093 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2094 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2096 if (is_friend && !have_def)
2097 /* This is not really a declaration of a specialization.
2098 It's just the name of an instantiation. But, it's not
2099 a request for an instantiation, either. */
2100 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2101 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2102 /* This is indeed a specialization. In case of constructors
2103 and destructors, we need in-charge and not-in-charge
2104 versions in V3 ABI. */
2105 clone_function_decl (decl, /*update_method_vec_p=*/0);
2107 /* Register this specialization so that we can find it
2109 decl = register_specialization (decl, gen_tmpl, targs);
2116 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2117 parameters. These are represented in the same format used for
2118 DECL_TEMPLATE_PARMS. */
2121 comp_template_parms (tree parms1, tree parms2)
2126 if (parms1 == parms2)
2129 for (p1 = parms1, p2 = parms2;
2130 p1 != NULL_TREE && p2 != NULL_TREE;
2131 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2133 tree t1 = TREE_VALUE (p1);
2134 tree t2 = TREE_VALUE (p2);
2137 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2138 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2140 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2143 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2145 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2146 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2148 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2151 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM)
2153 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2158 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2159 /* One set of parameters has more parameters lists than the
2166 /* Complain if DECL shadows a template parameter.
2168 [temp.local]: A template-parameter shall not be redeclared within its
2169 scope (including nested scopes). */
2172 check_template_shadow (tree decl)
2176 /* If we're not in a template, we can't possibly shadow a template
2178 if (!current_template_parms)
2181 /* Figure out what we're shadowing. */
2182 if (TREE_CODE (decl) == OVERLOAD)
2183 decl = OVL_CURRENT (decl);
2184 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
2186 /* If there's no previous binding for this name, we're not shadowing
2187 anything, let alone a template parameter. */
2191 /* If we're not shadowing a template parameter, we're done. Note
2192 that OLDDECL might be an OVERLOAD (or perhaps even an
2193 ERROR_MARK), so we can't just blithely assume it to be a _DECL
2195 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
2198 /* We check for decl != olddecl to avoid bogus errors for using a
2199 name inside a class. We check TPFI to avoid duplicate errors for
2200 inline member templates. */
2202 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
2205 cp_error_at ("declaration of %q#D", decl);
2206 cp_error_at (" shadows template parm %q#D", olddecl);
2209 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
2210 ORIG_LEVEL, DECL, and TYPE. */
2213 build_template_parm_index (int index,
2219 tree t = make_node (TEMPLATE_PARM_INDEX);
2220 TEMPLATE_PARM_IDX (t) = index;
2221 TEMPLATE_PARM_LEVEL (t) = level;
2222 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
2223 TEMPLATE_PARM_DECL (t) = decl;
2224 TREE_TYPE (t) = type;
2225 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
2226 TREE_INVARIANT (t) = TREE_INVARIANT (decl);
2227 TREE_READONLY (t) = TREE_READONLY (decl);
2232 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
2233 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
2234 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
2235 new one is created. */
2238 reduce_template_parm_level (tree index, tree type, int levels)
2240 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
2241 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
2242 != TEMPLATE_PARM_LEVEL (index) - levels))
2244 tree orig_decl = TEMPLATE_PARM_DECL (index);
2247 decl = build_decl (TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
2248 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
2249 TREE_INVARIANT (decl) = TREE_INVARIANT (orig_decl);
2250 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
2251 DECL_ARTIFICIAL (decl) = 1;
2252 SET_DECL_TEMPLATE_PARM_P (decl);
2254 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
2255 TEMPLATE_PARM_LEVEL (index) - levels,
2256 TEMPLATE_PARM_ORIG_LEVEL (index),
2258 TEMPLATE_PARM_DESCENDANTS (index) = t;
2260 /* Template template parameters need this. */
2261 DECL_TEMPLATE_PARMS (decl)
2262 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index));
2265 return TEMPLATE_PARM_DESCENDANTS (index);
2268 /* Process information from new template parameter NEXT and append it to the
2269 LIST being built. This new parameter is a non-type parameter iff
2270 IS_NON_TYPE is true. */
2273 process_template_parm (tree list, tree next, bool is_non_type)
2281 gcc_assert (TREE_CODE (parm) == TREE_LIST);
2282 defval = TREE_PURPOSE (parm);
2286 tree p = TREE_VALUE (tree_last (list));
2288 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
2289 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
2291 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
2299 parm = TREE_VALUE (parm);
2301 SET_DECL_TEMPLATE_PARM_P (parm);
2305 The top-level cv-qualifiers on the template-parameter are
2306 ignored when determining its type. */
2307 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
2309 /* A template parameter is not modifiable. */
2310 TREE_CONSTANT (parm) = 1;
2311 TREE_INVARIANT (parm) = 1;
2312 TREE_READONLY (parm) = 1;
2313 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
2314 TREE_TYPE (parm) = void_type_node;
2315 decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
2316 TREE_CONSTANT (decl) = 1;
2317 TREE_INVARIANT (decl) = 1;
2318 TREE_READONLY (decl) = 1;
2319 DECL_INITIAL (parm) = DECL_INITIAL (decl)
2320 = build_template_parm_index (idx, processing_template_decl,
2321 processing_template_decl,
2322 decl, TREE_TYPE (parm));
2327 parm = TREE_VALUE (TREE_VALUE (parm));
2329 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
2331 t = make_aggr_type (TEMPLATE_TEMPLATE_PARM);
2332 /* This is for distinguishing between real templates and template
2333 template parameters */
2334 TREE_TYPE (parm) = t;
2335 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
2340 t = make_aggr_type (TEMPLATE_TYPE_PARM);
2341 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
2342 decl = build_decl (TYPE_DECL, parm, t);
2345 TYPE_NAME (t) = decl;
2346 TYPE_STUB_DECL (t) = decl;
2348 TEMPLATE_TYPE_PARM_INDEX (t)
2349 = build_template_parm_index (idx, processing_template_decl,
2350 processing_template_decl,
2351 decl, TREE_TYPE (parm));
2353 DECL_ARTIFICIAL (decl) = 1;
2354 SET_DECL_TEMPLATE_PARM_P (decl);
2356 parm = build_tree_list (defval, parm);
2357 return chainon (list, parm);
2360 /* The end of a template parameter list has been reached. Process the
2361 tree list into a parameter vector, converting each parameter into a more
2362 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
2366 end_template_parm_list (tree parms)
2370 tree saved_parmlist = make_tree_vec (list_length (parms));
2372 current_template_parms
2373 = tree_cons (size_int (processing_template_decl),
2374 saved_parmlist, current_template_parms);
2376 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
2378 next = TREE_CHAIN (parm);
2379 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
2380 TREE_CHAIN (parm) = NULL_TREE;
2383 --processing_template_parmlist;
2385 return saved_parmlist;
2388 /* end_template_decl is called after a template declaration is seen. */
2391 end_template_decl (void)
2393 reset_specialization ();
2395 if (! processing_template_decl)
2398 /* This matches the pushlevel in begin_template_parm_list. */
2401 --processing_template_decl;
2402 current_template_parms = TREE_CHAIN (current_template_parms);
2405 /* Given a template argument vector containing the template PARMS.
2406 The innermost PARMS are given first. */
2409 current_template_args (void)
2412 tree args = NULL_TREE;
2413 int length = TMPL_PARMS_DEPTH (current_template_parms);
2416 /* If there is only one level of template parameters, we do not
2417 create a TREE_VEC of TREE_VECs. Instead, we return a single
2418 TREE_VEC containing the arguments. */
2420 args = make_tree_vec (length);
2422 for (header = current_template_parms; header; header = TREE_CHAIN (header))
2424 tree a = copy_node (TREE_VALUE (header));
2427 TREE_TYPE (a) = NULL_TREE;
2428 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
2430 tree t = TREE_VEC_ELT (a, i);
2432 /* T will be a list if we are called from within a
2433 begin/end_template_parm_list pair, but a vector directly
2434 if within a begin/end_member_template_processing pair. */
2435 if (TREE_CODE (t) == TREE_LIST)
2439 if (TREE_CODE (t) == TYPE_DECL
2440 || TREE_CODE (t) == TEMPLATE_DECL)
2443 t = DECL_INITIAL (t);
2444 TREE_VEC_ELT (a, i) = t;
2449 TREE_VEC_ELT (args, --l) = a;
2457 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
2458 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
2459 a member template. Used by push_template_decl below. */
2462 build_template_decl (tree decl, tree parms, bool member_template_p)
2464 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
2465 DECL_TEMPLATE_PARMS (tmpl) = parms;
2466 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
2467 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
2468 if (DECL_LANG_SPECIFIC (decl))
2470 DECL_STATIC_FUNCTION_P (tmpl) = DECL_STATIC_FUNCTION_P (decl);
2471 DECL_CONSTRUCTOR_P (tmpl) = DECL_CONSTRUCTOR_P (decl);
2472 DECL_DESTRUCTOR_P (tmpl) = DECL_DESTRUCTOR_P (decl);
2473 DECL_NONCONVERTING_P (tmpl) = DECL_NONCONVERTING_P (decl);
2474 DECL_ASSIGNMENT_OPERATOR_P (tmpl) = DECL_ASSIGNMENT_OPERATOR_P (decl);
2475 if (DECL_OVERLOADED_OPERATOR_P (decl))
2476 SET_OVERLOADED_OPERATOR_CODE (tmpl,
2477 DECL_OVERLOADED_OPERATOR_P (decl));
2483 struct template_parm_data
2485 /* The level of the template parameters we are currently
2489 /* The index of the specialization argument we are currently
2493 /* An array whose size is the number of template parameters. The
2494 elements are nonzero if the parameter has been used in any one
2495 of the arguments processed so far. */
2498 /* An array whose size is the number of template arguments. The
2499 elements are nonzero if the argument makes use of template
2500 parameters of this level. */
2501 int* arg_uses_template_parms;
2504 /* Subroutine of push_template_decl used to see if each template
2505 parameter in a partial specialization is used in the explicit
2506 argument list. If T is of the LEVEL given in DATA (which is
2507 treated as a template_parm_data*), then DATA->PARMS is marked
2511 mark_template_parm (tree t, void* data)
2515 struct template_parm_data* tpd = (struct template_parm_data*) data;
2517 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2519 level = TEMPLATE_PARM_LEVEL (t);
2520 idx = TEMPLATE_PARM_IDX (t);
2524 level = TEMPLATE_TYPE_LEVEL (t);
2525 idx = TEMPLATE_TYPE_IDX (t);
2528 if (level == tpd->level)
2530 tpd->parms[idx] = 1;
2531 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
2534 /* Return zero so that for_each_template_parm will continue the
2535 traversal of the tree; we want to mark *every* template parm. */
2539 /* Process the partial specialization DECL. */
2542 process_partial_specialization (tree decl)
2544 tree type = TREE_TYPE (decl);
2545 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
2546 tree specargs = CLASSTYPE_TI_ARGS (type);
2547 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
2548 tree inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
2549 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
2550 int nargs = TREE_VEC_LENGTH (inner_args);
2551 int ntparms = TREE_VEC_LENGTH (inner_parms);
2553 int did_error_intro = 0;
2554 struct template_parm_data tpd;
2555 struct template_parm_data tpd2;
2557 /* We check that each of the template parameters given in the
2558 partial specialization is used in the argument list to the
2559 specialization. For example:
2561 template <class T> struct S;
2562 template <class T> struct S<T*>;
2564 The second declaration is OK because `T*' uses the template
2565 parameter T, whereas
2567 template <class T> struct S<int>;
2569 is no good. Even trickier is:
2580 The S2<T> declaration is actually invalid; it is a
2581 full-specialization. Of course,
2584 struct S2<T (*)(U)>;
2586 or some such would have been OK. */
2587 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
2588 tpd.parms = alloca (sizeof (int) * ntparms);
2589 memset (tpd.parms, 0, sizeof (int) * ntparms);
2591 tpd.arg_uses_template_parms = alloca (sizeof (int) * nargs);
2592 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
2593 for (i = 0; i < nargs; ++i)
2595 tpd.current_arg = i;
2596 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
2597 &mark_template_parm,
2601 for (i = 0; i < ntparms; ++i)
2602 if (tpd.parms[i] == 0)
2604 /* One of the template parms was not used in the
2606 if (!did_error_intro)
2608 error ("template parameters not used in partial specialization:");
2609 did_error_intro = 1;
2612 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
2615 /* [temp.class.spec]
2617 The argument list of the specialization shall not be identical to
2618 the implicit argument list of the primary template. */
2619 if (comp_template_args
2621 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
2623 error ("partial specialization %qT does not specialize any template arguments", type);
2625 /* [temp.class.spec]
2627 A partially specialized non-type argument expression shall not
2628 involve template parameters of the partial specialization except
2629 when the argument expression is a simple identifier.
2631 The type of a template parameter corresponding to a specialized
2632 non-type argument shall not be dependent on a parameter of the
2634 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
2636 for (i = 0; i < nargs; ++i)
2638 tree arg = TREE_VEC_ELT (inner_args, i);
2639 if (/* These first two lines are the `non-type' bit. */
2641 && TREE_CODE (arg) != TEMPLATE_DECL
2642 /* This next line is the `argument expression is not just a
2643 simple identifier' condition and also the `specialized
2644 non-type argument' bit. */
2645 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
2647 if (tpd.arg_uses_template_parms[i])
2648 error ("template argument %qE involves template parameter(s)", arg);
2651 /* Look at the corresponding template parameter,
2652 marking which template parameters its type depends
2655 TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (main_inner_parms,
2660 /* We haven't yet initialized TPD2. Do so now. */
2661 tpd2.arg_uses_template_parms
2662 = alloca (sizeof (int) * nargs);
2663 /* The number of parameters here is the number in the
2664 main template, which, as checked in the assertion
2666 tpd2.parms = alloca (sizeof (int) * nargs);
2668 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
2671 /* Mark the template parameters. But this time, we're
2672 looking for the template parameters of the main
2673 template, not in the specialization. */
2674 tpd2.current_arg = i;
2675 tpd2.arg_uses_template_parms[i] = 0;
2676 memset (tpd2.parms, 0, sizeof (int) * nargs);
2677 for_each_template_parm (type,
2678 &mark_template_parm,
2682 if (tpd2.arg_uses_template_parms [i])
2684 /* The type depended on some template parameters.
2685 If they are fully specialized in the
2686 specialization, that's OK. */
2688 for (j = 0; j < nargs; ++j)
2689 if (tpd2.parms[j] != 0
2690 && tpd.arg_uses_template_parms [j])
2692 error ("type %qT of template argument %qE depends "
2693 "on template parameter(s)",
2703 if (retrieve_specialization (maintmpl, specargs,
2704 /*class_specializations_p=*/true))
2705 /* We've already got this specialization. */
2708 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
2709 = tree_cons (inner_args, inner_parms,
2710 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
2711 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
2715 /* Check that a template declaration's use of default arguments is not
2716 invalid. Here, PARMS are the template parameters. IS_PRIMARY is
2717 nonzero if DECL is the thing declared by a primary template.
2718 IS_PARTIAL is nonzero if DECL is a partial specialization. */
2721 check_default_tmpl_args (tree decl, tree parms, int is_primary, int is_partial)
2724 int last_level_to_check;
2729 A default template-argument shall not be specified in a
2730 function template declaration or a function template definition, nor
2731 in the template-parameter-list of the definition of a member of a
2734 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
2735 /* You can't have a function template declaration in a local
2736 scope, nor you can you define a member of a class template in a
2740 if (current_class_type
2741 && !TYPE_BEING_DEFINED (current_class_type)
2742 && DECL_LANG_SPECIFIC (decl)
2743 /* If this is either a friend defined in the scope of the class
2744 or a member function. */
2745 && (DECL_FUNCTION_MEMBER_P (decl)
2746 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
2747 : DECL_FRIEND_CONTEXT (decl)
2748 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
2750 /* And, if it was a member function, it really was defined in
2751 the scope of the class. */
2752 && (!DECL_FUNCTION_MEMBER_P (decl)
2753 || DECL_INITIALIZED_IN_CLASS_P (decl)))
2754 /* We already checked these parameters when the template was
2755 declared, so there's no need to do it again now. This function
2756 was defined in class scope, but we're processing it's body now
2757 that the class is complete. */
2762 If a template-parameter has a default template-argument, all
2763 subsequent template-parameters shall have a default
2764 template-argument supplied. */
2765 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
2767 tree inner_parms = TREE_VALUE (parm_level);
2768 int ntparms = TREE_VEC_LENGTH (inner_parms);
2769 int seen_def_arg_p = 0;
2772 for (i = 0; i < ntparms; ++i)
2774 tree parm = TREE_VEC_ELT (inner_parms, i);
2775 if (TREE_PURPOSE (parm))
2777 else if (seen_def_arg_p)
2779 error ("no default argument for %qD", TREE_VALUE (parm));
2780 /* For better subsequent error-recovery, we indicate that
2781 there should have been a default argument. */
2782 TREE_PURPOSE (parm) = error_mark_node;
2787 if (TREE_CODE (decl) != TYPE_DECL || is_partial || !is_primary)
2788 /* For an ordinary class template, default template arguments are
2789 allowed at the innermost level, e.g.:
2790 template <class T = int>
2792 but, in a partial specialization, they're not allowed even
2793 there, as we have in [temp.class.spec]:
2795 The template parameter list of a specialization shall not
2796 contain default template argument values.
2798 So, for a partial specialization, or for a function template,
2799 we look at all of them. */
2802 /* But, for a primary class template that is not a partial
2803 specialization we look at all template parameters except the
2805 parms = TREE_CHAIN (parms);
2807 /* Figure out what error message to issue. */
2808 if (TREE_CODE (decl) == FUNCTION_DECL)
2809 msg = "default template arguments may not be used in function templates";
2810 else if (is_partial)
2811 msg = "default template arguments may not be used in partial specializations";
2813 msg = "default argument for template parameter for class enclosing %qD";
2815 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
2816 /* If we're inside a class definition, there's no need to
2817 examine the parameters to the class itself. On the one
2818 hand, they will be checked when the class is defined, and,
2819 on the other, default arguments are valid in things like:
2820 template <class T = double>
2821 struct S { template <class U> void f(U); };
2822 Here the default argument for `S' has no bearing on the
2823 declaration of `f'. */
2824 last_level_to_check = template_class_depth (current_class_type) + 1;
2826 /* Check everything. */
2827 last_level_to_check = 0;
2829 for (parm_level = parms;
2830 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
2831 parm_level = TREE_CHAIN (parm_level))
2833 tree inner_parms = TREE_VALUE (parm_level);
2837 ntparms = TREE_VEC_LENGTH (inner_parms);
2838 for (i = 0; i < ntparms; ++i)
2839 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
2847 /* Clear out the default argument so that we are not
2849 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
2852 /* At this point, if we're still interested in issuing messages,
2853 they must apply to classes surrounding the object declared. */
2855 msg = "default argument for template parameter for class enclosing %qD";
2859 /* Worker for push_template_decl_real, called via
2860 for_each_template_parm. DATA is really an int, indicating the
2861 level of the parameters we are interested in. If T is a template
2862 parameter of that level, return nonzero. */
2865 template_parm_this_level_p (tree t, void* data)
2867 int this_level = *(int *)data;
2870 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2871 level = TEMPLATE_PARM_LEVEL (t);
2873 level = TEMPLATE_TYPE_LEVEL (t);
2874 return level == this_level;
2877 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
2878 parameters given by current_template_args, or reuses a
2879 previously existing one, if appropriate. Returns the DECL, or an
2880 equivalent one, if it is replaced via a call to duplicate_decls.
2882 If IS_FRIEND is nonzero, DECL is a friend declaration. */
2885 push_template_decl_real (tree decl, int is_friend)
2893 int new_template_p = 0;
2894 /* True if the template is a member template, in the sense of
2896 bool member_template_p = false;
2898 if (decl == error_mark_node)
2901 /* See if this is a partial specialization. */
2902 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
2903 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
2904 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
2906 is_friend |= (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl));
2909 /* For a friend, we want the context of the friend function, not
2910 the type of which it is a friend. */
2911 ctx = DECL_CONTEXT (decl);
2912 else if (CP_DECL_CONTEXT (decl)
2913 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
2914 /* In the case of a virtual function, we want the class in which
2916 ctx = CP_DECL_CONTEXT (decl);
2918 /* Otherwise, if we're currently defining some class, the DECL
2919 is assumed to be a member of the class. */
2920 ctx = current_scope ();
2922 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
2925 if (!DECL_CONTEXT (decl))
2926 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
2928 /* See if this is a primary template. */
2929 primary = template_parm_scope_p ();
2933 if (DECL_CLASS_SCOPE_P (decl))
2934 member_template_p = true;
2935 if (current_lang_name == lang_name_c)
2936 error ("template with C linkage");
2937 else if (TREE_CODE (decl) == TYPE_DECL
2938 && ANON_AGGRNAME_P (DECL_NAME (decl)))
2939 error ("template class without a name");
2940 else if (TREE_CODE (decl) == FUNCTION_DECL)
2942 if (DECL_DESTRUCTOR_P (decl))
2946 A destructor shall not be a member template. */
2947 error ("destructor %qD declared as member template", decl);
2948 return error_mark_node;
2950 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
2951 && (!TYPE_ARG_TYPES (TREE_TYPE (decl))
2952 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
2953 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
2954 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
2955 == void_list_node)))
2957 /* [basic.stc.dynamic.allocation]
2959 An allocation function can be a function
2960 template. ... Template allocation functions shall
2961 have two or more parameters. */
2962 error ("invalid template declaration of %qD", decl);
2966 else if ((DECL_IMPLICIT_TYPEDEF_P (decl)
2967 && CLASS_TYPE_P (TREE_TYPE (decl)))
2968 || (TREE_CODE (decl) == VAR_DECL && ctx && CLASS_TYPE_P (ctx)))
2972 error ("template declaration of %q#D", decl);
2973 return error_mark_node;
2977 /* Check to see that the rules regarding the use of default
2978 arguments are not being violated. */
2979 check_default_tmpl_args (decl, current_template_parms,
2980 primary, is_partial);
2983 return process_partial_specialization (decl);
2985 args = current_template_args ();
2988 || TREE_CODE (ctx) == FUNCTION_DECL
2989 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
2990 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
2992 if (DECL_LANG_SPECIFIC (decl)
2993 && DECL_TEMPLATE_INFO (decl)
2994 && DECL_TI_TEMPLATE (decl))
2995 tmpl = DECL_TI_TEMPLATE (decl);
2996 /* If DECL is a TYPE_DECL for a class-template, then there won't
2997 be DECL_LANG_SPECIFIC. The information equivalent to
2998 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
2999 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
3000 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
3001 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
3003 /* Since a template declaration already existed for this
3004 class-type, we must be redeclaring it here. Make sure
3005 that the redeclaration is valid. */
3006 redeclare_class_template (TREE_TYPE (decl),
3007 current_template_parms);
3008 /* We don't need to create a new TEMPLATE_DECL; just use the
3009 one we already had. */
3010 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
3014 tmpl = build_template_decl (decl, current_template_parms,
3018 if (DECL_LANG_SPECIFIC (decl)
3019 && DECL_TEMPLATE_SPECIALIZATION (decl))
3021 /* A specialization of a member template of a template
3023 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3024 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
3025 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
3031 tree a, t, current, parms;
3034 if (TREE_CODE (decl) == TYPE_DECL)
3036 if ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (decl)))
3037 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
3038 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
3039 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
3040 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
3043 error ("%qD does not declare a template type", decl);
3047 else if (!DECL_LANG_SPECIFIC (decl) || !DECL_TEMPLATE_INFO (decl))
3049 error ("template definition of non-template %q#D", decl);
3053 tmpl = DECL_TI_TEMPLATE (decl);
3055 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
3056 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
3057 && DECL_TEMPLATE_SPECIALIZATION (decl)
3058 && DECL_MEMBER_TEMPLATE_P (tmpl))
3062 /* The declaration is a specialization of a member
3063 template, declared outside the class. Therefore, the
3064 innermost template arguments will be NULL, so we
3065 replace them with the arguments determined by the
3066 earlier call to check_explicit_specialization. */
3067 args = DECL_TI_ARGS (decl);
3070 = build_template_decl (decl, current_template_parms,
3072 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
3073 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
3074 DECL_TI_TEMPLATE (decl) = new_tmpl;
3075 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
3076 DECL_TEMPLATE_INFO (new_tmpl)
3077 = tree_cons (tmpl, args, NULL_TREE);
3079 register_specialization (new_tmpl,
3080 most_general_template (tmpl),
3085 /* Make sure the template headers we got make sense. */
3087 parms = DECL_TEMPLATE_PARMS (tmpl);
3088 i = TMPL_PARMS_DEPTH (parms);
3089 if (TMPL_ARGS_DEPTH (args) != i)
3091 error ("expected %d levels of template parms for %q#D, got %d",
3092 i, decl, TMPL_ARGS_DEPTH (args));
3095 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
3097 a = TMPL_ARGS_LEVEL (args, i);
3098 t = INNERMOST_TEMPLATE_PARMS (parms);
3100 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
3102 if (current == decl)
3103 error ("got %d template parameters for %q#D",
3104 TREE_VEC_LENGTH (a), decl);
3106 error ("got %d template parameters for %q#T",
3107 TREE_VEC_LENGTH (a), current);
3108 error (" but %d required", TREE_VEC_LENGTH (t));
3111 /* Perhaps we should also check that the parms are used in the
3112 appropriate qualifying scopes in the declarator? */
3114 if (current == decl)
3117 current = TYPE_CONTEXT (current);
3121 DECL_TEMPLATE_RESULT (tmpl) = decl;
3122 TREE_TYPE (tmpl) = TREE_TYPE (decl);
3124 /* Push template declarations for global functions and types. Note
3125 that we do not try to push a global template friend declared in a
3126 template class; such a thing may well depend on the template
3127 parameters of the class. */
3128 if (new_template_p && !ctx
3129 && !(is_friend && template_class_depth (current_class_type) > 0))
3131 tmpl = pushdecl_namespace_level (tmpl);
3132 if (tmpl == error_mark_node)
3133 return error_mark_node;
3135 /* Hide template friend classes that haven't been declared yet. */
3136 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
3138 DECL_ANTICIPATED (tmpl) = 1;
3139 DECL_FRIEND_P (tmpl) = 1;
3145 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
3146 if (DECL_CONV_FN_P (tmpl))
3148 int depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
3150 /* It is a conversion operator. See if the type converted to
3151 depends on innermost template operands. */
3153 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
3155 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
3159 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
3160 back to its most general template. If TMPL is a specialization,
3161 ARGS may only have the innermost set of arguments. Add the missing
3162 argument levels if necessary. */
3163 if (DECL_TEMPLATE_INFO (tmpl))
3164 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
3166 info = tree_cons (tmpl, args, NULL_TREE);
3168 if (DECL_IMPLICIT_TYPEDEF_P (decl))
3170 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
3171 if ((!ctx || TREE_CODE (ctx) != FUNCTION_DECL)
3172 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
3173 /* Don't change the name if we've already set it up. */
3174 && !IDENTIFIER_TEMPLATE (DECL_NAME (decl)))
3175 DECL_NAME (decl) = classtype_mangled_name (TREE_TYPE (decl));
3177 else if (DECL_LANG_SPECIFIC (decl))
3178 DECL_TEMPLATE_INFO (decl) = info;
3180 return DECL_TEMPLATE_RESULT (tmpl);
3184 push_template_decl (tree decl)
3186 return push_template_decl_real (decl, 0);
3189 /* Called when a class template TYPE is redeclared with the indicated
3190 template PARMS, e.g.:
3192 template <class T> struct S;
3193 template <class T> struct S {}; */
3196 redeclare_class_template (tree type, tree parms)
3202 if (!TYPE_TEMPLATE_INFO (type))
3204 error ("%qT is not a template type", type);
3208 tmpl = TYPE_TI_TEMPLATE (type);
3209 if (!PRIMARY_TEMPLATE_P (tmpl))
3210 /* The type is nested in some template class. Nothing to worry
3211 about here; there are no new template parameters for the nested
3217 error ("template specifiers not specified in declaration of %qD",
3222 parms = INNERMOST_TEMPLATE_PARMS (parms);
3223 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
3225 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
3227 cp_error_at ("previous declaration %qD", tmpl);
3228 error ("used %d template parameter%s instead of %d",
3229 TREE_VEC_LENGTH (tmpl_parms),
3230 TREE_VEC_LENGTH (tmpl_parms) == 1 ? "" : "s",
3231 TREE_VEC_LENGTH (parms));
3235 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
3237 tree tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
3238 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
3239 tree tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
3240 tree parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
3242 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
3244 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
3245 || (TREE_CODE (tmpl_parm) != TYPE_DECL
3246 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm))))
3248 cp_error_at ("template parameter %q#D", tmpl_parm);
3249 error ("redeclared here as %q#D", parm);
3253 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
3255 /* We have in [temp.param]:
3257 A template-parameter may not be given default arguments
3258 by two different declarations in the same scope. */
3259 error ("redefinition of default argument for %q#D", parm);
3260 error ("%J original definition appeared here", tmpl_parm);
3264 if (parm_default != NULL_TREE)
3265 /* Update the previous template parameters (which are the ones
3266 that will really count) with the new default value. */
3267 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
3268 else if (tmpl_default != NULL_TREE)
3269 /* Update the new parameters, too; they'll be used as the
3270 parameters for any members. */
3271 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
3275 /* Simplify EXPR if it is a non-dependent expression. Returns the
3276 (possibly simplified) expression. */
3279 fold_non_dependent_expr (tree expr)
3281 /* If we're in a template, but EXPR isn't value dependent, simplify
3282 it. We're supposed to treat:
3284 template <typename T> void f(T[1 + 1]);
3285 template <typename T> void f(T[2]);
3287 as two declarations of the same function, for example. */
3288 if (processing_template_decl
3289 && !type_dependent_expression_p (expr)
3290 && !value_dependent_expression_p (expr))
3292 HOST_WIDE_INT saved_processing_template_decl;
3294 saved_processing_template_decl = processing_template_decl;
3295 processing_template_decl = 0;
3296 expr = tsubst_copy_and_build (expr,
3299 /*in_decl=*/NULL_TREE,
3300 /*function_p=*/false);
3301 processing_template_decl = saved_processing_template_decl;
3306 /* EXPR is an expression which is used in a constant-expression context.
3307 For instance, it could be a VAR_DECL with a constant initializer.
3308 Extract the innest constant expression.
3310 This is basically a more powerful version of
3311 integral_constant_value, which can be used also in templates where
3312 initializers can maintain a syntactic rather than semantic form
3313 (even if they are non-dependent, for access-checking purposes). */
3316 fold_decl_constant_value (tree expr)
3318 tree const_expr = expr;
3321 expr = fold_non_dependent_expr (const_expr);
3322 const_expr = integral_constant_value (expr);
3324 while (expr != const_expr);
3329 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
3330 must be a function or a pointer-to-function type, as specified
3331 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
3332 and check that the resulting function has external linkage. */
3335 convert_nontype_argument_function (tree type, tree expr)
3340 fn = instantiate_type (type, fns, tf_none);
3341 if (fn == error_mark_node)
3342 return error_mark_node;
3345 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
3346 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
3348 /* [temp.arg.nontype]/1
3350 A template-argument for a non-type, non-template template-parameter
3353 -- the address of an object or function with external linkage. */
3354 if (!DECL_EXTERNAL_LINKAGE_P (fn_no_ptr))
3356 error ("%qE is not a valid template argument for type %qT "
3357 "because function %qD has not external linkage",
3358 expr, type, fn_no_ptr);
3365 /* Attempt to convert the non-type template parameter EXPR to the
3366 indicated TYPE. If the conversion is successful, return the
3367 converted value. If the conversion is unsuccessful, return
3368 NULL_TREE if we issued an error message, or error_mark_node if we
3369 did not. We issue error messages for out-and-out bad template
3370 parameters, but not simply because the conversion failed, since we
3371 might be just trying to do argument deduction. Both TYPE and EXPR
3372 must be non-dependent.
3374 The conversion follows the special rules described in
3375 [temp.arg.nontype], and it is much more strict than an implicit
3378 This function is called twice for each template argument (see
3379 lookup_template_class for a more accurate description of this
3380 problem). This means that we need to handle expressions which
3381 are not valid in a C++ source, but can be created from the
3382 first call (for instance, casts to perform conversions). These
3383 hacks can go away after we fix the double coercion problem. */
3386 convert_nontype_argument (tree type, tree expr)
3390 /* Detect immediately string literals as invalid non-type argument.
3391 This special-case is not needed for correctness (we would easily
3392 catch this later), but only to provide better diagnostic for this
3393 common user mistake. As suggested by DR 100, we do not mention
3394 linkage issues in the diagnostic as this is not the point. */
3395 if (TREE_CODE (expr) == STRING_CST)
3397 error ("%qE is not a valid template argument for type %qT "
3398 "because string literals can never be used in this context",
3403 /* If we are in a template, EXPR may be non-dependent, but still
3404 have a syntactic, rather than semantic, form. For example, EXPR
3405 might be a SCOPE_REF, rather than the VAR_DECL to which the
3406 SCOPE_REF refers. Preserving the qualifying scope is necessary
3407 so that access checking can be performed when the template is
3408 instantiated -- but here we need the resolved form so that we can
3409 convert the argument. */
3410 expr = fold_non_dependent_expr (expr);
3411 expr_type = TREE_TYPE (expr);
3413 /* HACK: Due to double coercion, we can get a
3414 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
3415 which is the tree that we built on the first call (see
3416 below when coercing to reference to object or to reference to
3417 function). We just strip everything and get to the arg.
3418 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
3420 if (TREE_CODE (expr) == NOP_EXPR)
3422 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
3424 /* ??? Maybe we could use convert_from_reference here, but we
3425 would need to relax its constraints because the NOP_EXPR
3426 could actually change the type to something more cv-qualified,
3427 and this is not folded by convert_from_reference. */
3428 tree addr = TREE_OPERAND (expr, 0);
3429 gcc_assert (TREE_CODE (expr_type) == REFERENCE_TYPE);
3430 gcc_assert (TREE_CODE (addr) == ADDR_EXPR);
3431 gcc_assert (TREE_CODE (TREE_TYPE (addr)) == POINTER_TYPE);
3432 gcc_assert (same_type_ignoring_top_level_qualifiers_p
3433 (TREE_TYPE (expr_type),
3434 TREE_TYPE (TREE_TYPE (addr))));
3436 expr = TREE_OPERAND (addr, 0);
3437 expr_type = TREE_TYPE (expr);
3440 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
3441 parameter is a pointer to object, through decay and
3442 qualification conversion. Let's strip everything. */
3443 else if (TYPE_PTROBV_P (type))
3446 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
3447 gcc_assert (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE);
3448 /* Skip the ADDR_EXPR only if it is part of the decay for
3449 an array. Otherwise, it is part of the original argument
3450 in the source code. */
3451 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == ARRAY_TYPE)
3452 expr = TREE_OPERAND (expr, 0);
3453 expr_type = TREE_TYPE (expr);
3457 /* [temp.arg.nontype]/5, bullet 1
3459 For a non-type template-parameter of integral or enumeration type,
3460 integral promotions (_conv.prom_) and integral conversions
3461 (_conv.integral_) are applied. */
3462 if (INTEGRAL_TYPE_P (type))
3464 if (!INTEGRAL_TYPE_P (expr_type))
3465 return error_mark_node;
3467 expr = fold_decl_constant_value (expr);
3468 /* Notice that there are constant expressions like '4 % 0' which
3469 do not fold into integer constants. */
3470 if (TREE_CODE (expr) != INTEGER_CST)
3472 error ("%qE is not a valid template argument for type %qT "
3473 "because it is a non-constant expression", expr, type);
3477 /* At this point, an implicit conversion does what we want,
3478 because we already know that the expression is of integral
3480 expr = ocp_convert (type, expr, CONV_IMPLICIT, LOOKUP_PROTECT);
3481 if (expr == error_mark_node)
3482 return error_mark_node;
3484 /* Conversion was allowed: fold it to a bare integer constant. */
3487 /* [temp.arg.nontype]/5, bullet 2
3489 For a non-type template-parameter of type pointer to object,
3490 qualification conversions (_conv.qual_) and the array-to-pointer
3491 conversion (_conv.array_) are applied. */
3492 else if (TYPE_PTROBV_P (type))
3494 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
3496 A template-argument for a non-type, non-template template-parameter
3497 shall be one of: [...]
3499 -- the name of a non-type template-parameter;
3500 -- the address of an object or function with external linkage, [...]
3501 expressed as "& id-expression" where the & is optional if the name
3502 refers to a function or array, or if the corresponding
3503 template-parameter is a reference.
3505 Here, we do not care about functions, as they are invalid anyway
3506 for a parameter of type pointer-to-object. */
3507 bool constant_address_p =
3508 (TREE_CODE (expr) == ADDR_EXPR
3509 || TREE_CODE (expr_type) == ARRAY_TYPE
3510 || (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr)));
3512 expr = decay_conversion (expr);
3513 if (expr == error_mark_node)
3514 return error_mark_node;
3516 expr = perform_qualification_conversions (type, expr);
3517 if (expr == error_mark_node)
3518 return error_mark_node;
3520 if (!constant_address_p)
3522 error ("%qE is not a valid template argument for type %qT "
3523 "because it is not a constant pointer", expr, type);
3527 /* [temp.arg.nontype]/5, bullet 3
3529 For a non-type template-parameter of type reference to object, no
3530 conversions apply. The type referred to by the reference may be more
3531 cv-qualified than the (otherwise identical) type of the
3532 template-argument. The template-parameter is bound directly to the
3533 template-argument, which must be an lvalue. */
3534 else if (TYPE_REF_OBJ_P (type))
3536 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
3538 return error_mark_node;
3540 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
3542 error ("%qE is not a valid template argument for type %qT "
3543 "because of conflicts in cv-qualification", expr, type);
3547 if (!real_lvalue_p (expr))
3549 error ("%qE is not a valid template argument for type %qT "
3550 "because it is not a lvalue", expr, type);
3554 /* [temp.arg.nontype]/1
3556 A template-argument for a non-type, non-template template-parameter
3557 shall be one of: [...]
3559 -- the address of an object or function with external linkage. */
3560 if (!DECL_EXTERNAL_LINKAGE_P (expr))
3562 error ("%qE is not a valid template argument for type %qT "
3563 "because object %qD has not external linkage",
3568 expr = build_nop (type, build_address (expr));
3570 /* [temp.arg.nontype]/5, bullet 4
3572 For a non-type template-parameter of type pointer to function, only
3573 the function-to-pointer conversion (_conv.func_) is applied. If the
3574 template-argument represents a set of overloaded functions (or a
3575 pointer to such), the matching function is selected from the set
3577 else if (TYPE_PTRFN_P (type))
3579 /* If the argument is a template-id, we might not have enough
3580 context information to decay the pointer.
3581 ??? Why static5.C requires decay and subst1.C works fine
3583 if (!type_unknown_p (expr_type))
3585 expr = decay_conversion (expr);
3586 if (expr == error_mark_node)
3587 return error_mark_node;
3590 expr = convert_nontype_argument_function (type, expr);
3591 if (!expr || expr == error_mark_node)
3594 /* [temp.arg.nontype]/5, bullet 5
3596 For a non-type template-parameter of type reference to function, no
3597 conversions apply. If the template-argument represents a set of
3598 overloaded functions, the matching function is selected from the set
3600 else if (TYPE_REFFN_P (type))
3602 if (TREE_CODE (expr) == ADDR_EXPR)
3604 error ("%qE is not a valid template argument for type %qT "
3605 "because it is a pointer", expr, type);
3606 inform ("try using %qE instead", TREE_OPERAND (expr, 0));
3610 expr = convert_nontype_argument_function (TREE_TYPE (type), expr);
3611 if (!expr || expr == error_mark_node)
3614 expr = build_nop (type, build_address (expr));
3616 /* [temp.arg.nontype]/5, bullet 6
3618 For a non-type template-parameter of type pointer to member function,
3619 no conversions apply. If the template-argument represents a set of
3620 overloaded member functions, the matching member function is selected
3621 from the set (_over.over_). */
3622 else if (TYPE_PTRMEMFUNC_P (type))
3624 expr = instantiate_type (type, expr, tf_none);
3625 if (expr == error_mark_node)
3626 return error_mark_node;
3628 /* There is no way to disable standard conversions in
3629 resolve_address_of_overloaded_function (called by
3630 instantiate_type). It is possible that the call succeeded by
3631 converting &B::I to &D::I (where B is a base of D), so we need
3632 to reject this conversion here.
3634 Actually, even if there was a way to disable standard conversions,
3635 it would still be better to reject them here so that we can
3636 provide a superior diagnostic. */
3637 if (!same_type_p (TREE_TYPE (expr), type))
3639 /* Make sure we are just one standard conversion off. */
3640 gcc_assert (can_convert (type, TREE_TYPE (expr)));
3641 error ("%qE is not a valid template argument for type %qT "
3642 "because it is of type %qT", expr, type,
3644 inform ("standard conversions are not allowed in this context");
3648 /* [temp.arg.nontype]/5, bullet 7
3650 For a non-type template-parameter of type pointer to data member,
3651 qualification conversions (_conv.qual_) are applied. */
3652 else if (TYPE_PTRMEM_P (type))
3654 expr = perform_qualification_conversions (type, expr);
3655 if (expr == error_mark_node)
3658 /* A template non-type parameter must be one of the above. */
3662 /* Sanity check: did we actually convert the argument to the
3664 gcc_assert (same_type_p (type, TREE_TYPE (expr)));
3669 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
3670 template template parameters. Both PARM_PARMS and ARG_PARMS are
3671 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
3674 ARG_PARMS may contain more parameters than PARM_PARMS. If this is
3675 the case, then extra parameters must have default arguments.
3677 Consider the example:
3678 template <class T, class Allocator = allocator> class vector;
3679 template<template <class U> class TT> class C;
3681 C<vector> is a valid instantiation. PARM_PARMS for the above code
3682 contains a TYPE_DECL (for U), ARG_PARMS contains two TYPE_DECLs (for
3683 T and Allocator) and OUTER_ARGS contains the argument that is used to
3684 substitute the TT parameter. */
3687 coerce_template_template_parms (tree parm_parms,
3689 tsubst_flags_t complain,
3693 int nparms, nargs, i;
3696 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
3697 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
3699 nparms = TREE_VEC_LENGTH (parm_parms);
3700 nargs = TREE_VEC_LENGTH (arg_parms);
3702 /* The rule here is opposite of coerce_template_parms. */
3705 && TREE_PURPOSE (TREE_VEC_ELT (arg_parms, nparms)) == NULL_TREE))
3708 for (i = 0; i < nparms; ++i)
3710 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
3711 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
3713 if (arg == NULL_TREE || arg == error_mark_node
3714 || parm == NULL_TREE || parm == error_mark_node)
3717 if (TREE_CODE (arg) != TREE_CODE (parm))
3720 switch (TREE_CODE (parm))
3726 /* We encounter instantiations of templates like
3727 template <template <template <class> class> class TT>
3730 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3731 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3733 if (!coerce_template_template_parms
3734 (parmparm, argparm, complain, in_decl, outer_args))
3740 /* The tsubst call is used to handle cases such as
3742 template <int> class C {};
3743 template <class T, template <T> class TT> class D {};
3746 i.e. the parameter list of TT depends on earlier parameters. */
3747 if (!dependent_type_p (TREE_TYPE (arg))
3749 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
3761 /* Convert the indicated template ARG as necessary to match the
3762 indicated template PARM. Returns the converted ARG, or
3763 error_mark_node if the conversion was unsuccessful. Error and
3764 warning messages are issued under control of COMPLAIN. This
3765 conversion is for the Ith parameter in the parameter list. ARGS is
3766 the full set of template arguments deduced so far. */
3769 convert_template_argument (tree parm,
3772 tsubst_flags_t complain,
3778 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
3780 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3782 if (TREE_CODE (arg) == TREE_LIST
3783 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
3785 /* The template argument was the name of some
3786 member function. That's usually
3787 invalid, but static members are OK. In any
3788 case, grab the underlying fields/functions
3789 and issue an error later if required. */
3790 arg = TREE_VALUE (arg);
3791 TREE_TYPE (arg) = unknown_type_node;
3794 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
3795 requires_type = (TREE_CODE (parm) == TYPE_DECL
3796 || requires_tmpl_type);
3798 is_tmpl_type = ((TREE_CODE (arg) == TEMPLATE_DECL
3799 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
3800 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3801 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
3804 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3805 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
3806 arg = TYPE_STUB_DECL (arg);
3808 is_type = TYPE_P (arg) || is_tmpl_type;
3810 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
3811 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
3813 pedwarn ("to refer to a type member of a template parameter, "
3814 "use %<typename %E%>", arg);
3816 arg = make_typename_type (TREE_OPERAND (arg, 0),
3817 TREE_OPERAND (arg, 1),
3819 complain & tf_error);
3822 if (is_type != requires_type)
3826 if (complain & tf_error)
3828 error ("type/value mismatch at argument %d in template "
3829 "parameter list for %qD",
3832 error (" expected a constant of type %qT, got %qT",
3834 (is_tmpl_type ? DECL_NAME (arg) : arg));
3835 else if (requires_tmpl_type)
3836 error (" expected a class template, got %qE", arg);
3838 error (" expected a type, got %qE", arg);
3841 return error_mark_node;
3843 if (is_tmpl_type ^ requires_tmpl_type)
3845 if (in_decl && (complain & tf_error))
3847 error ("type/value mismatch at argument %d in template "
3848 "parameter list for %qD",
3851 error (" expected a type, got %qT", DECL_NAME (arg));
3853 error (" expected a class template, got %qT", arg);
3855 return error_mark_node;
3860 if (requires_tmpl_type)
3862 if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
3863 /* The number of argument required is not known yet.
3864 Just accept it for now. */
3865 val = TREE_TYPE (arg);
3868 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3869 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3871 if (coerce_template_template_parms (parmparm, argparm,
3877 /* TEMPLATE_TEMPLATE_PARM node is preferred over
3879 if (val != error_mark_node
3880 && DECL_TEMPLATE_TEMPLATE_PARM_P (val))
3881 val = TREE_TYPE (val);
3885 if (in_decl && (complain & tf_error))
3887 error ("type/value mismatch at argument %d in "
3888 "template parameter list for %qD",
3890 error (" expected a template of type %qD, got %qD",
3894 val = error_mark_node;
3903 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
3905 if (invalid_nontype_parm_type_p (t, complain))
3906 return error_mark_node;
3908 if (!uses_template_parms (arg) && !uses_template_parms (t))
3909 /* We used to call digest_init here. However, digest_init
3910 will report errors, which we don't want when complain
3911 is zero. More importantly, digest_init will try too
3912 hard to convert things: for example, `0' should not be
3913 converted to pointer type at this point according to
3914 the standard. Accepting this is not merely an
3915 extension, since deciding whether or not these
3916 conversions can occur is part of determining which
3917 function template to call, or whether a given explicit
3918 argument specification is valid. */
3919 val = convert_nontype_argument (t, arg);
3923 if (val == NULL_TREE)
3924 val = error_mark_node;
3925 else if (val == error_mark_node && (complain & tf_error))
3926 error ("could not convert template argument %qE to %qT", arg, t);
3932 /* Convert all template arguments to their appropriate types, and
3933 return a vector containing the innermost resulting template
3934 arguments. If any error occurs, return error_mark_node. Error and
3935 warning messages are issued under control of COMPLAIN.
3937 If REQUIRE_ALL_ARGUMENTS is nonzero, all arguments must be
3938 provided in ARGLIST, or else trailing parameters must have default
3939 values. If REQUIRE_ALL_ARGUMENTS is zero, we will attempt argument
3940 deduction for any unspecified trailing arguments. */
3943 coerce_template_parms (tree parms,
3946 tsubst_flags_t complain,
3947 int require_all_arguments)
3949 int nparms, nargs, i, lost = 0;
3952 tree new_inner_args;
3954 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3955 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
3956 nparms = TREE_VEC_LENGTH (parms);
3960 && require_all_arguments
3961 && TREE_PURPOSE (TREE_VEC_ELT (parms, nargs)) == NULL_TREE))
3963 if (complain & tf_error)
3965 error ("wrong number of template arguments (%d, should be %d)",
3969 cp_error_at ("provided for %qD", in_decl);
3972 return error_mark_node;
3975 new_inner_args = make_tree_vec (nparms);
3976 new_args = add_outermost_template_args (args, new_inner_args);
3977 for (i = 0; i < nparms; i++)
3982 /* Get the Ith template parameter. */
3983 parm = TREE_VEC_ELT (parms, i);
3985 /* Calculate the Ith argument. */
3987 arg = TREE_VEC_ELT (inner_args, i);
3988 else if (require_all_arguments)
3989 /* There must be a default arg in this case. */
3990 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
3996 if (arg == error_mark_node)
3998 if (complain & tf_error)
3999 error ("template argument %d is invalid", i + 1);
4002 arg = convert_template_argument (TREE_VALUE (parm),
4003 arg, new_args, complain, i,
4006 if (arg == error_mark_node)
4008 TREE_VEC_ELT (new_inner_args, i) = arg;
4012 return error_mark_node;
4014 return new_inner_args;
4017 /* Returns 1 if template args OT and NT are equivalent. */
4020 template_args_equal (tree ot, tree nt)
4025 if (TREE_CODE (nt) == TREE_VEC)
4026 /* For member templates */
4027 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
4028 else if (TYPE_P (nt))
4035 /* We must handle ObjC types specially because they may differ
4036 only in protocol qualifications (e.g., 'NSObject *' vs.
4037 'NSObject <Foo> *') that must be taken into account here.
4038 See also cp/typeck.c:build_c_cast(), where a similar problem
4039 arises. We must call objc_comptypes() twice, since its
4040 comparisons are _not_ symmetric. */
4041 if ((c1 = objc_comptypes (ot, nt, 0)) >= 0
4042 && (c2 = objc_comptypes (nt, ot, 0)) >= 0)
4045 return same_type_p (ot, nt);
4047 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
4050 return cp_tree_equal (ot, nt);
4053 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
4054 of template arguments. Returns 0 otherwise. */
4057 comp_template_args (tree oldargs, tree newargs)
4061 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
4064 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
4066 tree nt = TREE_VEC_ELT (newargs, i);
4067 tree ot = TREE_VEC_ELT (oldargs, i);
4069 if (! template_args_equal (ot, nt))
4075 /* Given class template name and parameter list, produce a user-friendly name
4076 for the instantiation. */
4079 mangle_class_name_for_template (const char* name, tree parms, tree arglist)
4081 static struct obstack scratch_obstack;
4082 static char *scratch_firstobj;
4085 if (!scratch_firstobj)
4086 gcc_obstack_init (&scratch_obstack);
4088 obstack_free (&scratch_obstack, scratch_firstobj);
4089 scratch_firstobj = obstack_alloc (&scratch_obstack, 1);
4091 #define ccat(C) obstack_1grow (&scratch_obstack, (C));
4092 #define cat(S) obstack_grow (&scratch_obstack, (S), strlen (S))
4096 nparms = TREE_VEC_LENGTH (parms);
4097 arglist = INNERMOST_TEMPLATE_ARGS (arglist);
4098 gcc_assert (nparms == TREE_VEC_LENGTH (arglist));
4099 for (i = 0; i < nparms; i++)