Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / cp / pt.c
blob0d83bc1a4d278f164dc63336ab4d27fa26b12ba2
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)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file 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". */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include "obstack.h"
34 #include "tree.h"
35 #include "pointer-set.h"
36 #include "flags.h"
37 #include "cp-tree.h"
38 #include "tree-inline.h"
39 #include "decl.h"
40 #include "output.h"
41 #include "except.h"
42 #include "toplev.h"
43 #include "rtl.h"
44 #include "timevar.h"
45 #include "tree-iterator.h"
47 /* The type of functions taking a tree, and some additional data, and
48 returning an int. */
49 typedef int (*tree_fn_t) (tree, void*);
51 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
52 instantiations have been deferred, either because their definitions
53 were not yet available, or because we were putting off doing the work.
54 The TREE_PURPOSE of each entry is either a DECL (for a function or
55 static data member), or a TYPE (for a class) indicating what we are
56 hoping to instantiate. The TREE_VALUE is not used. */
57 static GTY(()) tree pending_templates;
58 static GTY(()) tree last_pending_template;
60 int processing_template_parmlist;
61 static int template_header_count;
63 static GTY(()) tree saved_trees;
64 static GTY(()) varray_type inline_parm_levels;
65 static size_t inline_parm_levels_used;
67 static GTY(()) tree current_tinst_level;
69 static GTY(()) tree saved_access_scope;
71 /* Live only within one (recursive) call to tsubst_expr. We use
72 this to pass the statement expression node from the STMT_EXPR
73 to the EXPR_STMT that is its result. */
74 static tree cur_stmt_expr;
76 /* A map from local variable declarations in the body of the template
77 presently being instantiated to the corresponding instantiated
78 local variables. */
79 static htab_t local_specializations;
81 #define UNIFY_ALLOW_NONE 0
82 #define UNIFY_ALLOW_MORE_CV_QUAL 1
83 #define UNIFY_ALLOW_LESS_CV_QUAL 2
84 #define UNIFY_ALLOW_DERIVED 4
85 #define UNIFY_ALLOW_INTEGER 8
86 #define UNIFY_ALLOW_OUTER_LEVEL 16
87 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
88 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
89 #define UNIFY_ALLOW_MAX_CORRECTION 128
91 static void push_access_scope (tree);
92 static void pop_access_scope (tree);
93 static int resolve_overloaded_unification (tree, tree, tree, tree,
94 unification_kind_t, int);
95 static int try_one_overload (tree, tree, tree, tree, tree,
96 unification_kind_t, int, bool);
97 static int unify (tree, tree, tree, tree, int);
98 static void add_pending_template (tree);
99 static void reopen_tinst_level (tree);
100 static tree classtype_mangled_name (tree);
101 static char* mangle_class_name_for_template (const char *, tree, tree);
102 static tree tsubst_initializer_list (tree, tree);
103 static tree get_class_bindings (tree, tree, tree);
104 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t, int);
105 static void tsubst_enum (tree, tree, tree);
106 static tree add_to_template_args (tree, tree);
107 static tree add_outermost_template_args (tree, tree);
108 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
109 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*);
110 static int type_unification_real (tree, tree, tree, tree,
111 int, unification_kind_t, int, int);
112 static void note_template_header (int);
113 static tree convert_nontype_argument_function (tree, tree);
114 static tree convert_nontype_argument (tree, tree);
115 static tree convert_template_argument (tree, tree, tree,
116 tsubst_flags_t, int, tree);
117 static tree get_bindings_overload (tree, tree, 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);
132 static tree get_bindings_real (tree, tree, tree, int, int, int);
133 static int template_decl_level (tree);
134 static int check_cv_quals_for_unify (int, tree, tree);
135 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
136 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
137 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
138 static void regenerate_decl_from_template (tree, tree);
139 static tree most_specialized (tree, tree, tree);
140 static tree most_specialized_class (tree, tree);
141 static int template_class_depth_real (tree, int);
142 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
143 static tree tsubst_arg_types (tree, tree, tsubst_flags_t, tree);
144 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
145 static void check_specialization_scope (void);
146 static tree process_partial_specialization (tree);
147 static void set_current_access_from_decl (tree);
148 static void check_default_tmpl_args (tree, tree, int, int);
149 static tree tsubst_call_declarator_parms (tree, tree, tsubst_flags_t, tree);
150 static tree get_template_base (tree, tree, tree, tree);
151 static int verify_class_unification (tree, tree, tree);
152 static tree try_class_unification (tree, tree, tree, tree);
153 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
154 tree, tree);
155 static tree determine_specialization (tree, tree, tree *, int, int);
156 static int template_args_equal (tree, tree);
157 static void tsubst_default_arguments (tree);
158 static tree for_each_template_parm_r (tree *, int *, void *);
159 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
160 static void copy_default_args_to_explicit_spec (tree);
161 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
162 static int eq_local_specializations (const void *, const void *);
163 static bool dependent_type_p_r (tree);
164 static tree tsubst (tree, tree, tsubst_flags_t, tree);
165 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree);
166 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
168 /* Make the current scope suitable for access checking when we are
169 processing T. T can be FUNCTION_DECL for instantiated function
170 template, or VAR_DECL for static member variable (need by
171 instantiate_decl). */
173 static void
174 push_access_scope (tree t)
176 gcc_assert (TREE_CODE (t) == FUNCTION_DECL
177 || TREE_CODE (t) == VAR_DECL);
179 if (DECL_FRIEND_CONTEXT (t))
180 push_nested_class (DECL_FRIEND_CONTEXT (t));
181 else if (DECL_CLASS_SCOPE_P (t))
182 push_nested_class (DECL_CONTEXT (t));
183 else
184 push_to_top_level ();
186 if (TREE_CODE (t) == FUNCTION_DECL)
188 saved_access_scope = tree_cons
189 (NULL_TREE, current_function_decl, saved_access_scope);
190 current_function_decl = t;
194 /* Restore the scope set up by push_access_scope. T is the node we
195 are processing. */
197 static void
198 pop_access_scope (tree t)
200 if (TREE_CODE (t) == FUNCTION_DECL)
202 current_function_decl = TREE_VALUE (saved_access_scope);
203 saved_access_scope = TREE_CHAIN (saved_access_scope);
206 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
207 pop_nested_class ();
208 else
209 pop_from_top_level ();
212 /* Do any processing required when DECL (a member template
213 declaration) is finished. Returns the TEMPLATE_DECL corresponding
214 to DECL, unless it is a specialization, in which case the DECL
215 itself is returned. */
217 tree
218 finish_member_template_decl (tree decl)
220 if (decl == error_mark_node)
221 return error_mark_node;
223 gcc_assert (DECL_P (decl));
225 if (TREE_CODE (decl) == TYPE_DECL)
227 tree type;
229 type = TREE_TYPE (decl);
230 if (IS_AGGR_TYPE (type)
231 && CLASSTYPE_TEMPLATE_INFO (type)
232 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
234 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
235 check_member_template (tmpl);
236 return tmpl;
238 return NULL_TREE;
240 else if (TREE_CODE (decl) == FIELD_DECL)
241 error ("data member %qD cannot be a member template", decl);
242 else if (DECL_TEMPLATE_INFO (decl))
244 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
246 check_member_template (DECL_TI_TEMPLATE (decl));
247 return DECL_TI_TEMPLATE (decl);
249 else
250 return decl;
252 else
253 error ("invalid member template declaration %qD", decl);
255 return error_mark_node;
258 /* Returns the template nesting level of the indicated class TYPE.
260 For example, in:
261 template <class T>
262 struct A
264 template <class U>
265 struct B {};
268 A<T>::B<U> has depth two, while A<T> has depth one.
269 Both A<T>::B<int> and A<int>::B<U> have depth one, if
270 COUNT_SPECIALIZATIONS is 0 or if they are instantiations, not
271 specializations.
273 This function is guaranteed to return 0 if passed NULL_TREE so
274 that, for example, `template_class_depth (current_class_type)' is
275 always safe. */
277 static int
278 template_class_depth_real (tree type, int count_specializations)
280 int depth;
282 for (depth = 0;
283 type && TREE_CODE (type) != NAMESPACE_DECL;
284 type = (TREE_CODE (type) == FUNCTION_DECL)
285 ? CP_DECL_CONTEXT (type) : TYPE_CONTEXT (type))
287 if (TREE_CODE (type) != FUNCTION_DECL)
289 if (CLASSTYPE_TEMPLATE_INFO (type)
290 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
291 && ((count_specializations
292 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
293 || uses_template_parms (CLASSTYPE_TI_ARGS (type))))
294 ++depth;
296 else
298 if (DECL_TEMPLATE_INFO (type)
299 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (type))
300 && ((count_specializations
301 && DECL_TEMPLATE_SPECIALIZATION (type))
302 || uses_template_parms (DECL_TI_ARGS (type))))
303 ++depth;
307 return depth;
310 /* Returns the template nesting level of the indicated class TYPE.
311 Like template_class_depth_real, but instantiations do not count in
312 the depth. */
314 int
315 template_class_depth (tree type)
317 return template_class_depth_real (type, /*count_specializations=*/0);
320 /* Returns 1 if processing DECL as part of do_pending_inlines
321 needs us to push template parms. */
323 static int
324 inline_needs_template_parms (tree decl)
326 if (! DECL_TEMPLATE_INFO (decl))
327 return 0;
329 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
330 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
333 /* Subroutine of maybe_begin_member_template_processing.
334 Push the template parms in PARMS, starting from LEVELS steps into the
335 chain, and ending at the beginning, since template parms are listed
336 innermost first. */
338 static void
339 push_inline_template_parms_recursive (tree parmlist, int levels)
341 tree parms = TREE_VALUE (parmlist);
342 int i;
344 if (levels > 1)
345 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
347 ++processing_template_decl;
348 current_template_parms
349 = tree_cons (size_int (processing_template_decl),
350 parms, current_template_parms);
351 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
353 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
354 NULL);
355 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
357 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
358 gcc_assert (DECL_P (parm));
360 switch (TREE_CODE (parm))
362 case TYPE_DECL:
363 case TEMPLATE_DECL:
364 pushdecl (parm);
365 break;
367 case PARM_DECL:
369 /* Make a CONST_DECL as is done in process_template_parm.
370 It is ugly that we recreate this here; the original
371 version built in process_template_parm is no longer
372 available. */
373 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
374 TREE_TYPE (parm));
375 DECL_ARTIFICIAL (decl) = 1;
376 TREE_CONSTANT (decl) = 1;
377 TREE_INVARIANT (decl) = 1;
378 TREE_READONLY (decl) = 1;
379 DECL_INITIAL (decl) = DECL_INITIAL (parm);
380 SET_DECL_TEMPLATE_PARM_P (decl);
381 pushdecl (decl);
383 break;
385 default:
386 gcc_unreachable ();
391 /* Restore the template parameter context for a member template or
392 a friend template defined in a class definition. */
394 void
395 maybe_begin_member_template_processing (tree decl)
397 tree parms;
398 int levels = 0;
400 if (inline_needs_template_parms (decl))
402 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
403 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
405 if (DECL_TEMPLATE_SPECIALIZATION (decl))
407 --levels;
408 parms = TREE_CHAIN (parms);
411 push_inline_template_parms_recursive (parms, levels);
414 /* Remember how many levels of template parameters we pushed so that
415 we can pop them later. */
416 if (!inline_parm_levels)
417 VARRAY_INT_INIT (inline_parm_levels, 4, "inline_parm_levels");
418 if (inline_parm_levels_used == inline_parm_levels->num_elements)
419 VARRAY_GROW (inline_parm_levels, 2 * inline_parm_levels_used);
420 VARRAY_INT (inline_parm_levels, inline_parm_levels_used) = levels;
421 ++inline_parm_levels_used;
424 /* Undo the effects of begin_member_template_processing. */
426 void
427 maybe_end_member_template_processing (void)
429 int i;
431 if (!inline_parm_levels_used)
432 return;
434 --inline_parm_levels_used;
435 for (i = 0;
436 i < VARRAY_INT (inline_parm_levels, inline_parm_levels_used);
437 ++i)
439 --processing_template_decl;
440 current_template_parms = TREE_CHAIN (current_template_parms);
441 poplevel (0, 0, 0);
445 /* Return a new template argument vector which contains all of ARGS,
446 but has as its innermost set of arguments the EXTRA_ARGS. */
448 static tree
449 add_to_template_args (tree args, tree extra_args)
451 tree new_args;
452 int extra_depth;
453 int i;
454 int j;
456 extra_depth = TMPL_ARGS_DEPTH (extra_args);
457 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
459 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
460 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
462 for (j = 1; j <= extra_depth; ++j, ++i)
463 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
465 return new_args;
468 /* Like add_to_template_args, but only the outermost ARGS are added to
469 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
470 (EXTRA_ARGS) levels are added. This function is used to combine
471 the template arguments from a partial instantiation with the
472 template arguments used to attain the full instantiation from the
473 partial instantiation. */
475 static tree
476 add_outermost_template_args (tree args, tree extra_args)
478 tree new_args;
480 /* If there are more levels of EXTRA_ARGS than there are ARGS,
481 something very fishy is going on. */
482 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
484 /* If *all* the new arguments will be the EXTRA_ARGS, just return
485 them. */
486 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
487 return extra_args;
489 /* For the moment, we make ARGS look like it contains fewer levels. */
490 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
492 new_args = add_to_template_args (args, extra_args);
494 /* Now, we restore ARGS to its full dimensions. */
495 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
497 return new_args;
500 /* Return the N levels of innermost template arguments from the ARGS. */
502 tree
503 get_innermost_template_args (tree args, int n)
505 tree new_args;
506 int extra_levels;
507 int i;
509 gcc_assert (n >= 0);
511 /* If N is 1, just return the innermost set of template arguments. */
512 if (n == 1)
513 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
515 /* If we're not removing anything, just return the arguments we were
516 given. */
517 extra_levels = TMPL_ARGS_DEPTH (args) - n;
518 gcc_assert (extra_levels >= 0);
519 if (extra_levels == 0)
520 return args;
522 /* Make a new set of arguments, not containing the outer arguments. */
523 new_args = make_tree_vec (n);
524 for (i = 1; i <= n; ++i)
525 SET_TMPL_ARGS_LEVEL (new_args, i,
526 TMPL_ARGS_LEVEL (args, i + extra_levels));
528 return new_args;
531 /* We've got a template header coming up; push to a new level for storing
532 the parms. */
534 void
535 begin_template_parm_list (void)
537 /* We use a non-tag-transparent scope here, which causes pushtag to
538 put tags in this scope, rather than in the enclosing class or
539 namespace scope. This is the right thing, since we want
540 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
541 global template class, push_template_decl handles putting the
542 TEMPLATE_DECL into top-level scope. For a nested template class,
543 e.g.:
545 template <class T> struct S1 {
546 template <class T> struct S2 {};
549 pushtag contains special code to call pushdecl_with_scope on the
550 TEMPLATE_DECL for S2. */
551 begin_scope (sk_template_parms, NULL);
552 ++processing_template_decl;
553 ++processing_template_parmlist;
554 note_template_header (0);
557 /* This routine is called when a specialization is declared. If it is
558 invalid to declare a specialization here, an error is reported. */
560 static void
561 check_specialization_scope (void)
563 tree scope = current_scope ();
565 /* [temp.expl.spec]
567 An explicit specialization shall be declared in the namespace of
568 which the template is a member, or, for member templates, in the
569 namespace of which the enclosing class or enclosing class
570 template is a member. An explicit specialization of a member
571 function, member class or static data member of a class template
572 shall be declared in the namespace of which the class template
573 is a member. */
574 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
575 error ("explicit specialization in non-namespace scope %qD", scope);
577 /* [temp.expl.spec]
579 In an explicit specialization declaration for a member of a class
580 template or a member template that appears in namespace scope,
581 the member template and some of its enclosing class templates may
582 remain unspecialized, except that the declaration shall not
583 explicitly specialize a class member template if its enclosing
584 class templates are not explicitly specialized as well. */
585 if (current_template_parms)
586 error ("enclosing class templates are not explicitly specialized");
589 /* We've just seen template <>. */
591 void
592 begin_specialization (void)
594 begin_scope (sk_template_spec, NULL);
595 note_template_header (1);
596 check_specialization_scope ();
599 /* Called at then end of processing a declaration preceded by
600 template<>. */
602 void
603 end_specialization (void)
605 finish_scope ();
606 reset_specialization ();
609 /* Any template <>'s that we have seen thus far are not referring to a
610 function specialization. */
612 void
613 reset_specialization (void)
615 processing_specialization = 0;
616 template_header_count = 0;
619 /* We've just seen a template header. If SPECIALIZATION is nonzero,
620 it was of the form template <>. */
622 static void
623 note_template_header (int specialization)
625 processing_specialization = specialization;
626 template_header_count++;
629 /* We're beginning an explicit instantiation. */
631 void
632 begin_explicit_instantiation (void)
634 gcc_assert (!processing_explicit_instantiation);
635 processing_explicit_instantiation = true;
639 void
640 end_explicit_instantiation (void)
642 gcc_assert (processing_explicit_instantiation);
643 processing_explicit_instantiation = false;
646 /* A explicit specialization or partial specialization TMPL is being
647 declared. Check that the namespace in which the specialization is
648 occurring is permissible. Returns false iff it is invalid to
649 specialize TMPL in the current namespace. */
651 static bool
652 check_specialization_namespace (tree tmpl)
654 tree tpl_ns = decl_namespace_context (tmpl);
656 /* [tmpl.expl.spec]
658 An explicit specialization shall be declared in the namespace of
659 which the template is a member, or, for member templates, in the
660 namespace of which the enclosing class or enclosing class
661 template is a member. An explicit specialization of a member
662 function, member class or static data member of a class template
663 shall be declared in the namespace of which the class template is
664 a member. */
665 if (is_associated_namespace (current_namespace, tpl_ns))
666 /* Same or super-using namespace. */
667 return true;
668 else
670 pedwarn ("specialization of %qD in different namespace", tmpl);
671 cp_pedwarn_at (" from definition of %q#D", tmpl);
672 return false;
676 /* The TYPE is being declared. If it is a template type, that means it
677 is a partial specialization. Do appropriate error-checking. */
679 void
680 maybe_process_partial_specialization (tree type)
682 /* TYPE maybe an ERROR_MARK_NODE. */
683 tree context = TYPE_P (type) ? TYPE_CONTEXT (type) : NULL_TREE;
685 if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
687 /* This is for ordinary explicit specialization and partial
688 specialization of a template class such as:
690 template <> class C<int>;
694 template <class T> class C<T*>;
696 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
698 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
699 && !COMPLETE_TYPE_P (type))
701 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
702 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
703 if (processing_template_decl)
704 push_template_decl (TYPE_MAIN_DECL (type));
706 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
707 error ("specialization of %qT after instantiation", type);
709 else if (CLASS_TYPE_P (type)
710 && !CLASSTYPE_USE_TEMPLATE (type)
711 && CLASSTYPE_TEMPLATE_INFO (type)
712 && context && CLASS_TYPE_P (context)
713 && CLASSTYPE_TEMPLATE_INFO (context))
715 /* This is for an explicit specialization of member class
716 template according to [temp.expl.spec/18]:
718 template <> template <class U> class C<int>::D;
720 The context `C<int>' must be an implicit instantiation.
721 Otherwise this is just a member class template declared
722 earlier like:
724 template <> class C<int> { template <class U> class D; };
725 template <> template <class U> class C<int>::D;
727 In the first case, `C<int>::D' is a specialization of `C<T>::D'
728 while in the second case, `C<int>::D' is a primary template
729 and `C<T>::D' may not exist. */
731 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
732 && !COMPLETE_TYPE_P (type))
734 tree t;
736 if (current_namespace
737 != decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type)))
739 pedwarn ("specializing %q#T in different namespace", type);
740 cp_pedwarn_at (" from definition of %q#D",
741 CLASSTYPE_TI_TEMPLATE (type));
744 /* Check for invalid specialization after instantiation:
746 template <> template <> class C<int>::D<int>;
747 template <> template <class U> class C<int>::D; */
749 for (t = DECL_TEMPLATE_INSTANTIATIONS
750 (most_general_template (CLASSTYPE_TI_TEMPLATE (type)));
751 t; t = TREE_CHAIN (t))
752 if (TREE_VALUE (t) != type
753 && TYPE_CONTEXT (TREE_VALUE (t)) == context)
754 error ("specialization %qT after instantiation %qT",
755 type, TREE_VALUE (t));
757 /* Mark TYPE as a specialization. And as a result, we only
758 have one level of template argument for the innermost
759 class template. */
760 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
761 CLASSTYPE_TI_ARGS (type)
762 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
765 else if (processing_specialization)
766 error ("explicit specialization of non-template %qT", type);
769 /* Returns nonzero if we can optimize the retrieval of specializations
770 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
771 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
773 static inline bool
774 optimize_specialization_lookup_p (tree tmpl)
776 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
777 && DECL_CLASS_SCOPE_P (tmpl)
778 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
779 parameter. */
780 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
781 /* The optimized lookup depends on the fact that the
782 template arguments for the member function template apply
783 purely to the containing class, which is not true if the
784 containing class is an explicit or partial
785 specialization. */
786 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
787 && !DECL_MEMBER_TEMPLATE_P (tmpl)
788 && !DECL_CONV_FN_P (tmpl)
789 /* It is possible to have a template that is not a member
790 template and is not a member of a template class:
792 template <typename T>
793 struct S { friend A::f(); };
795 Here, the friend function is a template, but the context does
796 not have template information. The optimized lookup relies
797 on having ARGS be the template arguments for both the class
798 and the function template. */
799 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
802 /* Retrieve the specialization (in the sense of [temp.spec] - a
803 specialization is either an instantiation or an explicit
804 specialization) of TMPL for the given template ARGS. If there is
805 no such specialization, return NULL_TREE. The ARGS are a vector of
806 arguments, or a vector of vectors of arguments, in the case of
807 templates with more than one level of parameters.
809 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
810 then we search for a partial specialization matching ARGS. This
811 parameter is ignored if TMPL is not a class template. */
813 static tree
814 retrieve_specialization (tree tmpl, tree args,
815 bool class_specializations_p)
817 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
819 /* There should be as many levels of arguments as there are
820 levels of parameters. */
821 gcc_assert (TMPL_ARGS_DEPTH (args)
822 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
824 if (optimize_specialization_lookup_p (tmpl))
826 tree class_template;
827 tree class_specialization;
828 VEC(tree) *methods;
829 tree fns;
830 int idx;
832 /* The template arguments actually apply to the containing
833 class. Find the class specialization with those
834 arguments. */
835 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
836 class_specialization
837 = retrieve_specialization (class_template, args,
838 /*class_specializations_p=*/false);
839 if (!class_specialization)
840 return NULL_TREE;
841 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
842 for the specialization. */
843 idx = class_method_index_for_fn (class_specialization, tmpl);
844 if (idx == -1)
845 return NULL_TREE;
846 /* Iterate through the methods with the indicated name, looking
847 for the one that has an instance of TMPL. */
848 methods = CLASSTYPE_METHOD_VEC (class_specialization);
849 for (fns = VEC_index (tree, methods, idx); fns; fns = OVL_NEXT (fns))
851 tree fn = OVL_CURRENT (fns);
852 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl)
853 return fn;
855 return NULL_TREE;
857 else
859 tree *sp;
860 tree *head;
862 /* Class templates store their instantiations on the
863 DECL_TEMPLATE_INSTANTIATIONS list; other templates use the
864 DECL_TEMPLATE_SPECIALIZATIONS list. */
865 if (!class_specializations_p
866 && TREE_CODE (DECL_TEMPLATE_RESULT (tmpl)) == TYPE_DECL)
867 sp = &DECL_TEMPLATE_INSTANTIATIONS (tmpl);
868 else
869 sp = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
870 head = sp;
871 /* Iterate through the list until we find a matching template. */
872 while (*sp != NULL_TREE)
874 tree spec = *sp;
876 if (comp_template_args (TREE_PURPOSE (spec), args))
878 /* Use the move-to-front heuristic to speed up future
879 searches. */
880 if (spec != *head)
882 *sp = TREE_CHAIN (*sp);
883 TREE_CHAIN (spec) = *head;
884 *head = spec;
886 return TREE_VALUE (spec);
888 sp = &TREE_CHAIN (spec);
892 return NULL_TREE;
895 /* Like retrieve_specialization, but for local declarations. */
897 static tree
898 retrieve_local_specialization (tree tmpl)
900 tree spec = htab_find_with_hash (local_specializations, tmpl,
901 htab_hash_pointer (tmpl));
902 return spec ? TREE_PURPOSE (spec) : NULL_TREE;
905 /* Returns nonzero iff DECL is a specialization of TMPL. */
908 is_specialization_of (tree decl, tree tmpl)
910 tree t;
912 if (TREE_CODE (decl) == FUNCTION_DECL)
914 for (t = decl;
915 t != NULL_TREE;
916 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
917 if (t == tmpl)
918 return 1;
920 else
922 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
924 for (t = TREE_TYPE (decl);
925 t != NULL_TREE;
926 t = CLASSTYPE_USE_TEMPLATE (t)
927 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
928 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
929 return 1;
932 return 0;
935 /* Returns nonzero iff DECL is a specialization of friend declaration
936 FRIEND according to [temp.friend]. */
938 bool
939 is_specialization_of_friend (tree decl, tree friend)
941 bool need_template = true;
942 int template_depth;
944 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
945 || TREE_CODE (decl) == TYPE_DECL);
947 /* For [temp.friend/6] when FRIEND is an ordinary member function
948 of a template class, we want to check if DECL is a specialization
949 if this. */
950 if (TREE_CODE (friend) == FUNCTION_DECL
951 && DECL_TEMPLATE_INFO (friend)
952 && !DECL_USE_TEMPLATE (friend))
954 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
955 friend = DECL_TI_TEMPLATE (friend);
956 need_template = false;
958 else if (TREE_CODE (friend) == TEMPLATE_DECL
959 && !PRIMARY_TEMPLATE_P (friend))
960 need_template = false;
962 /* There is nothing to do if this is not a template friend. */
963 if (TREE_CODE (friend) != TEMPLATE_DECL)
964 return false;
966 if (is_specialization_of (decl, friend))
967 return true;
969 /* [temp.friend/6]
970 A member of a class template may be declared to be a friend of a
971 non-template class. In this case, the corresponding member of
972 every specialization of the class template is a friend of the
973 class granting friendship.
975 For example, given a template friend declaration
977 template <class T> friend void A<T>::f();
979 the member function below is considered a friend
981 template <> struct A<int> {
982 void f();
985 For this type of template friend, TEMPLATE_DEPTH below will be
986 nonzero. To determine if DECL is a friend of FRIEND, we first
987 check if the enclosing class is a specialization of another. */
989 template_depth = template_class_depth (DECL_CONTEXT (friend));
990 if (template_depth
991 && DECL_CLASS_SCOPE_P (decl)
992 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
993 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend))))
995 /* Next, we check the members themselves. In order to handle
996 a few tricky cases, such as when FRIEND's are
998 template <class T> friend void A<T>::g(T t);
999 template <class T> template <T t> friend void A<T>::h();
1001 and DECL's are
1003 void A<int>::g(int);
1004 template <int> void A<int>::h();
1006 we need to figure out ARGS, the template arguments from
1007 the context of DECL. This is required for template substitution
1008 of `T' in the function parameter of `g' and template parameter
1009 of `h' in the above examples. Here ARGS corresponds to `int'. */
1011 tree context = DECL_CONTEXT (decl);
1012 tree args = NULL_TREE;
1013 int current_depth = 0;
1015 while (current_depth < template_depth)
1017 if (CLASSTYPE_TEMPLATE_INFO (context))
1019 if (current_depth == 0)
1020 args = TYPE_TI_ARGS (context);
1021 else
1022 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1023 current_depth++;
1025 context = TYPE_CONTEXT (context);
1028 if (TREE_CODE (decl) == FUNCTION_DECL)
1030 bool is_template;
1031 tree friend_type;
1032 tree decl_type;
1033 tree friend_args_type;
1034 tree decl_args_type;
1036 /* Make sure that both DECL and FRIEND are templates or
1037 non-templates. */
1038 is_template = DECL_TEMPLATE_INFO (decl)
1039 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1040 if (need_template ^ is_template)
1041 return false;
1042 else if (is_template)
1044 /* If both are templates, check template parameter list. */
1045 tree friend_parms
1046 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
1047 args, tf_none);
1048 if (!comp_template_parms
1049 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1050 friend_parms))
1051 return false;
1053 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1055 else
1056 decl_type = TREE_TYPE (decl);
1058 friend_type = tsubst_function_type (TREE_TYPE (friend), args,
1059 tf_none, NULL_TREE);
1060 if (friend_type == error_mark_node)
1061 return false;
1063 /* Check if return types match. */
1064 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1065 return false;
1067 /* Check if function parameter types match, ignoring the
1068 `this' parameter. */
1069 friend_args_type = TYPE_ARG_TYPES (friend_type);
1070 decl_args_type = TYPE_ARG_TYPES (decl_type);
1071 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend))
1072 friend_args_type = TREE_CHAIN (friend_args_type);
1073 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1074 decl_args_type = TREE_CHAIN (decl_args_type);
1076 return compparms (decl_args_type, friend_args_type);
1078 else
1080 /* DECL is a TYPE_DECL */
1081 bool is_template;
1082 tree decl_type = TREE_TYPE (decl);
1084 /* Make sure that both DECL and FRIEND are templates or
1085 non-templates. */
1086 is_template
1087 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1088 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1090 if (need_template ^ is_template)
1091 return false;
1092 else if (is_template)
1094 tree friend_parms;
1095 /* If both are templates, check the name of the two
1096 TEMPLATE_DECL's first because is_friend didn't. */
1097 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1098 != DECL_NAME (friend))
1099 return false;
1101 /* Now check template parameter list. */
1102 friend_parms
1103 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
1104 args, tf_none);
1105 return comp_template_parms
1106 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1107 friend_parms);
1109 else
1110 return (DECL_NAME (decl)
1111 == DECL_NAME (friend));
1114 return false;
1117 /* Register the specialization SPEC as a specialization of TMPL with
1118 the indicated ARGS. Returns SPEC, or an equivalent prior
1119 declaration, if available. */
1121 static tree
1122 register_specialization (tree spec, tree tmpl, tree args)
1124 tree fn;
1126 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1128 if (TREE_CODE (spec) == FUNCTION_DECL
1129 && uses_template_parms (DECL_TI_ARGS (spec)))
1130 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1131 register it; we want the corresponding TEMPLATE_DECL instead.
1132 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1133 the more obvious `uses_template_parms (spec)' to avoid problems
1134 with default function arguments. In particular, given
1135 something like this:
1137 template <class T> void f(T t1, T t = T())
1139 the default argument expression is not substituted for in an
1140 instantiation unless and until it is actually needed. */
1141 return spec;
1143 /* There should be as many levels of arguments as there are
1144 levels of parameters. */
1145 gcc_assert (TMPL_ARGS_DEPTH (args)
1146 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
1148 fn = retrieve_specialization (tmpl, args,
1149 /*class_specializations_p=*/false);
1150 /* We can sometimes try to re-register a specialization that we've
1151 already got. In particular, regenerate_decl_from_template calls
1152 duplicate_decls which will update the specialization list. But,
1153 we'll still get called again here anyhow. It's more convenient
1154 to simply allow this than to try to prevent it. */
1155 if (fn == spec)
1156 return spec;
1157 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1159 if (DECL_TEMPLATE_INSTANTIATION (fn))
1161 if (TREE_USED (fn)
1162 || DECL_EXPLICIT_INSTANTIATION (fn))
1164 error ("specialization of %qD after instantiation",
1165 fn);
1166 return spec;
1168 else
1170 /* This situation should occur only if the first
1171 specialization is an implicit instantiation, the
1172 second is an explicit specialization, and the
1173 implicit instantiation has not yet been used. That
1174 situation can occur if we have implicitly
1175 instantiated a member function and then specialized
1176 it later.
1178 We can also wind up here if a friend declaration that
1179 looked like an instantiation turns out to be a
1180 specialization:
1182 template <class T> void foo(T);
1183 class S { friend void foo<>(int) };
1184 template <> void foo(int);
1186 We transform the existing DECL in place so that any
1187 pointers to it become pointers to the updated
1188 declaration.
1190 If there was a definition for the template, but not
1191 for the specialization, we want this to look as if
1192 there were no definition, and vice versa. */
1193 DECL_INITIAL (fn) = NULL_TREE;
1194 duplicate_decls (spec, fn);
1196 return fn;
1199 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1201 if (!duplicate_decls (spec, fn) && DECL_INITIAL (spec))
1202 /* Dup decl failed, but this is a new definition. Set the
1203 line number so any errors match this new
1204 definition. */
1205 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1207 return fn;
1211 /* A specialization must be declared in the same namespace as the
1212 template it is specializing. */
1213 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1214 && !check_specialization_namespace (tmpl))
1215 DECL_CONTEXT (spec) = decl_namespace_context (tmpl);
1217 if (!optimize_specialization_lookup_p (tmpl))
1218 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
1219 = tree_cons (args, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
1221 return spec;
1224 /* Unregister the specialization SPEC as a specialization of TMPL.
1225 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1226 if the SPEC was listed as a specialization of TMPL. */
1228 bool
1229 reregister_specialization (tree spec, tree tmpl, tree new_spec)
1231 tree* s;
1233 for (s = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
1234 *s != NULL_TREE;
1235 s = &TREE_CHAIN (*s))
1236 if (TREE_VALUE (*s) == spec)
1238 if (!new_spec)
1239 *s = TREE_CHAIN (*s);
1240 else
1241 TREE_VALUE (*s) = new_spec;
1242 return 1;
1245 return 0;
1248 /* Compare an entry in the local specializations hash table P1 (which
1249 is really a pointer to a TREE_LIST) with P2 (which is really a
1250 DECL). */
1252 static int
1253 eq_local_specializations (const void *p1, const void *p2)
1255 return TREE_VALUE ((tree) p1) == (tree) p2;
1258 /* Hash P1, an entry in the local specializations table. */
1260 static hashval_t
1261 hash_local_specialization (const void* p1)
1263 return htab_hash_pointer (TREE_VALUE ((tree) p1));
1266 /* Like register_specialization, but for local declarations. We are
1267 registering SPEC, an instantiation of TMPL. */
1269 static void
1270 register_local_specialization (tree spec, tree tmpl)
1272 void **slot;
1274 slot = htab_find_slot_with_hash (local_specializations, tmpl,
1275 htab_hash_pointer (tmpl), INSERT);
1276 *slot = build_tree_list (spec, tmpl);
1279 /* Print the list of candidate FNS in an error message. */
1281 void
1282 print_candidates (tree fns)
1284 tree fn;
1286 const char *str = "candidates are:";
1288 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn))
1290 tree f;
1292 for (f = TREE_VALUE (fn); f; f = OVL_NEXT (f))
1293 cp_error_at ("%s %+#D", str, OVL_CURRENT (f));
1294 str = " ";
1298 /* Returns the template (one of the functions given by TEMPLATE_ID)
1299 which can be specialized to match the indicated DECL with the
1300 explicit template args given in TEMPLATE_ID. The DECL may be
1301 NULL_TREE if none is available. In that case, the functions in
1302 TEMPLATE_ID are non-members.
1304 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1305 specialization of a member template.
1307 The TEMPLATE_COUNT is the number of references to qualifying
1308 template classes that appeared in the name of the function. See
1309 check_explicit_specialization for a more accurate description.
1311 The template args (those explicitly specified and those deduced)
1312 are output in a newly created vector *TARGS_OUT.
1314 If it is impossible to determine the result, an error message is
1315 issued. The error_mark_node is returned to indicate failure. */
1317 static tree
1318 determine_specialization (tree template_id,
1319 tree decl,
1320 tree* targs_out,
1321 int need_member_template,
1322 int template_count)
1324 tree fns;
1325 tree targs;
1326 tree explicit_targs;
1327 tree candidates = NULL_TREE;
1328 tree templates = NULL_TREE;
1329 int header_count;
1330 struct cp_binding_level *b;
1332 *targs_out = NULL_TREE;
1334 if (template_id == error_mark_node)
1335 return error_mark_node;
1337 fns = TREE_OPERAND (template_id, 0);
1338 explicit_targs = TREE_OPERAND (template_id, 1);
1340 if (fns == error_mark_node)
1341 return error_mark_node;
1343 /* Check for baselinks. */
1344 if (BASELINK_P (fns))
1345 fns = BASELINK_FUNCTIONS (fns);
1347 if (!is_overloaded_fn (fns))
1349 error ("%qD is not a function template", fns);
1350 return error_mark_node;
1353 /* Count the number of template headers specified for this
1354 specialization. */
1355 header_count = 0;
1356 for (b = current_binding_level;
1357 b->kind == sk_template_parms || b->kind == sk_template_spec;
1358 b = b->level_chain)
1359 ++header_count;
1361 for (; fns; fns = OVL_NEXT (fns))
1363 tree fn = OVL_CURRENT (fns);
1365 if (TREE_CODE (fn) == TEMPLATE_DECL)
1367 tree decl_arg_types;
1368 tree fn_arg_types;
1370 /* DECL might be a specialization of FN. */
1372 /* Adjust the type of DECL in case FN is a static member. */
1373 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1374 if (DECL_STATIC_FUNCTION_P (fn)
1375 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1376 decl_arg_types = TREE_CHAIN (decl_arg_types);
1378 /* Check that the number of function parameters matches.
1379 For example,
1380 template <class T> void f(int i = 0);
1381 template <> void f<int>();
1382 The specialization f<int> is invalid but is not caught
1383 by get_bindings below. */
1385 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1386 if (list_length (fn_arg_types) != list_length (decl_arg_types))
1387 continue;
1389 /* For a non-static member function, we need to make sure that
1390 the const qualification is the same. This can be done by
1391 checking the 'this' in the argument list. */
1392 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1393 && !same_type_p (TREE_VALUE (fn_arg_types),
1394 TREE_VALUE (decl_arg_types)))
1395 continue;
1397 /* In case of explicit specialization, we need to check if
1398 the number of template headers appearing in the specialization
1399 is correct. This is usually done in check_explicit_specialization,
1400 but the check done there cannot be exhaustive when specializing
1401 member functions. Consider the following code:
1403 template <> void A<int>::f(int);
1404 template <> template <> void A<int>::f(int);
1406 Assuming that A<int> is not itself an explicit specialization
1407 already, the first line specializes "f" which is a non-template
1408 member function, whilst the second line specializes "f" which
1409 is a template member function. So both lines are syntactically
1410 correct, and check_explicit_specialization does not reject
1411 them.
1413 Here, we can do better, as we are matching the specialization
1414 against the declarations. We count the number of template
1415 headers, and we check if they match TEMPLATE_COUNT + 1
1416 (TEMPLATE_COUNT is the number of qualifying template classes,
1417 plus there must be another header for the member template
1418 itself).
1420 Notice that if header_count is zero, this is not a
1421 specialization but rather a template instantiation, so there
1422 is no check we can perform here. */
1423 if (header_count && header_count != template_count + 1)
1424 continue;
1426 /* See whether this function might be a specialization of this
1427 template. */
1428 targs = get_bindings (fn, decl, explicit_targs);
1430 if (!targs)
1431 /* We cannot deduce template arguments that when used to
1432 specialize TMPL will produce DECL. */
1433 continue;
1435 /* Save this template, and the arguments deduced. */
1436 templates = tree_cons (targs, fn, templates);
1438 else if (need_member_template)
1439 /* FN is an ordinary member function, and we need a
1440 specialization of a member template. */
1442 else if (TREE_CODE (fn) != FUNCTION_DECL)
1443 /* We can get IDENTIFIER_NODEs here in certain erroneous
1444 cases. */
1446 else if (!DECL_FUNCTION_MEMBER_P (fn))
1447 /* This is just an ordinary non-member function. Nothing can
1448 be a specialization of that. */
1450 else if (DECL_ARTIFICIAL (fn))
1451 /* Cannot specialize functions that are created implicitly. */
1453 else
1455 tree decl_arg_types;
1457 /* This is an ordinary member function. However, since
1458 we're here, we can assume it's enclosing class is a
1459 template class. For example,
1461 template <typename T> struct S { void f(); };
1462 template <> void S<int>::f() {}
1464 Here, S<int>::f is a non-template, but S<int> is a
1465 template class. If FN has the same type as DECL, we
1466 might be in business. */
1468 if (!DECL_TEMPLATE_INFO (fn))
1469 /* Its enclosing class is an explicit specialization
1470 of a template class. This is not a candidate. */
1471 continue;
1473 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1474 TREE_TYPE (TREE_TYPE (fn))))
1475 /* The return types differ. */
1476 continue;
1478 /* Adjust the type of DECL in case FN is a static member. */
1479 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1480 if (DECL_STATIC_FUNCTION_P (fn)
1481 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1482 decl_arg_types = TREE_CHAIN (decl_arg_types);
1484 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1485 decl_arg_types))
1486 /* They match! */
1487 candidates = tree_cons (NULL_TREE, fn, candidates);
1491 if (templates && TREE_CHAIN (templates))
1493 /* We have:
1495 [temp.expl.spec]
1497 It is possible for a specialization with a given function
1498 signature to be instantiated from more than one function
1499 template. In such cases, explicit specification of the
1500 template arguments must be used to uniquely identify the
1501 function template specialization being specialized.
1503 Note that here, there's no suggestion that we're supposed to
1504 determine which of the candidate templates is most
1505 specialized. However, we, also have:
1507 [temp.func.order]
1509 Partial ordering of overloaded function template
1510 declarations is used in the following contexts to select
1511 the function template to which a function template
1512 specialization refers:
1514 -- when an explicit specialization refers to a function
1515 template.
1517 So, we do use the partial ordering rules, at least for now.
1518 This extension can only serve to make invalid programs valid,
1519 so it's safe. And, there is strong anecdotal evidence that
1520 the committee intended the partial ordering rules to apply;
1521 the EDG front-end has that behavior, and John Spicer claims
1522 that the committee simply forgot to delete the wording in
1523 [temp.expl.spec]. */
1524 tree tmpl = most_specialized (templates, decl, explicit_targs);
1525 if (tmpl && tmpl != error_mark_node)
1527 targs = get_bindings (tmpl, decl, explicit_targs);
1528 templates = tree_cons (targs, tmpl, NULL_TREE);
1532 if (templates == NULL_TREE && candidates == NULL_TREE)
1534 cp_error_at ("template-id %qD for %q+D does not match any template "
1535 "declaration",
1536 template_id, decl);
1537 return error_mark_node;
1539 else if ((templates && TREE_CHAIN (templates))
1540 || (candidates && TREE_CHAIN (candidates))
1541 || (templates && candidates))
1543 cp_error_at ("ambiguous template specialization %qD for %q+D",
1544 template_id, decl);
1545 chainon (candidates, templates);
1546 print_candidates (candidates);
1547 return error_mark_node;
1550 /* We have one, and exactly one, match. */
1551 if (candidates)
1553 /* It was a specialization of an ordinary member function in a
1554 template class. */
1555 *targs_out = copy_node (DECL_TI_ARGS (TREE_VALUE (candidates)));
1556 return DECL_TI_TEMPLATE (TREE_VALUE (candidates));
1559 /* It was a specialization of a template. */
1560 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
1561 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
1563 *targs_out = copy_node (targs);
1564 SET_TMPL_ARGS_LEVEL (*targs_out,
1565 TMPL_ARGS_DEPTH (*targs_out),
1566 TREE_PURPOSE (templates));
1568 else
1569 *targs_out = TREE_PURPOSE (templates);
1570 return TREE_VALUE (templates);
1573 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
1574 but with the default argument values filled in from those in the
1575 TMPL_TYPES. */
1577 static tree
1578 copy_default_args_to_explicit_spec_1 (tree spec_types,
1579 tree tmpl_types)
1581 tree new_spec_types;
1583 if (!spec_types)
1584 return NULL_TREE;
1586 if (spec_types == void_list_node)
1587 return void_list_node;
1589 /* Substitute into the rest of the list. */
1590 new_spec_types =
1591 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
1592 TREE_CHAIN (tmpl_types));
1594 /* Add the default argument for this parameter. */
1595 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
1596 TREE_VALUE (spec_types),
1597 new_spec_types);
1600 /* DECL is an explicit specialization. Replicate default arguments
1601 from the template it specializes. (That way, code like:
1603 template <class T> void f(T = 3);
1604 template <> void f(double);
1605 void g () { f (); }
1607 works, as required.) An alternative approach would be to look up
1608 the correct default arguments at the call-site, but this approach
1609 is consistent with how implicit instantiations are handled. */
1611 static void
1612 copy_default_args_to_explicit_spec (tree decl)
1614 tree tmpl;
1615 tree spec_types;
1616 tree tmpl_types;
1617 tree new_spec_types;
1618 tree old_type;
1619 tree new_type;
1620 tree t;
1621 tree object_type = NULL_TREE;
1622 tree in_charge = NULL_TREE;
1623 tree vtt = NULL_TREE;
1625 /* See if there's anything we need to do. */
1626 tmpl = DECL_TI_TEMPLATE (decl);
1627 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
1628 for (t = tmpl_types; t; t = TREE_CHAIN (t))
1629 if (TREE_PURPOSE (t))
1630 break;
1631 if (!t)
1632 return;
1634 old_type = TREE_TYPE (decl);
1635 spec_types = TYPE_ARG_TYPES (old_type);
1637 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1639 /* Remove the this pointer, but remember the object's type for
1640 CV quals. */
1641 object_type = TREE_TYPE (TREE_VALUE (spec_types));
1642 spec_types = TREE_CHAIN (spec_types);
1643 tmpl_types = TREE_CHAIN (tmpl_types);
1645 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
1647 /* DECL may contain more parameters than TMPL due to the extra
1648 in-charge parameter in constructors and destructors. */
1649 in_charge = spec_types;
1650 spec_types = TREE_CHAIN (spec_types);
1652 if (DECL_HAS_VTT_PARM_P (decl))
1654 vtt = spec_types;
1655 spec_types = TREE_CHAIN (spec_types);
1659 /* Compute the merged default arguments. */
1660 new_spec_types =
1661 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
1663 /* Compute the new FUNCTION_TYPE. */
1664 if (object_type)
1666 if (vtt)
1667 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
1668 TREE_VALUE (vtt),
1669 new_spec_types);
1671 if (in_charge)
1672 /* Put the in-charge parameter back. */
1673 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
1674 TREE_VALUE (in_charge),
1675 new_spec_types);
1677 new_type = build_method_type_directly (object_type,
1678 TREE_TYPE (old_type),
1679 new_spec_types);
1681 else
1682 new_type = build_function_type (TREE_TYPE (old_type),
1683 new_spec_types);
1684 new_type = cp_build_type_attribute_variant (new_type,
1685 TYPE_ATTRIBUTES (old_type));
1686 new_type = build_exception_variant (new_type,
1687 TYPE_RAISES_EXCEPTIONS (old_type));
1688 TREE_TYPE (decl) = new_type;
1691 /* Check to see if the function just declared, as indicated in
1692 DECLARATOR, and in DECL, is a specialization of a function
1693 template. We may also discover that the declaration is an explicit
1694 instantiation at this point.
1696 Returns DECL, or an equivalent declaration that should be used
1697 instead if all goes well. Issues an error message if something is
1698 amiss. Returns error_mark_node if the error is not easily
1699 recoverable.
1701 FLAGS is a bitmask consisting of the following flags:
1703 2: The function has a definition.
1704 4: The function is a friend.
1706 The TEMPLATE_COUNT is the number of references to qualifying
1707 template classes that appeared in the name of the function. For
1708 example, in
1710 template <class T> struct S { void f(); };
1711 void S<int>::f();
1713 the TEMPLATE_COUNT would be 1. However, explicitly specialized
1714 classes are not counted in the TEMPLATE_COUNT, so that in
1716 template <class T> struct S {};
1717 template <> struct S<int> { void f(); }
1718 template <> void S<int>::f();
1720 the TEMPLATE_COUNT would be 0. (Note that this declaration is
1721 invalid; there should be no template <>.)
1723 If the function is a specialization, it is marked as such via
1724 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
1725 is set up correctly, and it is added to the list of specializations
1726 for that template. */
1728 tree
1729 check_explicit_specialization (tree declarator,
1730 tree decl,
1731 int template_count,
1732 int flags)
1734 int have_def = flags & 2;
1735 int is_friend = flags & 4;
1736 int specialization = 0;
1737 int explicit_instantiation = 0;
1738 int member_specialization = 0;
1739 tree ctype = DECL_CLASS_CONTEXT (decl);
1740 tree dname = DECL_NAME (decl);
1741 tmpl_spec_kind tsk;
1743 if (is_friend)
1745 if (!processing_specialization)
1746 tsk = tsk_none;
1747 else
1748 tsk = tsk_excessive_parms;
1750 else
1751 tsk = current_tmpl_spec_kind (template_count);
1753 switch (tsk)
1755 case tsk_none:
1756 if (processing_specialization)
1758 specialization = 1;
1759 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1761 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1763 if (is_friend)
1764 /* This could be something like:
1766 template <class T> void f(T);
1767 class S { friend void f<>(int); } */
1768 specialization = 1;
1769 else
1771 /* This case handles bogus declarations like template <>
1772 template <class T> void f<int>(); */
1774 error ("template-id %qD in declaration of primary template",
1775 declarator);
1776 return decl;
1779 break;
1781 case tsk_invalid_member_spec:
1782 /* The error has already been reported in
1783 check_specialization_scope. */
1784 return error_mark_node;
1786 case tsk_invalid_expl_inst:
1787 error ("template parameter list used in explicit instantiation");
1789 /* Fall through. */
1791 case tsk_expl_inst:
1792 if (have_def)
1793 error ("definition provided for explicit instantiation");
1795 explicit_instantiation = 1;
1796 break;
1798 case tsk_excessive_parms:
1799 case tsk_insufficient_parms:
1800 if (tsk == tsk_excessive_parms)
1801 error ("too many template parameter lists in declaration of %qD",
1802 decl);
1803 else if (template_header_count)
1804 error("too few template parameter lists in declaration of %qD", decl);
1805 else
1806 error("explicit specialization of %qD must be introduced by "
1807 "%<template <>%>", decl);
1809 /* Fall through. */
1810 case tsk_expl_spec:
1811 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1812 if (ctype)
1813 member_specialization = 1;
1814 else
1815 specialization = 1;
1816 break;
1818 case tsk_template:
1819 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1821 /* This case handles bogus declarations like template <>
1822 template <class T> void f<int>(); */
1824 if (uses_template_parms (declarator))
1825 error ("function template partial specialization %qD "
1826 "is not allowed", declarator);
1827 else
1828 error ("template-id %qD in declaration of primary template",
1829 declarator);
1830 return decl;
1833 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
1834 /* This is a specialization of a member template, without
1835 specialization the containing class. Something like:
1837 template <class T> struct S {
1838 template <class U> void f (U);
1840 template <> template <class U> void S<int>::f(U) {}
1842 That's a specialization -- but of the entire template. */
1843 specialization = 1;
1844 break;
1846 default:
1847 gcc_unreachable ();
1850 if (specialization || member_specialization)
1852 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
1853 for (; t; t = TREE_CHAIN (t))
1854 if (TREE_PURPOSE (t))
1856 pedwarn
1857 ("default argument specified in explicit specialization");
1858 break;
1860 if (current_lang_name == lang_name_c)
1861 error ("template specialization with C linkage");
1864 if (specialization || member_specialization || explicit_instantiation)
1866 tree tmpl = NULL_TREE;
1867 tree targs = NULL_TREE;
1869 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
1870 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
1872 tree fns;
1874 gcc_assert (TREE_CODE (declarator) == IDENTIFIER_NODE);
1875 if (ctype)
1876 fns = dname;
1877 else
1879 /* If there is no class context, the explicit instantiation
1880 must be at namespace scope. */
1881 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
1883 /* Find the namespace binding, using the declaration
1884 context. */
1885 fns = namespace_binding (dname, CP_DECL_CONTEXT (decl));
1886 if (!fns || !is_overloaded_fn (fns))
1888 error ("%qD is not a template function", dname);
1889 fns = error_mark_node;
1893 declarator = lookup_template_function (fns, NULL_TREE);
1896 if (declarator == error_mark_node)
1897 return error_mark_node;
1899 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
1901 if (!explicit_instantiation)
1902 /* A specialization in class scope. This is invalid,
1903 but the error will already have been flagged by
1904 check_specialization_scope. */
1905 return error_mark_node;
1906 else
1908 /* It's not valid to write an explicit instantiation in
1909 class scope, e.g.:
1911 class C { template void f(); }
1913 This case is caught by the parser. However, on
1914 something like:
1916 template class C { void f(); };
1918 (which is invalid) we can get here. The error will be
1919 issued later. */
1923 return decl;
1925 else if (ctype != NULL_TREE
1926 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
1927 IDENTIFIER_NODE))
1929 /* Find the list of functions in ctype that have the same
1930 name as the declared function. */
1931 tree name = TREE_OPERAND (declarator, 0);
1932 tree fns = NULL_TREE;
1933 int idx;
1935 if (constructor_name_p (name, ctype))
1937 int is_constructor = DECL_CONSTRUCTOR_P (decl);
1939 if (is_constructor ? !TYPE_HAS_CONSTRUCTOR (ctype)
1940 : !CLASSTYPE_DESTRUCTORS (ctype))
1942 /* From [temp.expl.spec]:
1944 If such an explicit specialization for the member
1945 of a class template names an implicitly-declared
1946 special member function (clause _special_), the
1947 program is ill-formed.
1949 Similar language is found in [temp.explicit]. */
1950 error ("specialization of implicitly-declared special member function");
1951 return error_mark_node;
1954 name = is_constructor ? ctor_identifier : dtor_identifier;
1957 if (!DECL_CONV_FN_P (decl))
1959 idx = lookup_fnfields_1 (ctype, name);
1960 if (idx >= 0)
1961 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (ctype), idx);
1963 else
1965 VEC(tree) *methods;
1966 tree ovl;
1968 /* For a type-conversion operator, we cannot do a
1969 name-based lookup. We might be looking for `operator
1970 int' which will be a specialization of `operator T'.
1971 So, we find *all* the conversion operators, and then
1972 select from them. */
1973 fns = NULL_TREE;
1975 methods = CLASSTYPE_METHOD_VEC (ctype);
1976 if (methods)
1977 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
1978 VEC_iterate (tree, methods, idx, ovl);
1979 ++idx)
1981 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
1982 /* There are no more conversion functions. */
1983 break;
1985 /* Glue all these conversion functions together
1986 with those we already have. */
1987 for (; ovl; ovl = OVL_NEXT (ovl))
1988 fns = ovl_cons (OVL_CURRENT (ovl), fns);
1992 if (fns == NULL_TREE)
1994 error ("no member function %qD declared in %qT", name, ctype);
1995 return error_mark_node;
1997 else
1998 TREE_OPERAND (declarator, 0) = fns;
2001 /* Figure out what exactly is being specialized at this point.
2002 Note that for an explicit instantiation, even one for a
2003 member function, we cannot tell apriori whether the
2004 instantiation is for a member template, or just a member
2005 function of a template class. Even if a member template is
2006 being instantiated, the member template arguments may be
2007 elided if they can be deduced from the rest of the
2008 declaration. */
2009 tmpl = determine_specialization (declarator, decl,
2010 &targs,
2011 member_specialization,
2012 template_count);
2014 if (!tmpl || tmpl == error_mark_node)
2015 /* We couldn't figure out what this declaration was
2016 specializing. */
2017 return error_mark_node;
2018 else
2020 tree gen_tmpl = most_general_template (tmpl);
2022 if (explicit_instantiation)
2024 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2025 is done by do_decl_instantiation later. */
2027 int arg_depth = TMPL_ARGS_DEPTH (targs);
2028 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2030 if (arg_depth > parm_depth)
2032 /* If TMPL is not the most general template (for
2033 example, if TMPL is a friend template that is
2034 injected into namespace scope), then there will
2035 be too many levels of TARGS. Remove some of them
2036 here. */
2037 int i;
2038 tree new_targs;
2040 new_targs = make_tree_vec (parm_depth);
2041 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2042 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2043 = TREE_VEC_ELT (targs, i);
2044 targs = new_targs;
2047 return instantiate_template (tmpl, targs, tf_error);
2050 /* If we thought that the DECL was a member function, but it
2051 turns out to be specializing a static member function,
2052 make DECL a static member function as well. */
2053 if (DECL_STATIC_FUNCTION_P (tmpl)
2054 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2055 revert_static_member_fn (decl);
2057 /* If this is a specialization of a member template of a
2058 template class. In we want to return the TEMPLATE_DECL,
2059 not the specialization of it. */
2060 if (tsk == tsk_template)
2062 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2063 DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl)) = NULL_TREE;
2064 if (have_def)
2066 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2067 DECL_SOURCE_LOCATION (DECL_TEMPLATE_RESULT (tmpl))
2068 = DECL_SOURCE_LOCATION (decl);
2069 /* We want to use the argument list specified in the
2070 definition, not in the original declaration. */
2071 DECL_ARGUMENTS (DECL_TEMPLATE_RESULT (tmpl))
2072 = DECL_ARGUMENTS (decl);
2074 return tmpl;
2077 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2078 DECL_TEMPLATE_INFO (decl) = tree_cons (tmpl, targs, NULL_TREE);
2080 /* Inherit default function arguments from the template
2081 DECL is specializing. */
2082 copy_default_args_to_explicit_spec (decl);
2084 /* This specialization has the same protection as the
2085 template it specializes. */
2086 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2087 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2089 if (is_friend && !have_def)
2090 /* This is not really a declaration of a specialization.
2091 It's just the name of an instantiation. But, it's not
2092 a request for an instantiation, either. */
2093 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2094 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2095 /* This is indeed a specialization. In case of constructors
2096 and destructors, we need in-charge and not-in-charge
2097 versions in V3 ABI. */
2098 clone_function_decl (decl, /*update_method_vec_p=*/0);
2100 /* Register this specialization so that we can find it
2101 again. */
2102 decl = register_specialization (decl, gen_tmpl, targs);
2106 return decl;
2109 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2110 parameters. These are represented in the same format used for
2111 DECL_TEMPLATE_PARMS. */
2114 comp_template_parms (tree parms1, tree parms2)
2116 tree p1;
2117 tree p2;
2119 if (parms1 == parms2)
2120 return 1;
2122 for (p1 = parms1, p2 = parms2;
2123 p1 != NULL_TREE && p2 != NULL_TREE;
2124 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2126 tree t1 = TREE_VALUE (p1);
2127 tree t2 = TREE_VALUE (p2);
2128 int i;
2130 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2131 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2133 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2134 return 0;
2136 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2138 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2139 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2141 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2142 return 0;
2144 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM)
2145 continue;
2146 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2147 return 0;
2151 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2152 /* One set of parameters has more parameters lists than the
2153 other. */
2154 return 0;
2156 return 1;
2159 /* Complain if DECL shadows a template parameter.
2161 [temp.local]: A template-parameter shall not be redeclared within its
2162 scope (including nested scopes). */
2164 void
2165 check_template_shadow (tree decl)
2167 tree olddecl;
2169 /* If we're not in a template, we can't possibly shadow a template
2170 parameter. */
2171 if (!current_template_parms)
2172 return;
2174 /* Figure out what we're shadowing. */
2175 if (TREE_CODE (decl) == OVERLOAD)
2176 decl = OVL_CURRENT (decl);
2177 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
2179 /* If there's no previous binding for this name, we're not shadowing
2180 anything, let alone a template parameter. */
2181 if (!olddecl)
2182 return;
2184 /* If we're not shadowing a template parameter, we're done. Note
2185 that OLDDECL might be an OVERLOAD (or perhaps even an
2186 ERROR_MARK), so we can't just blithely assume it to be a _DECL
2187 node. */
2188 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
2189 return;
2191 /* We check for decl != olddecl to avoid bogus errors for using a
2192 name inside a class. We check TPFI to avoid duplicate errors for
2193 inline member templates. */
2194 if (decl == olddecl
2195 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
2196 return;
2198 cp_error_at ("declaration of %q#D", decl);
2199 cp_error_at (" shadows template parm %q#D", olddecl);
2202 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
2203 ORIG_LEVEL, DECL, and TYPE. */
2205 static tree
2206 build_template_parm_index (int index,
2207 int level,
2208 int orig_level,
2209 tree decl,
2210 tree type)
2212 tree t = make_node (TEMPLATE_PARM_INDEX);
2213 TEMPLATE_PARM_IDX (t) = index;
2214 TEMPLATE_PARM_LEVEL (t) = level;
2215 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
2216 TEMPLATE_PARM_DECL (t) = decl;
2217 TREE_TYPE (t) = type;
2218 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
2219 TREE_INVARIANT (t) = TREE_INVARIANT (decl);
2220 TREE_READONLY (t) = TREE_READONLY (decl);
2222 return t;
2225 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
2226 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
2227 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
2228 new one is created. */
2230 static tree
2231 reduce_template_parm_level (tree index, tree type, int levels)
2233 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
2234 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
2235 != TEMPLATE_PARM_LEVEL (index) - levels))
2237 tree orig_decl = TEMPLATE_PARM_DECL (index);
2238 tree decl, t;
2240 decl = build_decl (TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
2241 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
2242 TREE_INVARIANT (decl) = TREE_INVARIANT (orig_decl);
2243 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
2244 DECL_ARTIFICIAL (decl) = 1;
2245 SET_DECL_TEMPLATE_PARM_P (decl);
2247 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
2248 TEMPLATE_PARM_LEVEL (index) - levels,
2249 TEMPLATE_PARM_ORIG_LEVEL (index),
2250 decl, type);
2251 TEMPLATE_PARM_DESCENDANTS (index) = t;
2253 /* Template template parameters need this. */
2254 DECL_TEMPLATE_PARMS (decl)
2255 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index));
2258 return TEMPLATE_PARM_DESCENDANTS (index);
2261 /* Process information from new template parameter NEXT and append it to the
2262 LIST being built. This new parameter is a non-type parameter iff
2263 IS_NON_TYPE is true. */
2265 tree
2266 process_template_parm (tree list, tree next, bool is_non_type)
2268 tree parm;
2269 tree decl = 0;
2270 tree defval;
2271 int idx;
2273 parm = next;
2274 gcc_assert (TREE_CODE (parm) == TREE_LIST);
2275 defval = TREE_PURPOSE (parm);
2277 if (list)
2279 tree p = TREE_VALUE (tree_last (list));
2281 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
2282 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
2283 else
2284 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
2285 ++idx;
2287 else
2288 idx = 0;
2290 if (is_non_type)
2292 parm = TREE_VALUE (parm);
2294 SET_DECL_TEMPLATE_PARM_P (parm);
2296 /* [temp.param]
2298 The top-level cv-qualifiers on the template-parameter are
2299 ignored when determining its type. */
2300 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
2302 /* A template parameter is not modifiable. */
2303 TREE_CONSTANT (parm) = 1;
2304 TREE_INVARIANT (parm) = 1;
2305 TREE_READONLY (parm) = 1;
2306 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
2307 TREE_TYPE (parm) = void_type_node;
2308 decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
2309 TREE_CONSTANT (decl) = 1;
2310 TREE_INVARIANT (decl) = 1;
2311 TREE_READONLY (decl) = 1;
2312 DECL_INITIAL (parm) = DECL_INITIAL (decl)
2313 = build_template_parm_index (idx, processing_template_decl,
2314 processing_template_decl,
2315 decl, TREE_TYPE (parm));
2317 else
2319 tree t;
2320 parm = TREE_VALUE (TREE_VALUE (parm));
2322 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
2324 t = make_aggr_type (TEMPLATE_TEMPLATE_PARM);
2325 /* This is for distinguishing between real templates and template
2326 template parameters */
2327 TREE_TYPE (parm) = t;
2328 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
2329 decl = parm;
2331 else
2333 t = make_aggr_type (TEMPLATE_TYPE_PARM);
2334 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
2335 decl = build_decl (TYPE_DECL, parm, t);
2338 TYPE_NAME (t) = decl;
2339 TYPE_STUB_DECL (t) = decl;
2340 parm = decl;
2341 TEMPLATE_TYPE_PARM_INDEX (t)
2342 = build_template_parm_index (idx, processing_template_decl,
2343 processing_template_decl,
2344 decl, TREE_TYPE (parm));
2346 DECL_ARTIFICIAL (decl) = 1;
2347 SET_DECL_TEMPLATE_PARM_P (decl);
2348 pushdecl (decl);
2349 parm = build_tree_list (defval, parm);
2350 return chainon (list, parm);
2353 /* The end of a template parameter list has been reached. Process the
2354 tree list into a parameter vector, converting each parameter into a more
2355 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
2356 as PARM_DECLs. */
2358 tree
2359 end_template_parm_list (tree parms)
2361 int nparms;
2362 tree parm, next;
2363 tree saved_parmlist = make_tree_vec (list_length (parms));
2365 current_template_parms
2366 = tree_cons (size_int (processing_template_decl),
2367 saved_parmlist, current_template_parms);
2369 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
2371 next = TREE_CHAIN (parm);
2372 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
2373 TREE_CHAIN (parm) = NULL_TREE;
2376 --processing_template_parmlist;
2378 return saved_parmlist;
2381 /* end_template_decl is called after a template declaration is seen. */
2383 void
2384 end_template_decl (void)
2386 reset_specialization ();
2388 if (! processing_template_decl)
2389 return;
2391 /* This matches the pushlevel in begin_template_parm_list. */
2392 finish_scope ();
2394 --processing_template_decl;
2395 current_template_parms = TREE_CHAIN (current_template_parms);
2398 /* Given a template argument vector containing the template PARMS.
2399 The innermost PARMS are given first. */
2401 tree
2402 current_template_args (void)
2404 tree header;
2405 tree args = NULL_TREE;
2406 int length = TMPL_PARMS_DEPTH (current_template_parms);
2407 int l = length;
2409 /* If there is only one level of template parameters, we do not
2410 create a TREE_VEC of TREE_VECs. Instead, we return a single
2411 TREE_VEC containing the arguments. */
2412 if (length > 1)
2413 args = make_tree_vec (length);
2415 for (header = current_template_parms; header; header = TREE_CHAIN (header))
2417 tree a = copy_node (TREE_VALUE (header));
2418 int i;
2420 TREE_TYPE (a) = NULL_TREE;
2421 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
2423 tree t = TREE_VEC_ELT (a, i);
2425 /* T will be a list if we are called from within a
2426 begin/end_template_parm_list pair, but a vector directly
2427 if within a begin/end_member_template_processing pair. */
2428 if (TREE_CODE (t) == TREE_LIST)
2430 t = TREE_VALUE (t);
2432 if (TREE_CODE (t) == TYPE_DECL
2433 || TREE_CODE (t) == TEMPLATE_DECL)
2434 t = TREE_TYPE (t);
2435 else
2436 t = DECL_INITIAL (t);
2437 TREE_VEC_ELT (a, i) = t;
2441 if (length > 1)
2442 TREE_VEC_ELT (args, --l) = a;
2443 else
2444 args = a;
2447 return args;
2450 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
2451 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
2452 a member template. Used by push_template_decl below. */
2454 static tree
2455 build_template_decl (tree decl, tree parms, bool member_template_p)
2457 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
2458 DECL_TEMPLATE_PARMS (tmpl) = parms;
2459 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
2460 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
2461 if (DECL_LANG_SPECIFIC (decl))
2463 DECL_STATIC_FUNCTION_P (tmpl) = DECL_STATIC_FUNCTION_P (decl);
2464 DECL_CONSTRUCTOR_P (tmpl) = DECL_CONSTRUCTOR_P (decl);
2465 DECL_DESTRUCTOR_P (tmpl) = DECL_DESTRUCTOR_P (decl);
2466 DECL_NONCONVERTING_P (tmpl) = DECL_NONCONVERTING_P (decl);
2467 DECL_ASSIGNMENT_OPERATOR_P (tmpl) = DECL_ASSIGNMENT_OPERATOR_P (decl);
2468 if (DECL_OVERLOADED_OPERATOR_P (decl))
2469 SET_OVERLOADED_OPERATOR_CODE (tmpl,
2470 DECL_OVERLOADED_OPERATOR_P (decl));
2473 return tmpl;
2476 struct template_parm_data
2478 /* The level of the template parameters we are currently
2479 processing. */
2480 int level;
2482 /* The index of the specialization argument we are currently
2483 processing. */
2484 int current_arg;
2486 /* An array whose size is the number of template parameters. The
2487 elements are nonzero if the parameter has been used in any one
2488 of the arguments processed so far. */
2489 int* parms;
2491 /* An array whose size is the number of template arguments. The
2492 elements are nonzero if the argument makes use of template
2493 parameters of this level. */
2494 int* arg_uses_template_parms;
2497 /* Subroutine of push_template_decl used to see if each template
2498 parameter in a partial specialization is used in the explicit
2499 argument list. If T is of the LEVEL given in DATA (which is
2500 treated as a template_parm_data*), then DATA->PARMS is marked
2501 appropriately. */
2503 static int
2504 mark_template_parm (tree t, void* data)
2506 int level;
2507 int idx;
2508 struct template_parm_data* tpd = (struct template_parm_data*) data;
2510 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2512 level = TEMPLATE_PARM_LEVEL (t);
2513 idx = TEMPLATE_PARM_IDX (t);
2515 else
2517 level = TEMPLATE_TYPE_LEVEL (t);
2518 idx = TEMPLATE_TYPE_IDX (t);
2521 if (level == tpd->level)
2523 tpd->parms[idx] = 1;
2524 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
2527 /* Return zero so that for_each_template_parm will continue the
2528 traversal of the tree; we want to mark *every* template parm. */
2529 return 0;
2532 /* Process the partial specialization DECL. */
2534 static tree
2535 process_partial_specialization (tree decl)
2537 tree type = TREE_TYPE (decl);
2538 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
2539 tree specargs = CLASSTYPE_TI_ARGS (type);
2540 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
2541 tree inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
2542 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
2543 int nargs = TREE_VEC_LENGTH (inner_args);
2544 int ntparms = TREE_VEC_LENGTH (inner_parms);
2545 int i;
2546 int did_error_intro = 0;
2547 struct template_parm_data tpd;
2548 struct template_parm_data tpd2;
2550 /* We check that each of the template parameters given in the
2551 partial specialization is used in the argument list to the
2552 specialization. For example:
2554 template <class T> struct S;
2555 template <class T> struct S<T*>;
2557 The second declaration is OK because `T*' uses the template
2558 parameter T, whereas
2560 template <class T> struct S<int>;
2562 is no good. Even trickier is:
2564 template <class T>
2565 struct S1
2567 template <class U>
2568 struct S2;
2569 template <class U>
2570 struct S2<T>;
2573 The S2<T> declaration is actually invalid; it is a
2574 full-specialization. Of course,
2576 template <class U>
2577 struct S2<T (*)(U)>;
2579 or some such would have been OK. */
2580 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
2581 tpd.parms = alloca (sizeof (int) * ntparms);
2582 memset (tpd.parms, 0, sizeof (int) * ntparms);
2584 tpd.arg_uses_template_parms = alloca (sizeof (int) * nargs);
2585 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
2586 for (i = 0; i < nargs; ++i)
2588 tpd.current_arg = i;
2589 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
2590 &mark_template_parm,
2591 &tpd,
2592 NULL);
2594 for (i = 0; i < ntparms; ++i)
2595 if (tpd.parms[i] == 0)
2597 /* One of the template parms was not used in the
2598 specialization. */
2599 if (!did_error_intro)
2601 error ("template parameters not used in partial specialization:");
2602 did_error_intro = 1;
2605 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
2608 /* [temp.class.spec]
2610 The argument list of the specialization shall not be identical to
2611 the implicit argument list of the primary template. */
2612 if (comp_template_args
2613 (inner_args,
2614 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
2615 (maintmpl)))))
2616 error ("partial specialization %qT does not specialize any template arguments", type);
2618 /* [temp.class.spec]
2620 A partially specialized non-type argument expression shall not
2621 involve template parameters of the partial specialization except
2622 when the argument expression is a simple identifier.
2624 The type of a template parameter corresponding to a specialized
2625 non-type argument shall not be dependent on a parameter of the
2626 specialization. */
2627 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
2628 tpd2.parms = 0;
2629 for (i = 0; i < nargs; ++i)
2631 tree arg = TREE_VEC_ELT (inner_args, i);
2632 if (/* These first two lines are the `non-type' bit. */
2633 !TYPE_P (arg)
2634 && TREE_CODE (arg) != TEMPLATE_DECL
2635 /* This next line is the `argument expression is not just a
2636 simple identifier' condition and also the `specialized
2637 non-type argument' bit. */
2638 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
2640 if (tpd.arg_uses_template_parms[i])
2641 error ("template argument %qE involves template parameter(s)", arg);
2642 else
2644 /* Look at the corresponding template parameter,
2645 marking which template parameters its type depends
2646 upon. */
2647 tree type =
2648 TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (main_inner_parms,
2649 i)));
2651 if (!tpd2.parms)
2653 /* We haven't yet initialized TPD2. Do so now. */
2654 tpd2.arg_uses_template_parms
2655 = alloca (sizeof (int) * nargs);
2656 /* The number of parameters here is the number in the
2657 main template, which, as checked in the assertion
2658 above, is NARGS. */
2659 tpd2.parms = alloca (sizeof (int) * nargs);
2660 tpd2.level =
2661 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
2664 /* Mark the template parameters. But this time, we're
2665 looking for the template parameters of the main
2666 template, not in the specialization. */
2667 tpd2.current_arg = i;
2668 tpd2.arg_uses_template_parms[i] = 0;
2669 memset (tpd2.parms, 0, sizeof (int) * nargs);
2670 for_each_template_parm (type,
2671 &mark_template_parm,
2672 &tpd2,
2673 NULL);
2675 if (tpd2.arg_uses_template_parms [i])
2677 /* The type depended on some template parameters.
2678 If they are fully specialized in the
2679 specialization, that's OK. */
2680 int j;
2681 for (j = 0; j < nargs; ++j)
2682 if (tpd2.parms[j] != 0
2683 && tpd.arg_uses_template_parms [j])
2685 error ("type %qT of template argument %qE depends "
2686 "on template parameter(s)",
2687 type,
2688 arg);
2689 break;
2696 if (retrieve_specialization (maintmpl, specargs,
2697 /*class_specializations_p=*/true))
2698 /* We've already got this specialization. */
2699 return decl;
2701 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
2702 = tree_cons (inner_args, inner_parms,
2703 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
2704 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
2705 return decl;
2708 /* Check that a template declaration's use of default arguments is not
2709 invalid. Here, PARMS are the template parameters. IS_PRIMARY is
2710 nonzero if DECL is the thing declared by a primary template.
2711 IS_PARTIAL is nonzero if DECL is a partial specialization. */
2713 static void
2714 check_default_tmpl_args (tree decl, tree parms, int is_primary, int is_partial)
2716 const char *msg;
2717 int last_level_to_check;
2718 tree parm_level;
2720 /* [temp.param]
2722 A default template-argument shall not be specified in a
2723 function template declaration or a function template definition, nor
2724 in the template-parameter-list of the definition of a member of a
2725 class template. */
2727 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
2728 /* You can't have a function template declaration in a local
2729 scope, nor you can you define a member of a class template in a
2730 local scope. */
2731 return;
2733 if (current_class_type
2734 && !TYPE_BEING_DEFINED (current_class_type)
2735 && DECL_LANG_SPECIFIC (decl)
2736 /* If this is either a friend defined in the scope of the class
2737 or a member function. */
2738 && (DECL_FUNCTION_MEMBER_P (decl)
2739 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
2740 : DECL_FRIEND_CONTEXT (decl)
2741 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
2742 : false)
2743 /* And, if it was a member function, it really was defined in
2744 the scope of the class. */
2745 && (!DECL_FUNCTION_MEMBER_P (decl)
2746 || DECL_INITIALIZED_IN_CLASS_P (decl)))
2747 /* We already checked these parameters when the template was
2748 declared, so there's no need to do it again now. This function
2749 was defined in class scope, but we're processing it's body now
2750 that the class is complete. */
2751 return;
2753 /* [temp.param]
2755 If a template-parameter has a default template-argument, all
2756 subsequent template-parameters shall have a default
2757 template-argument supplied. */
2758 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
2760 tree inner_parms = TREE_VALUE (parm_level);
2761 int ntparms = TREE_VEC_LENGTH (inner_parms);
2762 int seen_def_arg_p = 0;
2763 int i;
2765 for (i = 0; i < ntparms; ++i)
2767 tree parm = TREE_VEC_ELT (inner_parms, i);
2768 if (TREE_PURPOSE (parm))
2769 seen_def_arg_p = 1;
2770 else if (seen_def_arg_p)
2772 error ("no default argument for %qD", TREE_VALUE (parm));
2773 /* For better subsequent error-recovery, we indicate that
2774 there should have been a default argument. */
2775 TREE_PURPOSE (parm) = error_mark_node;
2780 if (TREE_CODE (decl) != TYPE_DECL || is_partial || !is_primary)
2781 /* For an ordinary class template, default template arguments are
2782 allowed at the innermost level, e.g.:
2783 template <class T = int>
2784 struct S {};
2785 but, in a partial specialization, they're not allowed even
2786 there, as we have in [temp.class.spec]:
2788 The template parameter list of a specialization shall not
2789 contain default template argument values.
2791 So, for a partial specialization, or for a function template,
2792 we look at all of them. */
2794 else
2795 /* But, for a primary class template that is not a partial
2796 specialization we look at all template parameters except the
2797 innermost ones. */
2798 parms = TREE_CHAIN (parms);
2800 /* Figure out what error message to issue. */
2801 if (TREE_CODE (decl) == FUNCTION_DECL)
2802 msg = "default template arguments may not be used in function templates";
2803 else if (is_partial)
2804 msg = "default template arguments may not be used in partial specializations";
2805 else
2806 msg = "default argument for template parameter for class enclosing %qD";
2808 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
2809 /* If we're inside a class definition, there's no need to
2810 examine the parameters to the class itself. On the one
2811 hand, they will be checked when the class is defined, and,
2812 on the other, default arguments are valid in things like:
2813 template <class T = double>
2814 struct S { template <class U> void f(U); };
2815 Here the default argument for `S' has no bearing on the
2816 declaration of `f'. */
2817 last_level_to_check = template_class_depth (current_class_type) + 1;
2818 else
2819 /* Check everything. */
2820 last_level_to_check = 0;
2822 for (parm_level = parms;
2823 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
2824 parm_level = TREE_CHAIN (parm_level))
2826 tree inner_parms = TREE_VALUE (parm_level);
2827 int i;
2828 int ntparms;
2830 ntparms = TREE_VEC_LENGTH (inner_parms);
2831 for (i = 0; i < ntparms; ++i)
2832 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
2834 if (msg)
2836 error (msg, decl);
2837 msg = 0;
2840 /* Clear out the default argument so that we are not
2841 confused later. */
2842 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
2845 /* At this point, if we're still interested in issuing messages,
2846 they must apply to classes surrounding the object declared. */
2847 if (msg)
2848 msg = "default argument for template parameter for class enclosing %qD";
2852 /* Worker for push_template_decl_real, called via
2853 for_each_template_parm. DATA is really an int, indicating the
2854 level of the parameters we are interested in. If T is a template
2855 parameter of that level, return nonzero. */
2857 static int
2858 template_parm_this_level_p (tree t, void* data)
2860 int this_level = *(int *)data;
2861 int level;
2863 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2864 level = TEMPLATE_PARM_LEVEL (t);
2865 else
2866 level = TEMPLATE_TYPE_LEVEL (t);
2867 return level == this_level;
2870 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
2871 parameters given by current_template_args, or reuses a
2872 previously existing one, if appropriate. Returns the DECL, or an
2873 equivalent one, if it is replaced via a call to duplicate_decls.
2875 If IS_FRIEND is nonzero, DECL is a friend declaration. */
2877 tree
2878 push_template_decl_real (tree decl, int is_friend)
2880 tree tmpl;
2881 tree args;
2882 tree info;
2883 tree ctx;
2884 int primary;
2885 int is_partial;
2886 int new_template_p = 0;
2887 /* True if the template is a member template, in the sense of
2888 [temp.mem]. */
2889 bool member_template_p = false;
2891 if (decl == error_mark_node)
2892 return decl;
2894 /* See if this is a partial specialization. */
2895 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
2896 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
2897 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
2899 is_friend |= (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl));
2901 if (is_friend)
2902 /* For a friend, we want the context of the friend function, not
2903 the type of which it is a friend. */
2904 ctx = DECL_CONTEXT (decl);
2905 else if (CP_DECL_CONTEXT (decl)
2906 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
2907 /* In the case of a virtual function, we want the class in which
2908 it is defined. */
2909 ctx = CP_DECL_CONTEXT (decl);
2910 else
2911 /* Otherwise, if we're currently defining some class, the DECL
2912 is assumed to be a member of the class. */
2913 ctx = current_scope ();
2915 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
2916 ctx = NULL_TREE;
2918 if (!DECL_CONTEXT (decl))
2919 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
2921 /* See if this is a primary template. */
2922 primary = template_parm_scope_p ();
2924 if (primary)
2926 if (DECL_CLASS_SCOPE_P (decl))
2927 member_template_p = true;
2928 if (current_lang_name == lang_name_c)
2929 error ("template with C linkage");
2930 else if (TREE_CODE (decl) == TYPE_DECL
2931 && ANON_AGGRNAME_P (DECL_NAME (decl)))
2932 error ("template class without a name");
2933 else if (TREE_CODE (decl) == FUNCTION_DECL)
2935 if (DECL_DESTRUCTOR_P (decl))
2937 /* [temp.mem]
2939 A destructor shall not be a member template. */
2940 error ("destructor %qD declared as member template", decl);
2941 return error_mark_node;
2943 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
2944 && (!TYPE_ARG_TYPES (TREE_TYPE (decl))
2945 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
2946 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
2947 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
2948 == void_list_node)))
2950 /* [basic.stc.dynamic.allocation]
2952 An allocation function can be a function
2953 template. ... Template allocation functions shall
2954 have two or more parameters. */
2955 error ("invalid template declaration of %qD", decl);
2956 return decl;
2959 else if ((DECL_IMPLICIT_TYPEDEF_P (decl)
2960 && CLASS_TYPE_P (TREE_TYPE (decl)))
2961 || (TREE_CODE (decl) == VAR_DECL && ctx && CLASS_TYPE_P (ctx)))
2962 /* OK */;
2963 else
2965 error ("template declaration of %q#D", decl);
2966 return error_mark_node;
2970 /* Check to see that the rules regarding the use of default
2971 arguments are not being violated. */
2972 check_default_tmpl_args (decl, current_template_parms,
2973 primary, is_partial);
2975 if (is_partial)
2976 return process_partial_specialization (decl);
2978 args = current_template_args ();
2980 if (!ctx
2981 || TREE_CODE (ctx) == FUNCTION_DECL
2982 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
2983 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
2985 if (DECL_LANG_SPECIFIC (decl)
2986 && DECL_TEMPLATE_INFO (decl)
2987 && DECL_TI_TEMPLATE (decl))
2988 tmpl = DECL_TI_TEMPLATE (decl);
2989 /* If DECL is a TYPE_DECL for a class-template, then there won't
2990 be DECL_LANG_SPECIFIC. The information equivalent to
2991 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
2992 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
2993 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2994 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2996 /* Since a template declaration already existed for this
2997 class-type, we must be redeclaring it here. Make sure
2998 that the redeclaration is valid. */
2999 redeclare_class_template (TREE_TYPE (decl),
3000 current_template_parms);
3001 /* We don't need to create a new TEMPLATE_DECL; just use the
3002 one we already had. */
3003 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
3005 else
3007 tmpl = build_template_decl (decl, current_template_parms,
3008 member_template_p);
3009 new_template_p = 1;
3011 if (DECL_LANG_SPECIFIC (decl)
3012 && DECL_TEMPLATE_SPECIALIZATION (decl))
3014 /* A specialization of a member template of a template
3015 class. */
3016 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3017 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
3018 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
3022 else
3024 tree a, t, current, parms;
3025 int i;
3027 if (TREE_CODE (decl) == TYPE_DECL)
3029 if ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (decl)))
3030 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
3031 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
3032 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
3033 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
3034 else
3036 error ("%qD does not declare a template type", decl);
3037 return decl;
3040 else if (!DECL_LANG_SPECIFIC (decl) || !DECL_TEMPLATE_INFO (decl))
3042 error ("template definition of non-template %q#D", decl);
3043 return decl;
3045 else
3046 tmpl = DECL_TI_TEMPLATE (decl);
3048 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
3049 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
3050 && DECL_TEMPLATE_SPECIALIZATION (decl)
3051 && DECL_MEMBER_TEMPLATE_P (tmpl))
3053 tree new_tmpl;
3055 /* The declaration is a specialization of a member
3056 template, declared outside the class. Therefore, the
3057 innermost template arguments will be NULL, so we
3058 replace them with the arguments determined by the
3059 earlier call to check_explicit_specialization. */
3060 args = DECL_TI_ARGS (decl);
3062 new_tmpl
3063 = build_template_decl (decl, current_template_parms,
3064 member_template_p);
3065 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
3066 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
3067 DECL_TI_TEMPLATE (decl) = new_tmpl;
3068 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
3069 DECL_TEMPLATE_INFO (new_tmpl)
3070 = tree_cons (tmpl, args, NULL_TREE);
3072 register_specialization (new_tmpl,
3073 most_general_template (tmpl),
3074 args);
3075 return decl;
3078 /* Make sure the template headers we got make sense. */
3080 parms = DECL_TEMPLATE_PARMS (tmpl);
3081 i = TMPL_PARMS_DEPTH (parms);
3082 if (TMPL_ARGS_DEPTH (args) != i)
3084 error ("expected %d levels of template parms for %q#D, got %d",
3085 i, decl, TMPL_ARGS_DEPTH (args));
3087 else
3088 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
3090 a = TMPL_ARGS_LEVEL (args, i);
3091 t = INNERMOST_TEMPLATE_PARMS (parms);
3093 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
3095 if (current == decl)
3096 error ("got %d template parameters for %q#D",
3097 TREE_VEC_LENGTH (a), decl);
3098 else
3099 error ("got %d template parameters for %q#T",
3100 TREE_VEC_LENGTH (a), current);
3101 error (" but %d required", TREE_VEC_LENGTH (t));
3104 /* Perhaps we should also check that the parms are used in the
3105 appropriate qualifying scopes in the declarator? */
3107 if (current == decl)
3108 current = ctx;
3109 else
3110 current = TYPE_CONTEXT (current);
3114 DECL_TEMPLATE_RESULT (tmpl) = decl;
3115 TREE_TYPE (tmpl) = TREE_TYPE (decl);
3117 /* Push template declarations for global functions and types. Note
3118 that we do not try to push a global template friend declared in a
3119 template class; such a thing may well depend on the template
3120 parameters of the class. */
3121 if (new_template_p && !ctx
3122 && !(is_friend && template_class_depth (current_class_type) > 0))
3124 tmpl = pushdecl_namespace_level (tmpl);
3125 if (tmpl == error_mark_node)
3126 return error_mark_node;
3129 if (primary)
3131 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
3132 if (DECL_CONV_FN_P (tmpl))
3134 int depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
3136 /* It is a conversion operator. See if the type converted to
3137 depends on innermost template operands. */
3139 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
3140 depth))
3141 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
3145 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
3146 back to its most general template. If TMPL is a specialization,
3147 ARGS may only have the innermost set of arguments. Add the missing
3148 argument levels if necessary. */
3149 if (DECL_TEMPLATE_INFO (tmpl))
3150 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
3152 info = tree_cons (tmpl, args, NULL_TREE);
3154 if (DECL_IMPLICIT_TYPEDEF_P (decl))
3156 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
3157 if ((!ctx || TREE_CODE (ctx) != FUNCTION_DECL)
3158 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
3159 /* Don't change the name if we've already set it up. */
3160 && !IDENTIFIER_TEMPLATE (DECL_NAME (decl)))
3161 DECL_NAME (decl) = classtype_mangled_name (TREE_TYPE (decl));
3163 else if (DECL_LANG_SPECIFIC (decl))
3164 DECL_TEMPLATE_INFO (decl) = info;
3166 return DECL_TEMPLATE_RESULT (tmpl);
3169 tree
3170 push_template_decl (tree decl)
3172 return push_template_decl_real (decl, 0);
3175 /* Called when a class template TYPE is redeclared with the indicated
3176 template PARMS, e.g.:
3178 template <class T> struct S;
3179 template <class T> struct S {}; */
3181 void
3182 redeclare_class_template (tree type, tree parms)
3184 tree tmpl;
3185 tree tmpl_parms;
3186 int i;
3188 if (!TYPE_TEMPLATE_INFO (type))
3190 error ("%qT is not a template type", type);
3191 return;
3194 tmpl = TYPE_TI_TEMPLATE (type);
3195 if (!PRIMARY_TEMPLATE_P (tmpl))
3196 /* The type is nested in some template class. Nothing to worry
3197 about here; there are no new template parameters for the nested
3198 type. */
3199 return;
3201 if (!parms)
3203 error ("template specifiers not specified in declaration of %qD",
3204 tmpl);
3205 return;
3208 parms = INNERMOST_TEMPLATE_PARMS (parms);
3209 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
3211 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
3213 cp_error_at ("previous declaration %qD", tmpl);
3214 error ("used %d template parameter%s instead of %d",
3215 TREE_VEC_LENGTH (tmpl_parms),
3216 TREE_VEC_LENGTH (tmpl_parms) == 1 ? "" : "s",
3217 TREE_VEC_LENGTH (parms));
3218 return;
3221 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
3223 tree tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
3224 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
3225 tree tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
3226 tree parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
3228 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
3229 TEMPLATE_DECL. */
3230 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
3231 || (TREE_CODE (tmpl_parm) != TYPE_DECL
3232 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm))))
3234 cp_error_at ("template parameter %q#D", tmpl_parm);
3235 error ("redeclared here as %q#D", parm);
3236 return;
3239 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
3241 /* We have in [temp.param]:
3243 A template-parameter may not be given default arguments
3244 by two different declarations in the same scope. */
3245 error ("redefinition of default argument for %q#D", parm);
3246 error ("%J original definition appeared here", tmpl_parm);
3247 return;
3250 if (parm_default != NULL_TREE)
3251 /* Update the previous template parameters (which are the ones
3252 that will really count) with the new default value. */
3253 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
3254 else if (tmpl_default != NULL_TREE)
3255 /* Update the new parameters, too; they'll be used as the
3256 parameters for any members. */
3257 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
3261 /* Simplify EXPR if it is a non-dependent expression. Returns the
3262 (possibly simplified) expression. */
3264 tree
3265 fold_non_dependent_expr (tree expr)
3267 /* If we're in a template, but EXPR isn't value dependent, simplify
3268 it. We're supposed to treat:
3270 template <typename T> void f(T[1 + 1]);
3271 template <typename T> void f(T[2]);
3273 as two declarations of the same function, for example. */
3274 if (processing_template_decl
3275 && !type_dependent_expression_p (expr)
3276 && !value_dependent_expression_p (expr))
3278 HOST_WIDE_INT saved_processing_template_decl;
3280 saved_processing_template_decl = processing_template_decl;
3281 processing_template_decl = 0;
3282 expr = tsubst_copy_and_build (expr,
3283 /*args=*/NULL_TREE,
3284 tf_error,
3285 /*in_decl=*/NULL_TREE,
3286 /*function_p=*/false);
3287 processing_template_decl = saved_processing_template_decl;
3289 return expr;
3292 /* EXPR is an expression which is used in a constant-expression context.
3293 For instance, it could be a VAR_DECL with a constant initializer.
3294 Extract the innest constant expression.
3296 This is basically a more powerful version of
3297 integral_constant_value, which can be used also in templates where
3298 initializers can maintain a syntactic rather than semantic form
3299 (even if they are non-dependent, for access-checking purposes). */
3301 tree
3302 fold_decl_constant_value (tree expr)
3304 tree const_expr = expr;
3307 expr = fold_non_dependent_expr (const_expr);
3308 const_expr = integral_constant_value (expr);
3310 while (expr != const_expr);
3312 return expr;
3315 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
3316 must be a function or a pointer-to-function type, as specified
3317 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
3318 and check that the resulting function has external linkage. */
3320 static tree
3321 convert_nontype_argument_function (tree type, tree expr)
3323 tree fns = expr;
3324 tree fn, fn_no_ptr;
3326 fn = instantiate_type (type, fns, tf_none);
3327 if (fn == error_mark_node)
3328 return error_mark_node;
3330 fn_no_ptr = fn;
3331 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
3332 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
3334 /* [temp.arg.nontype]/1
3336 A template-argument for a non-type, non-template template-parameter
3337 shall be one of:
3338 [...]
3339 -- the address of an object or function with external linkage. */
3340 if (!DECL_EXTERNAL_LINKAGE_P (fn_no_ptr))
3342 error ("%qE is not a valid template argument for type %qT "
3343 "because function %qD has not external linkage",
3344 expr, type, fn_no_ptr);
3345 return NULL_TREE;
3348 return fn;
3351 /* Attempt to convert the non-type template parameter EXPR to the
3352 indicated TYPE. If the conversion is successful, return the
3353 converted value. If the conversion is unsuccessful, return
3354 NULL_TREE if we issued an error message, or error_mark_node if we
3355 did not. We issue error messages for out-and-out bad template
3356 parameters, but not simply because the conversion failed, since we
3357 might be just trying to do argument deduction. Both TYPE and EXPR
3358 must be non-dependent.
3360 The conversion follows the special rules described in
3361 [temp.arg.nontype], and it is much more strict than an implicit
3362 conversion.
3364 This function is called twice for each template argument (see
3365 lookup_template_class for a more accurate description of this
3366 problem). This means that we need to handle expressions which
3367 are not valid in a C++ source, but can be created from the
3368 first call (for instance, casts to perform conversions). These
3369 hacks can go away after we fix the double coercion problem. */
3371 static tree
3372 convert_nontype_argument (tree type, tree expr)
3374 tree expr_type;
3376 /* Detect immediately string literals as invalid non-type argument.
3377 This special-case is not needed for correctness (we would easily
3378 catch this later), but only to provide better diagnostic for this
3379 common user mistake. As suggested by DR 100, we do not mention
3380 linkage issues in the diagnostic as this is not the point. */
3381 if (TREE_CODE (expr) == STRING_CST)
3383 error ("%qE is not a valid template argument for type %qT "
3384 "because string literals can never be used in this context",
3385 expr, type);
3386 return NULL_TREE;
3389 /* If we are in a template, EXPR may be non-dependent, but still
3390 have a syntactic, rather than semantic, form. For example, EXPR
3391 might be a SCOPE_REF, rather than the VAR_DECL to which the
3392 SCOPE_REF refers. Preserving the qualifying scope is necessary
3393 so that access checking can be performed when the template is
3394 instantiated -- but here we need the resolved form so that we can
3395 convert the argument. */
3396 expr = fold_non_dependent_expr (expr);
3397 expr_type = TREE_TYPE (expr);
3399 /* HACK: Due to double coercion, we can get a
3400 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
3401 which is the tree that we built on the first call (see
3402 below when coercing to reference to object or to reference to
3403 function). We just strip everything and get to the arg.
3404 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
3405 for examples. */
3406 if (TREE_CODE (expr) == NOP_EXPR)
3408 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
3410 /* ??? Maybe we could use convert_from_reference here, but we
3411 would need to relax its constraints because the NOP_EXPR
3412 could actually change the type to something more cv-qualified,
3413 and this is not folded by convert_from_reference. */
3414 tree addr = TREE_OPERAND (expr, 0);
3415 gcc_assert (TREE_CODE (expr_type) == REFERENCE_TYPE);
3416 gcc_assert (TREE_CODE (addr) == ADDR_EXPR);
3417 gcc_assert (TREE_CODE (TREE_TYPE (addr)) == POINTER_TYPE);
3418 gcc_assert (same_type_ignoring_top_level_qualifiers_p
3419 (TREE_TYPE (expr_type),
3420 TREE_TYPE (TREE_TYPE (addr))));
3422 expr = TREE_OPERAND (addr, 0);
3423 expr_type = TREE_TYPE (expr);
3426 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
3427 parameter is a pointer to object, through decay and
3428 qualification conversion. Let's strip everything. */
3429 else if (TYPE_PTROBV_P (type))
3431 STRIP_NOPS (expr);
3432 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
3433 gcc_assert (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE);
3434 /* Skip the ADDR_EXPR only if it is part of the decay for
3435 an array. Otherwise, it is part of the original argument
3436 in the source code. */
3437 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == ARRAY_TYPE)
3438 expr = TREE_OPERAND (expr, 0);
3439 expr_type = TREE_TYPE (expr);
3443 /* [temp.arg.nontype]/5, bullet 1
3445 For a non-type template-parameter of integral or enumeration type,
3446 integral promotions (_conv.prom_) and integral conversions
3447 (_conv.integral_) are applied. */
3448 if (INTEGRAL_TYPE_P (type))
3450 if (!INTEGRAL_TYPE_P (expr_type))
3451 return error_mark_node;
3453 expr = fold_decl_constant_value (expr);
3454 /* Notice that there are constant expressions like '4 % 0' which
3455 do not fold into integer constants. */
3456 if (TREE_CODE (expr) != INTEGER_CST)
3458 error ("%qE is not a valid template argument for type %qT "
3459 "because it is a non-constant expression", expr, type);
3460 return NULL_TREE;
3463 /* At this point, an implicit conversion does what we want,
3464 because we already know that the expression is of integral
3465 type. */
3466 expr = ocp_convert (type, expr, CONV_IMPLICIT, LOOKUP_PROTECT);
3467 if (expr == error_mark_node)
3468 return error_mark_node;
3470 /* Conversion was allowed: fold it to a bare integer constant. */
3471 expr = fold (expr);
3473 /* [temp.arg.nontype]/5, bullet 2
3475 For a non-type template-parameter of type pointer to object,
3476 qualification conversions (_conv.qual_) and the array-to-pointer
3477 conversion (_conv.array_) are applied. */
3478 else if (TYPE_PTROBV_P (type))
3480 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
3482 A template-argument for a non-type, non-template template-parameter
3483 shall be one of: [...]
3485 -- the name of a non-type template-parameter;
3486 -- the address of an object or function with external linkage, [...]
3487 expressed as "& id-expression" where the & is optional if the name
3488 refers to a function or array, or if the corresponding
3489 template-parameter is a reference.
3491 Here, we do not care about functions, as they are invalid anyway
3492 for a parameter of type pointer-to-object. */
3493 bool constant_address_p =
3494 (TREE_CODE (expr) == ADDR_EXPR
3495 || TREE_CODE (expr_type) == ARRAY_TYPE
3496 || (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr)));
3498 expr = decay_conversion (expr);
3499 if (expr == error_mark_node)
3500 return error_mark_node;
3502 expr = perform_qualification_conversions (type, expr);
3503 if (expr == error_mark_node)
3504 return error_mark_node;
3506 if (!constant_address_p)
3508 error ("%qE is not a valid template argument for type %qT "
3509 "because it is not a constant pointer", expr, type);
3510 return NULL_TREE;
3513 /* [temp.arg.nontype]/5, bullet 3
3515 For a non-type template-parameter of type reference to object, no
3516 conversions apply. The type referred to by the reference may be more
3517 cv-qualified than the (otherwise identical) type of the
3518 template-argument. The template-parameter is bound directly to the
3519 template-argument, which must be an lvalue. */
3520 else if (TYPE_REF_OBJ_P (type))
3522 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
3523 expr_type))
3524 return error_mark_node;
3526 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
3528 error ("%qE is not a valid template argument for type %qT "
3529 "because of conflicts in cv-qualification", expr, type);
3530 return NULL_TREE;
3533 if (!real_lvalue_p (expr))
3535 error ("%qE is not a valid template argument for type %qT "
3536 "because it is not a lvalue", expr, type);
3537 return NULL_TREE;
3540 /* [temp.arg.nontype]/1
3542 A template-argument for a non-type, non-template template-parameter
3543 shall be one of: [...]
3545 -- the address of an object or function with external linkage. */
3546 if (!DECL_EXTERNAL_LINKAGE_P (expr))
3548 error ("%qE is not a valid template argument for type %qT "
3549 "because object %qD has not external linkage",
3550 expr, type, expr);
3551 return NULL_TREE;
3554 expr = build_nop (type, build_address (expr));
3556 /* [temp.arg.nontype]/5, bullet 4
3558 For a non-type template-parameter of type pointer to function, only
3559 the function-to-pointer conversion (_conv.func_) is applied. If the
3560 template-argument represents a set of overloaded functions (or a
3561 pointer to such), the matching function is selected from the set
3562 (_over.over_). */
3563 else if (TYPE_PTRFN_P (type))
3565 /* If the argument is a template-id, we might not have enough
3566 context information to decay the pointer.
3567 ??? Why static5.C requires decay and subst1.C works fine
3568 even without it? */
3569 if (!type_unknown_p (expr_type))
3571 expr = decay_conversion (expr);
3572 if (expr == error_mark_node)
3573 return error_mark_node;
3576 expr = convert_nontype_argument_function (type, expr);
3577 if (!expr || expr == error_mark_node)
3578 return expr;
3580 /* [temp.arg.nontype]/5, bullet 5
3582 For a non-type template-parameter of type reference to function, no
3583 conversions apply. If the template-argument represents a set of
3584 overloaded functions, the matching function is selected from the set
3585 (_over.over_). */
3586 else if (TYPE_REFFN_P (type))
3588 if (TREE_CODE (expr) == ADDR_EXPR)
3590 error ("%qE is not a valid template argument for type %qT "
3591 "because it is a pointer", expr, type);
3592 inform ("try using %qE instead", TREE_OPERAND (expr, 0));
3593 return NULL_TREE;
3596 expr = convert_nontype_argument_function (TREE_TYPE (type), expr);
3597 if (!expr || expr == error_mark_node)
3598 return expr;
3600 expr = build_nop(type, build_address (expr));
3602 /* [temp.arg.nontype]/5, bullet 6
3604 For a non-type template-parameter of type pointer to member function,
3605 no conversions apply. If the template-argument represents a set of
3606 overloaded member functions, the matching member function is selected
3607 from the set (_over.over_). */
3608 else if (TYPE_PTRMEMFUNC_P (type))
3610 expr = instantiate_type (type, expr, tf_none);
3611 if (expr == error_mark_node)
3612 return error_mark_node;
3614 /* There is no way to disable standard conversions in
3615 resolve_address_of_overloaded_function (called by
3616 instantiate_type). It is possible that the call succeeded by
3617 converting &B::I to &D::I (where B is a base of D), so we need
3618 to reject this conversion here.
3620 Actually, even if there was a way to disable standard conversions,
3621 it would still be better to reject them here so that we can
3622 provide a superior diagnostic. */
3623 if (!same_type_p (TREE_TYPE (expr), type))
3625 /* Make sure we are just one standard conversion off. */
3626 gcc_assert (can_convert (type, TREE_TYPE (expr)));
3627 error ("%qE is not a valid template argument for type %qT "
3628 "because it is of type %qT", expr, type,
3629 TREE_TYPE (expr));
3630 inform ("standard conversions are not allowed in this context");
3631 return NULL_TREE;
3634 /* [temp.arg.nontype]/5, bullet 7
3636 For a non-type template-parameter of type pointer to data member,
3637 qualification conversions (_conv.qual_) are applied. */
3638 else if (TYPE_PTRMEM_P (type))
3640 expr = perform_qualification_conversions (type, expr);
3641 if (expr == error_mark_node)
3642 return expr;
3644 /* A template non-type parameter must be one of the above. */
3645 else
3646 gcc_unreachable ();
3648 /* Sanity check: did we actually convert the argument to the
3649 right type? */
3650 gcc_assert (same_type_p (type, TREE_TYPE (expr)));
3651 return expr;
3655 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
3656 template template parameters. Both PARM_PARMS and ARG_PARMS are
3657 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
3658 or PARM_DECL.
3660 ARG_PARMS may contain more parameters than PARM_PARMS. If this is
3661 the case, then extra parameters must have default arguments.
3663 Consider the example:
3664 template <class T, class Allocator = allocator> class vector;
3665 template<template <class U> class TT> class C;
3667 C<vector> is a valid instantiation. PARM_PARMS for the above code
3668 contains a TYPE_DECL (for U), ARG_PARMS contains two TYPE_DECLs (for
3669 T and Allocator) and OUTER_ARGS contains the argument that is used to
3670 substitute the TT parameter. */
3672 static int
3673 coerce_template_template_parms (tree parm_parms,
3674 tree arg_parms,
3675 tsubst_flags_t complain,
3676 tree in_decl,
3677 tree outer_args)
3679 int nparms, nargs, i;
3680 tree parm, arg;
3682 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
3683 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
3685 nparms = TREE_VEC_LENGTH (parm_parms);
3686 nargs = TREE_VEC_LENGTH (arg_parms);
3688 /* The rule here is opposite of coerce_template_parms. */
3689 if (nargs < nparms
3690 || (nargs > nparms
3691 && TREE_PURPOSE (TREE_VEC_ELT (arg_parms, nparms)) == NULL_TREE))
3692 return 0;
3694 for (i = 0; i < nparms; ++i)
3696 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
3697 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
3699 if (arg == NULL_TREE || arg == error_mark_node
3700 || parm == NULL_TREE || parm == error_mark_node)
3701 return 0;
3703 if (TREE_CODE (arg) != TREE_CODE (parm))
3704 return 0;
3706 switch (TREE_CODE (parm))
3708 case TYPE_DECL:
3709 break;
3711 case TEMPLATE_DECL:
3712 /* We encounter instantiations of templates like
3713 template <template <template <class> class> class TT>
3714 class C; */
3716 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3717 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3719 if (!coerce_template_template_parms
3720 (parmparm, argparm, complain, in_decl, outer_args))
3721 return 0;
3723 break;
3725 case PARM_DECL:
3726 /* The tsubst call is used to handle cases such as
3728 template <int> class C {};
3729 template <class T, template <T> class TT> class D {};
3730 D<int, C> d;
3732 i.e. the parameter list of TT depends on earlier parameters. */
3733 if (!dependent_type_p (TREE_TYPE (arg))
3734 && !same_type_p
3735 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
3736 TREE_TYPE (arg)))
3737 return 0;
3738 break;
3740 default:
3741 gcc_unreachable ();
3744 return 1;
3747 /* Convert the indicated template ARG as necessary to match the
3748 indicated template PARM. Returns the converted ARG, or
3749 error_mark_node if the conversion was unsuccessful. Error and
3750 warning messages are issued under control of COMPLAIN. This
3751 conversion is for the Ith parameter in the parameter list. ARGS is
3752 the full set of template arguments deduced so far. */
3754 static tree
3755 convert_template_argument (tree parm,
3756 tree arg,
3757 tree args,
3758 tsubst_flags_t complain,
3759 int i,
3760 tree in_decl)
3762 tree val;
3763 tree inner_args;
3764 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
3766 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3768 if (TREE_CODE (arg) == TREE_LIST
3769 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
3771 /* The template argument was the name of some
3772 member function. That's usually
3773 invalid, but static members are OK. In any
3774 case, grab the underlying fields/functions
3775 and issue an error later if required. */
3776 arg = TREE_VALUE (arg);
3777 TREE_TYPE (arg) = unknown_type_node;
3780 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
3781 requires_type = (TREE_CODE (parm) == TYPE_DECL
3782 || requires_tmpl_type);
3784 is_tmpl_type = ((TREE_CODE (arg) == TEMPLATE_DECL
3785 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
3786 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3787 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
3789 if (is_tmpl_type
3790 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3791 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
3792 arg = TYPE_STUB_DECL (arg);
3794 is_type = TYPE_P (arg) || is_tmpl_type;
3796 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
3797 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
3799 pedwarn ("to refer to a type member of a template parameter, "
3800 "use %<typename %E%>", arg);
3802 arg = make_typename_type (TREE_OPERAND (arg, 0),
3803 TREE_OPERAND (arg, 1),
3804 typename_type,
3805 complain & tf_error);
3806 is_type = 1;
3808 if (is_type != requires_type)
3810 if (in_decl)
3812 if (complain & tf_error)
3814 error ("type/value mismatch at argument %d in template "
3815 "parameter list for %qD",
3816 i + 1, in_decl);
3817 if (is_type)
3818 error (" expected a constant of type %qT, got %qT",
3819 TREE_TYPE (parm),
3820 (is_tmpl_type ? DECL_NAME (arg) : arg));
3821 else if (requires_tmpl_type)
3822 error (" expected a class template, got %qE", arg);
3823 else
3824 error (" expected a type, got %qE", arg);
3827 return error_mark_node;
3829 if (is_tmpl_type ^ requires_tmpl_type)
3831 if (in_decl && (complain & tf_error))
3833 error ("type/value mismatch at argument %d in template "
3834 "parameter list for %qD",
3835 i + 1, in_decl);
3836 if (is_tmpl_type)
3837 error (" expected a type, got %qT", DECL_NAME (arg));
3838 else
3839 error (" expected a class template, got %qT", arg);
3841 return error_mark_node;
3844 if (is_type)
3846 if (requires_tmpl_type)
3848 if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
3849 /* The number of argument required is not known yet.
3850 Just accept it for now. */
3851 val = TREE_TYPE (arg);
3852 else
3854 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3855 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3857 if (coerce_template_template_parms (parmparm, argparm,
3858 complain, in_decl,
3859 inner_args))
3861 val = arg;
3863 /* TEMPLATE_TEMPLATE_PARM node is preferred over
3864 TEMPLATE_DECL. */
3865 if (val != error_mark_node
3866 && DECL_TEMPLATE_TEMPLATE_PARM_P (val))
3867 val = TREE_TYPE (val);
3869 else
3871 if (in_decl && (complain & tf_error))
3873 error ("type/value mismatch at argument %d in "
3874 "template parameter list for %qD",
3875 i + 1, in_decl);
3876 error (" expected a template of type %qD, got %qD",
3877 parm, arg);
3880 val = error_mark_node;
3884 else
3885 val = arg;
3887 else
3889 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
3891 if (invalid_nontype_parm_type_p (t, complain))
3892 return error_mark_node;
3894 if (!uses_template_parms (arg) && !uses_template_parms (t))
3895 /* We used to call digest_init here. However, digest_init
3896 will report errors, which we don't want when complain
3897 is zero. More importantly, digest_init will try too
3898 hard to convert things: for example, `0' should not be
3899 converted to pointer type at this point according to
3900 the standard. Accepting this is not merely an
3901 extension, since deciding whether or not these
3902 conversions can occur is part of determining which
3903 function template to call, or whether a given explicit
3904 argument specification is valid. */
3905 val = convert_nontype_argument (t, arg);
3906 else
3907 val = arg;
3909 if (val == NULL_TREE)
3910 val = error_mark_node;
3911 else if (val == error_mark_node && (complain & tf_error))
3912 error ("could not convert template argument %qE to %qT", arg, t);
3915 return val;
3918 /* Convert all template arguments to their appropriate types, and
3919 return a vector containing the innermost resulting template
3920 arguments. If any error occurs, return error_mark_node. Error and
3921 warning messages are issued under control of COMPLAIN.
3923 If REQUIRE_ALL_ARGUMENTS is nonzero, all arguments must be
3924 provided in ARGLIST, or else trailing parameters must have default
3925 values. If REQUIRE_ALL_ARGUMENTS is zero, we will attempt argument
3926 deduction for any unspecified trailing arguments. */
3928 static tree
3929 coerce_template_parms (tree parms,
3930 tree args,
3931 tree in_decl,
3932 tsubst_flags_t complain,
3933 int require_all_arguments)
3935 int nparms, nargs, i, lost = 0;
3936 tree inner_args;
3937 tree new_args;
3938 tree new_inner_args;
3940 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3941 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
3942 nparms = TREE_VEC_LENGTH (parms);
3944 if (nargs > nparms
3945 || (nargs < nparms
3946 && require_all_arguments
3947 && TREE_PURPOSE (TREE_VEC_ELT (parms, nargs)) == NULL_TREE))
3949 if (complain & tf_error)
3951 error ("wrong number of template arguments (%d, should be %d)",
3952 nargs, nparms);
3954 if (in_decl)
3955 cp_error_at ("provided for %qD", in_decl);
3958 return error_mark_node;
3961 new_inner_args = make_tree_vec (nparms);
3962 new_args = add_outermost_template_args (args, new_inner_args);
3963 for (i = 0; i < nparms; i++)
3965 tree arg;
3966 tree parm;
3968 /* Get the Ith template parameter. */
3969 parm = TREE_VEC_ELT (parms, i);
3971 /* Calculate the Ith argument. */
3972 if (i < nargs)
3973 arg = TREE_VEC_ELT (inner_args, i);
3974 else if (require_all_arguments)
3975 /* There must be a default arg in this case. */
3976 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
3977 complain, in_decl);
3978 else
3979 break;
3981 gcc_assert (arg);
3982 if (arg == error_mark_node)
3984 if (complain & tf_error)
3985 error ("template argument %d is invalid", i + 1);
3987 else
3988 arg = convert_template_argument (TREE_VALUE (parm),
3989 arg, new_args, complain, i,
3990 in_decl);
3992 if (arg == error_mark_node)
3993 lost++;
3994 TREE_VEC_ELT (new_inner_args, i) = arg;
3997 if (lost)
3998 return error_mark_node;
4000 return new_inner_args;
4003 /* Returns 1 if template args OT and NT are equivalent. */
4005 static int
4006 template_args_equal (tree ot, tree nt)
4008 if (nt == ot)
4009 return 1;
4011 if (TREE_CODE (nt) == TREE_VEC)
4012 /* For member templates */
4013 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
4014 else if (TYPE_P (nt))
4015 return TYPE_P (ot) && same_type_p (ot, nt);
4016 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
4017 return 0;
4018 else
4019 return cp_tree_equal (ot, nt);
4022 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
4023 of template arguments. Returns 0 otherwise. */
4026 comp_template_args (tree oldargs, tree newargs)
4028 int i;
4030 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
4031 return 0;
4033 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
4035 tree nt = TREE_VEC_ELT (newargs, i);
4036 tree ot = TREE_VEC_ELT (oldargs, i);
4038 if (! template_args_equal (ot, nt))
4039 return 0;
4041 return 1;
4044 /* Given class template name and parameter list, produce a user-friendly name
4045 for the instantiation. */
4047 static char *
4048 mangle_class_name_for_template (const char* name, tree parms, tree arglist)
4050 static struct obstack scratch_obstack;
4051 static char *scratch_firstobj;
4052 int i, nparms;
4054 if (!scratch_firstobj)
4055 gcc_obstack_init (&scratch_obstack);
4056 else
4057 obstack_free (&scratch_obstack, scratch_firstobj);
4058 scratch_firstobj = obstack_alloc (&scratch_obstack, 1);
4060 #define ccat(C) obstack_1grow (&scratch_obstack, (C));
4061 #define cat(S) obstack_grow (&scratch_obstack, (S), strlen (S))
4063 cat (name);
4064 ccat ('<');
4065 nparms = TREE_VEC_LENGTH (parms);
4066 arglist = INNERMOST_TEMPLATE_ARGS (arglist);
4067 gcc_assert (nparms == TREE_VEC_LENGTH (arglist));
4068 for (i = 0; i < nparms; i++)
4070 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4071 tree arg = TREE_VEC_ELT (arglist, i);
4073 if (i)
4074 ccat (',');
4076 if (TREE_CODE (parm) == TYPE_DECL)
4078 cat (type_as_string (arg, TFF_CHASE_TYPEDEF));
4079 continue;
4081 else if (TREE_CODE (parm) == TEMPLATE_DECL)
4083 if (TREE_CODE (arg) == TEMPLATE_DECL)
4085 /* Already substituted with real template. Just output
4086 the template name here */
4087 tree context = DECL_CONTEXT (arg);
4088 if (context)
4090 /* The template may be defined in a namespace, or
4091 may be a member template. */
4092 gcc_assert (TREE_CODE (context) == NAMESPACE_DECL
4093 || CLASS_TYPE_P (context));
4094 cat (decl_as_string (DECL_CONTEXT (arg),
4095 TFF_PLAIN_IDENTIFIER));
4096 cat ("::");
4098 cat (IDENTIFIER_POINTER (DECL_NAME (arg)));
4100 else
4101 /* Output the parameter declaration. */
4102 cat (type_as_string (arg, TFF_CHASE_TYPEDEF));
4103 continue;
4105 else
4106 gcc_assert (TREE_CODE (parm) == PARM_DECL);
4108 /* No need to check arglist against parmlist here; we did that
4109 in coerce_template_parms, called from lookup_template_class. */
4110 cat (expr_as_string (arg, TFF_PLAIN_IDENTIFIER));
4113 char *bufp = obstack_next_free (&scratch_obstack);
4114 int offset = 0;
4115 while (bufp[offset - 1] == ' ')
4116 offset--;
4117 obstack_blank_fast (&scratch_obstack, offset);
4119 /* B<C<char> >, not B<C<char>> */
4120 if (bufp[offset - 1] == '>')
4121 ccat (' ');
4123 ccat ('>');
4124 ccat ('\0');
4125 return (char *) obstack_base (&scratch_obstack);
4128 static tree
4129 classtype_mangled_name (tree t)
4131 if (CLASSTYPE_TEMPLATE_INFO (t)
4132 /* Specializations have already had their names set up in
4133 lookup_template_class. */
4134 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
4136 tree tmpl = most_general_template (CLASSTYPE_TI_TEMPLATE (t));
4138 /* For non-primary templates, the template parameters are
4139 implicit from their surrounding context. */
4140 if (PRIMARY_TEMPLATE_P (tmpl))
4142 tree name = DECL_NAME (tmpl);
4143 char *mangled_name = mangle_class_name_for_template
4144 (IDENTIFIER_POINTER (name),
4145 DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
4146 CLASSTYPE_TI_ARGS (t));
4147 tree id = get_identifier (mangled_name);
4148 IDENTIFIER_TEMPLATE (id) = name;
4149 return id;
4153 return TYPE_IDENTIFIER (t);
4156 static void
4157 add_pending_template (tree d)
4159 tree ti = (TYPE_P (d)
4160 ? CLASSTYPE_TEMPLATE_INFO (d)
4161 : DECL_TEMPLATE_INFO (d));
4162 tree pt;
4163 int level;
4165 if (TI_PENDING_TEMPLATE_FLAG (ti))
4166 return;
4168 /* We are called both from instantiate_decl, where we've already had a
4169 tinst_level pushed, and instantiate_template, where we haven't.
4170 Compensate. */
4171 level = !(current_tinst_level && TINST_DECL (current_tinst_level) == d);
4173 if (level)
4174 push_tinst_level (d);
4176 pt = tree_cons (current_tinst_level, d, NULL_TREE);
4177 if (last_pending_template)
4178 TREE_CHAIN (last_pending_template) = pt;
4179 else
4180 pending_templates = pt;
4182 last_pending_template = pt;
4184 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
4186 if (level)
4187 pop_tinst_level ();
4191 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
4192 ARGLIST. Valid choices for FNS are given in the cp-tree.def
4193 documentation for TEMPLATE_ID_EXPR. */
4195 tree
4196 lookup_template_function (tree fns, tree arglist)
4198 tree type;
4200 if (fns == error_mark_node || arglist == error_mark_node)
4201 return error_mark_node;
4203 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
4204 gcc_assert (fns && (is_overloaded_fn (fns)
4205 || TREE_CODE (fns) == IDENTIFIER_NODE));
4207 if (BASELINK_P (fns))
4209 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
4210 unknown_type_node,
4211 BASELINK_FUNCTIONS (fns),
4212 arglist);
4213 return fns;
4216 type = TREE_TYPE (fns);
4217 if (TREE_CODE (fns) == OVERLOAD || !type)
4218 type = unknown_type_node;
4220 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
4223 /* Within the scope of a template class S<T>, the name S gets bound
4224 (in build_self_reference) to a TYPE_DECL for the class, not a
4225 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
4226 or one of its enclosing classes, and that type is a template,
4227 return the associated TEMPLATE_DECL. Otherwise, the original
4228 DECL is returned. */
4230 tree
4231 maybe_get_template_decl_from_type_decl (tree decl)
4233 return (decl != NULL_TREE
4234 && TREE_CODE (decl) == TYPE_DECL
4235 && DECL_ARTIFICIAL (decl)
4236 && CLASS_TYPE_P (TREE_TYPE (decl))
4237 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
4238 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
4241 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
4242 parameters, find the desired type.
4244 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
4246 IN_DECL, if non-NULL, is the template declaration we are trying to
4247 instantiate.
4249 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
4250 the class we are looking up.
4252 Issue error and warning messages under control of COMPLAIN.
4254 If the template class is really a local class in a template
4255 function, then the FUNCTION_CONTEXT is the function in which it is
4256 being instantiated.
4258 ??? Note that this function is currently called *twice* for each
4259 template-id: the first time from the parser, while creating the
4260 incomplete type (finish_template_type), and the second type during the
4261 real instantiation (instantiate_template_class). This is surely something
4262 that we want to avoid. It also causes some problems with argument
4263 coercion (see convert_nontype_argument for more information on this). */
4265 tree
4266 lookup_template_class (tree d1,
4267 tree arglist,
4268 tree in_decl,
4269 tree context,
4270 int entering_scope,
4271 tsubst_flags_t complain)
4273 tree template = NULL_TREE, parmlist;
4274 tree t;
4276 timevar_push (TV_NAME_LOOKUP);
4278 if (TREE_CODE (d1) == IDENTIFIER_NODE)
4280 tree value = innermost_non_namespace_value (d1);
4281 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
4282 template = value;
4283 else
4285 if (context)
4286 push_decl_namespace (context);
4287 template = lookup_name (d1, /*prefer_type=*/0);
4288 template = maybe_get_template_decl_from_type_decl (template);
4289 if (context)
4290 pop_decl_namespace ();
4292 if (template)
4293 context = DECL_CONTEXT (template);
4295 else if (TREE_CODE (d1) == TYPE_DECL && IS_AGGR_TYPE (TREE_TYPE (d1)))
4297 tree type = TREE_TYPE (d1);
4299 /* If we are declaring a constructor, say A<T>::A<T>, we will get
4300 an implicit typename for the second A. Deal with it. */
4301 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
4302 type = TREE_TYPE (type);
4304 if (CLASSTYPE_TEMPLATE_INFO (type))
4306 template = CLASSTYPE_TI_TEMPLATE (type);
4307 d1 = DECL_NAME (template);
4310 else if (TREE_CODE (d1) == ENUMERAL_TYPE
4311 || (TYPE_P (d1) && IS_AGGR_TYPE (d1)))
4313 template = TYPE_TI_TEMPLATE (d1);
4314 d1 = DECL_NAME (template);
4316 else if (TREE_CODE (d1) == TEMPLATE_DECL
4317 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
4319 template = d1;
4320 d1 = DECL_NAME (template);
4321 context = DECL_CONTEXT (template);
4324 /* Issue an error message if we didn't find a template. */
4325 if (! template)
4327 if (complain & tf_error)
4328 error ("%qT is not a template", d1);
4329 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4332 if (TREE_CODE (template) != TEMPLATE_DECL
4333 /* Make sure it's a user visible template, if it was named by
4334 the user. */
4335 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (template)
4336 && !PRIMARY_TEMPLATE_P (template)))
4338 if (complain & tf_error)
4340 error ("non-template type %qT used as a template", d1);
4341 if (in_decl)
4342 cp_error_at ("for template declaration %qD", in_decl);
4344 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4347 complain &= ~tf_user;
4349 if (DECL_TEMPLATE_TEMPLATE_PARM_P (template))
4351 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
4352 template arguments */
4354 tree parm;
4355 tree arglist2;
4357 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (template);
4359 /* Consider an example where a template template parameter declared as
4361 template <class T, class U = std::allocator<T> > class TT
4363 The template parameter level of T and U are one level larger than
4364 of TT. To proper process the default argument of U, say when an
4365 instantiation `TT<int>' is seen, we need to build the full
4366 arguments containing {int} as the innermost level. Outer levels,
4367 available when not appearing as default template argument, can be
4368 obtained from `current_template_args ()'.
4370 Suppose that TT is later substituted with std::vector. The above
4371 instantiation is `TT<int, std::allocator<T> >' with TT at
4372 level 1, and T at level 2, while the template arguments at level 1
4373 becomes {std::vector} and the inner level 2 is {int}. */
4375 if (current_template_parms)
4376 arglist = add_to_template_args (current_template_args (), arglist);
4378 arglist2 = coerce_template_parms (parmlist, arglist, template,
4379 complain, /*require_all_args=*/1);
4380 if (arglist2 == error_mark_node
4381 || (!uses_template_parms (arglist2)
4382 && check_instantiated_args (template, arglist2, complain)))
4383 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4385 parm = bind_template_template_parm (TREE_TYPE (template), arglist2);
4386 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, parm);
4388 else
4390 tree template_type = TREE_TYPE (template);
4391 tree gen_tmpl;
4392 tree type_decl;
4393 tree found = NULL_TREE;
4394 int arg_depth;
4395 int parm_depth;
4396 int is_partial_instantiation;
4398 gen_tmpl = most_general_template (template);
4399 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
4400 parm_depth = TMPL_PARMS_DEPTH (parmlist);
4401 arg_depth = TMPL_ARGS_DEPTH (arglist);
4403 if (arg_depth == 1 && parm_depth > 1)
4405 /* We've been given an incomplete set of template arguments.
4406 For example, given:
4408 template <class T> struct S1 {
4409 template <class U> struct S2 {};
4410 template <class U> struct S2<U*> {};
4413 we will be called with an ARGLIST of `U*', but the
4414 TEMPLATE will be `template <class T> template
4415 <class U> struct S1<T>::S2'. We must fill in the missing
4416 arguments. */
4417 arglist
4418 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (template)),
4419 arglist);
4420 arg_depth = TMPL_ARGS_DEPTH (arglist);
4423 /* Now we should have enough arguments. */
4424 gcc_assert (parm_depth == arg_depth);
4426 /* From here on, we're only interested in the most general
4427 template. */
4428 template = gen_tmpl;
4430 /* Calculate the BOUND_ARGS. These will be the args that are
4431 actually tsubst'd into the definition to create the
4432 instantiation. */
4433 if (parm_depth > 1)
4435 /* We have multiple levels of arguments to coerce, at once. */
4436 int i;
4437 int saved_depth = TMPL_ARGS_DEPTH (arglist);
4439 tree bound_args = make_tree_vec (parm_depth);
4441 for (i = saved_depth,
4442 t = DECL_TEMPLATE_PARMS (template);
4443 i > 0 && t != NULL_TREE;
4444 --i, t = TREE_CHAIN (t))
4446 tree a = coerce_template_parms (TREE_VALUE (t),
4447 arglist, template,
4448 complain, /*require_all_args=*/1);
4450 /* Don't process further if one of the levels fails. */
4451 if (a == error_mark_node)
4453 /* Restore the ARGLIST to its full size. */
4454 TREE_VEC_LENGTH (arglist) = saved_depth;
4455 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4458 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
4460 /* We temporarily reduce the length of the ARGLIST so
4461 that coerce_template_parms will see only the arguments
4462 corresponding to the template parameters it is
4463 examining. */
4464 TREE_VEC_LENGTH (arglist)--;
4467 /* Restore the ARGLIST to its full size. */
4468 TREE_VEC_LENGTH (arglist) = saved_depth;
4470 arglist = bound_args;
4472 else
4473 arglist
4474 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
4475 INNERMOST_TEMPLATE_ARGS (arglist),
4476 template,
4477 complain, /*require_all_args=*/1);
4479 if (arglist == error_mark_node)
4480 /* We were unable to bind the arguments. */
4481 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4483 /* In the scope of a template class, explicit references to the
4484 template class refer to the type of the template, not any
4485 instantiation of it. For example, in:
4487 template <class T> class C { void f(C<T>); }
4489 the `C<T>' is just the same as `C'. Outside of the
4490 class, however, such a reference is an instantiation. */
4491 if (comp_template_args (TYPE_TI_ARGS (template_type),
4492 arglist))
4494 found = template_type;
4496 if (!entering_scope && PRIMARY_TEMPLATE_P (template))
4498 tree ctx;
4500 for (ctx = current_class_type;
4501 ctx && TREE_CODE (ctx) != NAMESPACE_DECL;
4502 ctx = (TYPE_P (ctx)
4503 ? TYPE_CONTEXT (ctx)
4504 : DECL_CONTEXT (ctx)))
4505 if (TYPE_P (ctx) && same_type_p (ctx, template_type))
4506 goto found_ctx;
4508 /* We're not in the scope of the class, so the
4509 TEMPLATE_TYPE is not the type we want after all. */
4510 found = NULL_TREE;
4511 found_ctx:;
4514 if (found)
4515 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
4517 /* If we already have this specialization, return it. */
4518 found = retrieve_specialization (template, arglist,
4519 /*class_specializations_p=*/false);
4520 if (found)
4521 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
4523 /* This type is a "partial instantiation" if any of the template
4524 arguments still involve template parameters. Note that we set
4525 IS_PARTIAL_INSTANTIATION for partial specializations as
4526 well. */
4527 is_partial_instantiation = uses_template_parms (arglist);
4529 /* If the deduced arguments are invalid, then the binding
4530 failed. */
4531 if (!is_partial_instantiation
4532 && check_instantiated_args (template,
4533 INNERMOST_TEMPLATE_ARGS (arglist),
4534 complain))
4535 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4537 if (!is_partial_instantiation
4538 && !PRIMARY_TEMPLATE_P (template)
4539 && TREE_CODE (CP_DECL_CONTEXT (template)) == NAMESPACE_DECL)
4541 found = xref_tag_from_type (TREE_TYPE (template),
4542 DECL_NAME (template),
4543 /*tag_scope=*/ts_global);
4544 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
4547 context = tsubst (DECL_CONTEXT (template), arglist,
4548 complain, in_decl);
4549 if (!context)
4550 context = global_namespace;
4552 /* Create the type. */
4553 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
4555 if (!is_partial_instantiation)
4557 set_current_access_from_decl (TYPE_NAME (template_type));
4558 t = start_enum (TYPE_IDENTIFIER (template_type));
4560 else
4561 /* We don't want to call start_enum for this type, since
4562 the values for the enumeration constants may involve
4563 template parameters. And, no one should be interested
4564 in the enumeration constants for such a type. */
4565 t = make_node (ENUMERAL_TYPE);
4567 else
4569 t = make_aggr_type (TREE_CODE (template_type));
4570 CLASSTYPE_DECLARED_CLASS (t)
4571 = CLASSTYPE_DECLARED_CLASS (template_type);
4572 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
4573 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
4575 /* A local class. Make sure the decl gets registered properly. */
4576 if (context == current_function_decl)
4577 pushtag (DECL_NAME (template), t, 0);
4580 /* If we called start_enum or pushtag above, this information
4581 will already be set up. */
4582 if (!TYPE_NAME (t))
4584 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
4586 type_decl = create_implicit_typedef (DECL_NAME (template), t);
4587 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
4588 TYPE_STUB_DECL (t) = type_decl;
4589 DECL_SOURCE_LOCATION (type_decl)
4590 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
4592 else
4593 type_decl = TYPE_NAME (t);
4595 TREE_PRIVATE (type_decl)
4596 = TREE_PRIVATE (TYPE_STUB_DECL (template_type));
4597 TREE_PROTECTED (type_decl)
4598 = TREE_PROTECTED (TYPE_STUB_DECL (template_type));
4600 /* Set up the template information. We have to figure out which
4601 template is the immediate parent if this is a full
4602 instantiation. */
4603 if (parm_depth == 1 || is_partial_instantiation
4604 || !PRIMARY_TEMPLATE_P (template))
4605 /* This case is easy; there are no member templates involved. */
4606 found = template;
4607 else
4609 /* This is a full instantiation of a member template. Look
4610 for a partial instantiation of which this is an instance. */
4612 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
4613 found; found = TREE_CHAIN (found))
4615 int success;
4616 tree tmpl = CLASSTYPE_TI_TEMPLATE (TREE_VALUE (found));
4618 /* We only want partial instantiations, here, not
4619 specializations or full instantiations. */
4620 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_VALUE (found))
4621 || !uses_template_parms (TREE_VALUE (found)))
4622 continue;
4624 /* Temporarily reduce by one the number of levels in the
4625 ARGLIST and in FOUND so as to avoid comparing the
4626 last set of arguments. */
4627 TREE_VEC_LENGTH (arglist)--;
4628 TREE_VEC_LENGTH (TREE_PURPOSE (found)) --;
4630 /* See if the arguments match. If they do, then TMPL is
4631 the partial instantiation we want. */
4632 success = comp_template_args (TREE_PURPOSE (found), arglist);
4634 /* Restore the argument vectors to their full size. */
4635 TREE_VEC_LENGTH (arglist)++;
4636 TREE_VEC_LENGTH (TREE_PURPOSE (found))++;
4638 if (success)
4640 found = tmpl;
4641 break;
4645 if (!found)
4647 /* There was no partial instantiation. This happens
4648 where C<T> is a member template of A<T> and it's used
4649 in something like
4651 template <typename T> struct B { A<T>::C<int> m; };
4652 B<float>;
4654 Create the partial instantiation.
4656 TREE_VEC_LENGTH (arglist)--;
4657 found = tsubst (template, arglist, complain, NULL_TREE);
4658 TREE_VEC_LENGTH (arglist)++;
4662 SET_TYPE_TEMPLATE_INFO (t, tree_cons (found, arglist, NULL_TREE));
4663 DECL_TEMPLATE_INSTANTIATIONS (template)
4664 = tree_cons (arglist, t,
4665 DECL_TEMPLATE_INSTANTIATIONS (template));
4667 if (TREE_CODE (t) == ENUMERAL_TYPE
4668 && !is_partial_instantiation)
4669 /* Now that the type has been registered on the instantiations
4670 list, we set up the enumerators. Because the enumeration
4671 constants may involve the enumeration type itself, we make
4672 sure to register the type first, and then create the
4673 constants. That way, doing tsubst_expr for the enumeration
4674 constants won't result in recursive calls here; we'll find
4675 the instantiation and exit above. */
4676 tsubst_enum (template_type, t, arglist);
4678 /* Reset the name of the type, now that CLASSTYPE_TEMPLATE_INFO
4679 is set up. */
4680 if (TREE_CODE (t) != ENUMERAL_TYPE)
4681 DECL_NAME (type_decl) = classtype_mangled_name (t);
4682 if (is_partial_instantiation)
4683 /* If the type makes use of template parameters, the
4684 code that generates debugging information will crash. */
4685 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
4687 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4689 timevar_pop (TV_NAME_LOOKUP);
4692 struct pair_fn_data
4694 tree_fn_t fn;
4695 void *data;
4696 struct pointer_set_t *visited;
4699 /* Called from for_each_template_parm via walk_tree. */
4701 static tree
4702 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
4704 tree t = *tp;
4705 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
4706 tree_fn_t fn = pfd->fn;
4707 void *data = pfd->data;
4709 if (TYPE_P (t)
4710 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited))
4711 return error_mark_node;
4713 switch (TREE_CODE (t))
4715 case RECORD_TYPE:
4716 if (TYPE_PTRMEMFUNC_P (t))
4717 break;
4718 /* Fall through. */
4720 case UNION_TYPE:
4721 case ENUMERAL_TYPE:
4722 if (!TYPE_TEMPLATE_INFO (t))
4723 *walk_subtrees = 0;
4724 else if (for_each_template_parm (TREE_VALUE (TYPE_TEMPLATE_INFO (t)),
4725 fn, data, pfd->visited))
4726 return error_mark_node;
4727 break;
4729 case METHOD_TYPE:
4730 /* Since we're not going to walk subtrees, we have to do this
4731 explicitly here. */
4732 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
4733 pfd->visited))
4734 return error_mark_node;
4735 /* Fall through. */
4737 case FUNCTION_TYPE:
4738 /* Check the return type. */
4739 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited))
4740 return error_mark_node;
4742 /* Check the parameter types. Since default arguments are not
4743 instantiated until they are needed, the TYPE_ARG_TYPES may
4744 contain expressions that involve template parameters. But,
4745 no-one should be looking at them yet. And, once they're
4746 instantiated, they don't contain template parameters, so
4747 there's no point in looking at them then, either. */
4749 tree parm;
4751 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
4752 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
4753 pfd->visited))
4754 return error_mark_node;
4756 /* Since we've already handled the TYPE_ARG_TYPES, we don't
4757 want walk_tree walking into them itself. */
4758 *walk_subtrees = 0;
4760 break;
4762 case TYPEOF_TYPE:
4763 if (for_each_template_parm (TYPE_FIELDS (t), fn, data,
4764 pfd->visited))
4765 return error_mark_node;
4766 break;
4768 case FUNCTION_DECL:
4769 case VAR_DECL:
4770 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
4771 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
4772 pfd->visited))
4773 return error_mark_node;
4774 /* Fall through. */
4776 case PARM_DECL:
4777 case CONST_DECL:
4778 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
4779 && for_each_template_parm (DECL_INITIAL (t), fn, data,
4780 pfd->visited))
4781 return error_mark_node;
4782 if (DECL_CONTEXT (t)
4783 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
4784 pfd->visited))
4785 return error_mark_node;
4786 break;
4788 case BOUND_TEMPLATE_TEMPLATE_PARM:
4789 /* Record template parameters such as `T' inside `TT<T>'. */
4790 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited))
4791 return error_mark_node;
4792 /* Fall through. */
4794 case TEMPLATE_TEMPLATE_PARM:
4795 case TEMPLATE_TYPE_PARM:
4796 case TEMPLATE_PARM_INDEX:
4797 if (fn && (*fn)(t, data))
4798 return error_mark_node;
4799 else if (!fn)
4800 return error_mark_node;
4801 break;
4803 case TEMPLATE_DECL:
4804 /* A template template parameter is encountered. */
4805 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
4806 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited))
4807 return error_mark_node;
4809 /* Already substituted template template parameter */
4810 *walk_subtrees = 0;
4811 break;
4813 case TYPENAME_TYPE:
4814 if (!fn
4815 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
4816 data, pfd->visited))
4817 return error_mark_node;
4818 break;
4820 case CONSTRUCTOR:
4821 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
4822 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
4823 (TREE_TYPE (t)), fn, data,
4824 pfd->visited))
4825 return error_mark_node;
4826 break;
4828 case INDIRECT_REF:
4829 case COMPONENT_REF:
4830 /* If there's no type, then this thing must be some expression
4831 involving template parameters. */
4832 if (!fn && !TREE_TYPE (t))
4833 return error_mark_node;
4834 break;
4836 case MODOP_EXPR:
4837 case CAST_EXPR:
4838 case REINTERPRET_CAST_EXPR:
4839 case CONST_CAST_EXPR:
4840 case STATIC_CAST_EXPR:
4841 case DYNAMIC_CAST_EXPR:
4842 case ARROW_EXPR:
4843 case DOTSTAR_EXPR:
4844 case TYPEID_EXPR:
4845 case PSEUDO_DTOR_EXPR:
4846 if (!fn)
4847 return error_mark_node;
4848 break;
4850 case BASELINK:
4851 /* If we do not handle this case specially, we end up walking
4852 the BINFO hierarchy, which is circular, and therefore
4853 confuses walk_tree. */
4854 *walk_subtrees = 0;
4855 if (for_each_template_parm (BASELINK_FUNCTIONS (*tp), fn, data,
4856 pfd->visited))
4857 return error_mark_node;
4858 break;
4860 default:
4861 break;
4864 /* We didn't find any template parameters we liked. */
4865 return NULL_TREE;
4868 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
4869 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
4870 call FN with the parameter and the DATA.
4871 If FN returns nonzero, the iteration is terminated, and
4872 for_each_template_parm returns 1. Otherwise, the iteration
4873 continues. If FN never returns a nonzero value, the value
4874 returned by for_each_template_parm is 0. If FN is NULL, it is
4875 considered to be the function which always returns 1. */
4877 static int
4878 for_each_template_parm (tree t, tree_fn_t fn, void* data,
4879 struct pointer_set_t *visited)
4881 struct pair_fn_data pfd;
4882 int result;
4884 /* Set up. */
4885 pfd.fn = fn;
4886 pfd.data = data;
4888 /* Walk the tree. (Conceptually, we would like to walk without
4889 duplicates, but for_each_template_parm_r recursively calls
4890 for_each_template_parm, so we would need to reorganize a fair
4891 bit to use walk_tree_without_duplicates, so we keep our own
4892 visited list.) */
4893 if (visited)
4894 pfd.visited = visited;
4895 else
4896 pfd.visited = pointer_set_create ();
4897 result = walk_tree (&t,
4898 for_each_template_parm_r,
4899 &pfd,
4900 pfd.visited) != NULL_TREE;
4902 /* Clean up. */
4903 if (!visited)
4905 pointer_set_destroy (pfd.visited);
4906 pfd.visited = 0;
4909 return result;
4912 /* Returns true if T depends on any template parameter. */
4915 uses_template_parms (tree t)
4917 bool dependent_p;
4918 int saved_processing_template_decl;
4920 saved_processing_template_decl = processing_template_decl;
4921 if (!saved_processing_template_decl)
4922 processing_template_decl = 1;
4923 if (TYPE_P (t))
4924 dependent_p = dependent_type_p (t);
4925 else if (TREE_CODE (t) == TREE_VEC)
4926 dependent_p = any_dependent_template_arguments_p (t);
4927 else if (TREE_CODE (t) == TREE_LIST)
4928 dependent_p = (uses_template_parms (TREE_VALUE (t))
4929 || uses_template_parms (TREE_CHAIN (t)));
4930 else if (DECL_P (t)
4931 || EXPR_P (t)
4932 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
4933 || TREE_CODE (t) == OVERLOAD
4934 || TREE_CODE (t) == BASELINK
4935 || CONSTANT_CLASS_P (t))
4936 dependent_p = (type_dependent_expression_p (t)
4937 || value_dependent_expression_p (t));
4938 else
4940 gcc_assert (t == error_mark_node);
4941 dependent_p = false;
4944 processing_template_decl = saved_processing_template_decl;
4946 return dependent_p;
4949 /* Returns true if T depends on any template parameter with level LEVEL. */
4952 uses_template_parms_level (tree t, int level)
4954 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL);
4957 static int tinst_depth;
4958 extern int max_tinst_depth;
4959 #ifdef GATHER_STATISTICS
4960 int depth_reached;
4961 #endif
4962 static int tinst_level_tick;
4963 static int last_template_error_tick;
4965 /* We're starting to instantiate D; record the template instantiation context
4966 for diagnostics and to restore it later. */
4969 push_tinst_level (tree d)
4971 tree new;
4973 if (tinst_depth >= max_tinst_depth)
4975 /* If the instantiation in question still has unbound template parms,
4976 we don't really care if we can't instantiate it, so just return.
4977 This happens with base instantiation for implicit `typename'. */
4978 if (uses_template_parms (d))
4979 return 0;
4981 last_template_error_tick = tinst_level_tick;
4982 error ("template instantiation depth exceeds maximum of %d (use "
4983 "-ftemplate-depth-NN to increase the maximum) instantiating %qD",
4984 max_tinst_depth, d);
4986 print_instantiation_context ();
4988 return 0;
4991 new = make_tinst_level (d, input_location);
4992 TREE_CHAIN (new) = current_tinst_level;
4993 current_tinst_level = new;
4995 ++tinst_depth;
4996 #ifdef GATHER_STATISTICS
4997 if (tinst_depth > depth_reached)
4998 depth_reached = tinst_depth;
4999 #endif
5001 ++tinst_level_tick;
5002 return 1;
5005 /* We're done instantiating this template; return to the instantiation
5006 context. */
5008 void
5009 pop_tinst_level (void)
5011 tree old = current_tinst_level;
5013 /* Restore the filename and line number stashed away when we started
5014 this instantiation. */
5015 input_location = TINST_LOCATION (old);
5016 current_tinst_level = TREE_CHAIN (old);
5017 --tinst_depth;
5018 ++tinst_level_tick;
5021 /* We're instantiating a deferred template; restore the template
5022 instantiation context in which the instantiation was requested, which
5023 is one step out from LEVEL. */
5025 static void
5026 reopen_tinst_level (tree level)
5028 tree t;
5030 tinst_depth = 0;
5031 for (t = level; t; t = TREE_CHAIN (t))
5032 ++tinst_depth;
5034 current_tinst_level = level;
5035 pop_tinst_level ();
5038 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
5039 vector of template arguments, as for tsubst.
5041 Returns an appropriate tsubst'd friend declaration. */
5043 static tree
5044 tsubst_friend_function (tree decl, tree args)
5046 tree new_friend;
5048 if (TREE_CODE (decl) == FUNCTION_DECL
5049 && DECL_TEMPLATE_INSTANTIATION (decl)
5050 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
5051 /* This was a friend declared with an explicit template
5052 argument list, e.g.:
5054 friend void f<>(T);
5056 to indicate that f was a template instantiation, not a new
5057 function declaration. Now, we have to figure out what
5058 instantiation of what template. */
5060 tree template_id, arglist, fns;
5061 tree new_args;
5062 tree tmpl;
5063 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
5065 /* Friend functions are looked up in the containing namespace scope.
5066 We must enter that scope, to avoid finding member functions of the
5067 current cless with same name. */
5068 push_nested_namespace (ns);
5069 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
5070 tf_error | tf_warning, NULL_TREE);
5071 pop_nested_namespace (ns);
5072 arglist = tsubst (DECL_TI_ARGS (decl), args,
5073 tf_error | tf_warning, NULL_TREE);
5074 template_id = lookup_template_function (fns, arglist);
5076 new_friend = tsubst (decl, args, tf_error | tf_warning, NULL_TREE);
5077 tmpl = determine_specialization (template_id, new_friend,
5078 &new_args,
5079 /*need_member_template=*/0,
5080 TREE_VEC_LENGTH (args));
5081 return instantiate_template (tmpl, new_args, tf_error);
5084 new_friend = tsubst (decl, args, tf_error | tf_warning, NULL_TREE);
5086 /* The NEW_FRIEND will look like an instantiation, to the
5087 compiler, but is not an instantiation from the point of view of
5088 the language. For example, we might have had:
5090 template <class T> struct S {
5091 template <class U> friend void f(T, U);
5094 Then, in S<int>, template <class U> void f(int, U) is not an
5095 instantiation of anything. */
5096 if (new_friend == error_mark_node)
5097 return error_mark_node;
5099 DECL_USE_TEMPLATE (new_friend) = 0;
5100 if (TREE_CODE (decl) == TEMPLATE_DECL)
5102 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
5103 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
5104 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
5107 /* The mangled name for the NEW_FRIEND is incorrect. The function
5108 is not a template instantiation and should not be mangled like
5109 one. Therefore, we forget the mangling here; we'll recompute it
5110 later if we need it. */
5111 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
5113 SET_DECL_RTL (new_friend, NULL_RTX);
5114 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
5117 if (DECL_NAMESPACE_SCOPE_P (new_friend))
5119 tree old_decl;
5120 tree new_friend_template_info;
5121 tree new_friend_result_template_info;
5122 tree ns;
5123 int new_friend_is_defn;
5125 /* We must save some information from NEW_FRIEND before calling
5126 duplicate decls since that function will free NEW_FRIEND if
5127 possible. */
5128 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
5129 new_friend_is_defn =
5130 (DECL_INITIAL (DECL_TEMPLATE_RESULT
5131 (template_for_substitution (new_friend)))
5132 != NULL_TREE);
5133 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
5135 /* This declaration is a `primary' template. */
5136 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
5138 new_friend_result_template_info
5139 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
5141 else
5142 new_friend_result_template_info = NULL_TREE;
5144 /* Inside pushdecl_namespace_level, we will push into the
5145 current namespace. However, the friend function should go
5146 into the namespace of the template. */
5147 ns = decl_namespace_context (new_friend);
5148 push_nested_namespace (ns);
5149 old_decl = pushdecl_namespace_level (new_friend);
5150 pop_nested_namespace (ns);
5152 if (old_decl != new_friend)
5154 /* This new friend declaration matched an existing
5155 declaration. For example, given:
5157 template <class T> void f(T);
5158 template <class U> class C {
5159 template <class T> friend void f(T) {}
5162 the friend declaration actually provides the definition
5163 of `f', once C has been instantiated for some type. So,
5164 old_decl will be the out-of-class template declaration,
5165 while new_friend is the in-class definition.
5167 But, if `f' was called before this point, the
5168 instantiation of `f' will have DECL_TI_ARGS corresponding
5169 to `T' but not to `U', references to which might appear
5170 in the definition of `f'. Previously, the most general
5171 template for an instantiation of `f' was the out-of-class
5172 version; now it is the in-class version. Therefore, we
5173 run through all specialization of `f', adding to their
5174 DECL_TI_ARGS appropriately. In particular, they need a
5175 new set of outer arguments, corresponding to the
5176 arguments for this class instantiation.
5178 The same situation can arise with something like this:
5180 friend void f(int);
5181 template <class T> class C {
5182 friend void f(T) {}
5185 when `C<int>' is instantiated. Now, `f(int)' is defined
5186 in the class. */
5188 if (!new_friend_is_defn)
5189 /* On the other hand, if the in-class declaration does
5190 *not* provide a definition, then we don't want to alter
5191 existing definitions. We can just leave everything
5192 alone. */
5194 else
5196 /* Overwrite whatever template info was there before, if
5197 any, with the new template information pertaining to
5198 the declaration. */
5199 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
5201 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
5202 reregister_specialization (new_friend,
5203 most_general_template (old_decl),
5204 old_decl);
5205 else
5207 tree t;
5208 tree new_friend_args;
5210 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
5211 = new_friend_result_template_info;
5213 new_friend_args = TI_ARGS (new_friend_template_info);
5214 for (t = DECL_TEMPLATE_SPECIALIZATIONS (old_decl);
5215 t != NULL_TREE;
5216 t = TREE_CHAIN (t))
5218 tree spec = TREE_VALUE (t);
5220 DECL_TI_ARGS (spec)
5221 = add_outermost_template_args (new_friend_args,
5222 DECL_TI_ARGS (spec));
5225 /* Now, since specializations are always supposed to
5226 hang off of the most general template, we must move
5227 them. */
5228 t = most_general_template (old_decl);
5229 if (t != old_decl)
5231 DECL_TEMPLATE_SPECIALIZATIONS (t)
5232 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (t),
5233 DECL_TEMPLATE_SPECIALIZATIONS (old_decl));
5234 DECL_TEMPLATE_SPECIALIZATIONS (old_decl) = NULL_TREE;
5239 /* The information from NEW_FRIEND has been merged into OLD_DECL
5240 by duplicate_decls. */
5241 new_friend = old_decl;
5244 else
5246 tree context = DECL_CONTEXT (new_friend);
5247 bool dependent_p;
5249 /* In the code
5250 template <class T> class C {
5251 template <class U> friend void C1<U>::f (); // case 1
5252 friend void C2<T>::f (); // case 2
5254 we only need to make sure CONTEXT is a complete type for
5255 case 2. To distinguish between the two cases, we note that
5256 CONTEXT of case 1 remains dependent type after tsubst while
5257 this isn't true for case 2. */
5258 ++processing_template_decl;
5259 dependent_p = dependent_type_p (context);
5260 --processing_template_decl;
5262 if (!dependent_p
5263 && !complete_type_or_else (context, NULL_TREE))
5264 return error_mark_node;
5266 if (COMPLETE_TYPE_P (context))
5268 /* Check to see that the declaration is really present, and,
5269 possibly obtain an improved declaration. */
5270 tree fn = check_classfn (context,
5271 new_friend, NULL_TREE);
5273 if (fn)
5274 new_friend = fn;
5278 return new_friend;
5281 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
5282 template arguments, as for tsubst.
5284 Returns an appropriate tsubst'd friend type or error_mark_node on
5285 failure. */
5287 static tree
5288 tsubst_friend_class (tree friend_tmpl, tree args)
5290 tree friend_type;
5291 tree tmpl;
5292 tree context;
5294 context = DECL_CONTEXT (friend_tmpl);
5296 if (context)
5298 if (TREE_CODE (context) == NAMESPACE_DECL)
5299 push_nested_namespace (context);
5300 else
5301 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
5304 /* First, we look for a class template. */
5305 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/0);
5307 /* But, if we don't find one, it might be because we're in a
5308 situation like this:
5310 template <class T>
5311 struct S {
5312 template <class U>
5313 friend struct S;
5316 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
5317 for `S<int>', not the TEMPLATE_DECL. */
5318 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
5320 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/1);
5321 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
5324 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
5326 /* The friend template has already been declared. Just
5327 check to see that the declarations match, and install any new
5328 default parameters. We must tsubst the default parameters,
5329 of course. We only need the innermost template parameters
5330 because that is all that redeclare_class_template will look
5331 at. */
5332 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
5333 > TMPL_ARGS_DEPTH (args))
5335 tree parms;
5336 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
5337 args, tf_error | tf_warning);
5338 redeclare_class_template (TREE_TYPE (tmpl), parms);
5341 friend_type = TREE_TYPE (tmpl);
5343 else
5345 /* The friend template has not already been declared. In this
5346 case, the instantiation of the template class will cause the
5347 injection of this template into the global scope. */
5348 tmpl = tsubst (friend_tmpl, args, tf_error | tf_warning, NULL_TREE);
5350 /* The new TMPL is not an instantiation of anything, so we
5351 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
5352 the new type because that is supposed to be the corresponding
5353 template decl, i.e., TMPL. */
5354 DECL_USE_TEMPLATE (tmpl) = 0;
5355 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
5356 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
5357 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
5358 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
5360 /* Inject this template into the global scope. */
5361 friend_type = TREE_TYPE (pushdecl_top_level (tmpl));
5364 if (context)
5366 if (TREE_CODE (context) == NAMESPACE_DECL)
5367 pop_nested_namespace (context);
5368 else
5369 pop_nested_class ();
5372 return friend_type;
5375 /* Returns zero if TYPE cannot be completed later due to circularity.
5376 Otherwise returns one. */
5378 static int
5379 can_complete_type_without_circularity (tree type)
5381 if (type == NULL_TREE || type == error_mark_node)
5382 return 0;
5383 else if (COMPLETE_TYPE_P (type))
5384 return 1;
5385 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
5386 return can_complete_type_without_circularity (TREE_TYPE (type));
5387 else if (CLASS_TYPE_P (type)
5388 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
5389 return 0;
5390 else
5391 return 1;
5394 tree
5395 instantiate_class_template (tree type)
5397 tree template, args, pattern, t, member;
5398 tree typedecl;
5399 tree pbinfo;
5400 tree base_list;
5402 if (type == error_mark_node)
5403 return error_mark_node;
5405 if (TYPE_BEING_DEFINED (type)
5406 || COMPLETE_TYPE_P (type)
5407 || dependent_type_p (type))
5408 return type;
5410 /* Figure out which template is being instantiated. */
5411 template = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
5412 gcc_assert (TREE_CODE (template) == TEMPLATE_DECL);
5414 /* Figure out which arguments are being used to do the
5415 instantiation. */
5416 args = CLASSTYPE_TI_ARGS (type);
5418 /* Determine what specialization of the original template to
5419 instantiate. */
5420 t = most_specialized_class (template, args);
5421 if (t == error_mark_node)
5423 const char *str = "candidates are:";
5424 error ("ambiguous class template instantiation for %q#T", type);
5425 for (t = DECL_TEMPLATE_SPECIALIZATIONS (template); t;
5426 t = TREE_CHAIN (t))
5428 if (get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args))
5430 cp_error_at ("%s %+#T", str, TREE_TYPE (t));
5431 str = " ";
5434 TYPE_BEING_DEFINED (type) = 1;
5435 return error_mark_node;
5438 if (t)
5439 pattern = TREE_TYPE (t);
5440 else
5441 pattern = TREE_TYPE (template);
5443 /* If the template we're instantiating is incomplete, then clearly
5444 there's nothing we can do. */
5445 if (!COMPLETE_TYPE_P (pattern))
5446 return type;
5448 /* If we've recursively instantiated too many templates, stop. */
5449 if (! push_tinst_level (type))
5450 return type;
5452 /* Now we're really doing the instantiation. Mark the type as in
5453 the process of being defined. */
5454 TYPE_BEING_DEFINED (type) = 1;
5456 /* We may be in the middle of deferred access check. Disable
5457 it now. */
5458 push_deferring_access_checks (dk_no_deferred);
5460 push_to_top_level ();
5462 if (t)
5464 /* This TYPE is actually an instantiation of a partial
5465 specialization. We replace the innermost set of ARGS with
5466 the arguments appropriate for substitution. For example,
5467 given:
5469 template <class T> struct S {};
5470 template <class T> struct S<T*> {};
5472 and supposing that we are instantiating S<int*>, ARGS will
5473 present be {int*} but we need {int}. */
5474 tree inner_args
5475 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t),
5476 args);
5478 /* If there were multiple levels in ARGS, replacing the
5479 innermost level would alter CLASSTYPE_TI_ARGS, which we don't
5480 want, so we make a copy first. */
5481 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
5483 args = copy_node (args);
5484 SET_TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args), inner_args);
5486 else
5487 args = inner_args;
5490 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
5492 /* Set the input location to the template definition. This is needed
5493 if tsubsting causes an error. */
5494 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (pattern));
5496 TYPE_HAS_CONSTRUCTOR (type) = TYPE_HAS_CONSTRUCTOR (pattern);
5497 TYPE_HAS_NEW_OPERATOR (type) = TYPE_HAS_NEW_OPERATOR (pattern);
5498 TYPE_HAS_ARRAY_NEW_OPERATOR (type) = TYPE_HAS_ARRAY_NEW_OPERATOR (pattern);
5499 TYPE_GETS_DELETE (type) = TYPE_GETS_DELETE (pattern);
5500 TYPE_HAS_ASSIGN_REF (type) = TYPE_HAS_ASSIGN_REF (pattern);
5501 TYPE_HAS_CONST_ASSIGN_REF (type) = TYPE_HAS_CONST_ASSIGN_REF (pattern);
5502 TYPE_HAS_INIT_REF (type) = TYPE_HAS_INIT_REF (pattern);
5503 TYPE_HAS_CONST_INIT_REF (type) = TYPE_HAS_CONST_INIT_REF (pattern);
5504 TYPE_HAS_DEFAULT_CONSTRUCTOR (type) = TYPE_HAS_DEFAULT_CONSTRUCTOR (pattern);
5505 TYPE_HAS_CONVERSION (type) = TYPE_HAS_CONVERSION (pattern);
5506 TYPE_PACKED (type) = TYPE_PACKED (pattern);
5507 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
5508 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
5509 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
5510 if (ANON_AGGR_TYPE_P (pattern))
5511 SET_ANON_AGGR_TYPE_P (type);
5513 pbinfo = TYPE_BINFO (pattern);
5515 /* We should never instantiate a nested class before its enclosing
5516 class; we need to look up the nested class by name before we can
5517 instantiate it, and that lookup should instantiate the enclosing
5518 class. */
5519 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
5520 || COMPLETE_TYPE_P (TYPE_CONTEXT (type))
5521 || TYPE_BEING_DEFINED (TYPE_CONTEXT (type)));
5523 base_list = NULL_TREE;
5524 if (BINFO_N_BASE_BINFOS (pbinfo))
5526 tree pbase_binfo;
5527 tree context = TYPE_CONTEXT (type);
5528 tree pushed_scope;
5529 int i;
5531 /* We must enter the scope containing the type, as that is where
5532 the accessibility of types named in dependent bases are
5533 looked up from. */
5534 pushed_scope = push_scope (context ? context : global_namespace);
5536 /* Substitute into each of the bases to determine the actual
5537 basetypes. */
5538 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
5540 tree base;
5541 tree access = BINFO_BASE_ACCESS (pbinfo, i);
5543 /* Substitute to figure out the base class. */
5544 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error, NULL_TREE);
5545 if (base == error_mark_node)
5546 continue;
5548 base_list = tree_cons (access, base, base_list);
5549 if (BINFO_VIRTUAL_P (pbase_binfo))
5550 TREE_TYPE (base_list) = integer_type_node;
5553 /* The list is now in reverse order; correct that. */
5554 base_list = nreverse (base_list);
5556 if (pushed_scope)
5557 pop_scope (pushed_scope);
5559 /* Now call xref_basetypes to set up all the base-class
5560 information. */
5561 xref_basetypes (type, base_list);
5564 /* Now that our base classes are set up, enter the scope of the
5565 class, so that name lookups into base classes, etc. will work
5566 correctly. This is precisely analogous to what we do in
5567 begin_class_definition when defining an ordinary non-template
5568 class. */
5569 pushclass (type);
5571 /* Now members are processed in the order of declaration. */
5572 for (member = CLASSTYPE_DECL_LIST (pattern);
5573 member; member = TREE_CHAIN (member))
5575 tree t = TREE_VALUE (member);
5577 if (TREE_PURPOSE (member))
5579 if (TYPE_P (t))
5581 /* Build new CLASSTYPE_NESTED_UTDS. */
5583 tree tag = t;
5584 tree name = TYPE_IDENTIFIER (tag);
5585 tree newtag;
5586 bool class_template_p;
5588 class_template_p = (TREE_CODE (tag) != ENUMERAL_TYPE
5589 && TYPE_LANG_SPECIFIC (tag)
5590 && CLASSTYPE_IS_TEMPLATE (tag));
5591 /* If the member is a class template, then -- even after
5592 substitution -- there may be dependent types in the
5593 template argument list for the class. We increment
5594 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
5595 that function will assume that no types are dependent
5596 when outside of a template. */
5597 if (class_template_p)
5598 ++processing_template_decl;
5599 newtag = tsubst (tag, args, tf_error, NULL_TREE);
5600 if (class_template_p)
5601 --processing_template_decl;
5602 if (newtag == error_mark_node)
5603 continue;
5605 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
5607 if (class_template_p)
5608 /* Unfortunately, lookup_template_class sets
5609 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
5610 instantiation (i.e., for the type of a member
5611 template class nested within a template class.)
5612 This behavior is required for
5613 maybe_process_partial_specialization to work
5614 correctly, but is not accurate in this case;
5615 the TAG is not an instantiation of anything.
5616 (The corresponding TEMPLATE_DECL is an
5617 instantiation, but the TYPE is not.) */
5618 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
5620 /* Now, we call pushtag to put this NEWTAG into the scope of
5621 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
5622 pushtag calling push_template_decl. We don't have to do
5623 this for enums because it will already have been done in
5624 tsubst_enum. */
5625 if (name)
5626 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
5627 pushtag (name, newtag, /*globalize=*/0);
5630 else if (TREE_CODE (t) == FUNCTION_DECL
5631 || DECL_FUNCTION_TEMPLATE_P (t))
5633 /* Build new TYPE_METHODS. */
5634 tree r;
5636 if (TREE_CODE (t) == TEMPLATE_DECL)
5637 ++processing_template_decl;
5638 r = tsubst (t, args, tf_error, NULL_TREE);
5639 if (TREE_CODE (t) == TEMPLATE_DECL)
5640 --processing_template_decl;
5641 set_current_access_from_decl (r);
5642 grok_special_member_properties (r);
5643 finish_member_declaration (r);
5645 else
5647 /* Build new TYPE_FIELDS. */
5649 if (TREE_CODE (t) != CONST_DECL)
5651 tree r;
5653 /* The the file and line for this declaration, to
5654 assist in error message reporting. Since we
5655 called push_tinst_level above, we don't need to
5656 restore these. */
5657 input_location = DECL_SOURCE_LOCATION (t);
5659 if (TREE_CODE (t) == TEMPLATE_DECL)
5660 ++processing_template_decl;
5661 r = tsubst (t, args, tf_error | tf_warning, NULL_TREE);
5662 if (TREE_CODE (t) == TEMPLATE_DECL)
5663 --processing_template_decl;
5664 if (TREE_CODE (r) == VAR_DECL)
5666 tree init;
5668 if (DECL_INITIALIZED_IN_CLASS_P (r))
5669 init = tsubst_expr (DECL_INITIAL (t), args,
5670 tf_error | tf_warning, NULL_TREE);
5671 else
5672 init = NULL_TREE;
5674 finish_static_data_member_decl
5675 (r, init, /*asmspec_tree=*/NULL_TREE, /*flags=*/0);
5677 if (DECL_INITIALIZED_IN_CLASS_P (r))
5678 check_static_variable_definition (r, TREE_TYPE (r));
5680 else if (TREE_CODE (r) == FIELD_DECL)
5682 /* Determine whether R has a valid type and can be
5683 completed later. If R is invalid, then it is
5684 replaced by error_mark_node so that it will not be
5685 added to TYPE_FIELDS. */
5686 tree rtype = TREE_TYPE (r);
5687 if (can_complete_type_without_circularity (rtype))
5688 complete_type (rtype);
5690 if (!COMPLETE_TYPE_P (rtype))
5692 cxx_incomplete_type_error (r, rtype);
5693 r = error_mark_node;
5697 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
5698 such a thing will already have been added to the field
5699 list by tsubst_enum in finish_member_declaration in the
5700 CLASSTYPE_NESTED_UTDS case above. */
5701 if (!(TREE_CODE (r) == TYPE_DECL
5702 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
5703 && DECL_ARTIFICIAL (r)))
5705 set_current_access_from_decl (r);
5706 finish_member_declaration (r);
5711 else
5713 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t))
5715 /* Build new CLASSTYPE_FRIEND_CLASSES. */
5717 tree friend_type = t;
5718 bool adjust_processing_template_decl = false;
5720 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5722 friend_type = tsubst_friend_class (friend_type, args);
5723 adjust_processing_template_decl = true;
5725 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
5727 friend_type = tsubst (friend_type, args,
5728 tf_error | tf_warning, NULL_TREE);
5729 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5730 friend_type = TREE_TYPE (friend_type);
5731 adjust_processing_template_decl = true;
5733 else if (TREE_CODE (friend_type) == TYPENAME_TYPE)
5735 friend_type = tsubst (friend_type, args,
5736 tf_error | tf_warning, NULL_TREE);
5737 /* Bump processing_template_decl for correct
5738 dependent_type_p calculation. */
5739 ++processing_template_decl;
5740 if (dependent_type_p (friend_type))
5741 adjust_processing_template_decl = true;
5742 --processing_template_decl;
5744 else if (uses_template_parms (friend_type))
5745 friend_type = tsubst (friend_type, args,
5746 tf_error | tf_warning, NULL_TREE);
5747 else if (CLASSTYPE_USE_TEMPLATE (friend_type))
5748 friend_type = friend_type;
5749 else
5751 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
5753 /* The call to xref_tag_from_type does injection for friend
5754 classes. */
5755 push_nested_namespace (ns);
5756 friend_type =
5757 xref_tag_from_type (friend_type, NULL_TREE,
5758 /*tag_scope=*/ts_global);
5759 pop_nested_namespace (ns);
5762 if (adjust_processing_template_decl)
5763 /* Trick make_friend_class into realizing that the friend
5764 we're adding is a template, not an ordinary class. It's
5765 important that we use make_friend_class since it will
5766 perform some error-checking and output cross-reference
5767 information. */
5768 ++processing_template_decl;
5770 if (friend_type != error_mark_node)
5771 make_friend_class (type, friend_type, /*complain=*/false);
5773 if (adjust_processing_template_decl)
5774 --processing_template_decl;
5776 else
5778 /* Build new DECL_FRIENDLIST. */
5779 tree r;
5781 /* The the file and line for this declaration, to
5782 assist in error message reporting. Since we
5783 called push_tinst_level above, we don't need to
5784 restore these. */
5785 input_location = DECL_SOURCE_LOCATION (t);
5787 if (TREE_CODE (t) == TEMPLATE_DECL)
5789 ++processing_template_decl;
5790 push_deferring_access_checks (dk_no_check);
5793 r = tsubst_friend_function (t, args);
5794 add_friend (type, r, /*complain=*/false);
5795 if (TREE_CODE (t) == TEMPLATE_DECL)
5797 pop_deferring_access_checks ();
5798 --processing_template_decl;
5804 /* Set the file and line number information to whatever is given for
5805 the class itself. This puts error messages involving generated
5806 implicit functions at a predictable point, and the same point
5807 that would be used for non-template classes. */
5808 typedecl = TYPE_MAIN_DECL (type);
5809 input_location = DECL_SOURCE_LOCATION (typedecl);
5811 unreverse_member_declarations (type);
5812 finish_struct_1 (type);
5813 TYPE_BEING_DEFINED (type) = 0;
5815 /* Now that the class is complete, instantiate default arguments for
5816 any member functions. We don't do this earlier because the
5817 default arguments may reference members of the class. */
5818 if (!PRIMARY_TEMPLATE_P (template))
5819 for (t = TYPE_METHODS (type); t; t = TREE_CHAIN (t))
5820 if (TREE_CODE (t) == FUNCTION_DECL
5821 /* Implicitly generated member functions will not have template
5822 information; they are not instantiations, but instead are
5823 created "fresh" for each instantiation. */
5824 && DECL_TEMPLATE_INFO (t))
5825 tsubst_default_arguments (t);
5827 popclass ();
5828 pop_from_top_level ();
5829 pop_deferring_access_checks ();
5830 pop_tinst_level ();
5832 /* The vtable for a template class can be emitted in any translation
5833 unit in which the class is instantiated. When there is no key
5834 method, however, finish_struct_1 will already have added TYPE to
5835 the keyed_classes list. */
5836 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
5837 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
5839 return type;
5842 static tree
5843 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
5845 tree r;
5847 if (!t)
5848 r = t;
5849 else if (TYPE_P (t))
5850 r = tsubst (t, args, complain, in_decl);
5851 else
5853 r = tsubst_expr (t, args, complain, in_decl);
5855 if (!uses_template_parms (r))
5857 /* Sometimes, one of the args was an expression involving a
5858 template constant parameter, like N - 1. Now that we've
5859 tsubst'd, we might have something like 2 - 1. This will
5860 confuse lookup_template_class, so we do constant folding
5861 here. We have to unset processing_template_decl, to fool
5862 tsubst_copy_and_build() into building an actual tree. */
5864 /* If the TREE_TYPE of ARG is not NULL_TREE, ARG is already
5865 as simple as it's going to get, and trying to reprocess
5866 the trees will break. Once tsubst_expr et al DTRT for
5867 non-dependent exprs, this code can go away, as the type
5868 will always be set. */
5869 if (!TREE_TYPE (r))
5871 int saved_processing_template_decl = processing_template_decl;
5872 processing_template_decl = 0;
5873 r = tsubst_copy_and_build (r, /*args=*/NULL_TREE,
5874 tf_error, /*in_decl=*/NULL_TREE,
5875 /*function_p=*/false);
5876 processing_template_decl = saved_processing_template_decl;
5878 r = fold (r);
5881 return r;
5884 /* Substitute ARGS into the vector or list of template arguments T. */
5886 static tree
5887 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
5889 int len = TREE_VEC_LENGTH (t);
5890 int need_new = 0, i;
5891 tree *elts = alloca (len * sizeof (tree));
5893 for (i = 0; i < len; i++)
5895 tree orig_arg = TREE_VEC_ELT (t, i);
5896 tree new_arg;
5898 if (TREE_CODE (orig_arg) == TREE_VEC)
5899 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
5900 else
5901 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
5903 if (new_arg == error_mark_node)
5904 return error_mark_node;
5906 elts[i] = new_arg;
5907 if (new_arg != orig_arg)
5908 need_new = 1;
5911 if (!need_new)
5912 return t;
5914 t = make_tree_vec (len);
5915 for (i = 0; i < len; i++)
5916 TREE_VEC_ELT (t, i) = elts[i];
5918 return t;
5921 /* Return the result of substituting ARGS into the template parameters
5922 given by PARMS. If there are m levels of ARGS and m + n levels of
5923 PARMS, then the result will contain n levels of PARMS. For
5924 example, if PARMS is `template <class T> template <class U>
5925 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
5926 result will be `template <int*, double, class V>'. */
5928 static tree
5929 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
5931 tree r = NULL_TREE;
5932 tree* new_parms;
5934 for (new_parms = &r;
5935 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
5936 new_parms = &(TREE_CHAIN (*new_parms)),
5937 parms = TREE_CHAIN (parms))
5939 tree new_vec =
5940 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
5941 int i;
5943 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
5945 tree tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
5946 tree default_value = TREE_PURPOSE (tuple);
5947 tree parm_decl = TREE_VALUE (tuple);
5949 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
5950 default_value = tsubst_template_arg (default_value, args,
5951 complain, NULL_TREE);
5953 tuple = build_tree_list (default_value, parm_decl);
5954 TREE_VEC_ELT (new_vec, i) = tuple;
5957 *new_parms =
5958 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
5959 - TMPL_ARGS_DEPTH (args)),
5960 new_vec, NULL_TREE);
5963 return r;
5966 /* Substitute the ARGS into the indicated aggregate (or enumeration)
5967 type T. If T is not an aggregate or enumeration type, it is
5968 handled as if by tsubst. IN_DECL is as for tsubst. If
5969 ENTERING_SCOPE is nonzero, T is the context for a template which
5970 we are presently tsubst'ing. Return the substituted value. */
5972 static tree
5973 tsubst_aggr_type (tree t,
5974 tree args,
5975 tsubst_flags_t complain,
5976 tree in_decl,
5977 int entering_scope)
5979 if (t == NULL_TREE)
5980 return NULL_TREE;
5982 switch (TREE_CODE (t))
5984 case RECORD_TYPE:
5985 if (TYPE_PTRMEMFUNC_P (t))
5986 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
5988 /* Else fall through. */
5989 case ENUMERAL_TYPE:
5990 case UNION_TYPE:
5991 if (TYPE_TEMPLATE_INFO (t))
5993 tree argvec;
5994 tree context;
5995 tree r;
5997 /* First, determine the context for the type we are looking
5998 up. */
5999 context = TYPE_CONTEXT (t);
6000 if (context)
6001 context = tsubst_aggr_type (context, args, complain,
6002 in_decl, /*entering_scope=*/1);
6004 /* Then, figure out what arguments are appropriate for the
6005 type we are trying to find. For example, given:
6007 template <class T> struct S;
6008 template <class T, class U> void f(T, U) { S<U> su; }
6010 and supposing that we are instantiating f<int, double>,
6011 then our ARGS will be {int, double}, but, when looking up
6012 S we only want {double}. */
6013 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
6014 complain, in_decl);
6015 if (argvec == error_mark_node)
6016 return error_mark_node;
6018 r = lookup_template_class (t, argvec, in_decl, context,
6019 entering_scope, complain);
6021 return cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
6023 else
6024 /* This is not a template type, so there's nothing to do. */
6025 return t;
6027 default:
6028 return tsubst (t, args, complain, in_decl);
6032 /* Substitute into the default argument ARG (a default argument for
6033 FN), which has the indicated TYPE. */
6035 tree
6036 tsubst_default_argument (tree fn, tree type, tree arg)
6038 tree saved_class_ptr = NULL_TREE;
6039 tree saved_class_ref = NULL_TREE;
6041 /* This default argument came from a template. Instantiate the
6042 default argument here, not in tsubst. In the case of
6043 something like:
6045 template <class T>
6046 struct S {
6047 static T t();
6048 void f(T = t());
6051 we must be careful to do name lookup in the scope of S<T>,
6052 rather than in the current class. */
6053 push_access_scope (fn);
6054 /* The default argument expression should not be considered to be
6055 within the scope of FN. Since push_access_scope sets
6056 current_function_decl, we must explicitly clear it here. */
6057 current_function_decl = NULL_TREE;
6058 /* The "this" pointer is not valid in a default argument. */
6059 if (cfun)
6061 saved_class_ptr = current_class_ptr;
6062 cp_function_chain->x_current_class_ptr = NULL_TREE;
6063 saved_class_ref = current_class_ref;
6064 cp_function_chain->x_current_class_ref = NULL_TREE;
6067 push_deferring_access_checks(dk_no_deferred);
6068 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
6069 tf_error | tf_warning, NULL_TREE);
6070 pop_deferring_access_checks();
6072 /* Restore the "this" pointer. */
6073 if (cfun)
6075 cp_function_chain->x_current_class_ptr = saved_class_ptr;
6076 cp_function_chain->x_current_class_ref = saved_class_ref;
6079 pop_access_scope (fn);
6081 /* Make sure the default argument is reasonable. */
6082 arg = check_default_argument (type, arg);
6084 return arg;
6087 /* Substitute into all the default arguments for FN. */
6089 static void
6090 tsubst_default_arguments (tree fn)
6092 tree arg;
6093 tree tmpl_args;
6095 tmpl_args = DECL_TI_ARGS (fn);
6097 /* If this function is not yet instantiated, we certainly don't need
6098 its default arguments. */
6099 if (uses_template_parms (tmpl_args))
6100 return;
6102 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
6103 arg;
6104 arg = TREE_CHAIN (arg))
6105 if (TREE_PURPOSE (arg))
6106 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
6107 TREE_VALUE (arg),
6108 TREE_PURPOSE (arg));
6111 /* Substitute the ARGS into the T, which is a _DECL. Return the
6112 result of the substitution. Issue error and warning messages under
6113 control of COMPLAIN. */
6115 static tree
6116 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
6118 location_t saved_loc;
6119 tree r = NULL_TREE;
6120 tree in_decl = t;
6122 /* Set the filename and linenumber to improve error-reporting. */
6123 saved_loc = input_location;
6124 input_location = DECL_SOURCE_LOCATION (t);
6126 switch (TREE_CODE (t))
6128 case TEMPLATE_DECL:
6130 /* We can get here when processing a member function template,
6131 member class template, and template template parameter of
6132 a template class. */
6133 tree decl = DECL_TEMPLATE_RESULT (t);
6134 tree spec;
6135 tree tmpl_args;
6136 tree full_args;
6138 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
6140 /* Template template parameter is treated here. */
6141 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6142 if (new_type == error_mark_node)
6143 return error_mark_node;
6145 r = copy_decl (t);
6146 TREE_CHAIN (r) = NULL_TREE;
6147 TREE_TYPE (r) = new_type;
6148 DECL_TEMPLATE_RESULT (r)
6149 = build_decl (TYPE_DECL, DECL_NAME (decl), new_type);
6150 DECL_TEMPLATE_PARMS (r)
6151 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
6152 complain);
6153 TYPE_NAME (new_type) = r;
6154 break;
6157 /* We might already have an instance of this template.
6158 The ARGS are for the surrounding class type, so the
6159 full args contain the tsubst'd args for the context,
6160 plus the innermost args from the template decl. */
6161 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
6162 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
6163 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
6164 full_args = tsubst_template_args (tmpl_args, args,
6165 complain, in_decl);
6167 /* tsubst_template_args doesn't copy the vector if
6168 nothing changed. But, *something* should have
6169 changed. */
6170 gcc_assert (full_args != tmpl_args);
6172 spec = retrieve_specialization (t, full_args,
6173 /*class_specializations_p=*/true);
6174 if (spec != NULL_TREE)
6176 r = spec;
6177 break;
6180 /* Make a new template decl. It will be similar to the
6181 original, but will record the current template arguments.
6182 We also create a new function declaration, which is just
6183 like the old one, but points to this new template, rather
6184 than the old one. */
6185 r = copy_decl (t);
6186 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
6187 TREE_CHAIN (r) = NULL_TREE;
6189 DECL_CONTEXT (r)
6190 = tsubst_aggr_type (DECL_CONTEXT (t), args,
6191 complain, in_decl,
6192 /*entering_scope=*/1);
6193 DECL_TEMPLATE_INFO (r) = build_tree_list (t, args);
6195 if (TREE_CODE (decl) == TYPE_DECL)
6197 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6198 if (new_type == error_mark_node)
6199 return error_mark_node;
6201 TREE_TYPE (r) = new_type;
6202 CLASSTYPE_TI_TEMPLATE (new_type) = r;
6203 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
6204 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
6206 else
6208 tree new_decl = tsubst (decl, args, complain, in_decl);
6209 if (new_decl == error_mark_node)
6210 return error_mark_node;
6212 DECL_TEMPLATE_RESULT (r) = new_decl;
6213 DECL_TI_TEMPLATE (new_decl) = r;
6214 TREE_TYPE (r) = TREE_TYPE (new_decl);
6215 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
6218 SET_DECL_IMPLICIT_INSTANTIATION (r);
6219 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
6220 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
6222 /* The template parameters for this new template are all the
6223 template parameters for the old template, except the
6224 outermost level of parameters. */
6225 DECL_TEMPLATE_PARMS (r)
6226 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
6227 complain);
6229 if (PRIMARY_TEMPLATE_P (t))
6230 DECL_PRIMARY_TEMPLATE (r) = r;
6232 if (TREE_CODE (decl) != TYPE_DECL)
6233 /* Record this non-type partial instantiation. */
6234 register_specialization (r, t,
6235 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)));
6237 break;
6239 case FUNCTION_DECL:
6241 tree ctx;
6242 tree argvec = NULL_TREE;
6243 tree *friends;
6244 tree gen_tmpl;
6245 tree type;
6246 int member;
6247 int args_depth;
6248 int parms_depth;
6250 /* Nobody should be tsubst'ing into non-template functions. */
6251 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
6253 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
6255 tree spec;
6256 bool dependent_p;
6258 /* If T is not dependent, just return it. We have to
6259 increment PROCESSING_TEMPLATE_DECL because
6260 value_dependent_expression_p assumes that nothing is
6261 dependent when PROCESSING_TEMPLATE_DECL is zero. */
6262 ++processing_template_decl;
6263 dependent_p = value_dependent_expression_p (t);
6264 --processing_template_decl;
6265 if (!dependent_p)
6266 return t;
6268 /* Calculate the most general template of which R is a
6269 specialization, and the complete set of arguments used to
6270 specialize R. */
6271 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
6272 argvec = tsubst_template_args (DECL_TI_ARGS
6273 (DECL_TEMPLATE_RESULT (gen_tmpl)),
6274 args, complain, in_decl);
6276 /* Check to see if we already have this specialization. */
6277 spec = retrieve_specialization (gen_tmpl, argvec,
6278 /*class_specializations_p=*/false);
6280 if (spec)
6282 r = spec;
6283 break;
6286 /* We can see more levels of arguments than parameters if
6287 there was a specialization of a member template, like
6288 this:
6290 template <class T> struct S { template <class U> void f(); }
6291 template <> template <class U> void S<int>::f(U);
6293 Here, we'll be substituting into the specialization,
6294 because that's where we can find the code we actually
6295 want to generate, but we'll have enough arguments for
6296 the most general template.
6298 We also deal with the peculiar case:
6300 template <class T> struct S {
6301 template <class U> friend void f();
6303 template <class U> void f() {}
6304 template S<int>;
6305 template void f<double>();
6307 Here, the ARGS for the instantiation of will be {int,
6308 double}. But, we only need as many ARGS as there are
6309 levels of template parameters in CODE_PATTERN. We are
6310 careful not to get fooled into reducing the ARGS in
6311 situations like:
6313 template <class T> struct S { template <class U> void f(U); }
6314 template <class T> template <> void S<T>::f(int) {}
6316 which we can spot because the pattern will be a
6317 specialization in this case. */
6318 args_depth = TMPL_ARGS_DEPTH (args);
6319 parms_depth =
6320 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
6321 if (args_depth > parms_depth
6322 && !DECL_TEMPLATE_SPECIALIZATION (t))
6323 args = get_innermost_template_args (args, parms_depth);
6325 else
6327 /* This special case arises when we have something like this:
6329 template <class T> struct S {
6330 friend void f<int>(int, double);
6333 Here, the DECL_TI_TEMPLATE for the friend declaration
6334 will be an IDENTIFIER_NODE. We are being called from
6335 tsubst_friend_function, and we want only to create a
6336 new decl (R) with appropriate types so that we can call
6337 determine_specialization. */
6338 gen_tmpl = NULL_TREE;
6341 if (DECL_CLASS_SCOPE_P (t))
6343 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
6344 member = 2;
6345 else
6346 member = 1;
6347 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
6348 complain, t, /*entering_scope=*/1);
6350 else
6352 member = 0;
6353 ctx = DECL_CONTEXT (t);
6355 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6356 if (type == error_mark_node)
6357 return error_mark_node;
6359 /* We do NOT check for matching decls pushed separately at this
6360 point, as they may not represent instantiations of this
6361 template, and in any case are considered separate under the
6362 discrete model. */
6363 r = copy_decl (t);
6364 DECL_USE_TEMPLATE (r) = 0;
6365 TREE_TYPE (r) = type;
6366 /* Clear out the mangled name and RTL for the instantiation. */
6367 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
6368 SET_DECL_RTL (r, NULL_RTX);
6369 DECL_INITIAL (r) = NULL_TREE;
6370 DECL_CONTEXT (r) = ctx;
6372 if (member && DECL_CONV_FN_P (r))
6373 /* Type-conversion operator. Reconstruct the name, in
6374 case it's the name of one of the template's parameters. */
6375 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
6377 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
6378 complain, t);
6379 DECL_RESULT (r) = NULL_TREE;
6381 TREE_STATIC (r) = 0;
6382 TREE_PUBLIC (r) = TREE_PUBLIC (t);
6383 DECL_EXTERNAL (r) = 1;
6384 /* If this is an instantiation of a function with internal
6385 linkage, we already know what object file linkage will be
6386 assigned to the instantiation. */
6387 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
6388 DECL_DEFER_OUTPUT (r) = 0;
6389 TREE_CHAIN (r) = NULL_TREE;
6390 DECL_PENDING_INLINE_INFO (r) = 0;
6391 DECL_PENDING_INLINE_P (r) = 0;
6392 DECL_SAVED_TREE (r) = NULL_TREE;
6393 TREE_USED (r) = 0;
6394 if (DECL_CLONED_FUNCTION (r))
6396 DECL_CLONED_FUNCTION (r) = tsubst (DECL_CLONED_FUNCTION (t),
6397 args, complain, t);
6398 TREE_CHAIN (r) = TREE_CHAIN (DECL_CLONED_FUNCTION (r));
6399 TREE_CHAIN (DECL_CLONED_FUNCTION (r)) = r;
6402 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
6403 this in the special friend case mentioned above where
6404 GEN_TMPL is NULL. */
6405 if (gen_tmpl)
6407 DECL_TEMPLATE_INFO (r)
6408 = tree_cons (gen_tmpl, argvec, NULL_TREE);
6409 SET_DECL_IMPLICIT_INSTANTIATION (r);
6410 register_specialization (r, gen_tmpl, argvec);
6412 /* We're not supposed to instantiate default arguments
6413 until they are called, for a template. But, for a
6414 declaration like:
6416 template <class T> void f ()
6417 { extern void g(int i = T()); }
6419 we should do the substitution when the template is
6420 instantiated. We handle the member function case in
6421 instantiate_class_template since the default arguments
6422 might refer to other members of the class. */
6423 if (!member
6424 && !PRIMARY_TEMPLATE_P (gen_tmpl)
6425 && !uses_template_parms (argvec))
6426 tsubst_default_arguments (r);
6429 /* Copy the list of befriending classes. */
6430 for (friends = &DECL_BEFRIENDING_CLASSES (r);
6431 *friends;
6432 friends = &TREE_CHAIN (*friends))
6434 *friends = copy_node (*friends);
6435 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
6436 args, complain,
6437 in_decl);
6440 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
6442 maybe_retrofit_in_chrg (r);
6443 if (DECL_CONSTRUCTOR_P (r))
6444 grok_ctor_properties (ctx, r);
6445 /* If this is an instantiation of a member template, clone it.
6446 If it isn't, that'll be handled by
6447 clone_constructors_and_destructors. */
6448 if (PRIMARY_TEMPLATE_P (gen_tmpl))
6449 clone_function_decl (r, /*update_method_vec_p=*/0);
6451 else if (IDENTIFIER_OPNAME_P (DECL_NAME (r)))
6452 grok_op_properties (r, DECL_FRIEND_P (r),
6453 (complain & tf_error) != 0);
6455 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
6456 SET_DECL_FRIEND_CONTEXT (r,
6457 tsubst (DECL_FRIEND_CONTEXT (t),
6458 args, complain, in_decl));
6460 break;
6462 case PARM_DECL:
6464 tree type;
6466 r = copy_node (t);
6467 if (DECL_TEMPLATE_PARM_P (t))
6468 SET_DECL_TEMPLATE_PARM_P (r);
6470 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6471 TREE_TYPE (r) = type;
6472 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
6474 if (DECL_INITIAL (r))
6476 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
6477 DECL_INITIAL (r) = TREE_TYPE (r);
6478 else
6479 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
6480 complain, in_decl);
6483 DECL_CONTEXT (r) = NULL_TREE;
6485 if (!DECL_TEMPLATE_PARM_P (r))
6486 DECL_ARG_TYPE (r) = type_passed_as (type);
6487 if (TREE_CHAIN (t))
6488 TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args,
6489 complain, TREE_CHAIN (t));
6491 break;
6493 case FIELD_DECL:
6495 tree type;
6497 r = copy_decl (t);
6498 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6499 if (type == error_mark_node)
6500 return error_mark_node;
6501 TREE_TYPE (r) = type;
6502 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
6504 /* We don't have to set DECL_CONTEXT here; it is set by
6505 finish_member_declaration. */
6506 DECL_INITIAL (r) = tsubst_expr (DECL_INITIAL (t), args,
6507 complain, in_decl);
6508 TREE_CHAIN (r) = NULL_TREE;
6509 if (VOID_TYPE_P (type))
6510 cp_error_at ("instantiation of %qD as type %qT", r, type);
6512 break;
6514 case USING_DECL:
6516 r = copy_node (t);
6517 /* It is not a dependent using decl any more. */
6518 TREE_TYPE (r) = void_type_node;
6519 DECL_INITIAL (r)
6520 = tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
6521 DECL_NAME (r)
6522 = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
6523 TREE_CHAIN (r) = NULL_TREE;
6525 break;
6527 case TYPE_DECL:
6528 case VAR_DECL:
6530 tree argvec = NULL_TREE;
6531 tree gen_tmpl = NULL_TREE;
6532 tree spec;
6533 tree tmpl = NULL_TREE;
6534 tree ctx;
6535 tree type = NULL_TREE;
6536 int local_p;
6538 if (TREE_CODE (t) == TYPE_DECL)
6540 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6541 if (TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM
6542 || t == TYPE_MAIN_DECL (TREE_TYPE (t)))
6544 /* If this is the canonical decl, we don't have to
6545 mess with instantiations, and often we can't (for
6546 typename, template type parms and such). Note that
6547 TYPE_NAME is not correct for the above test if
6548 we've copied the type for a typedef. */
6549 r = TYPE_NAME (type);
6550 break;
6554 /* Assume this is a non-local variable. */
6555 local_p = 0;
6557 if (TYPE_P (CP_DECL_CONTEXT (t)))
6558 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
6559 complain,
6560 in_decl, /*entering_scope=*/1);
6561 else if (DECL_NAMESPACE_SCOPE_P (t))
6562 ctx = DECL_CONTEXT (t);
6563 else
6565 /* Subsequent calls to pushdecl will fill this in. */
6566 ctx = NULL_TREE;
6567 local_p = 1;
6570 /* Check to see if we already have this specialization. */
6571 if (!local_p)
6573 tmpl = DECL_TI_TEMPLATE (t);
6574 gen_tmpl = most_general_template (tmpl);
6575 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
6576 spec = retrieve_specialization (gen_tmpl, argvec,
6577 /*class_specializations_p=*/false);
6579 else
6580 spec = retrieve_local_specialization (t);
6582 if (spec)
6584 r = spec;
6585 break;
6588 r = copy_decl (t);
6589 if (TREE_CODE (r) == VAR_DECL)
6591 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6592 if (type == error_mark_node)
6593 return error_mark_node;
6594 type = complete_type (type);
6595 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
6596 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (t);
6597 type = check_var_type (DECL_NAME (r), type);
6599 else if (DECL_SELF_REFERENCE_P (t))
6600 SET_DECL_SELF_REFERENCE_P (r);
6601 TREE_TYPE (r) = type;
6602 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
6603 DECL_CONTEXT (r) = ctx;
6604 /* Clear out the mangled name and RTL for the instantiation. */
6605 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
6606 SET_DECL_RTL (r, NULL_RTX);
6608 /* Don't try to expand the initializer until someone tries to use
6609 this variable; otherwise we run into circular dependencies. */
6610 DECL_INITIAL (r) = NULL_TREE;
6611 SET_DECL_RTL (r, NULL_RTX);
6612 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
6614 /* Even if the original location is out of scope, the newly
6615 substituted one is not. */
6616 if (TREE_CODE (r) == VAR_DECL)
6618 DECL_DEAD_FOR_LOCAL (r) = 0;
6619 DECL_INITIALIZED_P (r) = 0;
6622 if (!local_p)
6624 /* A static data member declaration is always marked
6625 external when it is declared in-class, even if an
6626 initializer is present. We mimic the non-template
6627 processing here. */
6628 DECL_EXTERNAL (r) = 1;
6630 register_specialization (r, gen_tmpl, argvec);
6631 DECL_TEMPLATE_INFO (r) = tree_cons (tmpl, argvec, NULL_TREE);
6632 SET_DECL_IMPLICIT_INSTANTIATION (r);
6634 else
6635 register_local_specialization (r, t);
6637 TREE_CHAIN (r) = NULL_TREE;
6638 layout_decl (r, 0);
6640 break;
6642 default:
6643 gcc_unreachable ();
6646 /* Restore the file and line information. */
6647 input_location = saved_loc;
6649 return r;
6652 /* Substitute into the ARG_TYPES of a function type. */
6654 static tree
6655 tsubst_arg_types (tree arg_types,
6656 tree args,
6657 tsubst_flags_t complain,
6658 tree in_decl)
6660 tree remaining_arg_types;
6661 tree type;
6663 if (!arg_types || arg_types == void_list_node)
6664 return arg_types;
6666 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
6667 args, complain, in_decl);
6668 if (remaining_arg_types == error_mark_node)
6669 return error_mark_node;
6671 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
6672 if (type == error_mark_node)
6673 return error_mark_node;
6674 if (VOID_TYPE_P (type))
6676 if (complain & tf_error)
6678 error ("invalid parameter type %qT", type);
6679 if (in_decl)
6680 cp_error_at ("in declaration %qD", in_decl);
6682 return error_mark_node;
6685 /* Do array-to-pointer, function-to-pointer conversion, and ignore
6686 top-level qualifiers as required. */
6687 type = TYPE_MAIN_VARIANT (type_decays_to (type));
6689 /* Note that we do not substitute into default arguments here. The
6690 standard mandates that they be instantiated only when needed,
6691 which is done in build_over_call. */
6692 return hash_tree_cons (TREE_PURPOSE (arg_types), type,
6693 remaining_arg_types);
6697 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
6698 *not* handle the exception-specification for FNTYPE, because the
6699 initial substitution of explicitly provided template parameters
6700 during argument deduction forbids substitution into the
6701 exception-specification:
6703 [temp.deduct]
6705 All references in the function type of the function template to the
6706 corresponding template parameters are replaced by the specified tem-
6707 plate argument values. If a substitution in a template parameter or
6708 in the function type of the function template results in an invalid
6709 type, type deduction fails. [Note: The equivalent substitution in
6710 exception specifications is done only when the function is instanti-
6711 ated, at which point a program is ill-formed if the substitution
6712 results in an invalid type.] */
6714 static tree
6715 tsubst_function_type (tree t,
6716 tree args,
6717 tsubst_flags_t complain,
6718 tree in_decl)
6720 tree return_type;
6721 tree arg_types;
6722 tree fntype;
6724 /* The TYPE_CONTEXT is not used for function/method types. */
6725 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
6727 /* Substitute the return type. */
6728 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6729 if (return_type == error_mark_node)
6730 return error_mark_node;
6731 /* The standard does not presently indicate that creation of a
6732 function type with an invalid return type is a deduction failure.
6733 However, that is clearly analogous to creating an array of "void"
6734 or a reference to a reference. This is core issue #486. */
6735 if (TREE_CODE (return_type) == ARRAY_TYPE
6736 || TREE_CODE (return_type) == FUNCTION_TYPE)
6738 if (complain & tf_error)
6740 if (TREE_CODE (return_type) == ARRAY_TYPE)
6741 error ("function returning an array");
6742 else
6743 error ("function returning a function");
6745 return error_mark_node;
6748 /* Substitute the argument types. */
6749 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
6750 complain, in_decl);
6751 if (arg_types == error_mark_node)
6752 return error_mark_node;
6754 /* Construct a new type node and return it. */
6755 if (TREE_CODE (t) == FUNCTION_TYPE)
6756 fntype = build_function_type (return_type, arg_types);
6757 else
6759 tree r = TREE_TYPE (TREE_VALUE (arg_types));
6760 if (! IS_AGGR_TYPE (r))
6762 /* [temp.deduct]
6764 Type deduction may fail for any of the following
6765 reasons:
6767 -- Attempting to create "pointer to member of T" when T
6768 is not a class type. */
6769 if (complain & tf_error)
6770 error ("creating pointer to member function of non-class type %qT",
6772 return error_mark_node;
6775 fntype = build_method_type_directly (r, return_type,
6776 TREE_CHAIN (arg_types));
6778 fntype = cp_build_qualified_type_real (fntype, TYPE_QUALS (t), complain);
6779 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
6781 return fntype;
6784 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
6785 ARGS into that specification, and return the substituted
6786 specification. If there is no specification, return NULL_TREE. */
6788 static tree
6789 tsubst_exception_specification (tree fntype,
6790 tree args,
6791 tsubst_flags_t complain,
6792 tree in_decl)
6794 tree specs;
6795 tree new_specs;
6797 specs = TYPE_RAISES_EXCEPTIONS (fntype);
6798 new_specs = NULL_TREE;
6799 if (specs)
6801 if (! TREE_VALUE (specs))
6802 new_specs = specs;
6803 else
6804 while (specs)
6806 tree spec;
6807 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
6808 if (spec == error_mark_node)
6809 return spec;
6810 new_specs = add_exception_specifier (new_specs, spec, complain);
6811 specs = TREE_CHAIN (specs);
6814 return new_specs;
6817 /* Substitute into the PARMS of a call-declarator. */
6819 static tree
6820 tsubst_call_declarator_parms (tree parms,
6821 tree args,
6822 tsubst_flags_t complain,
6823 tree in_decl)
6825 tree new_parms;
6826 tree type;
6827 tree defarg;
6829 if (!parms || parms == void_list_node)
6830 return parms;
6832 new_parms = tsubst_call_declarator_parms (TREE_CHAIN (parms),
6833 args, complain, in_decl);
6835 /* Figure out the type of this parameter. */
6836 type = tsubst (TREE_VALUE (parms), args, complain, in_decl);
6838 /* Figure out the default argument as well. Note that we use
6839 tsubst_expr since the default argument is really an expression. */
6840 defarg = tsubst_expr (TREE_PURPOSE (parms), args, complain, in_decl);
6842 /* Chain this parameter on to the front of those we have already
6843 processed. We don't use hash_tree_cons because that function
6844 doesn't check TREE_PARMLIST. */
6845 new_parms = tree_cons (defarg, type, new_parms);
6847 return new_parms;
6850 /* Take the tree structure T and replace template parameters used
6851 therein with the argument vector ARGS. IN_DECL is an associated
6852 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
6853 Issue error and warning messages under control of COMPLAIN. Note
6854 that we must be relatively non-tolerant of extensions here, in
6855 order to preserve conformance; if we allow substitutions that
6856 should not be allowed, we may allow argument deductions that should
6857 not succeed, and therefore report ambiguous overload situations
6858 where there are none. In theory, we could allow the substitution,
6859 but indicate that it should have failed, and allow our caller to
6860 make sure that the right thing happens, but we don't try to do this
6861 yet.
6863 This function is used for dealing with types, decls and the like;
6864 for expressions, use tsubst_expr or tsubst_copy. */
6866 static tree
6867 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
6869 tree type, r;
6871 if (t == NULL_TREE || t == error_mark_node
6872 || t == integer_type_node
6873 || t == void_type_node
6874 || t == char_type_node
6875 || t == unknown_type_node
6876 || TREE_CODE (t) == NAMESPACE_DECL)
6877 return t;
6879 if (DECL_P (t))
6880 return tsubst_decl (t, args, complain);
6882 if (TREE_CODE (t) == IDENTIFIER_NODE)
6883 type = IDENTIFIER_TYPE_VALUE (t);
6884 else
6885 type = TREE_TYPE (t);
6887 gcc_assert (type != unknown_type_node);
6889 if (type
6890 && TREE_CODE (t) != TYPENAME_TYPE
6891 && TREE_CODE (t) != IDENTIFIER_NODE
6892 && TREE_CODE (t) != FUNCTION_TYPE
6893 && TREE_CODE (t) != METHOD_TYPE)
6894 type = tsubst (type, args, complain, in_decl);
6895 if (type == error_mark_node)
6896 return error_mark_node;
6898 switch (TREE_CODE (t))
6900 case RECORD_TYPE:
6901 case UNION_TYPE:
6902 case ENUMERAL_TYPE:
6903 return tsubst_aggr_type (t, args, complain, in_decl,
6904 /*entering_scope=*/0);
6906 case ERROR_MARK:
6907 case IDENTIFIER_NODE:
6908 case VOID_TYPE:
6909 case REAL_TYPE:
6910 case COMPLEX_TYPE:
6911 case VECTOR_TYPE:
6912 case BOOLEAN_TYPE:
6913 case INTEGER_CST:
6914 case REAL_CST:
6915 case STRING_CST:
6916 return t;
6918 case INTEGER_TYPE:
6919 if (t == integer_type_node)
6920 return t;
6922 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
6923 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
6924 return t;
6927 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
6929 /* The array dimension behaves like a non-type template arg,
6930 in that we want to fold it as much as possible. */
6931 max = tsubst_template_arg (omax, args, complain, in_decl);
6932 max = fold_decl_constant_value (max);
6934 if (integer_zerop (omax))
6936 /* Still allow an explicit array of size zero. */
6937 if (pedantic)
6938 pedwarn ("creating array with size zero");
6940 else if (integer_zerop (max)
6941 || (TREE_CODE (max) == INTEGER_CST
6942 && INT_CST_LT (max, integer_zero_node)))
6944 /* [temp.deduct]
6946 Type deduction may fail for any of the following
6947 reasons:
6949 Attempting to create an array with a size that is
6950 zero or negative. */
6951 if (complain & tf_error)
6952 error ("creating array with size zero (%qE)", max);
6954 return error_mark_node;
6957 return compute_array_index_type (NULL_TREE, max);
6960 case TEMPLATE_TYPE_PARM:
6961 case TEMPLATE_TEMPLATE_PARM:
6962 case BOUND_TEMPLATE_TEMPLATE_PARM:
6963 case TEMPLATE_PARM_INDEX:
6965 int idx;
6966 int level;
6967 int levels;
6968 tree arg = NULL_TREE;
6970 r = NULL_TREE;
6972 gcc_assert (TREE_VEC_LENGTH (args) > 0);
6973 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
6974 || TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
6975 || TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6977 idx = TEMPLATE_TYPE_IDX (t);
6978 level = TEMPLATE_TYPE_LEVEL (t);
6980 else
6982 idx = TEMPLATE_PARM_IDX (t);
6983 level = TEMPLATE_PARM_LEVEL (t);
6986 levels = TMPL_ARGS_DEPTH (args);
6987 if (level <= levels)
6988 arg = TMPL_ARG (args, level, idx);
6990 if (arg == error_mark_node)
6991 return error_mark_node;
6992 else if (arg != NULL_TREE)
6994 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
6996 gcc_assert (TYPE_P (arg));
6997 return cp_build_qualified_type_real
6998 (arg, cp_type_quals (arg) | cp_type_quals (t),
6999 complain | tf_ignore_bad_quals);
7001 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
7003 /* We are processing a type constructed from a
7004 template template parameter. */
7005 tree argvec = tsubst (TYPE_TI_ARGS (t),
7006 args, complain, in_decl);
7007 if (argvec == error_mark_node)
7008 return error_mark_node;
7010 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
7011 are resolving nested-types in the signature of a
7012 member function templates. Otherwise ARG is a
7013 TEMPLATE_DECL and is the real template to be
7014 instantiated. */
7015 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
7016 arg = TYPE_NAME (arg);
7018 r = lookup_template_class (arg,
7019 argvec, in_decl,
7020 DECL_CONTEXT (arg),
7021 /*entering_scope=*/0,
7022 complain);
7023 return cp_build_qualified_type_real
7024 (r, TYPE_QUALS (t), complain);
7026 else
7027 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
7028 return arg;
7031 if (level == 1)
7032 /* This can happen during the attempted tsubst'ing in
7033 unify. This means that we don't yet have any information
7034 about the template parameter in question. */
7035 return t;
7037 /* If we get here, we must have been looking at a parm for a
7038 more deeply nested template. Make a new version of this
7039 template parameter, but with a lower level. */
7040 switch (TREE_CODE (t))
7042 case TEMPLATE_TYPE_PARM:
7043 case TEMPLATE_TEMPLATE_PARM:
7044 case BOUND_TEMPLATE_TEMPLATE_PARM:
7045 if (cp_type_quals (t))
7047 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
7048 r = cp_build_qualified_type_real
7049 (r, cp_type_quals (t),
7050 complain | (TREE_CODE (t) == TEMPLATE_TYPE_PARM
7051 ? tf_ignore_bad_quals : 0));
7053 else
7055 r = copy_type (t);
7056 TEMPLATE_TYPE_PARM_INDEX (r)
7057 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
7058 r, levels);
7059 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
7060 TYPE_MAIN_VARIANT (r) = r;
7061 TYPE_POINTER_TO (r) = NULL_TREE;
7062 TYPE_REFERENCE_TO (r) = NULL_TREE;
7064 if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
7066 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
7067 complain, in_decl);
7068 if (argvec == error_mark_node)
7069 return error_mark_node;
7071 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
7072 = tree_cons (TYPE_TI_TEMPLATE (t), argvec, NULL_TREE);
7075 break;
7077 case TEMPLATE_PARM_INDEX:
7078 r = reduce_template_parm_level (t, type, levels);
7079 break;
7081 default:
7082 gcc_unreachable ();
7085 return r;
7088 case TREE_LIST:
7090 tree purpose, value, chain;
7092 if (t == void_list_node)
7093 return t;
7095 purpose = TREE_PURPOSE (t);
7096 if (purpose)
7098 purpose = tsubst (purpose, args, complain, in_decl);
7099 if (purpose == error_mark_node)
7100 return error_mark_node;
7102 value = TREE_VALUE (t);
7103 if (value)
7105 value = tsubst (value, args, complain, in_decl);
7106 if (value == error_mark_node)
7107 return error_mark_node;
7109 chain = TREE_CHAIN (t);
7110 if (chain && chain != void_type_node)
7112 chain = tsubst (chain, args, complain, in_decl);
7113 if (chain == error_mark_node)
7114 return error_mark_node;
7116 if (purpose == TREE_PURPOSE (t)
7117 && value == TREE_VALUE (t)
7118 && chain == TREE_CHAIN (t))
7119 return t;
7120 return hash_tree_cons (purpose, value, chain);
7123 case TREE_BINFO:
7124 /* We should never be tsubsting a binfo. */
7125 gcc_unreachable ();
7127 case TREE_VEC:
7128 /* A vector of template arguments. */
7129 gcc_assert (!type);
7130 return tsubst_template_args (t, args, complain, in_decl);
7132 case POINTER_TYPE:
7133 case REFERENCE_TYPE:
7135 enum tree_code code;
7137 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
7138 return t;
7140 code = TREE_CODE (t);
7143 /* [temp.deduct]
7145 Type deduction may fail for any of the following
7146 reasons:
7148 -- Attempting to create a pointer to reference type.
7149 -- Attempting to create a reference to a reference type or
7150 a reference to void. */
7151 if (TREE_CODE (type) == REFERENCE_TYPE
7152 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
7154 static location_t last_loc;
7156 /* We keep track of the last time we issued this error
7157 message to avoid spewing a ton of messages during a
7158 single bad template instantiation. */
7159 if (complain & tf_error
7160 #ifdef USE_MAPPED_LOCATION
7161 && last_loc != input_location
7162 #else
7163 && (last_loc.line != input_line
7164 || last_loc.file != input_filename)
7165 #endif
7168 if (TREE_CODE (type) == VOID_TYPE)
7169 error ("forming reference to void");
7170 else
7171 error ("forming %s to reference type %qT",
7172 (code == POINTER_TYPE) ? "pointer" : "reference",
7173 type);
7174 last_loc = input_location;
7177 return error_mark_node;
7179 else if (code == POINTER_TYPE)
7181 r = build_pointer_type (type);
7182 if (TREE_CODE (type) == METHOD_TYPE)
7183 r = build_ptrmemfunc_type (r);
7185 else
7186 r = build_reference_type (type);
7187 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
7189 if (r != error_mark_node)
7190 /* Will this ever be needed for TYPE_..._TO values? */
7191 layout_type (r);
7193 return r;
7195 case OFFSET_TYPE:
7197 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
7198 if (r == error_mark_node || !IS_AGGR_TYPE (r))
7200 /* [temp.deduct]
7202 Type deduction may fail for any of the following
7203 reasons:
7205 -- Attempting to create "pointer to member of T" when T
7206 is not a class type. */
7207 if (complain & tf_error)
7208 error ("creating pointer to member of non-class type %qT", r);
7209 return error_mark_node;
7211 if (TREE_CODE (type) == REFERENCE_TYPE)
7213 if (complain & tf_error)
7214 error ("creating pointer to member reference type %qT", type);
7216 return error_mark_node;
7218 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
7219 if (TREE_CODE (type) == FUNCTION_TYPE)
7221 /* The type of the implicit object parameter gets its
7222 cv-qualifiers from the FUNCTION_TYPE. */
7223 tree method_type;
7224 tree this_type = cp_build_qualified_type (TYPE_MAIN_VARIANT (r),
7225 cp_type_quals (type));
7226 tree memptr;
7227 method_type = build_method_type_directly (this_type,
7228 TREE_TYPE (type),
7229 TYPE_ARG_TYPES (type));
7230 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
7231 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
7232 complain);
7234 else
7235 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
7236 TYPE_QUALS (t),
7237 complain);
7239 case FUNCTION_TYPE:
7240 case METHOD_TYPE:
7242 tree fntype;
7243 tree specs;
7244 fntype = tsubst_function_type (t, args, complain, in_decl);
7245 if (fntype == error_mark_node)
7246 return error_mark_node;
7248 /* Substitute the exception specification. */
7249 specs = tsubst_exception_specification (t, args, complain,
7250 in_decl);
7251 if (specs)
7252 fntype = build_exception_variant (fntype, specs);
7253 return fntype;
7255 case ARRAY_TYPE:
7257 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
7258 if (domain == error_mark_node)
7259 return error_mark_node;
7261 /* As an optimization, we avoid regenerating the array type if
7262 it will obviously be the same as T. */
7263 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
7264 return t;
7266 /* These checks should match the ones in grokdeclarator.
7268 [temp.deduct]
7270 The deduction may fail for any of the following reasons:
7272 -- Attempting to create an array with an element type that
7273 is void, a function type, or a reference type, or [DR337]
7274 an abstract class type. */
7275 if (TREE_CODE (type) == VOID_TYPE
7276 || TREE_CODE (type) == FUNCTION_TYPE
7277 || TREE_CODE (type) == REFERENCE_TYPE)
7279 if (complain & tf_error)
7280 error ("creating array of %qT", type);
7281 return error_mark_node;
7283 if (CLASS_TYPE_P (type) && CLASSTYPE_PURE_VIRTUALS (type))
7285 if (complain & tf_error)
7286 error ("creating array of %qT, which is an abstract class type",
7287 type);
7288 return error_mark_node;
7291 r = build_cplus_array_type (type, domain);
7292 return r;
7295 case PLUS_EXPR:
7296 case MINUS_EXPR:
7298 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7299 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
7301 if (e1 == error_mark_node || e2 == error_mark_node)
7302 return error_mark_node;
7304 return fold (build2 (TREE_CODE (t), TREE_TYPE (t), e1, e2));
7307 case NEGATE_EXPR:
7308 case NOP_EXPR:
7310 tree e = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7311 if (e == error_mark_node)
7312 return error_mark_node;
7314 return fold (build1 (TREE_CODE (t), TREE_TYPE (t), e));
7317 case TYPENAME_TYPE:
7319 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
7320 in_decl, /*entering_scope=*/1);
7321 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
7322 complain, in_decl);
7324 if (ctx == error_mark_node || f == error_mark_node)
7325 return error_mark_node;
7327 if (!IS_AGGR_TYPE (ctx))
7329 if (complain & tf_error)
7330 error ("%qT is not a class, struct, or union type", ctx);
7331 return error_mark_node;
7333 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
7335 /* Normally, make_typename_type does not require that the CTX
7336 have complete type in order to allow things like:
7338 template <class T> struct S { typename S<T>::X Y; };
7340 But, such constructs have already been resolved by this
7341 point, so here CTX really should have complete type, unless
7342 it's a partial instantiation. */
7343 ctx = complete_type (ctx);
7344 if (!COMPLETE_TYPE_P (ctx))
7346 if (complain & tf_error)
7347 cxx_incomplete_type_error (NULL_TREE, ctx);
7348 return error_mark_node;
7352 f = make_typename_type (ctx, f, typename_type,
7353 (complain & tf_error) | tf_keep_type_decl);
7354 if (f == error_mark_node)
7355 return f;
7356 if (TREE_CODE (f) == TYPE_DECL)
7358 complain |= tf_ignore_bad_quals;
7359 f = TREE_TYPE (f);
7362 if (TREE_CODE (f) != TYPENAME_TYPE)
7364 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
7365 error ("%qT resolves to %qT, which is not an enumeration type",
7366 t, f);
7367 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
7368 error ("%qT resolves to %qT, which is is not a class type",
7369 t, f);
7372 return cp_build_qualified_type_real
7373 (f, cp_type_quals (f) | cp_type_quals (t), complain);
7376 case UNBOUND_CLASS_TEMPLATE:
7378 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
7379 in_decl, /*entering_scope=*/1);
7380 tree name = TYPE_IDENTIFIER (t);
7381 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
7383 if (ctx == error_mark_node || name == error_mark_node)
7384 return error_mark_node;
7386 if (parm_list)
7387 parm_list = tsubst_template_parms (parm_list, args, complain);
7388 return make_unbound_class_template (ctx, name, parm_list, complain);
7391 case INDIRECT_REF:
7392 case ADDR_EXPR:
7393 case CALL_EXPR:
7394 gcc_unreachable ();
7396 case ARRAY_REF:
7398 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7399 tree e2 = tsubst_expr (TREE_OPERAND (t, 1), args, complain, in_decl);
7400 if (e1 == error_mark_node || e2 == error_mark_node)
7401 return error_mark_node;
7403 return build_nt (ARRAY_REF, e1, e2, NULL_TREE, NULL_TREE);
7406 case SCOPE_REF:
7408 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7409 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
7410 if (e1 == error_mark_node || e2 == error_mark_node)
7411 return error_mark_node;
7413 return build_nt (TREE_CODE (t), e1, e2);
7416 case TYPEOF_TYPE:
7418 tree type;
7420 type = finish_typeof (tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
7421 complain, in_decl));
7422 return cp_build_qualified_type_real (type,
7423 cp_type_quals (t)
7424 | cp_type_quals (type),
7425 complain);
7428 default:
7429 sorry ("use of %qs in template",
7430 tree_code_name [(int) TREE_CODE (t)]);
7431 return error_mark_node;
7435 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
7436 type of the expression on the left-hand side of the "." or "->"
7437 operator. */
7439 static tree
7440 tsubst_baselink (tree baselink, tree object_type,
7441 tree args, tsubst_flags_t complain, tree in_decl)
7443 tree name;
7444 tree qualifying_scope;
7445 tree fns;
7446 tree template_args = 0;
7447 bool template_id_p = false;
7449 /* A baselink indicates a function from a base class. The
7450 BASELINK_ACCESS_BINFO and BASELINK_BINFO are going to have
7451 non-dependent types; otherwise, the lookup could not have
7452 succeeded. However, they may indicate bases of the template
7453 class, rather than the instantiated class.
7455 In addition, lookups that were not ambiguous before may be
7456 ambiguous now. Therefore, we perform the lookup again. */
7457 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
7458 fns = BASELINK_FUNCTIONS (baselink);
7459 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
7461 template_id_p = true;
7462 template_args = TREE_OPERAND (fns, 1);
7463 fns = TREE_OPERAND (fns, 0);
7464 if (template_args)
7465 template_args = tsubst_template_args (template_args, args,
7466 complain, in_decl);
7468 name = DECL_NAME (get_first_fn (fns));
7469 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
7471 /* If lookup found a single function, mark it as used at this
7472 point. (If it lookup found multiple functions the one selected
7473 later by overload resolution will be marked as used at that
7474 point.) */
7475 if (BASELINK_P (baselink))
7476 fns = BASELINK_FUNCTIONS (baselink);
7477 if (!template_id_p && !really_overloaded_fn (fns))
7478 mark_used (OVL_CURRENT (fns));
7480 /* Add back the template arguments, if present. */
7481 if (BASELINK_P (baselink) && template_id_p)
7482 BASELINK_FUNCTIONS (baselink)
7483 = build_nt (TEMPLATE_ID_EXPR,
7484 BASELINK_FUNCTIONS (baselink),
7485 template_args);
7487 if (!object_type)
7488 object_type = current_class_type;
7489 return adjust_result_of_qualified_name_lookup (baselink,
7490 qualifying_scope,
7491 object_type);
7494 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
7495 true if the qualified-id will be a postfix-expression in-and-of
7496 itself; false if more of the postfix-expression follows the
7497 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
7498 of "&". */
7500 static tree
7501 tsubst_qualified_id (tree qualified_id, tree args,
7502 tsubst_flags_t complain, tree in_decl,
7503 bool done, bool address_p)
7505 tree expr;
7506 tree scope;
7507 tree name;
7508 bool is_template;
7509 tree template_args;
7511 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
7513 /* Figure out what name to look up. */
7514 name = TREE_OPERAND (qualified_id, 1);
7515 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
7517 is_template = true;
7518 template_args = TREE_OPERAND (name, 1);
7519 if (template_args)
7520 template_args = tsubst_template_args (template_args, args,
7521 complain, in_decl);
7522 name = TREE_OPERAND (name, 0);
7524 else
7526 is_template = false;
7527 template_args = NULL_TREE;
7530 /* Substitute into the qualifying scope. When there are no ARGS, we
7531 are just trying to simplify a non-dependent expression. In that
7532 case the qualifying scope may be dependent, and, in any case,
7533 substituting will not help. */
7534 scope = TREE_OPERAND (qualified_id, 0);
7535 if (args)
7537 scope = tsubst (scope, args, complain, in_decl);
7538 expr = tsubst_copy (name, args, complain, in_decl);
7540 else
7541 expr = name;
7543 if (dependent_type_p (scope))
7544 return build_nt (SCOPE_REF, scope, expr);
7546 if (!BASELINK_P (name) && !DECL_P (expr))
7548 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
7549 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
7550 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
7552 if (complain & tf_error)
7554 error ("dependent-name %qE is parsed as a non-type, but "
7555 "instantiation yields a type", qualified_id);
7556 inform ("say %<typename %E%> if a type is meant", qualified_id);
7558 return error_mark_node;
7562 if (DECL_P (expr))
7564 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
7565 scope);
7566 /* Remember that there was a reference to this entity. */
7567 mark_used (expr);
7570 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
7572 if (complain & tf_error)
7573 qualified_name_lookup_error (scope,
7574 TREE_OPERAND (qualified_id, 1),
7575 expr);
7576 return error_mark_node;
7579 if (is_template)
7580 expr = lookup_template_function (expr, template_args);
7582 if (expr == error_mark_node && complain & tf_error)
7583 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
7584 expr);
7585 else if (TYPE_P (scope))
7587 expr = (adjust_result_of_qualified_name_lookup
7588 (expr, scope, current_class_type));
7589 expr = finish_qualified_id_expr (scope, expr, done, address_p);
7592 expr = convert_from_reference (expr);
7594 return expr;
7597 /* Like tsubst, but deals with expressions. This function just replaces
7598 template parms; to finish processing the resultant expression, use
7599 tsubst_expr. */
7601 static tree
7602 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
7604 enum tree_code code;
7605 tree r;
7607 if (t == NULL_TREE || t == error_mark_node)
7608 return t;
7610 code = TREE_CODE (t);
7612 switch (code)
7614 case PARM_DECL:
7615 r = retrieve_local_specialization (t);
7616 gcc_assert (r != NULL);
7617 mark_used (r);
7618 return r;
7620 case CONST_DECL:
7622 tree enum_type;
7623 tree v;
7625 if (DECL_TEMPLATE_PARM_P (t))
7626 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
7627 /* There is no need to substitute into namespace-scope
7628 enumerators. */
7629 if (DECL_NAMESPACE_SCOPE_P (t))
7630 return t;
7631 /* If ARGS is NULL, then T is known to be non-dependent. */
7632 if (args == NULL_TREE)
7633 return integral_constant_value (t);
7635 /* Unfortunately, we cannot just call lookup_name here.
7636 Consider:
7638 template <int I> int f() {
7639 enum E { a = I };
7640 struct S { void g() { E e = a; } };
7643 When we instantiate f<7>::S::g(), say, lookup_name is not
7644 clever enough to find f<7>::a. */
7645 enum_type
7646 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
7647 /*entering_scope=*/0);
7649 for (v = TYPE_VALUES (enum_type);
7650 v != NULL_TREE;
7651 v = TREE_CHAIN (v))
7652 if (TREE_PURPOSE (v) == DECL_NAME (t))
7653 return TREE_VALUE (v);
7655 /* We didn't find the name. That should never happen; if
7656 name-lookup found it during preliminary parsing, we
7657 should find it again here during instantiation. */
7658 gcc_unreachable ();
7660 return t;
7662 case FIELD_DECL:
7663 if (DECL_CONTEXT (t))
7665 tree ctx;
7667 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
7668 /*entering_scope=*/1);
7669 if (ctx != DECL_CONTEXT (t))
7671 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
7672 if (!r)
7674 if (complain & tf_error)
7675 error ("using invalid field %qD", t);
7676 return error_mark_node;
7678 return r;
7682 return t;
7684 case VAR_DECL:
7685 case FUNCTION_DECL:
7686 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
7687 || local_variable_p (t))
7688 t = tsubst (t, args, complain, in_decl);
7689 mark_used (t);
7690 return t;
7692 case BASELINK:
7693 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
7695 case TEMPLATE_DECL:
7696 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
7697 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
7698 args, complain, in_decl);
7699 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
7700 return tsubst (t, args, complain, in_decl);
7701 else if (DECL_CLASS_SCOPE_P (t)
7702 && uses_template_parms (DECL_CONTEXT (t)))
7704 /* Template template argument like the following example need
7705 special treatment:
7707 template <template <class> class TT> struct C {};
7708 template <class T> struct D {
7709 template <class U> struct E {};
7710 C<E> c; // #1
7712 D<int> d; // #2
7714 We are processing the template argument `E' in #1 for
7715 the template instantiation #2. Originally, `E' is a
7716 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
7717 have to substitute this with one having context `D<int>'. */
7719 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
7720 return lookup_field (context, DECL_NAME(t), 0, false);
7722 else
7723 /* Ordinary template template argument. */
7724 return t;
7726 case CAST_EXPR:
7727 case REINTERPRET_CAST_EXPR:
7728 case CONST_CAST_EXPR:
7729 case STATIC_CAST_EXPR:
7730 case DYNAMIC_CAST_EXPR:
7731 case NOP_EXPR:
7732 return build1
7733 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
7734 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
7736 case INDIRECT_REF:
7737 case NEGATE_EXPR:
7738 case TRUTH_NOT_EXPR:
7739 case BIT_NOT_EXPR:
7740 case ADDR_EXPR:
7741 case CONVERT_EXPR: /* Unary + */
7742 case SIZEOF_EXPR:
7743 case ALIGNOF_EXPR:
7744 case ARROW_EXPR:
7745 case THROW_EXPR:
7746 case TYPEID_EXPR:
7747 case REALPART_EXPR:
7748 case IMAGPART_EXPR:
7749 return build1
7750 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
7751 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
7753 case COMPONENT_REF:
7755 tree object;
7756 tree name;
7758 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
7759 name = TREE_OPERAND (t, 1);
7760 if (TREE_CODE (name) == BIT_NOT_EXPR)
7762 name = tsubst_copy (TREE_OPERAND (name, 0), args,
7763 complain, in_decl);
7764 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
7766 else if (TREE_CODE (name) == SCOPE_REF
7767 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
7769 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
7770 complain, in_decl);
7771 name = TREE_OPERAND (name, 1);
7772 name = tsubst_copy (TREE_OPERAND (name, 0), args,
7773 complain, in_decl);
7774 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
7775 name = build_nt (SCOPE_REF, base, name);
7777 else if (TREE_CODE (name) == BASELINK)
7778 name = tsubst_baselink (name,
7779 non_reference (TREE_TYPE (object)),
7780 args, complain,
7781 in_decl);
7782 else
7783 name = tsubst_copy (name, args, complain, in_decl);
7784 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
7787 case PLUS_EXPR:
7788 case MINUS_EXPR:
7789 case MULT_EXPR:
7790 case TRUNC_DIV_EXPR:
7791 case CEIL_DIV_EXPR:
7792 case FLOOR_DIV_EXPR:
7793 case ROUND_DIV_EXPR:
7794 case EXACT_DIV_EXPR:
7795 case BIT_AND_EXPR:
7796 case BIT_IOR_EXPR:
7797 case BIT_XOR_EXPR:
7798 case TRUNC_MOD_EXPR:
7799 case FLOOR_MOD_EXPR:
7800 case TRUTH_ANDIF_EXPR:
7801 case TRUTH_ORIF_EXPR:
7802 case TRUTH_AND_EXPR:
7803 case TRUTH_OR_EXPR:
7804 case RSHIFT_EXPR:
7805 case LSHIFT_EXPR:
7806 case RROTATE_EXPR:
7807 case LROTATE_EXPR:
7808 case EQ_EXPR:
7809 case NE_EXPR:
7810 case MAX_EXPR:
7811 case MIN_EXPR:
7812 case LE_EXPR:
7813 case GE_EXPR:
7814 case LT_EXPR:
7815 case GT_EXPR:
7816 case COMPOUND_EXPR:
7817 case SCOPE_REF:
7818 case DOTSTAR_EXPR:
7819 case MEMBER_REF:
7820 case PREDECREMENT_EXPR:
7821 case PREINCREMENT_EXPR:
7822 case POSTDECREMENT_EXPR:
7823 case POSTINCREMENT_EXPR:
7824 return build_nt
7825 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7826 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
7828 case ARRAY_REF:
7829 return build_nt
7830 (ARRAY_REF,
7831 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7832 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7833 NULL_TREE, NULL_TREE);
7835 case CALL_EXPR:
7836 return build_nt (code,
7837 tsubst_copy (TREE_OPERAND (t, 0), args,
7838 complain, in_decl),
7839 tsubst_copy (TREE_OPERAND (t, 1), args, complain,
7840 in_decl),
7841 NULL_TREE);
7843 case COND_EXPR:
7844 case MODOP_EXPR:
7845 case PSEUDO_DTOR_EXPR:
7847 r = build_nt
7848 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7849 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7850 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
7851 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
7852 return r;
7855 case NEW_EXPR:
7857 r = build_nt
7858 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7859 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7860 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
7861 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
7862 return r;
7865 case DELETE_EXPR:
7867 r = build_nt
7868 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7869 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
7870 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
7871 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
7872 return r;
7875 case TEMPLATE_ID_EXPR:
7877 /* Substituted template arguments */
7878 tree fn = TREE_OPERAND (t, 0);
7879 tree targs = TREE_OPERAND (t, 1);
7881 fn = tsubst_copy (fn, args, complain, in_decl);
7882 if (targs)
7883 targs = tsubst_template_args (targs, args, complain, in_decl);
7885 return lookup_template_function (fn, targs);
7888 case TREE_LIST:
7890 tree purpose, value, chain;
7892 if (t == void_list_node)
7893 return t;
7895 purpose = TREE_PURPOSE (t);
7896 if (purpose)
7897 purpose = tsubst_copy (purpose, args, complain, in_decl);
7898 value = TREE_VALUE (t);
7899 if (value)
7900 value = tsubst_copy (value, args, complain, in_decl);
7901 chain = TREE_CHAIN (t);
7902 if (chain && chain != void_type_node)
7903 chain = tsubst_copy (chain, args, complain, in_decl);
7904 if (purpose == TREE_PURPOSE (t)
7905 && value == TREE_VALUE (t)
7906 && chain == TREE_CHAIN (t))
7907 return t;
7908 return tree_cons (purpose, value, chain);
7911 case RECORD_TYPE:
7912 case UNION_TYPE:
7913 case ENUMERAL_TYPE:
7914 case INTEGER_TYPE:
7915 case TEMPLATE_TYPE_PARM:
7916 case TEMPLATE_TEMPLATE_PARM:
7917 case BOUND_TEMPLATE_TEMPLATE_PARM:
7918 case TEMPLATE_PARM_INDEX:
7919 case POINTER_TYPE:
7920 case REFERENCE_TYPE:
7921 case OFFSET_TYPE:
7922 case FUNCTION_TYPE:
7923 case METHOD_TYPE:
7924 case ARRAY_TYPE:
7925 case TYPENAME_TYPE:
7926 case UNBOUND_CLASS_TEMPLATE:
7927 case TYPEOF_TYPE:
7928 case TYPE_DECL:
7929 return tsubst (t, args, complain, in_decl);
7931 case IDENTIFIER_NODE:
7932 if (IDENTIFIER_TYPENAME_P (t))
7934 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
7935 return mangle_conv_op_name_for_type (new_type);
7937 else
7938 return t;
7940 case CONSTRUCTOR:
7942 r = build_constructor
7943 (tsubst (TREE_TYPE (t), args, complain, in_decl),
7944 tsubst_copy (CONSTRUCTOR_ELTS (t), args, complain, in_decl));
7945 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
7946 return r;
7949 case VA_ARG_EXPR:
7950 return build_x_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
7951 in_decl),
7952 tsubst (TREE_TYPE (t), args, complain, in_decl));
7954 case CLEANUP_POINT_EXPR:
7955 /* We shouldn't have built any of these during initial template
7956 generation. Instead, they should be built during instantiation
7957 in response to the saved STMT_IS_FULL_EXPR_P setting. */
7958 gcc_unreachable ();
7960 default:
7961 return t;
7965 /* Like tsubst_copy for expressions, etc. but also does semantic
7966 processing. */
7968 static tree
7969 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
7971 tree stmt, tmp;
7973 if (t == NULL_TREE || t == error_mark_node)
7974 return t;
7976 if (EXPR_HAS_LOCATION (t))
7977 input_location = EXPR_LOCATION (t);
7978 if (STATEMENT_CODE_P (TREE_CODE (t)))
7979 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
7981 switch (TREE_CODE (t))
7983 case STATEMENT_LIST:
7985 tree_stmt_iterator i;
7986 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
7987 tsubst_expr (tsi_stmt (i), args, complain, in_decl);
7988 break;
7991 case CTOR_INITIALIZER:
7992 finish_mem_initializers (tsubst_initializer_list
7993 (TREE_OPERAND (t, 0), args));
7994 break;
7996 case RETURN_EXPR:
7997 finish_return_stmt (tsubst_expr (TREE_OPERAND (t, 0),
7998 args, complain, in_decl));
7999 break;
8001 case EXPR_STMT:
8002 tmp = tsubst_expr (EXPR_STMT_EXPR (t), args, complain, in_decl);
8003 if (EXPR_STMT_STMT_EXPR_RESULT (t))
8004 finish_stmt_expr_expr (tmp, cur_stmt_expr);
8005 else
8006 finish_expr_stmt (tmp);
8007 break;
8009 case USING_STMT:
8010 do_using_directive (tsubst_expr (USING_STMT_NAMESPACE (t),
8011 args, complain, in_decl));
8012 break;
8014 case DECL_EXPR:
8016 tree decl;
8017 tree init;
8019 decl = DECL_EXPR_DECL (t);
8020 if (TREE_CODE (decl) == LABEL_DECL)
8021 finish_label_decl (DECL_NAME (decl));
8022 else if (TREE_CODE (decl) == USING_DECL)
8024 tree scope = DECL_INITIAL (decl);
8025 tree name = DECL_NAME (decl);
8026 tree decl;
8028 scope = tsubst_expr (scope, args, complain, in_decl);
8029 decl = lookup_qualified_name (scope, name,
8030 /*is_type_p=*/false,
8031 /*complain=*/false);
8032 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
8033 qualified_name_lookup_error (scope, name, decl);
8034 else
8035 do_local_using_decl (decl, scope, name);
8037 else
8039 init = DECL_INITIAL (decl);
8040 decl = tsubst (decl, args, complain, in_decl);
8041 if (decl != error_mark_node)
8043 if (init)
8044 DECL_INITIAL (decl) = error_mark_node;
8045 /* By marking the declaration as instantiated, we avoid
8046 trying to instantiate it. Since instantiate_decl can't
8047 handle local variables, and since we've already done
8048 all that needs to be done, that's the right thing to
8049 do. */
8050 if (TREE_CODE (decl) == VAR_DECL)
8051 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
8052 if (TREE_CODE (decl) == VAR_DECL
8053 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
8054 /* Anonymous aggregates are a special case. */
8055 finish_anon_union (decl);
8056 else
8058 maybe_push_decl (decl);
8059 if (TREE_CODE (decl) == VAR_DECL
8060 && DECL_PRETTY_FUNCTION_P (decl))
8062 /* For __PRETTY_FUNCTION__ we have to adjust the
8063 initializer. */
8064 const char *const name
8065 = cxx_printable_name (current_function_decl, 2);
8066 init = cp_fname_init (name, &TREE_TYPE (decl));
8068 else
8069 init = tsubst_expr (init, args, complain, in_decl);
8070 cp_finish_decl (decl, init, NULL_TREE, 0);
8075 /* A DECL_EXPR can also be used as an expression, in the condition
8076 clause of an if/for/while construct. */
8077 return decl;
8080 case FOR_STMT:
8081 stmt = begin_for_stmt ();
8082 tsubst_expr (FOR_INIT_STMT (t), args, complain, in_decl);
8083 finish_for_init_stmt (stmt);
8084 tmp = tsubst_expr (FOR_COND (t), args, complain, in_decl);
8085 finish_for_cond (tmp, stmt);
8086 tmp = tsubst_expr (FOR_EXPR (t), args, complain, in_decl);
8087 finish_for_expr (tmp, stmt);
8088 tsubst_expr (FOR_BODY (t), args, complain, in_decl);
8089 finish_for_stmt (stmt);
8090 break;
8092 case WHILE_STMT:
8093 stmt = begin_while_stmt ();
8094 tmp = tsubst_expr (WHILE_COND (t), args, complain, in_decl);
8095 finish_while_stmt_cond (tmp, stmt);
8096 tsubst_expr (WHILE_BODY (t), args, complain, in_decl);
8097 finish_while_stmt (stmt);
8098 break;
8100 case DO_STMT:
8101 stmt = begin_do_stmt ();
8102 tsubst_expr (DO_BODY (t), args, complain, in_decl);
8103 finish_do_body (stmt);
8104 tmp = tsubst_expr (DO_COND (t), args, complain, in_decl);
8105 finish_do_stmt (tmp, stmt);
8106 break;
8108 case IF_STMT:
8109 stmt = begin_if_stmt ();
8110 tmp = tsubst_expr (IF_COND (t), args, complain, in_decl);
8111 finish_if_stmt_cond (tmp, stmt);
8112 tsubst_expr (THEN_CLAUSE (t), args, complain, in_decl);
8113 finish_then_clause (stmt);
8115 if (ELSE_CLAUSE (t))
8117 begin_else_clause (stmt);
8118 tsubst_expr (ELSE_CLAUSE (t), args, complain, in_decl);
8119 finish_else_clause (stmt);
8122 finish_if_stmt (stmt);
8123 break;
8125 case BIND_EXPR:
8126 if (BIND_EXPR_BODY_BLOCK (t))
8127 stmt = begin_function_body ();
8128 else
8129 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
8130 ? BCS_TRY_BLOCK : 0);
8132 tsubst_expr (BIND_EXPR_BODY (t), args, complain, in_decl);
8134 if (BIND_EXPR_BODY_BLOCK (t))
8135 finish_function_body (stmt);
8136 else
8137 finish_compound_stmt (stmt);
8138 break;
8140 case BREAK_STMT:
8141 finish_break_stmt ();
8142 break;
8144 case CONTINUE_STMT:
8145 finish_continue_stmt ();
8146 break;
8148 case SWITCH_STMT:
8149 stmt = begin_switch_stmt ();
8150 tmp = tsubst_expr (SWITCH_STMT_COND (t), args, complain, in_decl);
8151 finish_switch_cond (tmp, stmt);
8152 tsubst_expr (SWITCH_STMT_BODY (t), args, complain, in_decl);
8153 finish_switch_stmt (stmt);
8154 break;
8156 case CASE_LABEL_EXPR:
8157 finish_case_label (tsubst_expr (CASE_LOW (t), args, complain, in_decl),
8158 tsubst_expr (CASE_HIGH (t), args, complain,
8159 in_decl));
8160 break;
8162 case LABEL_EXPR:
8163 finish_label_stmt (DECL_NAME (LABEL_EXPR_LABEL (t)));
8164 break;
8166 case GOTO_EXPR:
8167 tmp = GOTO_DESTINATION (t);
8168 if (TREE_CODE (tmp) != LABEL_DECL)
8169 /* Computed goto's must be tsubst'd into. On the other hand,
8170 non-computed gotos must not be; the identifier in question
8171 will have no binding. */
8172 tmp = tsubst_expr (tmp, args, complain, in_decl);
8173 else
8174 tmp = DECL_NAME (tmp);
8175 finish_goto_stmt (tmp);
8176 break;
8178 case ASM_EXPR:
8179 tmp = finish_asm_stmt
8180 (ASM_VOLATILE_P (t),
8181 tsubst_expr (ASM_STRING (t), args, complain, in_decl),
8182 tsubst_expr (ASM_OUTPUTS (t), args, complain, in_decl),
8183 tsubst_expr (ASM_INPUTS (t), args, complain, in_decl),
8184 tsubst_expr (ASM_CLOBBERS (t), args, complain, in_decl));
8186 tree asm_expr = tmp;
8187 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
8188 asm_expr = TREE_OPERAND (asm_expr, 0);
8189 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
8191 break;
8193 case TRY_BLOCK:
8194 if (CLEANUP_P (t))
8196 stmt = begin_try_block ();
8197 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
8198 finish_cleanup_try_block (stmt);
8199 finish_cleanup (tsubst_expr (TRY_HANDLERS (t), args,
8200 complain, in_decl),
8201 stmt);
8203 else
8205 if (FN_TRY_BLOCK_P (t))
8206 stmt = begin_function_try_block ();
8207 else
8208 stmt = begin_try_block ();
8210 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
8212 if (FN_TRY_BLOCK_P (t))
8213 finish_function_try_block (stmt);
8214 else
8215 finish_try_block (stmt);
8217 tsubst_expr (TRY_HANDLERS (t), args, complain, in_decl);
8218 if (FN_TRY_BLOCK_P (t))
8219 finish_function_handler_sequence (stmt);
8220 else
8221 finish_handler_sequence (stmt);
8223 break;
8225 case HANDLER:
8227 tree decl;
8229 stmt = begin_handler ();
8230 if (HANDLER_PARMS (t))
8232 decl = HANDLER_PARMS (t);
8233 decl = tsubst (decl, args, complain, in_decl);
8234 /* Prevent instantiate_decl from trying to instantiate
8235 this variable. We've already done all that needs to be
8236 done. */
8237 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
8239 else
8240 decl = NULL_TREE;
8241 finish_handler_parms (decl, stmt);
8242 tsubst_expr (HANDLER_BODY (t), args, complain, in_decl);
8243 finish_handler (stmt);
8245 break;
8247 case TAG_DEFN:
8248 tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
8249 break;
8251 default:
8252 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
8254 return tsubst_copy_and_build (t, args, complain, in_decl,
8255 /*function_p=*/false);
8258 return NULL_TREE;
8261 /* T is a postfix-expression that is not being used in a function
8262 call. Return the substituted version of T. */
8264 static tree
8265 tsubst_non_call_postfix_expression (tree t, tree args,
8266 tsubst_flags_t complain,
8267 tree in_decl)
8269 if (TREE_CODE (t) == SCOPE_REF)
8270 t = tsubst_qualified_id (t, args, complain, in_decl,
8271 /*done=*/false, /*address_p=*/false);
8272 else
8273 t = tsubst_copy_and_build (t, args, complain, in_decl,
8274 /*function_p=*/false);
8276 return t;
8279 /* Like tsubst but deals with expressions and performs semantic
8280 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
8282 tree
8283 tsubst_copy_and_build (tree t,
8284 tree args,
8285 tsubst_flags_t complain,
8286 tree in_decl,
8287 bool function_p)
8289 #define RECUR(NODE) \
8290 tsubst_copy_and_build (NODE, args, complain, in_decl, /*function_p=*/false)
8292 tree op1;
8294 if (t == NULL_TREE || t == error_mark_node)
8295 return t;
8297 switch (TREE_CODE (t))
8299 case USING_DECL:
8300 t = DECL_NAME (t);
8301 /* Fall through. */
8302 case IDENTIFIER_NODE:
8304 tree decl;
8305 cp_id_kind idk;
8306 tree qualifying_class;
8307 bool non_integral_constant_expression_p;
8308 const char *error_msg;
8310 if (IDENTIFIER_TYPENAME_P (t))
8312 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8313 t = mangle_conv_op_name_for_type (new_type);
8316 /* Look up the name. */
8317 decl = lookup_name (t, 0);
8319 /* By convention, expressions use ERROR_MARK_NODE to indicate
8320 failure, not NULL_TREE. */
8321 if (decl == NULL_TREE)
8322 decl = error_mark_node;
8324 decl = finish_id_expression (t, decl, NULL_TREE,
8325 &idk,
8326 &qualifying_class,
8327 /*integral_constant_expression_p=*/false,
8328 /*allow_non_integral_constant_expression_p=*/false,
8329 &non_integral_constant_expression_p,
8330 &error_msg);
8331 if (error_msg)
8332 error (error_msg);
8333 if (!function_p && TREE_CODE (decl) == IDENTIFIER_NODE)
8334 decl = unqualified_name_lookup_error (decl);
8335 return decl;
8338 case TEMPLATE_ID_EXPR:
8340 tree object;
8341 tree template = RECUR (TREE_OPERAND (t, 0));
8342 tree targs = TREE_OPERAND (t, 1);
8344 if (targs)
8345 targs = tsubst_template_args (targs, args, complain, in_decl);
8347 if (TREE_CODE (template) == COMPONENT_REF)
8349 object = TREE_OPERAND (template, 0);
8350 template = TREE_OPERAND (template, 1);
8352 else
8353 object = NULL_TREE;
8354 template = lookup_template_function (template, targs);
8356 if (object)
8357 return build3 (COMPONENT_REF, TREE_TYPE (template),
8358 object, template, NULL_TREE);
8359 else
8360 return template;
8363 case INDIRECT_REF:
8365 tree r = RECUR (TREE_OPERAND (t, 0));
8367 if (REFERENCE_REF_P (t))
8369 /* A type conversion to reference type will be enclosed in
8370 such an indirect ref, but the substitution of the cast
8371 will have also added such an indirect ref. */
8372 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
8373 r = convert_from_reference (r);
8375 else
8376 r = build_x_indirect_ref (r, "unary *");
8377 return r;
8380 case NOP_EXPR:
8381 return build_nop
8382 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8383 RECUR (TREE_OPERAND (t, 0)));
8385 case CAST_EXPR:
8386 return build_functional_cast
8387 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8388 RECUR (TREE_OPERAND (t, 0)));
8390 case REINTERPRET_CAST_EXPR:
8391 return build_reinterpret_cast
8392 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8393 RECUR (TREE_OPERAND (t, 0)));
8395 case CONST_CAST_EXPR:
8396 return build_const_cast
8397 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8398 RECUR (TREE_OPERAND (t, 0)));
8400 case DYNAMIC_CAST_EXPR:
8401 return build_dynamic_cast
8402 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8403 RECUR (TREE_OPERAND (t, 0)));
8405 case STATIC_CAST_EXPR:
8406 return build_static_cast
8407 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8408 RECUR (TREE_OPERAND (t, 0)));
8410 case POSTDECREMENT_EXPR:
8411 case POSTINCREMENT_EXPR:
8412 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8413 args, complain, in_decl);
8414 return build_x_unary_op (TREE_CODE (t), op1);
8416 case PREDECREMENT_EXPR:
8417 case PREINCREMENT_EXPR:
8418 case NEGATE_EXPR:
8419 case BIT_NOT_EXPR:
8420 case ABS_EXPR:
8421 case TRUTH_NOT_EXPR:
8422 case CONVERT_EXPR: /* Unary + */
8423 case REALPART_EXPR:
8424 case IMAGPART_EXPR:
8425 return build_x_unary_op (TREE_CODE (t), RECUR (TREE_OPERAND (t, 0)));
8427 case ADDR_EXPR:
8428 op1 = TREE_OPERAND (t, 0);
8429 if (TREE_CODE (op1) == SCOPE_REF)
8430 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
8431 /*done=*/true, /*address_p=*/true);
8432 else
8433 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
8434 in_decl);
8435 if (TREE_CODE (op1) == LABEL_DECL)
8436 return finish_label_address_expr (DECL_NAME (op1));
8437 return build_x_unary_op (ADDR_EXPR, op1);
8439 case PLUS_EXPR:
8440 case MINUS_EXPR:
8441 case MULT_EXPR:
8442 case TRUNC_DIV_EXPR:
8443 case CEIL_DIV_EXPR:
8444 case FLOOR_DIV_EXPR:
8445 case ROUND_DIV_EXPR:
8446 case EXACT_DIV_EXPR:
8447 case BIT_AND_EXPR:
8448 case BIT_IOR_EXPR:
8449 case BIT_XOR_EXPR:
8450 case TRUNC_MOD_EXPR:
8451 case FLOOR_MOD_EXPR:
8452 case TRUTH_ANDIF_EXPR:
8453 case TRUTH_ORIF_EXPR:
8454 case TRUTH_AND_EXPR:
8455 case TRUTH_OR_EXPR:
8456 case RSHIFT_EXPR:
8457 case LSHIFT_EXPR:
8458 case RROTATE_EXPR:
8459 case LROTATE_EXPR:
8460 case EQ_EXPR:
8461 case NE_EXPR:
8462 case MAX_EXPR:
8463 case MIN_EXPR:
8464 case LE_EXPR:
8465 case GE_EXPR:
8466 case LT_EXPR:
8467 case GT_EXPR:
8468 case MEMBER_REF:
8469 case DOTSTAR_EXPR:
8470 return build_x_binary_op
8471 (TREE_CODE (t),
8472 RECUR (TREE_OPERAND (t, 0)),
8473 RECUR (TREE_OPERAND (t, 1)),
8474 /*overloaded_p=*/NULL);
8476 case SCOPE_REF:
8477 return tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
8478 /*address_p=*/false);
8479 case ARRAY_REF:
8480 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8481 args, complain, in_decl);
8482 return build_x_binary_op (ARRAY_REF, op1, RECUR (TREE_OPERAND (t, 1)),
8483 /*overloaded_p=*/NULL);
8485 case SIZEOF_EXPR:
8486 case ALIGNOF_EXPR:
8487 op1 = TREE_OPERAND (t, 0);
8488 if (!args)
8490 /* When there are no ARGS, we are trying to evaluate a
8491 non-dependent expression from the parser. Trying to do
8492 the substitutions may not work. */
8493 if (!TYPE_P (op1))
8494 op1 = TREE_TYPE (op1);
8496 else
8498 ++skip_evaluation;
8499 op1 = RECUR (op1);
8500 --skip_evaluation;
8502 if (TYPE_P (op1))
8503 return cxx_sizeof_or_alignof_type (op1, TREE_CODE (t), true);
8504 else
8505 return cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t));
8507 case MODOP_EXPR:
8509 tree r = build_x_modify_expr
8510 (RECUR (TREE_OPERAND (t, 0)),
8511 TREE_CODE (TREE_OPERAND (t, 1)),
8512 RECUR (TREE_OPERAND (t, 2)));
8513 /* TREE_NO_WARNING must be set if either the expression was
8514 parenthesized or it uses an operator such as >>= rather
8515 than plain assignment. In the former case, it was already
8516 set and must be copied. In the latter case,
8517 build_x_modify_expr sets it and it must not be reset
8518 here. */
8519 if (TREE_NO_WARNING (t))
8520 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
8521 return r;
8524 case ARROW_EXPR:
8525 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8526 args, complain, in_decl);
8527 /* Remember that there was a reference to this entity. */
8528 if (DECL_P (op1))
8529 mark_used (op1);
8530 return build_x_arrow (op1);
8532 case NEW_EXPR:
8533 return build_new
8534 (RECUR (TREE_OPERAND (t, 0)),
8535 RECUR (TREE_OPERAND (t, 1)),
8536 RECUR (TREE_OPERAND (t, 2)),
8537 RECUR (TREE_OPERAND (t, 3)),
8538 NEW_EXPR_USE_GLOBAL (t));
8540 case DELETE_EXPR:
8541 return delete_sanity
8542 (RECUR (TREE_OPERAND (t, 0)),
8543 RECUR (TREE_OPERAND (t, 1)),
8544 DELETE_EXPR_USE_VEC (t),
8545 DELETE_EXPR_USE_GLOBAL (t));
8547 case COMPOUND_EXPR:
8548 return build_x_compound_expr (RECUR (TREE_OPERAND (t, 0)),
8549 RECUR (TREE_OPERAND (t, 1)));
8551 case CALL_EXPR:
8553 tree function;
8554 tree call_args;
8555 bool qualified_p;
8556 bool koenig_p;
8558 function = TREE_OPERAND (t, 0);
8559 /* When we parsed the expression, we determined whether or
8560 not Koenig lookup should be performed. */
8561 koenig_p = KOENIG_LOOKUP_P (t);
8562 if (TREE_CODE (function) == SCOPE_REF)
8564 qualified_p = true;
8565 function = tsubst_qualified_id (function, args, complain, in_decl,
8566 /*done=*/false,
8567 /*address_p=*/false);
8569 else
8571 qualified_p = (TREE_CODE (function) == COMPONENT_REF
8572 && (TREE_CODE (TREE_OPERAND (function, 1))
8573 == SCOPE_REF));
8574 function = tsubst_copy_and_build (function, args, complain,
8575 in_decl,
8576 !qualified_p);
8577 if (BASELINK_P (function))
8578 qualified_p = true;
8581 call_args = RECUR (TREE_OPERAND (t, 1));
8583 /* We do not perform argument-dependent lookup if normal
8584 lookup finds a non-function, in accordance with the
8585 expected resolution of DR 218. */
8586 if (koenig_p
8587 && ((is_overloaded_fn (function)
8588 /* If lookup found a member function, the Koenig lookup is
8589 not appropriate, even if an unqualified-name was used
8590 to denote the function. */
8591 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
8592 || TREE_CODE (function) == IDENTIFIER_NODE))
8593 function = perform_koenig_lookup (function, call_args);
8595 if (TREE_CODE (function) == IDENTIFIER_NODE)
8597 unqualified_name_lookup_error (function);
8598 return error_mark_node;
8601 /* Remember that there was a reference to this entity. */
8602 if (DECL_P (function))
8603 mark_used (function);
8605 if (TREE_CODE (function) == OFFSET_REF)
8606 return build_offset_ref_call_from_tree (function, call_args);
8607 if (TREE_CODE (function) == COMPONENT_REF)
8609 if (!BASELINK_P (TREE_OPERAND (function, 1)))
8610 return finish_call_expr (function, call_args,
8611 /*disallow_virtual=*/false,
8612 /*koenig_p=*/false);
8613 else
8614 return (build_new_method_call
8615 (TREE_OPERAND (function, 0),
8616 TREE_OPERAND (function, 1),
8617 call_args, NULL_TREE,
8618 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL));
8620 return finish_call_expr (function, call_args,
8621 /*disallow_virtual=*/qualified_p,
8622 koenig_p);
8625 case COND_EXPR:
8626 return build_x_conditional_expr
8627 (RECUR (TREE_OPERAND (t, 0)),
8628 RECUR (TREE_OPERAND (t, 1)),
8629 RECUR (TREE_OPERAND (t, 2)));
8631 case PSEUDO_DTOR_EXPR:
8632 return finish_pseudo_destructor_expr
8633 (RECUR (TREE_OPERAND (t, 0)),
8634 RECUR (TREE_OPERAND (t, 1)),
8635 RECUR (TREE_OPERAND (t, 2)));
8637 case TREE_LIST:
8639 tree purpose, value, chain;
8641 if (t == void_list_node)
8642 return t;
8644 purpose = TREE_PURPOSE (t);
8645 if (purpose)
8646 purpose = RECUR (purpose);
8647 value = TREE_VALUE (t);
8648 if (value)
8649 value = RECUR (value);
8650 chain = TREE_CHAIN (t);
8651 if (chain && chain != void_type_node)
8652 chain = RECUR (chain);
8653 if (purpose == TREE_PURPOSE (t)
8654 && value == TREE_VALUE (t)
8655 && chain == TREE_CHAIN (t))
8656 return t;
8657 return tree_cons (purpose, value, chain);
8660 case COMPONENT_REF:
8662 tree object;
8663 tree member;
8665 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8666 args, complain, in_decl);
8667 /* Remember that there was a reference to this entity. */
8668 if (DECL_P (object))
8669 mark_used (object);
8671 member = TREE_OPERAND (t, 1);
8672 if (BASELINK_P (member))
8673 member = tsubst_baselink (member,
8674 non_reference (TREE_TYPE (object)),
8675 args, complain, in_decl);
8676 else
8677 member = tsubst_copy (member, args, complain, in_decl);
8679 if (member == error_mark_node)
8680 return error_mark_node;
8681 else if (!CLASS_TYPE_P (TREE_TYPE (object)))
8683 if (TREE_CODE (member) == BIT_NOT_EXPR)
8684 return finish_pseudo_destructor_expr (object,
8685 NULL_TREE,
8686 TREE_TYPE (object));
8687 else if (TREE_CODE (member) == SCOPE_REF
8688 && (TREE_CODE (TREE_OPERAND (member, 1)) == BIT_NOT_EXPR))
8689 return finish_pseudo_destructor_expr (object,
8690 object,
8691 TREE_TYPE (object));
8693 else if (TREE_CODE (member) == SCOPE_REF
8694 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
8696 tree tmpl;
8697 tree args;
8699 /* Lookup the template functions now that we know what the
8700 scope is. */
8701 tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
8702 args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
8703 member = lookup_qualified_name (TREE_OPERAND (member, 0), tmpl,
8704 /*is_type_p=*/false,
8705 /*complain=*/false);
8706 if (BASELINK_P (member))
8708 BASELINK_FUNCTIONS (member)
8709 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
8710 args);
8711 member = (adjust_result_of_qualified_name_lookup
8712 (member, BINFO_TYPE (BASELINK_BINFO (member)),
8713 TREE_TYPE (object)));
8715 else
8717 qualified_name_lookup_error (TREE_TYPE (object), tmpl,
8718 member);
8719 return error_mark_node;
8722 else if (TREE_CODE (member) == SCOPE_REF
8723 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
8724 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
8726 if (complain & tf_error)
8728 if (TYPE_P (TREE_OPERAND (member, 0)))
8729 error ("%qT is not a class or namespace",
8730 TREE_OPERAND (member, 0));
8731 else
8732 error ("%qD is not a class or namespace",
8733 TREE_OPERAND (member, 0));
8735 return error_mark_node;
8737 else if (TREE_CODE (member) == FIELD_DECL)
8738 return finish_non_static_data_member (member, object, NULL_TREE);
8740 return finish_class_member_access_expr (object, member);
8743 case THROW_EXPR:
8744 return build_throw
8745 (RECUR (TREE_OPERAND (t, 0)));
8747 case CONSTRUCTOR:
8749 tree r;
8750 tree elts;
8751 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8752 bool purpose_p;
8754 /* digest_init will do the wrong thing if we let it. */
8755 if (type && TYPE_PTRMEMFUNC_P (type))
8756 return t;
8758 r = NULL_TREE;
8759 /* We do not want to process the purpose of aggregate
8760 initializers as they are identifier nodes which will be
8761 looked up by digest_init. */
8762 purpose_p = !(type && IS_AGGR_TYPE (type));
8763 for (elts = CONSTRUCTOR_ELTS (t);
8764 elts;
8765 elts = TREE_CHAIN (elts))
8767 tree purpose = TREE_PURPOSE (elts);
8768 tree value = TREE_VALUE (elts);
8770 if (purpose && purpose_p)
8771 purpose = RECUR (purpose);
8772 value = RECUR (value);
8773 r = tree_cons (purpose, value, r);
8776 r = build_constructor (NULL_TREE, nreverse (r));
8777 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
8779 if (type)
8780 return digest_init (type, r, 0);
8781 return r;
8784 case TYPEID_EXPR:
8786 tree operand_0 = RECUR (TREE_OPERAND (t, 0));
8787 if (TYPE_P (operand_0))
8788 return get_typeid (operand_0);
8789 return build_typeid (operand_0);
8792 case VAR_DECL:
8793 if (!args)
8794 return t;
8795 /* Fall through */
8797 case PARM_DECL:
8799 tree r = tsubst_copy (t, args, complain, in_decl);
8801 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
8802 /* If the original type was a reference, we'll be wrapped in
8803 the appropriate INDIRECT_REF. */
8804 r = convert_from_reference (r);
8805 return r;
8808 case VA_ARG_EXPR:
8809 return build_x_va_arg (RECUR (TREE_OPERAND (t, 0)),
8810 tsubst_copy (TREE_TYPE (t), args, complain,
8811 in_decl));
8813 case OFFSETOF_EXPR:
8814 return fold_offsetof (RECUR (TREE_OPERAND (t, 0)));
8816 case STMT_EXPR:
8818 tree old_stmt_expr = cur_stmt_expr;
8819 tree stmt_expr = begin_stmt_expr ();
8821 cur_stmt_expr = stmt_expr;
8822 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl);
8823 stmt_expr = finish_stmt_expr (stmt_expr, false);
8824 cur_stmt_expr = old_stmt_expr;
8826 return stmt_expr;
8829 case CONST_DECL:
8830 t = tsubst_copy (t, args, complain, in_decl);
8831 /* As in finish_id_expression, we resolve enumeration constants
8832 to their underlying values. */
8833 if (TREE_CODE (t) == CONST_DECL)
8834 return DECL_INITIAL (t);
8835 return t;
8837 default:
8838 return tsubst_copy (t, args, complain, in_decl);
8841 #undef RECUR
8844 /* Verify that the instantiated ARGS are valid. For type arguments,
8845 make sure that the type's linkage is ok. For non-type arguments,
8846 make sure they are constants if they are integral or enumerations.
8847 Emit an error under control of COMPLAIN, and return TRUE on error. */
8849 static bool
8850 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
8852 int ix, len = DECL_NTPARMS (tmpl);
8853 bool result = false;
8854 bool error_p = complain & tf_error;
8856 for (ix = 0; ix != len; ix++)
8858 tree t = TREE_VEC_ELT (args, ix);
8860 if (TYPE_P (t))
8862 /* [basic.link]: A name with no linkage (notably, the name
8863 of a class or enumeration declared in a local scope)
8864 shall not be used to declare an entity with linkage.
8865 This implies that names with no linkage cannot be used as
8866 template arguments. */
8867 tree nt = no_linkage_check (t, /*relaxed_p=*/false);
8869 if (nt)
8871 if (TYPE_ANONYMOUS_P (nt))
8872 error ("%qT is/uses anonymous type", t);
8873 else
8874 error ("%qT uses local type %qT", t, nt);
8875 result = true;
8876 error_p = true;
8878 /* In order to avoid all sorts of complications, we do not
8879 allow variably-modified types as template arguments. */
8880 else if (variably_modified_type_p (t, NULL_TREE))
8882 if (complain & tf_error)
8883 error ("%qT is a variably modified type", t);
8884 result = true;
8887 /* A non-type argument of integral or enumerated type must be a
8888 constant. */
8889 else if (TREE_TYPE (t)
8890 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
8891 && !TREE_CONSTANT (t))
8893 if (complain & tf_error)
8894 error ("integral expression %qE is not constant", t);
8895 result = true;
8898 if (result && error_p)
8899 error (" trying to instantiate %qD", tmpl);
8900 return result;
8903 /* Instantiate the indicated variable or function template TMPL with
8904 the template arguments in TARG_PTR. */
8906 tree
8907 instantiate_template (tree tmpl, tree targ_ptr, tsubst_flags_t complain)
8909 tree fndecl;
8910 tree gen_tmpl;
8911 tree spec;
8913 if (tmpl == error_mark_node)
8914 return error_mark_node;
8916 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
8918 /* If this function is a clone, handle it specially. */
8919 if (DECL_CLONED_FUNCTION_P (tmpl))
8921 tree spec;
8922 tree clone;
8924 spec = instantiate_template (DECL_CLONED_FUNCTION (tmpl), targ_ptr,
8925 complain);
8926 if (spec == error_mark_node)
8927 return error_mark_node;
8929 /* Look for the clone. */
8930 FOR_EACH_CLONE (clone, spec)
8931 if (DECL_NAME (clone) == DECL_NAME (tmpl))
8932 return clone;
8933 /* We should always have found the clone by now. */
8934 gcc_unreachable ();
8935 return NULL_TREE;
8938 /* Check to see if we already have this specialization. */
8939 spec = retrieve_specialization (tmpl, targ_ptr,
8940 /*class_specializations_p=*/false);
8941 if (spec != NULL_TREE)
8942 return spec;
8944 gen_tmpl = most_general_template (tmpl);
8945 if (tmpl != gen_tmpl)
8947 /* The TMPL is a partial instantiation. To get a full set of
8948 arguments we must add the arguments used to perform the
8949 partial instantiation. */
8950 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
8951 targ_ptr);
8953 /* Check to see if we already have this specialization. */
8954 spec = retrieve_specialization (gen_tmpl, targ_ptr,
8955 /*class_specializations_p=*/false);
8956 if (spec != NULL_TREE)
8957 return spec;
8960 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
8961 complain))
8962 return error_mark_node;
8964 /* We are building a FUNCTION_DECL, during which the access of its
8965 parameters and return types have to be checked. However this
8966 FUNCTION_DECL which is the desired context for access checking
8967 is not built yet. We solve this chicken-and-egg problem by
8968 deferring all checks until we have the FUNCTION_DECL. */
8969 push_deferring_access_checks (dk_deferred);
8971 /* Substitute template parameters. */
8972 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
8973 targ_ptr, complain, gen_tmpl);
8975 /* Now we know the specialization, compute access previously
8976 deferred. */
8977 push_access_scope (fndecl);
8978 perform_deferred_access_checks ();
8979 pop_access_scope (fndecl);
8980 pop_deferring_access_checks ();
8982 /* The DECL_TI_TEMPLATE should always be the immediate parent
8983 template, not the most general template. */
8984 DECL_TI_TEMPLATE (fndecl) = tmpl;
8986 /* If we've just instantiated the main entry point for a function,
8987 instantiate all the alternate entry points as well. We do this
8988 by cloning the instantiation of the main entry point, not by
8989 instantiating the template clones. */
8990 if (TREE_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (TREE_CHAIN (gen_tmpl)))
8991 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
8993 return fndecl;
8996 /* The FN is a TEMPLATE_DECL for a function. The ARGS are the
8997 arguments that are being used when calling it. TARGS is a vector
8998 into which the deduced template arguments are placed.
9000 Return zero for success, 2 for an incomplete match that doesn't resolve
9001 all the types, and 1 for complete failure. An error message will be
9002 printed only for an incomplete match.
9004 If FN is a conversion operator, or we are trying to produce a specific
9005 specialization, RETURN_TYPE is the return type desired.
9007 The EXPLICIT_TARGS are explicit template arguments provided via a
9008 template-id.
9010 The parameter STRICT is one of:
9012 DEDUCE_CALL:
9013 We are deducing arguments for a function call, as in
9014 [temp.deduct.call].
9016 DEDUCE_CONV:
9017 We are deducing arguments for a conversion function, as in
9018 [temp.deduct.conv].
9020 DEDUCE_EXACT:
9021 We are deducing arguments when doing an explicit instantiation
9022 as in [temp.explicit], when determining an explicit specialization
9023 as in [temp.expl.spec], or when taking the address of a function
9024 template, as in [temp.deduct.funcaddr].
9026 DEDUCE_ORDER:
9027 We are deducing arguments when calculating the partial
9028 ordering between specializations of function or class
9029 templates, as in [temp.func.order] and [temp.class.order].
9031 LEN is the number of parms to consider before returning success, or -1
9032 for all. This is used in partial ordering to avoid comparing parms for
9033 which no actual argument was passed, since they are not considered in
9034 overload resolution (and are explicitly excluded from consideration in
9035 partial ordering in [temp.func.order]/6). */
9038 fn_type_unification (tree fn,
9039 tree explicit_targs,
9040 tree targs,
9041 tree args,
9042 tree return_type,
9043 unification_kind_t strict,
9044 int len)
9046 tree parms;
9047 tree fntype;
9048 int result;
9050 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
9052 fntype = TREE_TYPE (fn);
9053 if (explicit_targs)
9055 /* [temp.deduct]
9057 The specified template arguments must match the template
9058 parameters in kind (i.e., type, nontype, template), and there
9059 must not be more arguments than there are parameters;
9060 otherwise type deduction fails.
9062 Nontype arguments must match the types of the corresponding
9063 nontype template parameters, or must be convertible to the
9064 types of the corresponding nontype parameters as specified in
9065 _temp.arg.nontype_, otherwise type deduction fails.
9067 All references in the function type of the function template
9068 to the corresponding template parameters are replaced by the
9069 specified template argument values. If a substitution in a
9070 template parameter or in the function type of the function
9071 template results in an invalid type, type deduction fails. */
9072 int i;
9073 tree converted_args;
9074 bool incomplete;
9076 if (explicit_targs == error_mark_node)
9077 return 1;
9079 converted_args
9080 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
9081 explicit_targs, NULL_TREE, tf_none,
9082 /*require_all_arguments=*/0));
9083 if (converted_args == error_mark_node)
9084 return 1;
9086 /* Substitute the explicit args into the function type. This is
9087 necessary so that, for instance, explicitly declared function
9088 arguments can match null pointed constants. If we were given
9089 an incomplete set of explicit args, we must not do semantic
9090 processing during substitution as we could create partial
9091 instantiations. */
9092 incomplete = NUM_TMPL_ARGS (explicit_targs) != NUM_TMPL_ARGS (targs);
9093 processing_template_decl += incomplete;
9094 fntype = tsubst (fntype, converted_args, tf_none, NULL_TREE);
9095 processing_template_decl -= incomplete;
9097 if (fntype == error_mark_node)
9098 return 1;
9100 /* Place the explicitly specified arguments in TARGS. */
9101 for (i = NUM_TMPL_ARGS (converted_args); i--;)
9102 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
9105 parms = TYPE_ARG_TYPES (fntype);
9106 /* Never do unification on the 'this' parameter. */
9107 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
9108 parms = TREE_CHAIN (parms);
9110 if (return_type)
9112 /* We've been given a return type to match, prepend it. */
9113 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
9114 args = tree_cons (NULL_TREE, return_type, args);
9115 if (len >= 0)
9116 ++len;
9119 /* We allow incomplete unification without an error message here
9120 because the standard doesn't seem to explicitly prohibit it. Our
9121 callers must be ready to deal with unification failures in any
9122 event. */
9123 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
9124 targs, parms, args, /*subr=*/0,
9125 strict, /*allow_incomplete*/1, len);
9127 if (result == 0)
9128 /* All is well so far. Now, check:
9130 [temp.deduct]
9132 When all template arguments have been deduced, all uses of
9133 template parameters in nondeduced contexts are replaced with
9134 the corresponding deduced argument values. If the
9135 substitution results in an invalid type, as described above,
9136 type deduction fails. */
9137 if (tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE)
9138 == error_mark_node)
9139 return 1;
9141 return result;
9144 /* Adjust types before performing type deduction, as described in
9145 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
9146 sections are symmetric. PARM is the type of a function parameter
9147 or the return type of the conversion function. ARG is the type of
9148 the argument passed to the call, or the type of the value
9149 initialized with the result of the conversion function. */
9151 static int
9152 maybe_adjust_types_for_deduction (unification_kind_t strict,
9153 tree* parm,
9154 tree* arg)
9156 int result = 0;
9158 switch (strict)
9160 case DEDUCE_CALL:
9161 break;
9163 case DEDUCE_CONV:
9165 /* Swap PARM and ARG throughout the remainder of this
9166 function; the handling is precisely symmetric since PARM
9167 will initialize ARG rather than vice versa. */
9168 tree* temp = parm;
9169 parm = arg;
9170 arg = temp;
9171 break;
9174 case DEDUCE_EXACT:
9175 /* There is nothing to do in this case. */
9176 return 0;
9178 case DEDUCE_ORDER:
9179 /* DR 214. [temp.func.order] is underspecified, and leads to no
9180 ordering between things like `T *' and `T const &' for `U *'.
9181 The former has T=U and the latter T=U*. The former looks more
9182 specialized and John Spicer considers it well-formed (the EDG
9183 compiler accepts it).
9185 John also confirms that deduction should proceed as in a function
9186 call. Which implies the usual ARG and PARM conversions as DEDUCE_CALL.
9187 However, in ordering, ARG can have REFERENCE_TYPE, but no argument
9188 to an actual call can have such a type.
9190 If both ARG and PARM are REFERENCE_TYPE, we change neither.
9191 If only ARG is a REFERENCE_TYPE, we look through that and then
9192 proceed as with DEDUCE_CALL (which could further convert it). */
9193 if (TREE_CODE (*arg) == REFERENCE_TYPE)
9195 if (TREE_CODE (*parm) == REFERENCE_TYPE)
9196 return 0;
9197 *arg = TREE_TYPE (*arg);
9199 break;
9200 default:
9201 gcc_unreachable ();
9204 if (TREE_CODE (*parm) != REFERENCE_TYPE)
9206 /* [temp.deduct.call]
9208 If P is not a reference type:
9210 --If A is an array type, the pointer type produced by the
9211 array-to-pointer standard conversion (_conv.array_) is
9212 used in place of A for type deduction; otherwise,
9214 --If A is a function type, the pointer type produced by
9215 the function-to-pointer standard conversion
9216 (_conv.func_) is used in place of A for type deduction;
9217 otherwise,
9219 --If A is a cv-qualified type, the top level
9220 cv-qualifiers of A's type are ignored for type
9221 deduction. */
9222 if (TREE_CODE (*arg) == ARRAY_TYPE)
9223 *arg = build_pointer_type (TREE_TYPE (*arg));
9224 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
9225 *arg = build_pointer_type (*arg);
9226 else
9227 *arg = TYPE_MAIN_VARIANT (*arg);
9230 /* [temp.deduct.call]
9232 If P is a cv-qualified type, the top level cv-qualifiers
9233 of P's type are ignored for type deduction. If P is a
9234 reference type, the type referred to by P is used for
9235 type deduction. */
9236 *parm = TYPE_MAIN_VARIANT (*parm);
9237 if (TREE_CODE (*parm) == REFERENCE_TYPE)
9239 *parm = TREE_TYPE (*parm);
9240 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
9243 /* DR 322. For conversion deduction, remove a reference type on parm
9244 too (which has been swapped into ARG). */
9245 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
9246 *arg = TREE_TYPE (*arg);
9248 return result;
9251 /* Most parms like fn_type_unification.
9253 If SUBR is 1, we're being called recursively (to unify the
9254 arguments of a function or method parameter of a function
9255 template). */
9257 static int
9258 type_unification_real (tree tparms,
9259 tree targs,
9260 tree xparms,
9261 tree xargs,
9262 int subr,
9263 unification_kind_t strict,
9264 int allow_incomplete,
9265 int xlen)
9267 tree parm, arg;
9268 int i;
9269 int ntparms = TREE_VEC_LENGTH (tparms);
9270 int sub_strict;
9271 int saw_undeduced = 0;
9272 tree parms, args;
9273 int len;
9275 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
9276 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
9277 gcc_assert (!xargs || TREE_CODE (xargs) == TREE_LIST);
9278 gcc_assert (ntparms > 0);
9280 switch (strict)
9282 case DEDUCE_CALL:
9283 sub_strict = (UNIFY_ALLOW_OUTER_LEVEL | UNIFY_ALLOW_MORE_CV_QUAL
9284 | UNIFY_ALLOW_DERIVED);
9285 break;
9287 case DEDUCE_CONV:
9288 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
9289 break;
9291 case DEDUCE_EXACT:
9292 sub_strict = UNIFY_ALLOW_NONE;
9293 break;
9295 case DEDUCE_ORDER:
9296 sub_strict = UNIFY_ALLOW_NONE;
9297 break;
9299 default:
9300 gcc_unreachable ();
9303 if (xlen == 0)
9304 return 0;
9306 again:
9307 parms = xparms;
9308 args = xargs;
9309 len = xlen;
9311 while (parms
9312 && parms != void_list_node
9313 && args
9314 && args != void_list_node)
9316 parm = TREE_VALUE (parms);
9317 parms = TREE_CHAIN (parms);
9318 arg = TREE_VALUE (args);
9319 args = TREE_CHAIN (args);
9321 if (arg == error_mark_node)
9322 return 1;
9323 if (arg == unknown_type_node)
9324 /* We can't deduce anything from this, but we might get all the
9325 template args from other function args. */
9326 continue;
9328 /* Conversions will be performed on a function argument that
9329 corresponds with a function parameter that contains only
9330 non-deducible template parameters and explicitly specified
9331 template parameters. */
9332 if (!uses_template_parms (parm))
9334 tree type;
9336 if (!TYPE_P (arg))
9337 type = TREE_TYPE (arg);
9338 else
9339 type = arg;
9341 if (strict == DEDUCE_EXACT || strict == DEDUCE_ORDER)
9343 if (same_type_p (parm, type))
9344 continue;
9346 else
9347 /* It might work; we shouldn't check now, because we might
9348 get into infinite recursion. Overload resolution will
9349 handle it. */
9350 continue;
9352 return 1;
9355 if (!TYPE_P (arg))
9357 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
9358 if (type_unknown_p (arg))
9360 /* [temp.deduct.type] A template-argument can be deduced from
9361 a pointer to function or pointer to member function
9362 argument if the set of overloaded functions does not
9363 contain function templates and at most one of a set of
9364 overloaded functions provides a unique match. */
9366 if (resolve_overloaded_unification
9367 (tparms, targs, parm, arg, strict, sub_strict)
9368 != 0)
9369 return 1;
9370 continue;
9372 arg = TREE_TYPE (arg);
9373 if (arg == error_mark_node)
9374 return 1;
9378 int arg_strict = sub_strict;
9380 if (!subr)
9381 arg_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg);
9383 if (unify (tparms, targs, parm, arg, arg_strict))
9384 return 1;
9387 /* Are we done with the interesting parms? */
9388 if (--len == 0)
9389 goto done;
9391 /* Fail if we've reached the end of the parm list, and more args
9392 are present, and the parm list isn't variadic. */
9393 if (args && args != void_list_node && parms == void_list_node)
9394 return 1;
9395 /* Fail if parms are left and they don't have default values. */
9396 if (parms
9397 && parms != void_list_node
9398 && TREE_PURPOSE (parms) == NULL_TREE)
9399 return 1;
9401 done:
9402 if (!subr)
9403 for (i = 0; i < ntparms; i++)
9404 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
9406 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
9408 /* If this is an undeduced nontype parameter that depends on
9409 a type parameter, try another pass; its type may have been
9410 deduced from a later argument than the one from which
9411 this parameter can be deduced. */
9412 if (TREE_CODE (tparm) == PARM_DECL
9413 && uses_template_parms (TREE_TYPE (tparm))
9414 && !saw_undeduced++)
9415 goto again;
9417 if (!allow_incomplete)
9418 error ("incomplete type unification");
9419 return 2;
9421 return 0;
9424 /* Subroutine of type_unification_real. Args are like the variables at the
9425 call site. ARG is an overloaded function (or template-id); we try
9426 deducing template args from each of the overloads, and if only one
9427 succeeds, we go with that. Modifies TARGS and returns 0 on success. */
9429 static int
9430 resolve_overloaded_unification (tree tparms,
9431 tree targs,
9432 tree parm,
9433 tree arg,
9434 unification_kind_t strict,
9435 int sub_strict)
9437 tree tempargs = copy_node (targs);
9438 int good = 0;
9439 bool addr_p;
9441 if (TREE_CODE (arg) == ADDR_EXPR)
9443 arg = TREE_OPERAND (arg, 0);
9444 addr_p = true;
9446 else
9447 addr_p = false;
9449 if (TREE_CODE (arg) == COMPONENT_REF)
9450 /* Handle `&x' where `x' is some static or non-static member
9451 function name. */
9452 arg = TREE_OPERAND (arg, 1);
9454 if (TREE_CODE (arg) == OFFSET_REF)
9455 arg = TREE_OPERAND (arg, 1);
9457 /* Strip baselink information. */
9458 if (BASELINK_P (arg))
9459 arg = BASELINK_FUNCTIONS (arg);
9461 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
9463 /* If we got some explicit template args, we need to plug them into
9464 the affected templates before we try to unify, in case the
9465 explicit args will completely resolve the templates in question. */
9467 tree expl_subargs = TREE_OPERAND (arg, 1);
9468 arg = TREE_OPERAND (arg, 0);
9470 for (; arg; arg = OVL_NEXT (arg))
9472 tree fn = OVL_CURRENT (arg);
9473 tree subargs, elem;
9475 if (TREE_CODE (fn) != TEMPLATE_DECL)
9476 continue;
9478 subargs = get_bindings_overload (fn, DECL_TEMPLATE_RESULT (fn),
9479 expl_subargs);
9480 if (subargs)
9482 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
9483 good += try_one_overload (tparms, targs, tempargs, parm,
9484 elem, strict, sub_strict, addr_p);
9488 else
9490 gcc_assert (TREE_CODE (arg) == OVERLOAD
9491 || TREE_CODE (arg) == FUNCTION_DECL);
9493 for (; arg; arg = OVL_NEXT (arg))
9494 good += try_one_overload (tparms, targs, tempargs, parm,
9495 TREE_TYPE (OVL_CURRENT (arg)),
9496 strict, sub_strict, addr_p);
9499 /* [temp.deduct.type] A template-argument can be deduced from a pointer
9500 to function or pointer to member function argument if the set of
9501 overloaded functions does not contain function templates and at most
9502 one of a set of overloaded functions provides a unique match.
9504 So if we found multiple possibilities, we return success but don't
9505 deduce anything. */
9507 if (good == 1)
9509 int i = TREE_VEC_LENGTH (targs);
9510 for (; i--; )
9511 if (TREE_VEC_ELT (tempargs, i))
9512 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
9514 if (good)
9515 return 0;
9517 return 1;
9520 /* Subroutine of resolve_overloaded_unification; does deduction for a single
9521 overload. Fills TARGS with any deduced arguments, or error_mark_node if
9522 different overloads deduce different arguments for a given parm.
9523 ADDR_P is true if the expression for which deduction is being
9524 performed was of the form "& fn" rather than simply "fn".
9526 Returns 1 on success. */
9528 static int
9529 try_one_overload (tree tparms,
9530 tree orig_targs,
9531 tree targs,
9532 tree parm,
9533 tree arg,
9534 unification_kind_t strict,
9535 int sub_strict,
9536 bool addr_p)
9538 int nargs;
9539 tree tempargs;
9540 int i;
9542 /* [temp.deduct.type] A template-argument can be deduced from a pointer
9543 to function or pointer to member function argument if the set of
9544 overloaded functions does not contain function templates and at most
9545 one of a set of overloaded functions provides a unique match.
9547 So if this is a template, just return success. */
9549 if (uses_template_parms (arg))
9550 return 1;
9552 if (TREE_CODE (arg) == METHOD_TYPE)
9553 arg = build_ptrmemfunc_type (build_pointer_type (arg));
9554 else if (addr_p)
9555 arg = build_pointer_type (arg);
9557 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg);
9559 /* We don't copy orig_targs for this because if we have already deduced
9560 some template args from previous args, unify would complain when we
9561 try to deduce a template parameter for the same argument, even though
9562 there isn't really a conflict. */
9563 nargs = TREE_VEC_LENGTH (targs);
9564 tempargs = make_tree_vec (nargs);
9566 if (unify (tparms, tempargs, parm, arg, sub_strict) != 0)
9567 return 0;
9569 /* First make sure we didn't deduce anything that conflicts with
9570 explicitly specified args. */
9571 for (i = nargs; i--; )
9573 tree elt = TREE_VEC_ELT (tempargs, i);
9574 tree oldelt = TREE_VEC_ELT (orig_targs, i);
9576 if (elt == NULL_TREE)
9577 continue;
9578 else if (uses_template_parms (elt))
9580 /* Since we're unifying against ourselves, we will fill in template
9581 args used in the function parm list with our own template parms.
9582 Discard them. */
9583 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
9584 continue;
9586 else if (oldelt && ! template_args_equal (oldelt, elt))
9587 return 0;
9590 for (i = nargs; i--; )
9592 tree elt = TREE_VEC_ELT (tempargs, i);
9594 if (elt)
9595 TREE_VEC_ELT (targs, i) = elt;
9598 return 1;
9601 /* Verify that nondeduce template argument agrees with the type
9602 obtained from argument deduction. Return nonzero if the
9603 verification fails.
9605 For example:
9607 struct A { typedef int X; };
9608 template <class T, class U> struct C {};
9609 template <class T> struct C<T, typename T::X> {};
9611 Then with the instantiation `C<A, int>', we can deduce that
9612 `T' is `A' but unify () does not check whether `typename T::X'
9613 is `int'. This function ensure that they agree.
9615 TARGS, PARMS are the same as the arguments of unify.
9616 ARGS contains template arguments from all levels. */
9618 static int
9619 verify_class_unification (tree targs, tree parms, tree args)
9621 parms = tsubst (parms, add_outermost_template_args (args, targs),
9622 tf_none, NULL_TREE);
9623 if (parms == error_mark_node)
9624 return 1;
9626 return !comp_template_args (parms, INNERMOST_TEMPLATE_ARGS (args));
9629 /* PARM is a template class (perhaps with unbound template
9630 parameters). ARG is a fully instantiated type. If ARG can be
9631 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
9632 TARGS are as for unify. */
9634 static tree
9635 try_class_unification (tree tparms, tree targs, tree parm, tree arg)
9637 tree copy_of_targs;
9639 if (!CLASSTYPE_TEMPLATE_INFO (arg)
9640 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
9641 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
9642 return NULL_TREE;
9644 /* We need to make a new template argument vector for the call to
9645 unify. If we used TARGS, we'd clutter it up with the result of
9646 the attempted unification, even if this class didn't work out.
9647 We also don't want to commit ourselves to all the unifications
9648 we've already done, since unification is supposed to be done on
9649 an argument-by-argument basis. In other words, consider the
9650 following pathological case:
9652 template <int I, int J, int K>
9653 struct S {};
9655 template <int I, int J>
9656 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
9658 template <int I, int J, int K>
9659 void f(S<I, J, K>, S<I, I, I>);
9661 void g() {
9662 S<0, 0, 0> s0;
9663 S<0, 1, 2> s2;
9665 f(s0, s2);
9668 Now, by the time we consider the unification involving `s2', we
9669 already know that we must have `f<0, 0, 0>'. But, even though
9670 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
9671 because there are two ways to unify base classes of S<0, 1, 2>
9672 with S<I, I, I>. If we kept the already deduced knowledge, we
9673 would reject the possibility I=1. */
9674 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
9676 /* If unification failed, we're done. */
9677 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
9678 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE))
9679 return NULL_TREE;
9681 return arg;
9684 /* Given a template type PARM and a class type ARG, find the unique
9685 base type in ARG that is an instance of PARM. We do not examine
9686 ARG itself; only its base-classes. If there is not exactly one
9687 appropriate base class, return NULL_TREE. PARM may be the type of
9688 a partial specialization, as well as a plain template type. Used
9689 by unify. */
9691 static tree
9692 get_template_base (tree tparms, tree targs, tree parm, tree arg)
9694 tree rval = NULL_TREE;
9695 tree binfo;
9697 gcc_assert (IS_AGGR_TYPE_CODE (TREE_CODE (arg)));
9699 binfo = TYPE_BINFO (complete_type (arg));
9700 if (!binfo)
9701 /* The type could not be completed. */
9702 return NULL_TREE;
9704 /* Walk in inheritance graph order. The search order is not
9705 important, and this avoids multiple walks of virtual bases. */
9706 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
9708 tree r = try_class_unification (tparms, targs, parm, BINFO_TYPE (binfo));
9710 if (r)
9712 /* If there is more than one satisfactory baseclass, then:
9714 [temp.deduct.call]
9716 If they yield more than one possible deduced A, the type
9717 deduction fails.
9719 applies. */
9720 if (rval && !same_type_p (r, rval))
9721 return NULL_TREE;
9723 rval = r;
9727 return rval;
9730 /* Returns the level of DECL, which declares a template parameter. */
9732 static int
9733 template_decl_level (tree decl)
9735 switch (TREE_CODE (decl))
9737 case TYPE_DECL:
9738 case TEMPLATE_DECL:
9739 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
9741 case PARM_DECL:
9742 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
9744 default:
9745 gcc_unreachable ();
9747 return 0;
9750 /* Decide whether ARG can be unified with PARM, considering only the
9751 cv-qualifiers of each type, given STRICT as documented for unify.
9752 Returns nonzero iff the unification is OK on that basis. */
9754 static int
9755 check_cv_quals_for_unify (int strict, tree arg, tree parm)
9757 int arg_quals = cp_type_quals (arg);
9758 int parm_quals = cp_type_quals (parm);
9760 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
9761 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
9763 /* Although a CVR qualifier is ignored when being applied to a
9764 substituted template parameter ([8.3.2]/1 for example), that
9765 does not apply during deduction [14.8.2.4]/1, (even though
9766 that is not explicitly mentioned, [14.8.2.4]/9 indicates
9767 this). Except when we're allowing additional CV qualifiers
9768 at the outer level [14.8.2.1]/3,1st bullet. */
9769 if ((TREE_CODE (arg) == REFERENCE_TYPE
9770 || TREE_CODE (arg) == FUNCTION_TYPE
9771 || TREE_CODE (arg) == METHOD_TYPE)
9772 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
9773 return 0;
9775 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
9776 && (parm_quals & TYPE_QUAL_RESTRICT))
9777 return 0;
9780 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
9781 && (arg_quals & parm_quals) != parm_quals)
9782 return 0;
9784 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
9785 && (parm_quals & arg_quals) != arg_quals)
9786 return 0;
9788 return 1;
9791 /* Takes parameters as for type_unification. Returns 0 if the
9792 type deduction succeeds, 1 otherwise. The parameter STRICT is a
9793 bitwise or of the following flags:
9795 UNIFY_ALLOW_NONE:
9796 Require an exact match between PARM and ARG.
9797 UNIFY_ALLOW_MORE_CV_QUAL:
9798 Allow the deduced ARG to be more cv-qualified (by qualification
9799 conversion) than ARG.
9800 UNIFY_ALLOW_LESS_CV_QUAL:
9801 Allow the deduced ARG to be less cv-qualified than ARG.
9802 UNIFY_ALLOW_DERIVED:
9803 Allow the deduced ARG to be a template base class of ARG,
9804 or a pointer to a template base class of the type pointed to by
9805 ARG.
9806 UNIFY_ALLOW_INTEGER:
9807 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
9808 case for more information.
9809 UNIFY_ALLOW_OUTER_LEVEL:
9810 This is the outermost level of a deduction. Used to determine validity
9811 of qualification conversions. A valid qualification conversion must
9812 have const qualified pointers leading up to the inner type which
9813 requires additional CV quals, except at the outer level, where const
9814 is not required [conv.qual]. It would be normal to set this flag in
9815 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
9816 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
9817 This is the outermost level of a deduction, and PARM can be more CV
9818 qualified at this point.
9819 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
9820 This is the outermost level of a deduction, and PARM can be less CV
9821 qualified at this point. */
9823 static int
9824 unify (tree tparms, tree targs, tree parm, tree arg, int strict)
9826 int idx;
9827 tree targ;
9828 tree tparm;
9829 int strict_in = strict;
9831 /* I don't think this will do the right thing with respect to types.
9832 But the only case I've seen it in so far has been array bounds, where
9833 signedness is the only information lost, and I think that will be
9834 okay. */
9835 while (TREE_CODE (parm) == NOP_EXPR)
9836 parm = TREE_OPERAND (parm, 0);
9838 if (arg == error_mark_node)
9839 return 1;
9840 if (arg == unknown_type_node)
9841 /* We can't deduce anything from this, but we might get all the
9842 template args from other function args. */
9843 return 0;
9845 /* If PARM uses template parameters, then we can't bail out here,
9846 even if ARG == PARM, since we won't record unifications for the
9847 template parameters. We might need them if we're trying to
9848 figure out which of two things is more specialized. */
9849 if (arg == parm && !uses_template_parms (parm))
9850 return 0;
9852 /* Immediately reject some pairs that won't unify because of
9853 cv-qualification mismatches. */
9854 if (TREE_CODE (arg) == TREE_CODE (parm)
9855 && TYPE_P (arg)
9856 /* It is the elements of the array which hold the cv quals of an array
9857 type, and the elements might be template type parms. We'll check
9858 when we recurse. */
9859 && TREE_CODE (arg) != ARRAY_TYPE
9860 /* We check the cv-qualifiers when unifying with template type
9861 parameters below. We want to allow ARG `const T' to unify with
9862 PARM `T' for example, when computing which of two templates
9863 is more specialized, for example. */
9864 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
9865 && !check_cv_quals_for_unify (strict_in, arg, parm))
9866 return 1;
9868 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
9869 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
9870 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
9871 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
9872 strict &= ~UNIFY_ALLOW_DERIVED;
9873 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
9874 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
9876 switch (TREE_CODE (parm))
9878 case TYPENAME_TYPE:
9879 case SCOPE_REF:
9880 case UNBOUND_CLASS_TEMPLATE:
9881 /* In a type which contains a nested-name-specifier, template
9882 argument values cannot be deduced for template parameters used
9883 within the nested-name-specifier. */
9884 return 0;
9886 case TEMPLATE_TYPE_PARM:
9887 case TEMPLATE_TEMPLATE_PARM:
9888 case BOUND_TEMPLATE_TEMPLATE_PARM:
9889 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
9891 if (TEMPLATE_TYPE_LEVEL (parm)
9892 != template_decl_level (tparm))
9893 /* The PARM is not one we're trying to unify. Just check
9894 to see if it matches ARG. */
9895 return (TREE_CODE (arg) == TREE_CODE (parm)
9896 && same_type_p (parm, arg)) ? 0 : 1;
9897 idx = TEMPLATE_TYPE_IDX (parm);
9898 targ = TREE_VEC_ELT (targs, idx);
9899 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
9901 /* Check for mixed types and values. */
9902 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
9903 && TREE_CODE (tparm) != TYPE_DECL)
9904 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
9905 && TREE_CODE (tparm) != TEMPLATE_DECL))
9906 return 1;
9908 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
9910 /* ARG must be constructed from a template class or a template
9911 template parameter. */
9912 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
9913 && (TREE_CODE (arg) != RECORD_TYPE || !CLASSTYPE_TEMPLATE_INFO (arg)))
9914 return 1;
9917 tree parmtmpl = TYPE_TI_TEMPLATE (parm);
9918 tree parmvec = TYPE_TI_ARGS (parm);
9919 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
9920 tree argtmplvec
9921 = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_TI_TEMPLATE (arg));
9922 int i;
9924 /* The parameter and argument roles have to be switched here
9925 in order to handle default arguments properly. For example,
9926 template<template <class> class TT> void f(TT<int>)
9927 should be able to accept vector<int> which comes from
9928 template <class T, class Allocator = allocator>
9929 class vector. */
9931 if (coerce_template_parms (argtmplvec, parmvec, parmtmpl, 0, 1)
9932 == error_mark_node)
9933 return 1;
9935 /* Deduce arguments T, i from TT<T> or TT<i>.
9936 We check each element of PARMVEC and ARGVEC individually
9937 rather than the whole TREE_VEC since they can have
9938 different number of elements. */
9940 for (i = 0; i < TREE_VEC_LENGTH (parmvec); ++i)
9942 if (unify (tparms, targs,
9943 TREE_VEC_ELT (parmvec, i),
9944 TREE_VEC_ELT (argvec, i),
9945 UNIFY_ALLOW_NONE))
9946 return 1;
9949 arg = TYPE_TI_TEMPLATE (arg);
9951 /* Fall through to deduce template name. */
9954 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
9955 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
9957 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
9959 /* Simple cases: Value already set, does match or doesn't. */
9960 if (targ != NULL_TREE && template_args_equal (targ, arg))
9961 return 0;
9962 else if (targ)
9963 return 1;
9965 else
9967 /* If PARM is `const T' and ARG is only `int', we don't have
9968 a match unless we are allowing additional qualification.
9969 If ARG is `const int' and PARM is just `T' that's OK;
9970 that binds `const int' to `T'. */
9971 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
9972 arg, parm))
9973 return 1;
9975 /* Consider the case where ARG is `const volatile int' and
9976 PARM is `const T'. Then, T should be `volatile int'. */
9977 arg = cp_build_qualified_type_real
9978 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
9979 if (arg == error_mark_node)
9980 return 1;
9982 /* Simple cases: Value already set, does match or doesn't. */
9983 if (targ != NULL_TREE && same_type_p (targ, arg))
9984 return 0;
9985 else if (targ)
9986 return 1;
9988 /* Make sure that ARG is not a variable-sized array. (Note
9989 that were talking about variable-sized arrays (like
9990 `int[n]'), rather than arrays of unknown size (like
9991 `int[]').) We'll get very confused by such a type since
9992 the bound of the array will not be computable in an
9993 instantiation. Besides, such types are not allowed in
9994 ISO C++, so we can do as we please here. */
9995 if (variably_modified_type_p (arg, NULL_TREE))
9996 return 1;
9999 TREE_VEC_ELT (targs, idx) = arg;
10000 return 0;
10002 case TEMPLATE_PARM_INDEX:
10003 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
10005 if (TEMPLATE_PARM_LEVEL (parm)
10006 != template_decl_level (tparm))
10007 /* The PARM is not one we're trying to unify. Just check
10008 to see if it matches ARG. */
10009 return !(TREE_CODE (arg) == TREE_CODE (parm)
10010 && cp_tree_equal (parm, arg));
10012 idx = TEMPLATE_PARM_IDX (parm);
10013 targ = TREE_VEC_ELT (targs, idx);
10015 if (targ)
10016 return !cp_tree_equal (targ, arg);
10018 /* [temp.deduct.type] If, in the declaration of a function template
10019 with a non-type template-parameter, the non-type
10020 template-parameter is used in an expression in the function
10021 parameter-list and, if the corresponding template-argument is
10022 deduced, the template-argument type shall match the type of the
10023 template-parameter exactly, except that a template-argument
10024 deduced from an array bound may be of any integral type.
10025 The non-type parameter might use already deduced type parameters. */
10026 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
10027 if (!TREE_TYPE (arg))
10028 /* Template-parameter dependent expression. Just accept it for now.
10029 It will later be processed in convert_template_argument. */
10031 else if (same_type_p (TREE_TYPE (arg), tparm))
10032 /* OK */;
10033 else if ((strict & UNIFY_ALLOW_INTEGER)
10034 && (TREE_CODE (tparm) == INTEGER_TYPE
10035 || TREE_CODE (tparm) == BOOLEAN_TYPE))
10036 /* Convert the ARG to the type of PARM; the deduced non-type
10037 template argument must exactly match the types of the
10038 corresponding parameter. */
10039 arg = fold (build_nop (TREE_TYPE (parm), arg));
10040 else if (uses_template_parms (tparm))
10041 /* We haven't deduced the type of this parameter yet. Try again
10042 later. */
10043 return 0;
10044 else
10045 return 1;
10047 TREE_VEC_ELT (targs, idx) = arg;
10048 return 0;
10050 case PTRMEM_CST:
10052 /* A pointer-to-member constant can be unified only with
10053 another constant. */
10054 if (TREE_CODE (arg) != PTRMEM_CST)
10055 return 1;
10057 /* Just unify the class member. It would be useless (and possibly
10058 wrong, depending on the strict flags) to unify also
10059 PTRMEM_CST_CLASS, because we want to be sure that both parm and
10060 arg refer to the same variable, even if through different
10061 classes. For instance:
10063 struct A { int x; };
10064 struct B : A { };
10066 Unification of &A::x and &B::x must succeed. */
10067 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
10068 PTRMEM_CST_MEMBER (arg), strict);
10071 case POINTER_TYPE:
10073 if (TREE_CODE (arg) != POINTER_TYPE)
10074 return 1;
10076 /* [temp.deduct.call]
10078 A can be another pointer or pointer to member type that can
10079 be converted to the deduced A via a qualification
10080 conversion (_conv.qual_).
10082 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
10083 This will allow for additional cv-qualification of the
10084 pointed-to types if appropriate. */
10086 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
10087 /* The derived-to-base conversion only persists through one
10088 level of pointers. */
10089 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
10091 return unify (tparms, targs, TREE_TYPE (parm),
10092 TREE_TYPE (arg), strict);
10095 case REFERENCE_TYPE:
10096 if (TREE_CODE (arg) != REFERENCE_TYPE)
10097 return 1;
10098 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
10099 strict & UNIFY_ALLOW_MORE_CV_QUAL);
10101 case ARRAY_TYPE:
10102 if (TREE_CODE (arg) != ARRAY_TYPE)
10103 return 1;
10104 if ((TYPE_DOMAIN (parm) == NULL_TREE)
10105 != (TYPE_DOMAIN (arg) == NULL_TREE))
10106 return 1;
10107 if (TYPE_DOMAIN (parm) != NULL_TREE)
10109 tree parm_max;
10110 tree arg_max;
10112 parm_max = TYPE_MAX_VALUE (TYPE_DOMAIN (parm));
10113 arg_max = TYPE_MAX_VALUE (TYPE_DOMAIN (arg));
10115 /* Our representation of array types uses "N - 1" as the
10116 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
10117 not an integer constant. */
10118 if (TREE_CODE (parm_max) == MINUS_EXPR)
10120 arg_max = fold (build2 (PLUS_EXPR,
10121 integer_type_node,
10122 arg_max,
10123 TREE_OPERAND (parm_max, 1)));
10124 parm_max = TREE_OPERAND (parm_max, 0);
10127 if (unify (tparms, targs, parm_max, arg_max, UNIFY_ALLOW_INTEGER))
10128 return 1;
10130 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
10131 strict & UNIFY_ALLOW_MORE_CV_QUAL);
10133 case REAL_TYPE:
10134 case COMPLEX_TYPE:
10135 case VECTOR_TYPE:
10136 case INTEGER_TYPE:
10137 case BOOLEAN_TYPE:
10138 case ENUMERAL_TYPE:
10139 case VOID_TYPE:
10140 if (TREE_CODE (arg) != TREE_CODE (parm))
10141 return 1;
10143 /* We have already checked cv-qualification at the top of the
10144 function. */
10145 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
10146 return 1;
10148 /* As far as unification is concerned, this wins. Later checks
10149 will invalidate it if necessary. */
10150 return 0;
10152 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
10153 /* Type INTEGER_CST can come from ordinary constant template args. */
10154 case INTEGER_CST:
10155 while (TREE_CODE (arg) == NOP_EXPR)
10156 arg = TREE_OPERAND (arg, 0);
10158 if (TREE_CODE (arg) != INTEGER_CST)
10159 return 1;
10160 return !tree_int_cst_equal (parm, arg);
10162 case TREE_VEC:
10164 int i;
10165 if (TREE_CODE (arg) != TREE_VEC)
10166 return 1;
10167 if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
10168 return 1;
10169 for (i = 0; i < TREE_VEC_LENGTH (parm); ++i)
10170 if (unify (tparms, targs,
10171 TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
10172 UNIFY_ALLOW_NONE))
10173 return 1;
10174 return 0;
10177 case RECORD_TYPE:
10178 case UNION_TYPE:
10179 if (TREE_CODE (arg) != TREE_CODE (parm))
10180 return 1;
10182 if (TYPE_PTRMEMFUNC_P (parm))
10184 if (!TYPE_PTRMEMFUNC_P (arg))
10185 return 1;
10187 return unify (tparms, targs,
10188 TYPE_PTRMEMFUNC_FN_TYPE (parm),
10189 TYPE_PTRMEMFUNC_FN_TYPE (arg),
10190 strict);
10193 if (CLASSTYPE_TEMPLATE_INFO (parm))
10195 tree t = NULL_TREE;
10197 if (strict_in & UNIFY_ALLOW_DERIVED)
10199 /* First, we try to unify the PARM and ARG directly. */
10200 t = try_class_unification (tparms, targs,
10201 parm, arg);
10203 if (!t)
10205 /* Fallback to the special case allowed in
10206 [temp.deduct.call]:
10208 If P is a class, and P has the form
10209 template-id, then A can be a derived class of
10210 the deduced A. Likewise, if P is a pointer to
10211 a class of the form template-id, A can be a
10212 pointer to a derived class pointed to by the
10213 deduced A. */
10214 t = get_template_base (tparms, targs, parm, arg);
10216 if (!t)
10217 return 1;
10220 else if (CLASSTYPE_TEMPLATE_INFO (arg)
10221 && (CLASSTYPE_TI_TEMPLATE (parm)
10222 == CLASSTYPE_TI_TEMPLATE (arg)))
10223 /* Perhaps PARM is something like S<U> and ARG is S<int>.
10224 Then, we should unify `int' and `U'. */
10225 t = arg;
10226 else
10227 /* There's no chance of unification succeeding. */
10228 return 1;
10230 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
10231 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE);
10233 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
10234 return 1;
10235 return 0;
10237 case METHOD_TYPE:
10238 case FUNCTION_TYPE:
10239 if (TREE_CODE (arg) != TREE_CODE (parm))
10240 return 1;
10242 if (unify (tparms, targs, TREE_TYPE (parm),
10243 TREE_TYPE (arg), UNIFY_ALLOW_NONE))
10244 return 1;
10245 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
10246 TYPE_ARG_TYPES (arg), 1,
10247 DEDUCE_EXACT, 0, -1);
10249 case OFFSET_TYPE:
10250 /* Unify a pointer to member with a pointer to member function, which
10251 deduces the type of the member as a function type. */
10252 if (TYPE_PTRMEMFUNC_P (arg))
10254 tree method_type;
10255 tree fntype;
10256 cp_cv_quals cv_quals;
10258 /* Check top-level cv qualifiers */
10259 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
10260 return 1;
10262 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
10263 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg), UNIFY_ALLOW_NONE))
10264 return 1;
10266 /* Determine the type of the function we are unifying against. */
10267 method_type = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (arg));
10268 fntype =
10269 build_function_type (TREE_TYPE (method_type),
10270 TREE_CHAIN (TYPE_ARG_TYPES (method_type)));
10272 /* Extract the cv-qualifiers of the member function from the
10273 implicit object parameter and place them on the function
10274 type to be restored later. */
10275 cv_quals =
10276 cp_type_quals(TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (method_type))));
10277 fntype = build_qualified_type (fntype, cv_quals);
10278 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict);
10281 if (TREE_CODE (arg) != OFFSET_TYPE)
10282 return 1;
10283 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
10284 TYPE_OFFSET_BASETYPE (arg), UNIFY_ALLOW_NONE))
10285 return 1;
10286 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
10287 strict);
10289 case CONST_DECL:
10290 if (DECL_TEMPLATE_PARM_P (parm))
10291 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict);
10292 if (arg != integral_constant_value (parm))
10293 return 1;
10294 return 0;
10296 case FIELD_DECL:
10297 case TEMPLATE_DECL:
10298 /* Matched cases are handled by the ARG == PARM test above. */
10299 return 1;
10301 default:
10302 gcc_assert (EXPR_P (parm));
10304 /* We must be looking at an expression. This can happen with
10305 something like:
10307 template <int I>
10308 void foo(S<I>, S<I + 2>);
10310 This is a "nondeduced context":
10312 [deduct.type]
10314 The nondeduced contexts are:
10316 --A type that is a template-id in which one or more of
10317 the template-arguments is an expression that references
10318 a template-parameter.
10320 In these cases, we assume deduction succeeded, but don't
10321 actually infer any unifications. */
10323 if (!uses_template_parms (parm)
10324 && !template_args_equal (parm, arg))
10325 return 1;
10326 else
10327 return 0;
10331 /* Note that DECL can be defined in this translation unit, if
10332 required. */
10334 static void
10335 mark_definable (tree decl)
10337 tree clone;
10338 DECL_NOT_REALLY_EXTERN (decl) = 1;
10339 FOR_EACH_CLONE (clone, decl)
10340 DECL_NOT_REALLY_EXTERN (clone) = 1;
10343 /* Called if RESULT is explicitly instantiated, or is a member of an
10344 explicitly instantiated class. */
10346 void
10347 mark_decl_instantiated (tree result, int extern_p)
10349 SET_DECL_EXPLICIT_INSTANTIATION (result);
10351 /* If this entity has already been written out, it's too late to
10352 make any modifications. */
10353 if (TREE_ASM_WRITTEN (result))
10354 return;
10356 if (TREE_CODE (result) != FUNCTION_DECL)
10357 /* The TREE_PUBLIC flag for function declarations will have been
10358 set correctly by tsubst. */
10359 TREE_PUBLIC (result) = 1;
10361 /* This might have been set by an earlier implicit instantiation. */
10362 DECL_COMDAT (result) = 0;
10364 if (extern_p)
10365 DECL_NOT_REALLY_EXTERN (result) = 0;
10366 else
10368 mark_definable (result);
10369 /* Always make artificials weak. */
10370 if (DECL_ARTIFICIAL (result) && flag_weak)
10371 comdat_linkage (result);
10372 /* For WIN32 we also want to put explicit instantiations in
10373 linkonce sections. */
10374 else if (TREE_PUBLIC (result))
10375 maybe_make_one_only (result);
10378 /* If EXTERN_P, then this function will not be emitted -- unless
10379 followed by an explicit instantiation, at which point its linkage
10380 will be adjusted. If !EXTERN_P, then this function will be
10381 emitted here. In neither circumstance do we want
10382 import_export_decl to adjust the linkage. */
10383 DECL_INTERFACE_KNOWN (result) = 1;
10386 /* Given two function templates PAT1 and PAT2, return:
10388 DEDUCE should be DEDUCE_EXACT or DEDUCE_ORDER.
10390 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
10391 -1 if PAT2 is more specialized than PAT1.
10392 0 if neither is more specialized.
10394 LEN is passed through to fn_type_unification. */
10397 more_specialized (tree pat1, tree pat2, int deduce, int len)
10399 tree targs;
10400 int winner = 0;
10402 /* If template argument deduction succeeds, we substitute the
10403 resulting arguments into non-deduced contexts. While doing that,
10404 we must be aware that we may encounter dependent types. */
10405 ++processing_template_decl;
10406 targs = get_bindings_real (pat1, DECL_TEMPLATE_RESULT (pat2),
10407 NULL_TREE, 0, deduce, len);
10408 if (targs)
10409 --winner;
10411 targs = get_bindings_real (pat2, DECL_TEMPLATE_RESULT (pat1),
10412 NULL_TREE, 0, deduce, len);
10413 if (targs)
10414 ++winner;
10415 --processing_template_decl;
10417 return winner;
10420 /* Given two class template specialization list nodes PAT1 and PAT2, return:
10422 1 if PAT1 is more specialized than PAT2 as described in [temp.class.order].
10423 -1 if PAT2 is more specialized than PAT1.
10424 0 if neither is more specialized.
10426 FULL_ARGS is the full set of template arguments that triggers this
10427 partial ordering. */
10430 more_specialized_class (tree pat1, tree pat2, tree full_args)
10432 tree targs;
10433 int winner = 0;
10435 /* Just like what happens for functions, if we are ordering between
10436 different class template specializations, we may encounter dependent
10437 types in the arguments, and we need our dependency check functions
10438 to behave correctly. */
10439 ++processing_template_decl;
10440 targs = get_class_bindings (TREE_VALUE (pat1), TREE_PURPOSE (pat1),
10441 add_outermost_template_args (full_args, TREE_PURPOSE (pat2)));
10442 if (targs)
10443 --winner;
10445 targs = get_class_bindings (TREE_VALUE (pat2), TREE_PURPOSE (pat2),
10446 add_outermost_template_args (full_args, TREE_PURPOSE (pat1)));
10447 if (targs)
10448 ++winner;
10449 --processing_template_decl;
10451 return winner;
10454 /* Return the template arguments that will produce the function signature
10455 DECL from the function template FN, with the explicit template
10456 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is 1, the return type must
10457 also match. Return NULL_TREE if no satisfactory arguments could be
10458 found. DEDUCE and LEN are passed through to fn_type_unification. */
10460 static tree
10461 get_bindings_real (tree fn,
10462 tree decl,
10463 tree explicit_args,
10464 int check_rettype,
10465 int deduce,
10466 int len)
10468 int ntparms = DECL_NTPARMS (fn);
10469 tree targs = make_tree_vec (ntparms);
10470 tree decl_type;
10471 tree decl_arg_types;
10472 int i;
10474 /* Substitute the explicit template arguments into the type of DECL.
10475 The call to fn_type_unification will handle substitution into the
10476 FN. */
10477 decl_type = TREE_TYPE (decl);
10478 if (explicit_args && uses_template_parms (decl_type))
10480 tree tmpl;
10481 tree converted_args;
10483 if (DECL_TEMPLATE_INFO (decl))
10484 tmpl = DECL_TI_TEMPLATE (decl);
10485 else
10486 /* We can get here for some invalid specializations. */
10487 return NULL_TREE;
10489 converted_args
10490 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
10491 explicit_args, NULL_TREE,
10492 tf_none, /*require_all_arguments=*/0));
10493 if (converted_args == error_mark_node)
10494 return NULL_TREE;
10496 decl_type = tsubst (decl_type, converted_args, tf_none, NULL_TREE);
10497 if (decl_type == error_mark_node)
10498 return NULL_TREE;
10501 decl_arg_types = TYPE_ARG_TYPES (decl_type);
10502 /* Never do unification on the 'this' parameter. */
10503 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
10504 decl_arg_types = TREE_CHAIN (decl_arg_types);
10506 i = fn_type_unification (fn, explicit_args, targs,
10507 decl_arg_types,
10508 (check_rettype || DECL_CONV_FN_P (fn)
10509 ? TREE_TYPE (decl_type) : NULL_TREE),
10510 deduce, len);
10512 if (i != 0)
10513 return NULL_TREE;
10515 return targs;
10518 /* For most uses, we want to check the return type. */
10520 static tree
10521 get_bindings (tree fn, tree decl, tree explicit_args)
10523 return get_bindings_real (fn, decl, explicit_args, 1, DEDUCE_EXACT, -1);
10526 /* But for resolve_overloaded_unification, we only care about the parameter
10527 types. */
10529 static tree
10530 get_bindings_overload (tree fn, tree decl, tree explicit_args)
10532 return get_bindings_real (fn, decl, explicit_args, 0, DEDUCE_EXACT, -1);
10535 /* Return the innermost template arguments that, when applied to a
10536 template specialization whose innermost template parameters are
10537 TPARMS, and whose specialization arguments are PARMS, yield the
10538 ARGS.
10540 For example, suppose we have:
10542 template <class T, class U> struct S {};
10543 template <class T> struct S<T*, int> {};
10545 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
10546 {T}, the PARMS will be {T*, int} and the ARGS will be {double*,
10547 int}. The resulting vector will be {double}, indicating that `T'
10548 is bound to `double'. */
10550 static tree
10551 get_class_bindings (tree tparms, tree parms, tree args)
10553 int i, ntparms = TREE_VEC_LENGTH (tparms);
10554 tree vec = make_tree_vec (ntparms);
10556 if (unify (tparms, vec, parms, INNERMOST_TEMPLATE_ARGS (args),
10557 UNIFY_ALLOW_NONE))
10558 return NULL_TREE;
10560 for (i = 0; i < ntparms; ++i)
10561 if (! TREE_VEC_ELT (vec, i))
10562 return NULL_TREE;
10564 if (verify_class_unification (vec, parms, args))
10565 return NULL_TREE;
10567 return vec;
10570 /* In INSTANTIATIONS is a list of <INSTANTIATION, TEMPLATE> pairs.
10571 Pick the most specialized template, and return the corresponding
10572 instantiation, or if there is no corresponding instantiation, the
10573 template itself. If there is no most specialized template,
10574 error_mark_node is returned. If there are no templates at all,
10575 NULL_TREE is returned. */
10577 tree
10578 most_specialized_instantiation (tree instantiations)
10580 tree fn, champ;
10581 int fate;
10583 if (!instantiations)
10584 return NULL_TREE;
10586 champ = instantiations;
10587 for (fn = TREE_CHAIN (instantiations); fn; fn = TREE_CHAIN (fn))
10589 fate = more_specialized (TREE_VALUE (champ), TREE_VALUE (fn),
10590 DEDUCE_EXACT, -1);
10591 if (fate == 1)
10593 else
10595 if (fate == 0)
10597 fn = TREE_CHAIN (fn);
10598 if (! fn)
10599 return error_mark_node;
10601 champ = fn;
10605 for (fn = instantiations; fn && fn != champ; fn = TREE_CHAIN (fn))
10607 fate = more_specialized (TREE_VALUE (champ), TREE_VALUE (fn),
10608 DEDUCE_EXACT, -1);
10609 if (fate != 1)
10610 return error_mark_node;
10613 return TREE_PURPOSE (champ) ? TREE_PURPOSE (champ) : TREE_VALUE (champ);
10616 /* Return the most specialized of the list of templates in FNS that can
10617 produce an instantiation matching DECL, given the explicit template
10618 arguments EXPLICIT_ARGS. */
10620 static tree
10621 most_specialized (tree fns, tree decl, tree explicit_args)
10623 tree candidates = NULL_TREE;
10624 tree fn, args;
10626 for (fn = fns; fn; fn = TREE_CHAIN (fn))
10628 tree candidate = TREE_VALUE (fn);
10630 args = get_bindings (candidate, decl, explicit_args);
10631 if (args)
10632 candidates = tree_cons (NULL_TREE, candidate, candidates);
10635 return most_specialized_instantiation (candidates);
10638 /* If DECL is a specialization of some template, return the most
10639 general such template. Otherwise, returns NULL_TREE.
10641 For example, given:
10643 template <class T> struct S { template <class U> void f(U); };
10645 if TMPL is `template <class U> void S<int>::f(U)' this will return
10646 the full template. This function will not trace past partial
10647 specializations, however. For example, given in addition:
10649 template <class T> struct S<T*> { template <class U> void f(U); };
10651 if TMPL is `template <class U> void S<int*>::f(U)' this will return
10652 `template <class T> template <class U> S<T*>::f(U)'. */
10654 tree
10655 most_general_template (tree decl)
10657 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
10658 an immediate specialization. */
10659 if (TREE_CODE (decl) == FUNCTION_DECL)
10661 if (DECL_TEMPLATE_INFO (decl)) {
10662 decl = DECL_TI_TEMPLATE (decl);
10664 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
10665 template friend. */
10666 if (TREE_CODE (decl) != TEMPLATE_DECL)
10667 return NULL_TREE;
10668 } else
10669 return NULL_TREE;
10672 /* Look for more and more general templates. */
10673 while (DECL_TEMPLATE_INFO (decl))
10675 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
10676 (See cp-tree.h for details.) */
10677 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
10678 break;
10680 if (CLASS_TYPE_P (TREE_TYPE (decl))
10681 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
10682 break;
10684 /* Stop if we run into an explicitly specialized class template. */
10685 if (!DECL_NAMESPACE_SCOPE_P (decl)
10686 && DECL_CONTEXT (decl)
10687 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
10688 break;
10690 decl = DECL_TI_TEMPLATE (decl);
10693 return decl;
10696 /* Return the most specialized of the class template specializations
10697 of TMPL which can produce an instantiation matching ARGS, or
10698 error_mark_node if the choice is ambiguous. */
10700 static tree
10701 most_specialized_class (tree tmpl, tree args)
10703 tree list = NULL_TREE;
10704 tree t;
10705 tree champ;
10706 int fate;
10708 tmpl = most_general_template (tmpl);
10709 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
10711 tree spec_args
10712 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args);
10713 if (spec_args)
10715 list = tree_cons (TREE_PURPOSE (t), TREE_VALUE (t), list);
10716 TREE_TYPE (list) = TREE_TYPE (t);
10720 if (! list)
10721 return NULL_TREE;
10723 t = list;
10724 champ = t;
10725 t = TREE_CHAIN (t);
10726 for (; t; t = TREE_CHAIN (t))
10728 fate = more_specialized_class (champ, t, args);
10729 if (fate == 1)
10731 else
10733 if (fate == 0)
10735 t = TREE_CHAIN (t);
10736 if (! t)
10737 return error_mark_node;
10739 champ = t;
10743 for (t = list; t && t != champ; t = TREE_CHAIN (t))
10745 fate = more_specialized_class (champ, t, args);
10746 if (fate != 1)
10747 return error_mark_node;
10750 return champ;
10753 /* Explicitly instantiate DECL. */
10755 void
10756 do_decl_instantiation (tree decl, tree storage)
10758 tree result = NULL_TREE;
10759 int extern_p = 0;
10761 if (!decl)
10762 /* An error occurred, for which grokdeclarator has already issued
10763 an appropriate message. */
10764 return;
10765 else if (! DECL_LANG_SPECIFIC (decl))
10767 error ("explicit instantiation of non-template %q#D", decl);
10768 return;
10770 else if (TREE_CODE (decl) == VAR_DECL)
10772 /* There is an asymmetry here in the way VAR_DECLs and
10773 FUNCTION_DECLs are handled by grokdeclarator. In the case of
10774 the latter, the DECL we get back will be marked as a
10775 template instantiation, and the appropriate
10776 DECL_TEMPLATE_INFO will be set up. This does not happen for
10777 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
10778 should handle VAR_DECLs as it currently handles
10779 FUNCTION_DECLs. */
10780 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
10781 if (!result || TREE_CODE (result) != VAR_DECL)
10783 error ("no matching template for %qD found", decl);
10784 return;
10787 else if (TREE_CODE (decl) != FUNCTION_DECL)
10789 error ("explicit instantiation of %q#D", decl);
10790 return;
10792 else
10793 result = decl;
10795 /* Check for various error cases. Note that if the explicit
10796 instantiation is valid the RESULT will currently be marked as an
10797 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
10798 until we get here. */
10800 if (DECL_TEMPLATE_SPECIALIZATION (result))
10802 /* DR 259 [temp.spec].
10804 Both an explicit instantiation and a declaration of an explicit
10805 specialization shall not appear in a program unless the explicit
10806 instantiation follows a declaration of the explicit specialization.
10808 For a given set of template parameters, if an explicit
10809 instantiation of a template appears after a declaration of an
10810 explicit specialization for that template, the explicit
10811 instantiation has no effect. */
10812 return;
10814 else if (DECL_EXPLICIT_INSTANTIATION (result))
10816 /* [temp.spec]
10818 No program shall explicitly instantiate any template more
10819 than once.
10821 We check DECL_NOT_REALLY_EXTERN so as not to complain when
10822 the first instantiation was `extern' and the second is not,
10823 and EXTERN_P for the opposite case. */
10824 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
10825 pedwarn ("duplicate explicit instantiation of %q#D", result);
10826 /* If an "extern" explicit instantiation follows an ordinary
10827 explicit instantiation, the template is instantiated. */
10828 if (extern_p)
10829 return;
10831 else if (!DECL_IMPLICIT_INSTANTIATION (result))
10833 error ("no matching template for %qD found", result);
10834 return;
10836 else if (!DECL_TEMPLATE_INFO (result))
10838 pedwarn ("explicit instantiation of non-template %q#D", result);
10839 return;
10842 if (storage == NULL_TREE)
10844 else if (storage == ridpointers[(int) RID_EXTERN])
10846 if (pedantic && !in_system_header)
10847 pedwarn ("ISO C++ forbids the use of %<extern%> on explicit "
10848 "instantiations");
10849 extern_p = 1;
10851 else
10852 error ("storage class %qD applied to template instantiation", storage);
10854 mark_decl_instantiated (result, extern_p);
10855 if (! extern_p)
10856 instantiate_decl (result, /*defer_ok=*/1, /*undefined_ok=*/0);
10859 void
10860 mark_class_instantiated (tree t, int extern_p)
10862 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
10863 SET_CLASSTYPE_INTERFACE_KNOWN (t);
10864 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
10865 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
10866 if (! extern_p)
10868 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
10869 rest_of_type_compilation (t, 1);
10873 /* Called from do_type_instantiation through binding_table_foreach to
10874 do recursive instantiation for the type bound in ENTRY. */
10875 static void
10876 bt_instantiate_type_proc (binding_entry entry, void *data)
10878 tree storage = *(tree *) data;
10880 if (IS_AGGR_TYPE (entry->type)
10881 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
10882 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
10885 /* Called from do_type_instantiation to instantiate a member
10886 (a member function or a static member variable) of an
10887 explicitly instantiated class template. */
10888 static void
10889 instantiate_class_member (tree decl, int extern_p)
10891 mark_decl_instantiated (decl, extern_p);
10892 if (! extern_p)
10893 instantiate_decl (decl, /*defer_ok=*/1, /* undefined_ok=*/1);
10896 /* Perform an explicit instantiation of template class T. STORAGE, if
10897 non-null, is the RID for extern, inline or static. COMPLAIN is
10898 nonzero if this is called from the parser, zero if called recursively,
10899 since the standard is unclear (as detailed below). */
10901 void
10902 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
10904 int extern_p = 0;
10905 int nomem_p = 0;
10906 int static_p = 0;
10907 int previous_instantiation_extern_p = 0;
10909 if (TREE_CODE (t) == TYPE_DECL)
10910 t = TREE_TYPE (t);
10912 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
10914 error ("explicit instantiation of non-template type %qT", t);
10915 return;
10918 complete_type (t);
10920 if (!COMPLETE_TYPE_P (t))
10922 if (complain & tf_error)
10923 error ("explicit instantiation of %q#T before definition of template",
10925 return;
10928 if (storage != NULL_TREE)
10930 if (pedantic && !in_system_header)
10931 pedwarn("ISO C++ forbids the use of %qE on explicit instantiations",
10932 storage);
10934 if (storage == ridpointers[(int) RID_INLINE])
10935 nomem_p = 1;
10936 else if (storage == ridpointers[(int) RID_EXTERN])
10937 extern_p = 1;
10938 else if (storage == ridpointers[(int) RID_STATIC])
10939 static_p = 1;
10940 else
10942 error ("storage class %qD applied to template instantiation",
10943 storage);
10944 extern_p = 0;
10948 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
10950 /* DR 259 [temp.spec].
10952 Both an explicit instantiation and a declaration of an explicit
10953 specialization shall not appear in a program unless the explicit
10954 instantiation follows a declaration of the explicit specialization.
10956 For a given set of template parameters, if an explicit
10957 instantiation of a template appears after a declaration of an
10958 explicit specialization for that template, the explicit
10959 instantiation has no effect. */
10960 return;
10962 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
10964 /* [temp.spec]
10966 No program shall explicitly instantiate any template more
10967 than once.
10969 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
10970 instantiation was `extern'. If EXTERN_P then the second is.
10971 These cases are OK. */
10972 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
10974 if (!previous_instantiation_extern_p && !extern_p
10975 && (complain & tf_error))
10976 pedwarn ("duplicate explicit instantiation of %q#T", t);
10978 /* If we've already instantiated the template, just return now. */
10979 if (!CLASSTYPE_INTERFACE_ONLY (t))
10980 return;
10983 mark_class_instantiated (t, extern_p);
10985 if (nomem_p)
10986 return;
10989 tree tmp;
10991 /* In contrast to implicit instantiation, where only the
10992 declarations, and not the definitions, of members are
10993 instantiated, we have here:
10995 [temp.explicit]
10997 The explicit instantiation of a class template specialization
10998 implies the instantiation of all of its members not
10999 previously explicitly specialized in the translation unit
11000 containing the explicit instantiation.
11002 Of course, we can't instantiate member template classes, since
11003 we don't have any arguments for them. Note that the standard
11004 is unclear on whether the instantiation of the members are
11005 *explicit* instantiations or not. However, the most natural
11006 interpretation is that it should be an explicit instantiation. */
11008 if (! static_p)
11009 for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
11010 if (TREE_CODE (tmp) == FUNCTION_DECL
11011 && DECL_TEMPLATE_INSTANTIATION (tmp))
11012 instantiate_class_member (tmp, extern_p);
11014 for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
11015 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
11016 instantiate_class_member (tmp, extern_p);
11018 if (CLASSTYPE_NESTED_UTDS (t))
11019 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
11020 bt_instantiate_type_proc, &storage);
11024 /* Given a function DECL, which is a specialization of TMPL, modify
11025 DECL to be a re-instantiation of TMPL with the same template
11026 arguments. TMPL should be the template into which tsubst'ing
11027 should occur for DECL, not the most general template.
11029 One reason for doing this is a scenario like this:
11031 template <class T>
11032 void f(const T&, int i);
11034 void g() { f(3, 7); }
11036 template <class T>
11037 void f(const T& t, const int i) { }
11039 Note that when the template is first instantiated, with
11040 instantiate_template, the resulting DECL will have no name for the
11041 first parameter, and the wrong type for the second. So, when we go
11042 to instantiate the DECL, we regenerate it. */
11044 static void
11045 regenerate_decl_from_template (tree decl, tree tmpl)
11047 /* The arguments used to instantiate DECL, from the most general
11048 template. */
11049 tree args;
11050 tree code_pattern;
11052 args = DECL_TI_ARGS (decl);
11053 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
11055 /* Make sure that we can see identifiers, and compute access
11056 correctly. */
11057 push_access_scope (decl);
11059 if (TREE_CODE (decl) == FUNCTION_DECL)
11061 tree decl_parm;
11062 tree pattern_parm;
11063 tree specs;
11064 int args_depth;
11065 int parms_depth;
11067 args_depth = TMPL_ARGS_DEPTH (args);
11068 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
11069 if (args_depth > parms_depth)
11070 args = get_innermost_template_args (args, parms_depth);
11072 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
11073 args, tf_error, NULL_TREE);
11074 if (specs)
11075 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
11076 specs);
11078 /* Merge parameter declarations. */
11079 decl_parm = skip_artificial_parms_for (decl,
11080 DECL_ARGUMENTS (decl));
11081 pattern_parm
11082 = skip_artificial_parms_for (code_pattern,
11083 DECL_ARGUMENTS (code_pattern));
11084 while (decl_parm)
11086 tree parm_type;
11088 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
11089 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
11090 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
11091 NULL_TREE);
11092 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
11093 TREE_TYPE (decl_parm) = parm_type;
11094 decl_parm = TREE_CHAIN (decl_parm);
11095 pattern_parm = TREE_CHAIN (pattern_parm);
11098 /* Merge additional specifiers from the CODE_PATTERN. */
11099 if (DECL_DECLARED_INLINE_P (code_pattern)
11100 && !DECL_DECLARED_INLINE_P (decl))
11101 DECL_DECLARED_INLINE_P (decl) = 1;
11102 if (DECL_INLINE (code_pattern) && !DECL_INLINE (decl))
11103 DECL_INLINE (decl) = 1;
11105 else if (TREE_CODE (decl) == VAR_DECL)
11107 if (!DECL_INITIALIZED_IN_CLASS_P (decl)
11108 && DECL_INITIAL (code_pattern))
11109 DECL_INITIAL (decl) =
11110 tsubst_expr (DECL_INITIAL (code_pattern), args,
11111 tf_error, DECL_TI_TEMPLATE (decl));
11113 else
11114 gcc_unreachable ();
11116 pop_access_scope (decl);
11119 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
11120 substituted to get DECL. */
11122 tree
11123 template_for_substitution (tree decl)
11125 tree tmpl = DECL_TI_TEMPLATE (decl);
11127 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
11128 for the instantiation. This is not always the most general
11129 template. Consider, for example:
11131 template <class T>
11132 struct S { template <class U> void f();
11133 template <> void f<int>(); };
11135 and an instantiation of S<double>::f<int>. We want TD to be the
11136 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
11137 while (/* An instantiation cannot have a definition, so we need a
11138 more general template. */
11139 DECL_TEMPLATE_INSTANTIATION (tmpl)
11140 /* We must also deal with friend templates. Given:
11142 template <class T> struct S {
11143 template <class U> friend void f() {};
11146 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
11147 so far as the language is concerned, but that's still
11148 where we get the pattern for the instantiation from. On
11149 other hand, if the definition comes outside the class, say:
11151 template <class T> struct S {
11152 template <class U> friend void f();
11154 template <class U> friend void f() {}
11156 we don't need to look any further. That's what the check for
11157 DECL_INITIAL is for. */
11158 || (TREE_CODE (decl) == FUNCTION_DECL
11159 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
11160 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
11162 /* The present template, TD, should not be a definition. If it
11163 were a definition, we should be using it! Note that we
11164 cannot restructure the loop to just keep going until we find
11165 a template with a definition, since that might go too far if
11166 a specialization was declared, but not defined. */
11167 gcc_assert (TREE_CODE (decl) != VAR_DECL
11168 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
11170 /* Fetch the more general template. */
11171 tmpl = DECL_TI_TEMPLATE (tmpl);
11174 return tmpl;
11177 /* Produce the definition of D, a _DECL generated from a template. If
11178 DEFER_OK is nonzero, then we don't have to actually do the
11179 instantiation now; we just have to do it sometime. Normally it is
11180 an error if this is an explicit instantiation but D is undefined.
11181 If UNDEFINED_OK is nonzero, then instead we treat it as an implicit
11182 instantiation. UNDEFINED_OK is nonzero only if we are being used
11183 to instantiate the members of an explicitly instantiated class
11184 template. */
11187 tree
11188 instantiate_decl (tree d, int defer_ok, int undefined_ok)
11190 tree tmpl = DECL_TI_TEMPLATE (d);
11191 tree gen_args;
11192 tree args;
11193 tree td;
11194 tree code_pattern;
11195 tree spec;
11196 tree gen_tmpl;
11197 int pattern_defined;
11198 int need_push;
11199 location_t saved_loc = input_location;
11201 /* This function should only be used to instantiate templates for
11202 functions and static member variables. */
11203 gcc_assert (TREE_CODE (d) == FUNCTION_DECL
11204 || TREE_CODE (d) == VAR_DECL);
11206 /* Variables are never deferred; if instantiation is required, they
11207 are instantiated right away. That allows for better code in the
11208 case that an expression refers to the value of the variable --
11209 if the variable has a constant value the referring expression can
11210 take advantage of that fact. */
11211 if (TREE_CODE (d) == VAR_DECL)
11212 defer_ok = 0;
11214 /* Don't instantiate cloned functions. Instead, instantiate the
11215 functions they cloned. */
11216 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
11217 d = DECL_CLONED_FUNCTION (d);
11219 if (DECL_TEMPLATE_INSTANTIATED (d))
11220 /* D has already been instantiated. It might seem reasonable to
11221 check whether or not D is an explicit instantiation, and, if so,
11222 stop here. But when an explicit instantiation is deferred
11223 until the end of the compilation, DECL_EXPLICIT_INSTANTIATION
11224 is set, even though we still need to do the instantiation. */
11225 return d;
11227 /* If we already have a specialization of this declaration, then
11228 there's no reason to instantiate it. Note that
11229 retrieve_specialization gives us both instantiations and
11230 specializations, so we must explicitly check
11231 DECL_TEMPLATE_SPECIALIZATION. */
11232 gen_tmpl = most_general_template (tmpl);
11233 gen_args = DECL_TI_ARGS (d);
11234 spec = retrieve_specialization (gen_tmpl, gen_args,
11235 /*class_specializations_p=*/false);
11236 if (spec != NULL_TREE && DECL_TEMPLATE_SPECIALIZATION (spec))
11237 return spec;
11239 /* This needs to happen before any tsubsting. */
11240 if (! push_tinst_level (d))
11241 return d;
11243 timevar_push (TV_PARSE);
11245 /* We may be in the middle of deferred access check. Disable it now. */
11246 push_deferring_access_checks (dk_no_deferred);
11248 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
11249 for the instantiation. */
11250 td = template_for_substitution (d);
11251 code_pattern = DECL_TEMPLATE_RESULT (td);
11253 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
11254 || DECL_TEMPLATE_SPECIALIZATION (td))
11255 /* In the case of a friend template whose definition is provided
11256 outside the class, we may have too many arguments. Drop the
11257 ones we don't need. The same is true for specializations. */
11258 args = get_innermost_template_args
11259 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
11260 else
11261 args = gen_args;
11263 if (TREE_CODE (d) == FUNCTION_DECL)
11264 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE);
11265 else
11266 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
11267 /* Unless an explicit instantiation directive has already determined
11268 the linkage of D, remember that a definition is available for
11269 this entity. */
11270 if (pattern_defined
11271 && !DECL_INTERFACE_KNOWN (d)
11272 && !DECL_NOT_REALLY_EXTERN (d))
11273 mark_definable (d);
11275 input_location = DECL_SOURCE_LOCATION (d);
11277 if (! pattern_defined && DECL_EXPLICIT_INSTANTIATION (d) && undefined_ok)
11279 DECL_NOT_REALLY_EXTERN (d) = 0;
11280 SET_DECL_IMPLICIT_INSTANTIATION (d);
11283 if (!defer_ok)
11285 /* Recheck the substitutions to obtain any warning messages
11286 about ignoring cv qualifiers. */
11287 tree gen = DECL_TEMPLATE_RESULT (gen_tmpl);
11288 tree type = TREE_TYPE (gen);
11290 /* Make sure that we can see identifiers, and compute access
11291 correctly. D is already the target FUNCTION_DECL with the
11292 right context. */
11293 push_access_scope (d);
11295 if (TREE_CODE (gen) == FUNCTION_DECL)
11297 tsubst (DECL_ARGUMENTS (gen), gen_args, tf_error | tf_warning, d);
11298 tsubst (TYPE_RAISES_EXCEPTIONS (type), gen_args,
11299 tf_error | tf_warning, d);
11300 /* Don't simply tsubst the function type, as that will give
11301 duplicate warnings about poor parameter qualifications.
11302 The function arguments are the same as the decl_arguments
11303 without the top level cv qualifiers. */
11304 type = TREE_TYPE (type);
11306 tsubst (type, gen_args, tf_error | tf_warning, d);
11308 pop_access_scope (d);
11311 /* We should have set up DECL_INITIAL in instantiate_class_template
11312 for in-class definitions of static data members. */
11313 gcc_assert (!(TREE_CODE (d) == VAR_DECL
11314 && DECL_INITIALIZED_IN_CLASS_P (d)
11315 && DECL_INITIAL (d) == NULL_TREE));
11317 /* Do not instantiate templates that we know will be defined
11318 elsewhere. */
11319 if (DECL_INTERFACE_KNOWN (d)
11320 && DECL_REALLY_EXTERN (d)
11321 && ! (TREE_CODE (d) == FUNCTION_DECL
11322 && DECL_INLINE (d)))
11323 goto out;
11324 /* Defer all other templates, unless we have been explicitly
11325 forbidden from doing so. We restore the source position here
11326 because it's used by add_pending_template. */
11327 else if (! pattern_defined || defer_ok)
11329 input_location = saved_loc;
11331 if (at_eof && !pattern_defined
11332 && DECL_EXPLICIT_INSTANTIATION (d))
11333 /* [temp.explicit]
11335 The definition of a non-exported function template, a
11336 non-exported member function template, or a non-exported
11337 member function or static data member of a class template
11338 shall be present in every translation unit in which it is
11339 explicitly instantiated. */
11340 pedwarn
11341 ("explicit instantiation of %qD but no definition available", d);
11343 add_pending_template (d);
11344 goto out;
11346 /* Tell the repository that D is available in this translation unit
11347 -- and see if it is supposed to be instantiated here. */
11348 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
11350 /* In a PCH file, despite the fact that the repository hasn't
11351 requested instantiation in the PCH it is still possible that
11352 an instantiation will be required in a file that includes the
11353 PCH. */
11354 if (pch_file)
11355 add_pending_template (d);
11356 /* Instantiate inline functions so that the inliner can do its
11357 job, even though we'll not be emitting a copy of this
11358 function. */
11359 if (!(TREE_CODE (d) == FUNCTION_DECL
11360 && flag_inline_trees
11361 && DECL_DECLARED_INLINE_P (d)))
11362 goto out;
11365 need_push = !cfun || !global_bindings_p ();
11366 if (need_push)
11367 push_to_top_level ();
11369 /* Mark D as instantiated so that recursive calls to
11370 instantiate_decl do not try to instantiate it again. */
11371 DECL_TEMPLATE_INSTANTIATED (d) = 1;
11373 /* Regenerate the declaration in case the template has been modified
11374 by a subsequent redeclaration. */
11375 regenerate_decl_from_template (d, td);
11377 /* We already set the file and line above. Reset them now in case
11378 they changed as a result of calling regenerate_decl_from_template. */
11379 input_location = DECL_SOURCE_LOCATION (d);
11381 if (TREE_CODE (d) == VAR_DECL)
11383 /* Clear out DECL_RTL; whatever was there before may not be right
11384 since we've reset the type of the declaration. */
11385 SET_DECL_RTL (d, NULL_RTX);
11386 DECL_IN_AGGR_P (d) = 0;
11388 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
11389 initializer. That function will defer actual emission until
11390 we have a chance to determine linkage. */
11391 DECL_EXTERNAL (d) = 0;
11393 /* Enter the scope of D so that access-checking works correctly. */
11394 push_nested_class (DECL_CONTEXT (d));
11395 cp_finish_decl (d,
11396 (!DECL_INITIALIZED_IN_CLASS_P (d)
11397 ? DECL_INITIAL (d) : NULL_TREE),
11398 NULL_TREE, 0);
11399 pop_nested_class ();
11401 else if (TREE_CODE (d) == FUNCTION_DECL)
11403 htab_t saved_local_specializations;
11404 tree subst_decl;
11405 tree tmpl_parm;
11406 tree spec_parm;
11408 /* Save away the current list, in case we are instantiating one
11409 template from within the body of another. */
11410 saved_local_specializations = local_specializations;
11412 /* Set up the list of local specializations. */
11413 local_specializations = htab_create (37,
11414 hash_local_specialization,
11415 eq_local_specializations,
11416 NULL);
11418 /* Set up context. */
11419 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
11421 /* Create substitution entries for the parameters. */
11422 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
11423 tmpl_parm = DECL_ARGUMENTS (subst_decl);
11424 spec_parm = DECL_ARGUMENTS (d);
11425 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
11427 register_local_specialization (spec_parm, tmpl_parm);
11428 spec_parm = skip_artificial_parms_for (d, spec_parm);
11429 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
11431 while (tmpl_parm)
11433 register_local_specialization (spec_parm, tmpl_parm);
11434 tmpl_parm = TREE_CHAIN (tmpl_parm);
11435 spec_parm = TREE_CHAIN (spec_parm);
11437 gcc_assert (!spec_parm);
11439 /* Substitute into the body of the function. */
11440 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
11441 tf_error | tf_warning, tmpl);
11443 /* We don't need the local specializations any more. */
11444 htab_delete (local_specializations);
11445 local_specializations = saved_local_specializations;
11447 /* Finish the function. */
11448 d = finish_function (0);
11449 expand_or_defer_fn (d);
11452 /* We're not deferring instantiation any more. */
11453 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
11455 if (need_push)
11456 pop_from_top_level ();
11458 out:
11459 input_location = saved_loc;
11460 pop_deferring_access_checks ();
11461 pop_tinst_level ();
11463 timevar_pop (TV_PARSE);
11465 return d;
11468 /* Run through the list of templates that we wish we could
11469 instantiate, and instantiate any we can. RETRIES is the
11470 number of times we retry pending template instantiation. */
11472 void
11473 instantiate_pending_templates (int retries)
11475 tree *t;
11476 tree last = NULL_TREE;
11477 int reconsider;
11478 location_t saved_loc = input_location;
11480 /* Instantiating templates may trigger vtable generation. This in turn
11481 may require further template instantiations. We place a limit here
11482 to avoid infinite loop. */
11483 if (pending_templates && retries >= max_tinst_depth)
11485 cp_error_at ("template instantiation depth exceeds maximum of %d"
11486 " (use -ftemplate-depth-NN to increase the maximum)"
11487 " instantiating %q+D, possibly from virtual table"
11488 " generation",
11489 max_tinst_depth, TREE_VALUE (pending_templates));
11490 return;
11495 reconsider = 0;
11497 t = &pending_templates;
11498 while (*t)
11500 tree instantiation = TREE_VALUE (*t);
11502 reopen_tinst_level (TREE_PURPOSE (*t));
11504 if (TYPE_P (instantiation))
11506 tree fn;
11508 if (!COMPLETE_TYPE_P (instantiation))
11510 instantiate_class_template (instantiation);
11511 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
11512 for (fn = TYPE_METHODS (instantiation);
11514 fn = TREE_CHAIN (fn))
11515 if (! DECL_ARTIFICIAL (fn))
11516 instantiate_decl (fn, /*defer_ok=*/0,
11517 /*undefined_ok=*/0);
11518 if (COMPLETE_TYPE_P (instantiation))
11519 reconsider = 1;
11522 if (COMPLETE_TYPE_P (instantiation))
11523 /* If INSTANTIATION has been instantiated, then we don't
11524 need to consider it again in the future. */
11525 *t = TREE_CHAIN (*t);
11526 else
11528 last = *t;
11529 t = &TREE_CHAIN (*t);
11532 else
11534 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
11535 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
11537 instantiation = instantiate_decl (instantiation,
11538 /*defer_ok=*/0,
11539 /*undefined_ok=*/0);
11540 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
11541 reconsider = 1;
11544 if (DECL_TEMPLATE_SPECIALIZATION (instantiation)
11545 || DECL_TEMPLATE_INSTANTIATED (instantiation))
11546 /* If INSTANTIATION has been instantiated, then we don't
11547 need to consider it again in the future. */
11548 *t = TREE_CHAIN (*t);
11549 else
11551 last = *t;
11552 t = &TREE_CHAIN (*t);
11555 tinst_depth = 0;
11556 current_tinst_level = NULL_TREE;
11558 last_pending_template = last;
11560 while (reconsider);
11562 input_location = saved_loc;
11565 /* Substitute ARGVEC into T, which is a list of initializers for
11566 either base class or a non-static data member. The TREE_PURPOSEs
11567 are DECLs, and the TREE_VALUEs are the initializer values. Used by
11568 instantiate_decl. */
11570 static tree
11571 tsubst_initializer_list (tree t, tree argvec)
11573 tree inits = NULL_TREE;
11575 for (; t; t = TREE_CHAIN (t))
11577 tree decl;
11578 tree init;
11580 decl = tsubst_copy (TREE_PURPOSE (t), argvec, tf_error | tf_warning,
11581 NULL_TREE);
11582 decl = expand_member_init (decl);
11583 if (decl && !DECL_P (decl))
11584 in_base_initializer = 1;
11586 init = tsubst_expr (TREE_VALUE (t), argvec, tf_error | tf_warning,
11587 NULL_TREE);
11588 in_base_initializer = 0;
11590 if (decl)
11592 init = build_tree_list (decl, init);
11593 TREE_CHAIN (init) = inits;
11594 inits = init;
11597 return inits;
11600 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
11602 static void
11603 set_current_access_from_decl (tree decl)
11605 if (TREE_PRIVATE (decl))
11606 current_access_specifier = access_private_node;
11607 else if (TREE_PROTECTED (decl))
11608 current_access_specifier = access_protected_node;
11609 else
11610 current_access_specifier = access_public_node;
11613 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
11614 is the instantiation (which should have been created with
11615 start_enum) and ARGS are the template arguments to use. */
11617 static void
11618 tsubst_enum (tree tag, tree newtag, tree args)
11620 tree e;
11622 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
11624 tree value;
11625 tree decl;
11627 decl = TREE_VALUE (e);
11628 /* Note that in a template enum, the TREE_VALUE is the
11629 CONST_DECL, not the corresponding INTEGER_CST. */
11630 value = tsubst_expr (DECL_INITIAL (decl),
11631 args, tf_error | tf_warning,
11632 NULL_TREE);
11634 /* Give this enumeration constant the correct access. */
11635 set_current_access_from_decl (decl);
11637 /* Actually build the enumerator itself. */
11638 build_enumerator (DECL_NAME (decl), value, newtag);
11641 finish_enum (newtag);
11642 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
11643 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
11646 /* DECL is a FUNCTION_DECL that is a template specialization. Return
11647 its type -- but without substituting the innermost set of template
11648 arguments. So, innermost set of template parameters will appear in
11649 the type. */
11651 tree
11652 get_mostly_instantiated_function_type (tree decl)
11654 tree fn_type;
11655 tree tmpl;
11656 tree targs;
11657 tree tparms;
11658 int parm_depth;
11660 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11661 targs = DECL_TI_ARGS (decl);
11662 tparms = DECL_TEMPLATE_PARMS (tmpl);
11663 parm_depth = TMPL_PARMS_DEPTH (tparms);
11665 /* There should be as many levels of arguments as there are levels
11666 of parameters. */
11667 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
11669 fn_type = TREE_TYPE (tmpl);
11671 if (parm_depth == 1)
11672 /* No substitution is necessary. */
11674 else
11676 int i, save_access_control;
11677 tree partial_args;
11679 /* Replace the innermost level of the TARGS with NULL_TREEs to
11680 let tsubst know not to substitute for those parameters. */
11681 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
11682 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
11683 SET_TMPL_ARGS_LEVEL (partial_args, i,
11684 TMPL_ARGS_LEVEL (targs, i));
11685 SET_TMPL_ARGS_LEVEL (partial_args,
11686 TMPL_ARGS_DEPTH (targs),
11687 make_tree_vec (DECL_NTPARMS (tmpl)));
11689 /* Disable access control as this function is used only during
11690 name-mangling. */
11691 save_access_control = flag_access_control;
11692 flag_access_control = 0;
11694 ++processing_template_decl;
11695 /* Now, do the (partial) substitution to figure out the
11696 appropriate function type. */
11697 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
11698 --processing_template_decl;
11700 /* Substitute into the template parameters to obtain the real
11701 innermost set of parameters. This step is important if the
11702 innermost set of template parameters contains value
11703 parameters whose types depend on outer template parameters. */
11704 TREE_VEC_LENGTH (partial_args)--;
11705 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
11707 flag_access_control = save_access_control;
11710 return fn_type;
11713 /* Return truthvalue if we're processing a template different from
11714 the last one involved in diagnostics. */
11716 problematic_instantiation_changed (void)
11718 return last_template_error_tick != tinst_level_tick;
11721 /* Remember current template involved in diagnostics. */
11722 void
11723 record_last_problematic_instantiation (void)
11725 last_template_error_tick = tinst_level_tick;
11728 tree
11729 current_instantiation (void)
11731 return current_tinst_level;
11734 /* [temp.param] Check that template non-type parm TYPE is of an allowable
11735 type. Return zero for ok, nonzero for disallowed. Issue error and
11736 warning messages under control of COMPLAIN. */
11738 static int
11739 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
11741 if (INTEGRAL_TYPE_P (type))
11742 return 0;
11743 else if (POINTER_TYPE_P (type))
11744 return 0;
11745 else if (TYPE_PTR_TO_MEMBER_P (type))
11746 return 0;
11747 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
11748 return 0;
11749 else if (TREE_CODE (type) == TYPENAME_TYPE)
11750 return 0;
11752 if (complain & tf_error)
11753 error ("%q#T is not a valid type for a template constant parameter", type);
11754 return 1;
11757 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
11758 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
11760 static bool
11761 dependent_type_p_r (tree type)
11763 tree scope;
11765 /* [temp.dep.type]
11767 A type is dependent if it is:
11769 -- a template parameter. Template template parameters are types
11770 for us (since TYPE_P holds true for them) so we handle
11771 them here. */
11772 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
11773 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
11774 return true;
11775 /* -- a qualified-id with a nested-name-specifier which contains a
11776 class-name that names a dependent type or whose unqualified-id
11777 names a dependent type. */
11778 if (TREE_CODE (type) == TYPENAME_TYPE)
11779 return true;
11780 /* -- a cv-qualified type where the cv-unqualified type is
11781 dependent. */
11782 type = TYPE_MAIN_VARIANT (type);
11783 /* -- a compound type constructed from any dependent type. */
11784 if (TYPE_PTR_TO_MEMBER_P (type))
11785 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
11786 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
11787 (type)));
11788 else if (TREE_CODE (type) == POINTER_TYPE
11789 || TREE_CODE (type) == REFERENCE_TYPE)
11790 return dependent_type_p (TREE_TYPE (type));
11791 else if (TREE_CODE (type) == FUNCTION_TYPE
11792 || TREE_CODE (type) == METHOD_TYPE)
11794 tree arg_type;
11796 if (dependent_type_p (TREE_TYPE (type)))
11797 return true;
11798 for (arg_type = TYPE_ARG_TYPES (type);
11799 arg_type;
11800 arg_type = TREE_CHAIN (arg_type))
11801 if (dependent_type_p (TREE_VALUE (arg_type)))
11802 return true;
11803 return false;
11805 /* -- an array type constructed from any dependent type or whose
11806 size is specified by a constant expression that is
11807 value-dependent. */
11808 if (TREE_CODE (type) == ARRAY_TYPE)
11810 if (TYPE_DOMAIN (type)
11811 && ((value_dependent_expression_p
11812 (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
11813 || (type_dependent_expression_p
11814 (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))))
11815 return true;
11816 return dependent_type_p (TREE_TYPE (type));
11819 /* -- a template-id in which either the template name is a template
11820 parameter ... */
11821 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
11822 return true;
11823 /* ... or any of the template arguments is a dependent type or
11824 an expression that is type-dependent or value-dependent. */
11825 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
11826 && (any_dependent_template_arguments_p
11827 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
11828 return true;
11830 /* All TYPEOF_TYPEs are dependent; if the argument of the `typeof'
11831 expression is not type-dependent, then it should already been
11832 have resolved. */
11833 if (TREE_CODE (type) == TYPEOF_TYPE)
11834 return true;
11836 /* The standard does not specifically mention types that are local
11837 to template functions or local classes, but they should be
11838 considered dependent too. For example:
11840 template <int I> void f() {
11841 enum E { a = I };
11842 S<sizeof (E)> s;
11845 The size of `E' cannot be known until the value of `I' has been
11846 determined. Therefore, `E' must be considered dependent. */
11847 scope = TYPE_CONTEXT (type);
11848 if (scope && TYPE_P (scope))
11849 return dependent_type_p (scope);
11850 else if (scope && TREE_CODE (scope) == FUNCTION_DECL)
11851 return type_dependent_expression_p (scope);
11853 /* Other types are non-dependent. */
11854 return false;
11857 /* Returns TRUE if TYPE is dependent, in the sense of
11858 [temp.dep.type]. */
11860 bool
11861 dependent_type_p (tree type)
11863 /* If there are no template parameters in scope, then there can't be
11864 any dependent types. */
11865 if (!processing_template_decl)
11866 return false;
11868 /* If the type is NULL, we have not computed a type for the entity
11869 in question; in that case, the type is dependent. */
11870 if (!type)
11871 return true;
11873 /* Erroneous types can be considered non-dependent. */
11874 if (type == error_mark_node)
11875 return false;
11877 /* If we have not already computed the appropriate value for TYPE,
11878 do so now. */
11879 if (!TYPE_DEPENDENT_P_VALID (type))
11881 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
11882 TYPE_DEPENDENT_P_VALID (type) = 1;
11885 return TYPE_DEPENDENT_P (type);
11888 /* Returns TRUE if EXPRESSION is dependent, according to CRITERION. */
11890 static bool
11891 dependent_scope_ref_p (tree expression, bool criterion (tree))
11893 tree scope;
11894 tree name;
11896 gcc_assert (TREE_CODE (expression) == SCOPE_REF);
11898 if (!TYPE_P (TREE_OPERAND (expression, 0)))
11899 return true;
11901 scope = TREE_OPERAND (expression, 0);
11902 name = TREE_OPERAND (expression, 1);
11904 /* [temp.dep.expr]
11906 An id-expression is type-dependent if it contains a
11907 nested-name-specifier that contains a class-name that names a
11908 dependent type. */
11909 /* The suggested resolution to Core Issue 2 implies that if the
11910 qualifying type is the current class, then we must peek
11911 inside it. */
11912 if (DECL_P (name)
11913 && currently_open_class (scope)
11914 && !criterion (name))
11915 return false;
11916 if (dependent_type_p (scope))
11917 return true;
11919 return false;
11922 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
11923 [temp.dep.constexpr] */
11925 bool
11926 value_dependent_expression_p (tree expression)
11928 if (!processing_template_decl)
11929 return false;
11931 /* A name declared with a dependent type. */
11932 if (TREE_CODE (expression) == IDENTIFIER_NODE
11933 || (DECL_P (expression)
11934 && type_dependent_expression_p (expression)))
11935 return true;
11936 /* A non-type template parameter. */
11937 if ((TREE_CODE (expression) == CONST_DECL
11938 && DECL_TEMPLATE_PARM_P (expression))
11939 || TREE_CODE (expression) == TEMPLATE_PARM_INDEX)
11940 return true;
11941 /* A constant with integral or enumeration type and is initialized
11942 with an expression that is value-dependent. */
11943 if (TREE_CODE (expression) == VAR_DECL
11944 && DECL_INITIAL (expression)
11945 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (expression))
11946 && value_dependent_expression_p (DECL_INITIAL (expression)))
11947 return true;
11948 /* These expressions are value-dependent if the type to which the
11949 cast occurs is dependent or the expression being casted is
11950 value-dependent. */
11951 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
11952 || TREE_CODE (expression) == STATIC_CAST_EXPR
11953 || TREE_CODE (expression) == CONST_CAST_EXPR
11954 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
11955 || TREE_CODE (expression) == CAST_EXPR)
11957 tree type = TREE_TYPE (expression);
11958 if (dependent_type_p (type))
11959 return true;
11960 /* A functional cast has a list of operands. */
11961 expression = TREE_OPERAND (expression, 0);
11962 if (!expression)
11964 /* If there are no operands, it must be an expression such
11965 as "int()". This should not happen for aggregate types
11966 because it would form non-constant expressions. */
11967 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
11969 return false;
11971 if (TREE_CODE (expression) == TREE_LIST)
11975 if (value_dependent_expression_p (TREE_VALUE (expression)))
11976 return true;
11977 expression = TREE_CHAIN (expression);
11979 while (expression);
11980 return false;
11982 else
11983 return value_dependent_expression_p (expression);
11985 /* A `sizeof' expression is value-dependent if the operand is
11986 type-dependent. */
11987 if (TREE_CODE (expression) == SIZEOF_EXPR
11988 || TREE_CODE (expression) == ALIGNOF_EXPR)
11990 expression = TREE_OPERAND (expression, 0);
11991 if (TYPE_P (expression))
11992 return dependent_type_p (expression);
11993 return type_dependent_expression_p (expression);
11995 if (TREE_CODE (expression) == SCOPE_REF)
11996 return dependent_scope_ref_p (expression, value_dependent_expression_p);
11997 if (TREE_CODE (expression) == COMPONENT_REF)
11998 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
11999 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
12001 /* A CALL_EXPR is value-dependent if any argument is
12002 value-dependent. Why do we have to handle CALL_EXPRs in this
12003 function at all? First, some function calls, those for which
12004 value_dependent_expression_p is true, man appear in constant
12005 expressions. Second, there appear to be bugs which result in
12006 other CALL_EXPRs reaching this point. */
12007 if (TREE_CODE (expression) == CALL_EXPR)
12009 tree function = TREE_OPERAND (expression, 0);
12010 tree args = TREE_OPERAND (expression, 1);
12012 if (value_dependent_expression_p (function))
12013 return true;
12014 else if (! args)
12015 return false;
12016 else if (TREE_CODE (args) == TREE_LIST)
12020 if (value_dependent_expression_p (TREE_VALUE (args)))
12021 return true;
12022 args = TREE_CHAIN (args);
12024 while (args);
12025 return false;
12027 else
12028 return value_dependent_expression_p (args);
12030 /* A constant expression is value-dependent if any subexpression is
12031 value-dependent. */
12032 if (EXPR_P (expression))
12034 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
12036 case tcc_unary:
12037 return (value_dependent_expression_p
12038 (TREE_OPERAND (expression, 0)));
12039 case tcc_comparison:
12040 case tcc_binary:
12041 return ((value_dependent_expression_p
12042 (TREE_OPERAND (expression, 0)))
12043 || (value_dependent_expression_p
12044 (TREE_OPERAND (expression, 1))));
12045 case tcc_expression:
12047 int i;
12048 for (i = 0; i < TREE_CODE_LENGTH (TREE_CODE (expression)); ++i)
12049 /* In some cases, some of the operands may be missing.
12050 (For example, in the case of PREDECREMENT_EXPR, the
12051 amount to increment by may be missing.) That doesn't
12052 make the expression dependent. */
12053 if (TREE_OPERAND (expression, i)
12054 && (value_dependent_expression_p
12055 (TREE_OPERAND (expression, i))))
12056 return true;
12057 return false;
12059 case tcc_reference:
12060 case tcc_statement:
12061 /* These cannot be value dependent. */
12062 return false;
12064 default:
12065 gcc_unreachable ();
12069 /* The expression is not value-dependent. */
12070 return false;
12073 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
12074 [temp.dep.expr]. */
12076 bool
12077 type_dependent_expression_p (tree expression)
12079 if (!processing_template_decl)
12080 return false;
12082 if (expression == error_mark_node)
12083 return false;
12085 /* An unresolved name is always dependent. */
12086 if (TREE_CODE (expression) == IDENTIFIER_NODE)
12087 return true;
12089 /* Some expression forms are never type-dependent. */
12090 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
12091 || TREE_CODE (expression) == SIZEOF_EXPR
12092 || TREE_CODE (expression) == ALIGNOF_EXPR
12093 || TREE_CODE (expression) == TYPEID_EXPR
12094 || TREE_CODE (expression) == DELETE_EXPR
12095 || TREE_CODE (expression) == VEC_DELETE_EXPR
12096 || TREE_CODE (expression) == THROW_EXPR)
12097 return false;
12099 /* The types of these expressions depends only on the type to which
12100 the cast occurs. */
12101 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
12102 || TREE_CODE (expression) == STATIC_CAST_EXPR
12103 || TREE_CODE (expression) == CONST_CAST_EXPR
12104 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
12105 || TREE_CODE (expression) == CAST_EXPR)
12106 return dependent_type_p (TREE_TYPE (expression));
12108 /* The types of these expressions depends only on the type created
12109 by the expression. */
12110 if (TREE_CODE (expression) == NEW_EXPR
12111 || TREE_CODE (expression) == VEC_NEW_EXPR)
12113 /* For NEW_EXPR tree nodes created inside a template, either
12114 the object type itself or a TREE_LIST may appear as the
12115 operand 1. */
12116 tree type = TREE_OPERAND (expression, 1);
12117 if (TREE_CODE (type) == TREE_LIST)
12118 /* This is an array type. We need to check array dimensions
12119 as well. */
12120 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
12121 || value_dependent_expression_p
12122 (TREE_OPERAND (TREE_VALUE (type), 1));
12123 else
12124 return dependent_type_p (type);
12127 if (TREE_CODE (expression) == SCOPE_REF
12128 && dependent_scope_ref_p (expression,
12129 type_dependent_expression_p))
12130 return true;
12132 if (TREE_CODE (expression) == FUNCTION_DECL
12133 && DECL_LANG_SPECIFIC (expression)
12134 && DECL_TEMPLATE_INFO (expression)
12135 && (any_dependent_template_arguments_p
12136 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
12137 return true;
12139 if (TREE_CODE (expression) == TEMPLATE_DECL
12140 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
12141 return false;
12143 if (TREE_TYPE (expression) == unknown_type_node)
12145 if (TREE_CODE (expression) == ADDR_EXPR)
12146 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
12147 if (TREE_CODE (expression) == COMPONENT_REF
12148 || TREE_CODE (expression) == OFFSET_REF)
12150 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
12151 return true;
12152 expression = TREE_OPERAND (expression, 1);
12153 if (TREE_CODE (expression) == IDENTIFIER_NODE)
12154 return false;
12156 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
12157 if (TREE_CODE (expression) == SCOPE_REF)
12158 return false;
12160 if (TREE_CODE (expression) == BASELINK)
12161 expression = BASELINK_FUNCTIONS (expression);
12163 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
12165 if (any_dependent_template_arguments_p
12166 (TREE_OPERAND (expression, 1)))
12167 return true;
12168 expression = TREE_OPERAND (expression, 0);
12170 gcc_assert (TREE_CODE (expression) == OVERLOAD);
12172 while (expression)
12174 if (type_dependent_expression_p (OVL_CURRENT (expression)))
12175 return true;
12176 expression = OVL_NEXT (expression);
12178 return false;
12181 return (dependent_type_p (TREE_TYPE (expression)));
12184 /* Returns TRUE if ARGS (a TREE_LIST of arguments to a function call)
12185 contains a type-dependent expression. */
12187 bool
12188 any_type_dependent_arguments_p (tree args)
12190 while (args)
12192 tree arg = TREE_VALUE (args);
12194 if (type_dependent_expression_p (arg))
12195 return true;
12196 args = TREE_CHAIN (args);
12198 return false;
12201 /* Returns TRUE if the ARG (a template argument) is dependent. */
12203 static bool
12204 dependent_template_arg_p (tree arg)
12206 if (!processing_template_decl)
12207 return false;
12209 if (TREE_CODE (arg) == TEMPLATE_DECL
12210 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12211 return dependent_template_p (arg);
12212 else if (TYPE_P (arg))
12213 return dependent_type_p (arg);
12214 else
12215 return (type_dependent_expression_p (arg)
12216 || value_dependent_expression_p (arg));
12219 /* Returns true if ARGS (a collection of template arguments) contains
12220 any dependent arguments. */
12222 bool
12223 any_dependent_template_arguments_p (tree args)
12225 int i;
12226 int j;
12228 if (!args)
12229 return false;
12231 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
12233 tree level = TMPL_ARGS_LEVEL (args, i + 1);
12234 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
12235 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
12236 return true;
12239 return false;
12242 /* Returns TRUE if the template TMPL is dependent. */
12244 bool
12245 dependent_template_p (tree tmpl)
12247 if (TREE_CODE (tmpl) == OVERLOAD)
12249 while (tmpl)
12251 if (dependent_template_p (OVL_FUNCTION (tmpl)))
12252 return true;
12253 tmpl = OVL_CHAIN (tmpl);
12255 return false;
12258 /* Template template parameters are dependent. */
12259 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
12260 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
12261 return true;
12262 /* So are names that have not been looked up. */
12263 if (TREE_CODE (tmpl) == SCOPE_REF
12264 || TREE_CODE (tmpl) == IDENTIFIER_NODE)
12265 return true;
12266 /* So are member templates of dependent classes. */
12267 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
12268 return dependent_type_p (DECL_CONTEXT (tmpl));
12269 return false;
12272 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
12274 bool
12275 dependent_template_id_p (tree tmpl, tree args)
12277 return (dependent_template_p (tmpl)
12278 || any_dependent_template_arguments_p (args));
12281 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
12282 TYPENAME_TYPE corresponds. Returns ERROR_MARK_NODE if no such TYPE
12283 can be found. Note that this function peers inside uninstantiated
12284 templates and therefore should be used only in extremely limited
12285 situations. */
12287 tree
12288 resolve_typename_type (tree type, bool only_current_p)
12290 tree scope;
12291 tree name;
12292 tree decl;
12293 int quals;
12294 tree pushed_scope;
12296 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
12298 scope = TYPE_CONTEXT (type);
12299 name = TYPE_IDENTIFIER (type);
12301 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
12302 it first before we can figure out what NAME refers to. */
12303 if (TREE_CODE (scope) == TYPENAME_TYPE)
12304 scope = resolve_typename_type (scope, only_current_p);
12305 /* If we don't know what SCOPE refers to, then we cannot resolve the
12306 TYPENAME_TYPE. */
12307 if (scope == error_mark_node || TREE_CODE (scope) == TYPENAME_TYPE)
12308 return error_mark_node;
12309 /* If the SCOPE is a template type parameter, we have no way of
12310 resolving the name. */
12311 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
12312 return type;
12313 /* If the SCOPE is not the current instantiation, there's no reason
12314 to look inside it. */
12315 if (only_current_p && !currently_open_class (scope))
12316 return error_mark_node;
12317 /* If SCOPE is a partial instantiation, it will not have a valid
12318 TYPE_FIELDS list, so use the original template. */
12319 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
12320 /* Enter the SCOPE so that name lookup will be resolved as if we
12321 were in the class definition. In particular, SCOPE will no
12322 longer be considered a dependent type. */
12323 pushed_scope = push_scope (scope);
12324 /* Look up the declaration. */
12325 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true);
12326 /* Obtain the set of qualifiers applied to the TYPE. */
12327 quals = cp_type_quals (type);
12328 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
12329 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
12330 if (!decl)
12331 type = error_mark_node;
12332 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == IDENTIFIER_NODE
12333 && TREE_CODE (decl) == TYPE_DECL)
12334 type = TREE_TYPE (decl);
12335 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
12336 && DECL_CLASS_TEMPLATE_P (decl))
12338 tree tmpl;
12339 tree args;
12340 /* Obtain the template and the arguments. */
12341 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
12342 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
12343 /* Instantiate the template. */
12344 type = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
12345 /*entering_scope=*/0, tf_error | tf_user);
12347 else
12348 type = error_mark_node;
12349 /* Qualify the resulting type. */
12350 if (type != error_mark_node && quals)
12351 type = cp_build_qualified_type (type, quals);
12352 /* Leave the SCOPE. */
12353 if (pushed_scope)
12354 pop_scope (pushed_scope);
12356 return type;
12359 /* EXPR is an expression which is not type-dependent. Return a proxy
12360 for EXPR that can be used to compute the types of larger
12361 expressions containing EXPR. */
12363 tree
12364 build_non_dependent_expr (tree expr)
12366 tree inner_expr;
12368 /* Preserve null pointer constants so that the type of things like
12369 "p == 0" where "p" is a pointer can be determined. */
12370 if (null_ptr_cst_p (expr))
12371 return expr;
12372 /* Preserve OVERLOADs; the functions must be available to resolve
12373 types. */
12374 inner_expr = (TREE_CODE (expr) == ADDR_EXPR ?
12375 TREE_OPERAND (expr, 0) : expr);
12376 if (TREE_CODE (inner_expr) == OVERLOAD
12377 || TREE_CODE (inner_expr) == FUNCTION_DECL
12378 || TREE_CODE (inner_expr) == TEMPLATE_DECL
12379 || TREE_CODE (inner_expr) == TEMPLATE_ID_EXPR)
12380 return expr;
12381 /* There is no need to return a proxy for a variable. */
12382 if (TREE_CODE (expr) == VAR_DECL)
12383 return expr;
12384 /* Preserve string constants; conversions from string constants to
12385 "char *" are allowed, even though normally a "const char *"
12386 cannot be used to initialize a "char *". */
12387 if (TREE_CODE (expr) == STRING_CST)
12388 return expr;
12389 /* Preserve arithmetic constants, as an optimization -- there is no
12390 reason to create a new node. */
12391 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
12392 return expr;
12393 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
12394 There is at least one place where we want to know that a
12395 particular expression is a throw-expression: when checking a ?:
12396 expression, there are special rules if the second or third
12397 argument is a throw-expression. */
12398 if (TREE_CODE (expr) == THROW_EXPR)
12399 return expr;
12401 if (TREE_CODE (expr) == COND_EXPR)
12402 return build3 (COND_EXPR,
12403 TREE_TYPE (expr),
12404 TREE_OPERAND (expr, 0),
12405 (TREE_OPERAND (expr, 1)
12406 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
12407 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
12408 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
12409 if (TREE_CODE (expr) == COMPOUND_EXPR
12410 && !COMPOUND_EXPR_OVERLOADED (expr))
12411 return build2 (COMPOUND_EXPR,
12412 TREE_TYPE (expr),
12413 TREE_OPERAND (expr, 0),
12414 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
12416 /* Otherwise, build a NON_DEPENDENT_EXPR.
12418 REFERENCE_TYPEs are not stripped for expressions in templates
12419 because doing so would play havoc with mangling. Consider, for
12420 example:
12422 template <typename T> void f<T& g>() { g(); }
12424 In the body of "f", the expression for "g" will have
12425 REFERENCE_TYPE, even though the standard says that it should
12426 not. The reason is that we must preserve the syntactic form of
12427 the expression so that mangling (say) "f<g>" inside the body of
12428 "f" works out correctly. Therefore, the REFERENCE_TYPE is
12429 stripped here. */
12430 return build1 (NON_DEPENDENT_EXPR, non_reference (TREE_TYPE (expr)), expr);
12433 /* ARGS is a TREE_LIST of expressions as arguments to a function call.
12434 Return a new TREE_LIST with the various arguments replaced with
12435 equivalent non-dependent expressions. */
12437 tree
12438 build_non_dependent_args (tree args)
12440 tree a;
12441 tree new_args;
12443 new_args = NULL_TREE;
12444 for (a = args; a; a = TREE_CHAIN (a))
12445 new_args = tree_cons (NULL_TREE,
12446 build_non_dependent_expr (TREE_VALUE (a)),
12447 new_args);
12448 return nreverse (new_args);
12451 #include "gt-cp-pt.h"