svn merge -r102224:107263 svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-3_4-branch
[official-gcc.git] / gcc / cp / pt.c
blobd826c74eee3edfb627c43847ec368a39b527dde5
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 "flags.h"
36 #include "cp-tree.h"
37 #include "tree-inline.h"
38 #include "decl.h"
39 #include "lex.h"
40 #include "output.h"
41 #include "except.h"
42 #include "toplev.h"
43 #include "rtl.h"
44 #include "timevar.h"
46 /* The type of functions taking a tree, and some additional data, and
47 returning an int. */
48 typedef int (*tree_fn_t) (tree, void*);
50 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
51 instantiations have been deferred, either because their definitions
52 were not yet available, or because we were putting off doing the work.
53 The TREE_PURPOSE of each entry is either a DECL (for a function or
54 static data member), or a TYPE (for a class) indicating what we are
55 hoping to instantiate. The TREE_VALUE is not used. */
56 static GTY(()) tree pending_templates;
57 static GTY(()) tree last_pending_template;
59 int processing_template_parmlist;
60 static int template_header_count;
62 static GTY(()) tree saved_trees;
63 static GTY(()) varray_type inline_parm_levels;
64 static size_t inline_parm_levels_used;
66 static GTY(()) tree current_tinst_level;
68 static GTY(()) tree saved_access_scope;
70 /* A map from local variable declarations in the body of the template
71 presently being instantiated to the corresponding instantiated
72 local variables. */
73 static htab_t local_specializations;
75 #define UNIFY_ALLOW_NONE 0
76 #define UNIFY_ALLOW_MORE_CV_QUAL 1
77 #define UNIFY_ALLOW_LESS_CV_QUAL 2
78 #define UNIFY_ALLOW_DERIVED 4
79 #define UNIFY_ALLOW_INTEGER 8
80 #define UNIFY_ALLOW_OUTER_LEVEL 16
81 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
82 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
83 #define UNIFY_ALLOW_MAX_CORRECTION 128
85 #define GTB_VIA_VIRTUAL 1 /* The base class we are examining is
86 virtual, or a base class of a virtual
87 base. */
88 #define GTB_IGNORE_TYPE 2 /* We don't need to try to unify the current
89 type with the desired type. */
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 (tree, tree);
114 static tree convert_template_argument (tree, tree, tree,
115 tsubst_flags_t, int, tree);
116 static tree get_bindings_overload (tree, tree, tree);
117 static int for_each_template_parm (tree, tree_fn_t, void*, htab_t);
118 static tree build_template_parm_index (int, int, int, tree, tree);
119 static int inline_needs_template_parms (tree);
120 static void push_inline_template_parms_recursive (tree, int);
121 static tree retrieve_specialization (tree, tree);
122 static tree retrieve_local_specialization (tree);
123 static tree register_specialization (tree, tree, tree);
124 static void register_local_specialization (tree, tree);
125 static tree reduce_template_parm_level (tree, tree, int);
126 static tree build_template_decl (tree, tree);
127 static int mark_template_parm (tree, void *);
128 static int template_parm_this_level_p (tree, void *);
129 static tree tsubst_friend_function (tree, tree);
130 static tree tsubst_friend_class (tree, tree);
131 static int can_complete_type_without_circularity (tree);
132 static tree get_bindings (tree, tree, tree);
133 static tree get_bindings_real (tree, tree, tree, int, int, int);
134 static int template_decl_level (tree);
135 static int check_cv_quals_for_unify (int, tree, tree);
136 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
137 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
138 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
139 static void regenerate_decl_from_template (tree, tree);
140 static tree most_specialized (tree, tree, tree);
141 static tree most_specialized_class (tree, tree);
142 static int template_class_depth_real (tree, int);
143 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
144 static tree tsubst_decl (tree, tree, tree, tsubst_flags_t);
145 static tree tsubst_arg_types (tree, tree, tsubst_flags_t, tree);
146 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
147 static void check_specialization_scope (void);
148 static tree process_partial_specialization (tree);
149 static void set_current_access_from_decl (tree);
150 static void check_default_tmpl_args (tree, tree, int, int);
151 static tree tsubst_call_declarator_parms (tree, tree, tsubst_flags_t, tree);
152 static tree get_template_base_recursive (tree, tree, tree, tree, tree, int);
153 static tree get_template_base (tree, tree, tree, tree);
154 static int verify_class_unification (tree, tree, tree);
155 static tree try_class_unification (tree, tree, tree, tree);
156 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
157 tree, tree);
158 static tree determine_specialization (tree, tree, tree *, int);
159 static int template_args_equal (tree, tree);
160 static void tsubst_default_arguments (tree);
161 static tree for_each_template_parm_r (tree *, int *, void *);
162 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
163 static void copy_default_args_to_explicit_spec (tree);
164 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
165 static int eq_local_specializations (const void *, const void *);
166 static bool dependent_type_p_r (tree);
167 static tree tsubst (tree, tree, tsubst_flags_t, tree);
168 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree);
169 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
171 /* Make the current scope suitable for access checking when we are
172 processing T. T can be FUNCTION_DECL for instantiated function
173 template, or VAR_DECL for static member variable (need by
174 instantiate_decl). */
176 static void
177 push_access_scope (tree t)
179 my_friendly_assert (TREE_CODE (t) == FUNCTION_DECL
180 || TREE_CODE (t) == VAR_DECL,
183 if (DECL_FRIEND_CONTEXT (t))
184 push_nested_class (DECL_FRIEND_CONTEXT (t));
185 else if (DECL_CLASS_SCOPE_P (t))
186 push_nested_class (DECL_CONTEXT (t));
187 else
188 push_to_top_level ();
190 if (TREE_CODE (t) == FUNCTION_DECL)
192 saved_access_scope = tree_cons
193 (NULL_TREE, current_function_decl, saved_access_scope);
194 current_function_decl = t;
198 /* Restore the scope set up by push_access_scope. T is the node we
199 are processing. */
201 static void
202 pop_access_scope (tree t)
204 if (TREE_CODE (t) == FUNCTION_DECL)
206 current_function_decl = TREE_VALUE (saved_access_scope);
207 saved_access_scope = TREE_CHAIN (saved_access_scope);
210 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
211 pop_nested_class ();
212 else
213 pop_from_top_level ();
216 /* Do any processing required when DECL (a member template
217 declaration) is finished. Returns the TEMPLATE_DECL corresponding
218 to DECL, unless it is a specialization, in which case the DECL
219 itself is returned. */
221 tree
222 finish_member_template_decl (tree decl)
224 if (decl == error_mark_node)
225 return error_mark_node;
227 my_friendly_assert (DECL_P (decl), 20020812);
229 if (TREE_CODE (decl) == TYPE_DECL)
231 tree type;
233 type = TREE_TYPE (decl);
234 if (IS_AGGR_TYPE (type)
235 && CLASSTYPE_TEMPLATE_INFO (type)
236 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
238 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
239 check_member_template (tmpl);
240 return tmpl;
242 return NULL_TREE;
244 else if (TREE_CODE (decl) == FIELD_DECL)
245 error ("data member `%D' cannot be a member template", decl);
246 else if (DECL_TEMPLATE_INFO (decl))
248 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
250 check_member_template (DECL_TI_TEMPLATE (decl));
251 return DECL_TI_TEMPLATE (decl);
253 else
254 return decl;
256 else
257 error ("invalid member template declaration `%D'", decl);
259 return error_mark_node;
262 /* Returns the template nesting level of the indicated class TYPE.
264 For example, in:
265 template <class T>
266 struct A
268 template <class U>
269 struct B {};
272 A<T>::B<U> has depth two, while A<T> has depth one.
273 Both A<T>::B<int> and A<int>::B<U> have depth one, if
274 COUNT_SPECIALIZATIONS is 0 or if they are instantiations, not
275 specializations.
277 This function is guaranteed to return 0 if passed NULL_TREE so
278 that, for example, `template_class_depth (current_class_type)' is
279 always safe. */
281 static int
282 template_class_depth_real (tree type, int count_specializations)
284 int depth;
286 for (depth = 0;
287 type && TREE_CODE (type) != NAMESPACE_DECL;
288 type = (TREE_CODE (type) == FUNCTION_DECL)
289 ? CP_DECL_CONTEXT (type) : TYPE_CONTEXT (type))
291 if (TREE_CODE (type) != FUNCTION_DECL)
293 if (CLASSTYPE_TEMPLATE_INFO (type)
294 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
295 && ((count_specializations
296 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
297 || uses_template_parms (CLASSTYPE_TI_ARGS (type))))
298 ++depth;
300 else
302 if (DECL_TEMPLATE_INFO (type)
303 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (type))
304 && ((count_specializations
305 && DECL_TEMPLATE_SPECIALIZATION (type))
306 || uses_template_parms (DECL_TI_ARGS (type))))
307 ++depth;
311 return depth;
314 /* Returns the template nesting level of the indicated class TYPE.
315 Like template_class_depth_real, but instantiations do not count in
316 the depth. */
318 int
319 template_class_depth (tree type)
321 return template_class_depth_real (type, /*count_specializations=*/0);
324 /* Returns 1 if processing DECL as part of do_pending_inlines
325 needs us to push template parms. */
327 static int
328 inline_needs_template_parms (tree decl)
330 if (! DECL_TEMPLATE_INFO (decl))
331 return 0;
333 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
334 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
337 /* Subroutine of maybe_begin_member_template_processing.
338 Push the template parms in PARMS, starting from LEVELS steps into the
339 chain, and ending at the beginning, since template parms are listed
340 innermost first. */
342 static void
343 push_inline_template_parms_recursive (tree parmlist, int levels)
345 tree parms = TREE_VALUE (parmlist);
346 int i;
348 if (levels > 1)
349 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
351 ++processing_template_decl;
352 current_template_parms
353 = tree_cons (size_int (processing_template_decl),
354 parms, current_template_parms);
355 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
357 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
358 NULL);
359 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
361 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
362 my_friendly_assert (DECL_P (parm), 0);
364 switch (TREE_CODE (parm))
366 case TYPE_DECL:
367 case TEMPLATE_DECL:
368 pushdecl (parm);
369 break;
371 case PARM_DECL:
373 /* Make a CONST_DECL as is done in process_template_parm.
374 It is ugly that we recreate this here; the original
375 version built in process_template_parm is no longer
376 available. */
377 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
378 TREE_TYPE (parm));
379 DECL_ARTIFICIAL (decl) = 1;
380 TREE_CONSTANT (decl) = TREE_READONLY (decl) = 1;
381 DECL_INITIAL (decl) = DECL_INITIAL (parm);
382 SET_DECL_TEMPLATE_PARM_P (decl);
383 pushdecl (decl);
385 break;
387 default:
388 abort ();
393 /* Restore the template parameter context for a member template or
394 a friend template defined in a class definition. */
396 void
397 maybe_begin_member_template_processing (tree decl)
399 tree parms;
400 int levels = 0;
402 if (inline_needs_template_parms (decl))
404 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
405 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
407 if (DECL_TEMPLATE_SPECIALIZATION (decl))
409 --levels;
410 parms = TREE_CHAIN (parms);
413 push_inline_template_parms_recursive (parms, levels);
416 /* Remember how many levels of template parameters we pushed so that
417 we can pop them later. */
418 if (!inline_parm_levels)
419 VARRAY_INT_INIT (inline_parm_levels, 4, "inline_parm_levels");
420 if (inline_parm_levels_used == inline_parm_levels->num_elements)
421 VARRAY_GROW (inline_parm_levels, 2 * inline_parm_levels_used);
422 VARRAY_INT (inline_parm_levels, inline_parm_levels_used) = levels;
423 ++inline_parm_levels_used;
426 /* Undo the effects of begin_member_template_processing. */
428 void
429 maybe_end_member_template_processing (void)
431 int i;
433 if (!inline_parm_levels_used)
434 return;
436 --inline_parm_levels_used;
437 for (i = 0;
438 i < VARRAY_INT (inline_parm_levels, inline_parm_levels_used);
439 ++i)
441 --processing_template_decl;
442 current_template_parms = TREE_CHAIN (current_template_parms);
443 poplevel (0, 0, 0);
447 /* Returns nonzero iff T is a member template function. We must be
448 careful as in
450 template <class T> class C { void f(); }
452 Here, f is a template function, and a member, but not a member
453 template. This function does not concern itself with the origin of
454 T, only its present state. So if we have
456 template <class T> class C { template <class U> void f(U); }
458 then neither C<int>::f<char> nor C<T>::f<double> is considered
459 to be a member template. But, `template <class U> void
460 C<int>::f(U)' is considered a member template. */
463 is_member_template (tree t)
465 if (!DECL_FUNCTION_TEMPLATE_P (t))
466 /* Anything that isn't a function or a template function is
467 certainly not a member template. */
468 return 0;
470 /* A local class can't have member templates. */
471 if (decl_function_context (t))
472 return 0;
474 return (DECL_FUNCTION_MEMBER_P (DECL_TEMPLATE_RESULT (t))
475 /* If there are more levels of template parameters than
476 there are template classes surrounding the declaration,
477 then we have a member template. */
478 && (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
479 template_class_depth (DECL_CONTEXT (t))));
482 #if 0 /* UNUSED */
483 /* Returns nonzero iff T is a member template class. See
484 is_member_template for a description of what precisely constitutes
485 a member template. */
488 is_member_template_class (tree t)
490 if (!DECL_CLASS_TEMPLATE_P (t))
491 /* Anything that isn't a class template, is certainly not a member
492 template. */
493 return 0;
495 if (!DECL_CLASS_SCOPE_P (t))
496 /* Anything whose context isn't a class type is surely not a
497 member template. */
498 return 0;
500 /* If there are more levels of template parameters than there are
501 template classes surrounding the declaration, then we have a
502 member template. */
503 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
504 template_class_depth (DECL_CONTEXT (t)));
506 #endif
508 /* Return a new template argument vector which contains all of ARGS,
509 but has as its innermost set of arguments the EXTRA_ARGS. */
511 static tree
512 add_to_template_args (tree args, tree extra_args)
514 tree new_args;
515 int extra_depth;
516 int i;
517 int j;
519 extra_depth = TMPL_ARGS_DEPTH (extra_args);
520 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
522 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
523 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
525 for (j = 1; j <= extra_depth; ++j, ++i)
526 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
528 return new_args;
531 /* Like add_to_template_args, but only the outermost ARGS are added to
532 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
533 (EXTRA_ARGS) levels are added. This function is used to combine
534 the template arguments from a partial instantiation with the
535 template arguments used to attain the full instantiation from the
536 partial instantiation. */
538 static tree
539 add_outermost_template_args (tree args, tree extra_args)
541 tree new_args;
543 /* If there are more levels of EXTRA_ARGS than there are ARGS,
544 something very fishy is going on. */
545 my_friendly_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args),
548 /* If *all* the new arguments will be the EXTRA_ARGS, just return
549 them. */
550 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
551 return extra_args;
553 /* For the moment, we make ARGS look like it contains fewer levels. */
554 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
556 new_args = add_to_template_args (args, extra_args);
558 /* Now, we restore ARGS to its full dimensions. */
559 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
561 return new_args;
564 /* Return the N levels of innermost template arguments from the ARGS. */
566 tree
567 get_innermost_template_args (tree args, int n)
569 tree new_args;
570 int extra_levels;
571 int i;
573 my_friendly_assert (n >= 0, 20000603);
575 /* If N is 1, just return the innermost set of template arguments. */
576 if (n == 1)
577 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
579 /* If we're not removing anything, just return the arguments we were
580 given. */
581 extra_levels = TMPL_ARGS_DEPTH (args) - n;
582 my_friendly_assert (extra_levels >= 0, 20000603);
583 if (extra_levels == 0)
584 return args;
586 /* Make a new set of arguments, not containing the outer arguments. */
587 new_args = make_tree_vec (n);
588 for (i = 1; i <= n; ++i)
589 SET_TMPL_ARGS_LEVEL (new_args, i,
590 TMPL_ARGS_LEVEL (args, i + extra_levels));
592 return new_args;
595 /* We've got a template header coming up; push to a new level for storing
596 the parms. */
598 void
599 begin_template_parm_list (void)
601 /* We use a non-tag-transparent scope here, which causes pushtag to
602 put tags in this scope, rather than in the enclosing class or
603 namespace scope. This is the right thing, since we want
604 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
605 global template class, push_template_decl handles putting the
606 TEMPLATE_DECL into top-level scope. For a nested template class,
607 e.g.:
609 template <class T> struct S1 {
610 template <class T> struct S2 {};
613 pushtag contains special code to call pushdecl_with_scope on the
614 TEMPLATE_DECL for S2. */
615 begin_scope (sk_template_parms, NULL);
616 ++processing_template_decl;
617 ++processing_template_parmlist;
618 note_template_header (0);
621 /* This routine is called when a specialization is declared. If it is
622 invalid to declare a specialization here, an error is reported. */
624 static void
625 check_specialization_scope (void)
627 tree scope = current_scope ();
629 /* [temp.expl.spec]
631 An explicit specialization shall be declared in the namespace of
632 which the template is a member, or, for member templates, in the
633 namespace of which the enclosing class or enclosing class
634 template is a member. An explicit specialization of a member
635 function, member class or static data member of a class template
636 shall be declared in the namespace of which the class template
637 is a member. */
638 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
639 error ("explicit specialization in non-namespace scope `%D'",
640 scope);
642 /* [temp.expl.spec]
644 In an explicit specialization declaration for a member of a class
645 template or a member template that appears in namespace scope,
646 the member template and some of its enclosing class templates may
647 remain unspecialized, except that the declaration shall not
648 explicitly specialize a class member template if its enclosing
649 class templates are not explicitly specialized as well. */
650 if (current_template_parms)
651 error ("enclosing class templates are not explicitly specialized");
654 /* We've just seen template <>. */
656 void
657 begin_specialization (void)
659 begin_scope (sk_template_spec, NULL);
660 note_template_header (1);
661 check_specialization_scope ();
664 /* Called at then end of processing a declaration preceded by
665 template<>. */
667 void
668 end_specialization (void)
670 finish_scope ();
671 reset_specialization ();
674 /* Any template <>'s that we have seen thus far are not referring to a
675 function specialization. */
677 void
678 reset_specialization (void)
680 processing_specialization = 0;
681 template_header_count = 0;
684 /* We've just seen a template header. If SPECIALIZATION is nonzero,
685 it was of the form template <>. */
687 static void
688 note_template_header (int specialization)
690 processing_specialization = specialization;
691 template_header_count++;
694 /* We're beginning an explicit instantiation. */
696 void
697 begin_explicit_instantiation (void)
699 my_friendly_assert (!processing_explicit_instantiation, 20020913);
700 processing_explicit_instantiation = true;
704 void
705 end_explicit_instantiation (void)
707 my_friendly_assert(processing_explicit_instantiation, 20020913);
708 processing_explicit_instantiation = false;
711 /* A explicit specialization or partial specialization TMPL is being
712 declared. Check that the namespace in which the specialization is
713 occurring is permissible. Returns false iff it is invalid to
714 specialize TMPL in the current namespace. */
716 static bool
717 check_specialization_namespace (tree tmpl)
719 tree tpl_ns = decl_namespace_context (tmpl);
721 /* [tmpl.expl.spec]
723 An explicit specialization shall be declared in the namespace of
724 which the template is a member, or, for member templates, in the
725 namespace of which the enclosing class or enclosing class
726 template is a member. An explicit specialization of a member
727 function, member class or static data member of a class template
728 shall be declared in the namespace of which the class template is
729 a member. */
730 if (is_associated_namespace (current_namespace, tpl_ns))
731 /* Same or super-using namespace. */
732 return true;
733 else
735 pedwarn ("specialization of `%D' in different namespace", tmpl);
736 cp_pedwarn_at (" from definition of `%#D'", tmpl);
737 return false;
741 /* The TYPE is being declared. If it is a template type, that means it
742 is a partial specialization. Do appropriate error-checking. */
744 void
745 maybe_process_partial_specialization (tree type)
747 /* TYPE maybe an ERROR_MARK_NODE. */
748 tree context = TYPE_P (type) ? TYPE_CONTEXT (type) : NULL_TREE;
750 if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
752 /* This is for ordinary explicit specialization and partial
753 specialization of a template class such as:
755 template <> class C<int>;
759 template <class T> class C<T*>;
761 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
763 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
764 && !COMPLETE_TYPE_P (type))
766 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
767 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
768 if (processing_template_decl)
769 push_template_decl (TYPE_MAIN_DECL (type));
771 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
772 error ("specialization of `%T' after instantiation", type);
774 else if (CLASS_TYPE_P (type)
775 && !CLASSTYPE_USE_TEMPLATE (type)
776 && CLASSTYPE_TEMPLATE_INFO (type)
777 && context && CLASS_TYPE_P (context)
778 && CLASSTYPE_TEMPLATE_INFO (context))
780 /* This is for an explicit specialization of member class
781 template according to [temp.expl.spec/18]:
783 template <> template <class U> class C<int>::D;
785 The context `C<int>' must be an implicit instantiation.
786 Otherwise this is just a member class template declared
787 earlier like:
789 template <> class C<int> { template <class U> class D; };
790 template <> template <class U> class C<int>::D;
792 In the first case, `C<int>::D' is a specialization of `C<T>::D'
793 while in the second case, `C<int>::D' is a primary template
794 and `C<T>::D' may not exist. */
796 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
797 && !COMPLETE_TYPE_P (type))
799 tree t;
801 if (current_namespace
802 != decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type)))
804 pedwarn ("specializing `%#T' in different namespace", type);
805 cp_pedwarn_at (" from definition of `%#D'",
806 CLASSTYPE_TI_TEMPLATE (type));
809 /* Check for invalid specialization after instantiation:
811 template <> template <> class C<int>::D<int>;
812 template <> template <class U> class C<int>::D; */
814 for (t = DECL_TEMPLATE_INSTANTIATIONS
815 (most_general_template (CLASSTYPE_TI_TEMPLATE (type)));
816 t; t = TREE_CHAIN (t))
817 if (TREE_VALUE (t) != type
818 && TYPE_CONTEXT (TREE_VALUE (t)) == context)
819 error ("specialization `%T' after instantiation `%T'",
820 type, TREE_VALUE (t));
822 /* Mark TYPE as a specialization. And as a result, we only
823 have one level of template argument for the innermost
824 class template. */
825 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
826 CLASSTYPE_TI_ARGS (type)
827 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
830 else if (processing_specialization)
831 error ("explicit specialization of non-template `%T'", type);
834 /* Retrieve the specialization (in the sense of [temp.spec] - a
835 specialization is either an instantiation or an explicit
836 specialization) of TMPL for the given template ARGS. If there is
837 no such specialization, return NULL_TREE. The ARGS are a vector of
838 arguments, or a vector of vectors of arguments, in the case of
839 templates with more than one level of parameters. */
841 static tree
842 retrieve_specialization (tree tmpl, tree args)
844 tree s;
846 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
848 /* There should be as many levels of arguments as there are
849 levels of parameters. */
850 my_friendly_assert (TMPL_ARGS_DEPTH (args)
851 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)),
854 for (s = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
855 s != NULL_TREE;
856 s = TREE_CHAIN (s))
857 if (comp_template_args (TREE_PURPOSE (s), args))
858 return TREE_VALUE (s);
860 return NULL_TREE;
863 /* Like retrieve_specialization, but for local declarations. */
865 static tree
866 retrieve_local_specialization (tree tmpl)
868 tree spec = htab_find_with_hash (local_specializations, tmpl,
869 htab_hash_pointer (tmpl));
870 return spec ? TREE_PURPOSE (spec) : NULL_TREE;
873 /* Returns nonzero iff DECL is a specialization of TMPL. */
876 is_specialization_of (tree decl, tree tmpl)
878 tree t;
880 if (TREE_CODE (decl) == FUNCTION_DECL)
882 for (t = decl;
883 t != NULL_TREE;
884 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
885 if (t == tmpl)
886 return 1;
888 else
890 my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 0);
892 for (t = TREE_TYPE (decl);
893 t != NULL_TREE;
894 t = CLASSTYPE_USE_TEMPLATE (t)
895 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
896 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
897 return 1;
900 return 0;
903 /* Returns nonzero iff DECL is a specialization of friend declaration
904 FRIEND according to [temp.friend]. */
906 bool
907 is_specialization_of_friend (tree decl, tree friend)
909 bool need_template = true;
910 int template_depth;
912 my_friendly_assert (TREE_CODE (decl) == FUNCTION_DECL, 0);
914 /* For [temp.friend/6] when FRIEND is an ordinary member function
915 of a template class, we want to check if DECL is a specialization
916 if this. */
917 if (TREE_CODE (friend) == FUNCTION_DECL
918 && DECL_TEMPLATE_INFO (friend)
919 && !DECL_USE_TEMPLATE (friend))
921 friend = DECL_TI_TEMPLATE (friend);
922 need_template = false;
925 /* There is nothing to do if this is not a template friend. */
926 if (TREE_CODE (friend) != TEMPLATE_DECL)
927 return 0;
929 if (is_specialization_of (decl, friend))
930 return 1;
932 /* [temp.friend/6]
933 A member of a class template may be declared to be a friend of a
934 non-template class. In this case, the corresponding member of
935 every specialization of the class template is a friend of the
936 class granting friendship.
938 For example, given a template friend declaration
940 template <class T> friend void A<T>::f();
942 the member function below is considered a friend
944 template <> struct A<int> {
945 void f();
948 For this type of template friend, TEMPLATE_DEPTH below will be
949 nonzero. To determine if DECL is a friend of FRIEND, we first
950 check if the enclosing class is a specialization of another. */
952 template_depth = template_class_depth (DECL_CONTEXT (friend));
953 if (template_depth
954 && DECL_CLASS_SCOPE_P (decl)
955 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
956 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend))))
958 /* Next, we check the members themselves. In order to handle
959 a few tricky cases like
961 template <class T> friend void A<T>::g(T t);
962 template <class T> template <T t> friend void A<T>::h();
964 we need to figure out what ARGS is (corresponding to `T' in above
965 examples) from DECL for later processing. */
967 tree context = DECL_CONTEXT (decl);
968 tree args = NULL_TREE;
969 int current_depth = 0;
970 while (current_depth < template_depth)
972 if (CLASSTYPE_TEMPLATE_INFO (context))
974 if (current_depth == 0)
975 args = TYPE_TI_ARGS (context);
976 else
977 args = add_to_template_args (TYPE_TI_ARGS (context), args);
978 current_depth++;
980 context = TYPE_CONTEXT (context);
983 if (TREE_CODE (decl) == FUNCTION_DECL)
985 bool is_template;
986 tree friend_type;
987 tree decl_type;
988 tree friend_args_type;
989 tree decl_args_type;
991 /* Make sure that both DECL and FRIEND are templates or
992 non-templates. */
993 is_template = DECL_TEMPLATE_INFO (decl)
994 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
995 if (need_template ^ is_template)
996 return 0;
997 else if (is_template)
999 /* If both are templates, check template parameter list. */
1000 tree friend_parms
1001 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
1002 args, tf_none);
1003 if (!comp_template_parms
1004 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1005 friend_parms))
1006 return 0;
1008 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1010 else
1011 decl_type = TREE_TYPE (decl);
1013 friend_type = tsubst_function_type (TREE_TYPE (friend), args,
1014 tf_none, NULL_TREE);
1015 if (friend_type == error_mark_node)
1016 return 0;
1018 /* Check if return types match. */
1019 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1020 return 0;
1022 /* Check if function parameter types match, ignoring the
1023 `this' parameter. */
1024 friend_args_type = TYPE_ARG_TYPES (friend_type);
1025 decl_args_type = TYPE_ARG_TYPES (decl_type);
1026 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend))
1027 friend_args_type = TREE_CHAIN (friend_args_type);
1028 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1029 decl_args_type = TREE_CHAIN (decl_args_type);
1030 if (compparms (decl_args_type, friend_args_type))
1031 return 1;
1034 return 0;
1037 /* Register the specialization SPEC as a specialization of TMPL with
1038 the indicated ARGS. Returns SPEC, or an equivalent prior
1039 declaration, if available. */
1041 static tree
1042 register_specialization (tree spec, tree tmpl, tree args)
1044 tree s;
1046 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
1048 if (TREE_CODE (spec) == FUNCTION_DECL
1049 && uses_template_parms (DECL_TI_ARGS (spec)))
1050 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1051 register it; we want the corresponding TEMPLATE_DECL instead.
1052 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1053 the more obvious `uses_template_parms (spec)' to avoid problems
1054 with default function arguments. In particular, given
1055 something like this:
1057 template <class T> void f(T t1, T t = T())
1059 the default argument expression is not substituted for in an
1060 instantiation unless and until it is actually needed. */
1061 return spec;
1063 /* There should be as many levels of arguments as there are
1064 levels of parameters. */
1065 my_friendly_assert (TMPL_ARGS_DEPTH (args)
1066 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)),
1069 for (s = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
1070 s != NULL_TREE;
1071 s = TREE_CHAIN (s))
1073 tree fn = TREE_VALUE (s);
1075 /* We can sometimes try to re-register a specialization that we've
1076 already got. In particular, regenerate_decl_from_template
1077 calls duplicate_decls which will update the specialization
1078 list. But, we'll still get called again here anyhow. It's
1079 more convenient to simply allow this than to try to prevent it. */
1080 if (fn == spec)
1081 return spec;
1082 else if (comp_template_args (TREE_PURPOSE (s), args))
1084 if (DECL_TEMPLATE_SPECIALIZATION (spec))
1086 if (DECL_TEMPLATE_INSTANTIATION (fn))
1088 if (TREE_USED (fn)
1089 || DECL_EXPLICIT_INSTANTIATION (fn))
1091 error ("specialization of %D after instantiation",
1092 fn);
1093 return spec;
1095 else
1097 /* This situation should occur only if the first
1098 specialization is an implicit instantiation,
1099 the second is an explicit specialization, and
1100 the implicit instantiation has not yet been
1101 used. That situation can occur if we have
1102 implicitly instantiated a member function and
1103 then specialized it later.
1105 We can also wind up here if a friend
1106 declaration that looked like an instantiation
1107 turns out to be a specialization:
1109 template <class T> void foo(T);
1110 class S { friend void foo<>(int) };
1111 template <> void foo(int);
1113 We transform the existing DECL in place so that
1114 any pointers to it become pointers to the
1115 updated declaration.
1117 If there was a definition for the template, but
1118 not for the specialization, we want this to
1119 look as if there is no definition, and vice
1120 versa. */
1121 DECL_INITIAL (fn) = NULL_TREE;
1122 duplicate_decls (spec, fn);
1124 return fn;
1127 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1129 if (!duplicate_decls (spec, fn) && DECL_INITIAL (spec))
1130 /* Dup decl failed, but this is a new
1131 definition. Set the line number so any errors
1132 match this new definition. */
1133 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1135 return fn;
1141 /* A specialization must be declared in the same namespace as the
1142 template it is specializing. */
1143 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1144 && !check_specialization_namespace (tmpl))
1145 DECL_CONTEXT (spec) = decl_namespace_context (tmpl);
1147 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
1148 = tree_cons (args, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
1150 return spec;
1153 /* Unregister the specialization SPEC as a specialization of TMPL.
1154 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1155 if the SPEC was listed as a specialization of TMPL. */
1157 bool
1158 reregister_specialization (tree spec, tree tmpl, tree new_spec)
1160 tree* s;
1162 for (s = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
1163 *s != NULL_TREE;
1164 s = &TREE_CHAIN (*s))
1165 if (TREE_VALUE (*s) == spec)
1167 if (!new_spec)
1168 *s = TREE_CHAIN (*s);
1169 else
1170 TREE_VALUE (*s) = new_spec;
1171 return 1;
1174 return 0;
1177 /* Compare an entry in the local specializations hash table P1 (which
1178 is really a pointer to a TREE_LIST) with P2 (which is really a
1179 DECL). */
1181 static int
1182 eq_local_specializations (const void *p1, const void *p2)
1184 return TREE_VALUE ((tree) p1) == (tree) p2;
1187 /* Hash P1, an entry in the local specializations table. */
1189 static hashval_t
1190 hash_local_specialization (const void* p1)
1192 return htab_hash_pointer (TREE_VALUE ((tree) p1));
1195 /* Like register_specialization, but for local declarations. We are
1196 registering SPEC, an instantiation of TMPL. */
1198 static void
1199 register_local_specialization (tree spec, tree tmpl)
1201 void **slot;
1203 slot = htab_find_slot_with_hash (local_specializations, tmpl,
1204 htab_hash_pointer (tmpl), INSERT);
1205 *slot = build_tree_list (spec, tmpl);
1208 /* Print the list of candidate FNS in an error message. */
1210 void
1211 print_candidates (tree fns)
1213 tree fn;
1215 const char *str = "candidates are:";
1217 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn))
1219 tree f;
1221 for (f = TREE_VALUE (fn); f; f = OVL_NEXT (f))
1222 cp_error_at ("%s %+#D", str, OVL_CURRENT (f));
1223 str = " ";
1227 /* Returns the template (one of the functions given by TEMPLATE_ID)
1228 which can be specialized to match the indicated DECL with the
1229 explicit template args given in TEMPLATE_ID. The DECL may be
1230 NULL_TREE if none is available. In that case, the functions in
1231 TEMPLATE_ID are non-members.
1233 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1234 specialization of a member template.
1236 The template args (those explicitly specified and those deduced)
1237 are output in a newly created vector *TARGS_OUT.
1239 If it is impossible to determine the result, an error message is
1240 issued. The error_mark_node is returned to indicate failure. */
1242 static tree
1243 determine_specialization (tree template_id,
1244 tree decl,
1245 tree* targs_out,
1246 int need_member_template)
1248 tree fns;
1249 tree targs;
1250 tree explicit_targs;
1251 tree candidates = NULL_TREE;
1252 tree templates = NULL_TREE;
1254 *targs_out = NULL_TREE;
1256 if (template_id == error_mark_node)
1257 return error_mark_node;
1259 fns = TREE_OPERAND (template_id, 0);
1260 explicit_targs = TREE_OPERAND (template_id, 1);
1262 if (fns == error_mark_node)
1263 return error_mark_node;
1265 /* Check for baselinks. */
1266 if (BASELINK_P (fns))
1267 fns = BASELINK_FUNCTIONS (fns);
1269 if (!is_overloaded_fn (fns))
1271 error ("`%D' is not a function template", fns);
1272 return error_mark_node;
1275 for (; fns; fns = OVL_NEXT (fns))
1277 tree fn = OVL_CURRENT (fns);
1279 if (TREE_CODE (fn) == TEMPLATE_DECL)
1281 tree decl_arg_types;
1282 tree fn_arg_types;
1284 /* DECL might be a specialization of FN. */
1286 /* Adjust the type of DECL in case FN is a static member. */
1287 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1288 if (DECL_STATIC_FUNCTION_P (fn)
1289 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1290 decl_arg_types = TREE_CHAIN (decl_arg_types);
1292 /* Check that the number of function parameters matches.
1293 For example,
1294 template <class T> void f(int i = 0);
1295 template <> void f<int>();
1296 The specialization f<int> is invalid but is not caught
1297 by get_bindings below. */
1299 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1300 if (list_length (fn_arg_types) != list_length (decl_arg_types))
1301 continue;
1303 /* For a non-static member function, we need to make sure that
1304 the const qualification is the same. This can be done by
1305 checking the 'this' in the argument list. */
1306 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1307 && !same_type_p (TREE_VALUE (fn_arg_types),
1308 TREE_VALUE (decl_arg_types)))
1309 continue;
1311 /* See whether this function might be a specialization of this
1312 template. */
1313 targs = get_bindings (fn, decl, explicit_targs);
1315 if (!targs)
1316 /* We cannot deduce template arguments that when used to
1317 specialize TMPL will produce DECL. */
1318 continue;
1320 /* Save this template, and the arguments deduced. */
1321 templates = tree_cons (targs, fn, templates);
1323 else if (need_member_template)
1324 /* FN is an ordinary member function, and we need a
1325 specialization of a member template. */
1327 else if (TREE_CODE (fn) != FUNCTION_DECL)
1328 /* We can get IDENTIFIER_NODEs here in certain erroneous
1329 cases. */
1331 else if (!DECL_FUNCTION_MEMBER_P (fn))
1332 /* This is just an ordinary non-member function. Nothing can
1333 be a specialization of that. */
1335 else if (DECL_ARTIFICIAL (fn))
1336 /* Cannot specialize functions that are created implicitly. */
1338 else
1340 tree decl_arg_types;
1342 /* This is an ordinary member function. However, since
1343 we're here, we can assume it's enclosing class is a
1344 template class. For example,
1346 template <typename T> struct S { void f(); };
1347 template <> void S<int>::f() {}
1349 Here, S<int>::f is a non-template, but S<int> is a
1350 template class. If FN has the same type as DECL, we
1351 might be in business. */
1353 if (!DECL_TEMPLATE_INFO (fn))
1354 /* Its enclosing class is an explicit specialization
1355 of a template class. This is not a candidate. */
1356 continue;
1358 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1359 TREE_TYPE (TREE_TYPE (fn))))
1360 /* The return types differ. */
1361 continue;
1363 /* Adjust the type of DECL in case FN is a static member. */
1364 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1365 if (DECL_STATIC_FUNCTION_P (fn)
1366 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1367 decl_arg_types = TREE_CHAIN (decl_arg_types);
1369 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1370 decl_arg_types))
1371 /* They match! */
1372 candidates = tree_cons (NULL_TREE, fn, candidates);
1376 if (templates && TREE_CHAIN (templates))
1378 /* We have:
1380 [temp.expl.spec]
1382 It is possible for a specialization with a given function
1383 signature to be instantiated from more than one function
1384 template. In such cases, explicit specification of the
1385 template arguments must be used to uniquely identify the
1386 function template specialization being specialized.
1388 Note that here, there's no suggestion that we're supposed to
1389 determine which of the candidate templates is most
1390 specialized. However, we, also have:
1392 [temp.func.order]
1394 Partial ordering of overloaded function template
1395 declarations is used in the following contexts to select
1396 the function template to which a function template
1397 specialization refers:
1399 -- when an explicit specialization refers to a function
1400 template.
1402 So, we do use the partial ordering rules, at least for now.
1403 This extension can only serve to make invalid programs valid,
1404 so it's safe. And, there is strong anecdotal evidence that
1405 the committee intended the partial ordering rules to apply;
1406 the EDG front-end has that behavior, and John Spicer claims
1407 that the committee simply forgot to delete the wording in
1408 [temp.expl.spec]. */
1409 tree tmpl = most_specialized (templates, decl, explicit_targs);
1410 if (tmpl && tmpl != error_mark_node)
1412 targs = get_bindings (tmpl, decl, explicit_targs);
1413 templates = tree_cons (targs, tmpl, NULL_TREE);
1417 if (templates == NULL_TREE && candidates == NULL_TREE)
1419 cp_error_at ("template-id `%D' for `%+D' does not match any template declaration",
1420 template_id, decl);
1421 return error_mark_node;
1423 else if ((templates && TREE_CHAIN (templates))
1424 || (candidates && TREE_CHAIN (candidates))
1425 || (templates && candidates))
1427 cp_error_at ("ambiguous template specialization `%D' for `%+D'",
1428 template_id, decl);
1429 chainon (candidates, templates);
1430 print_candidates (candidates);
1431 return error_mark_node;
1434 /* We have one, and exactly one, match. */
1435 if (candidates)
1437 /* It was a specialization of an ordinary member function in a
1438 template class. */
1439 *targs_out = copy_node (DECL_TI_ARGS (TREE_VALUE (candidates)));
1440 return DECL_TI_TEMPLATE (TREE_VALUE (candidates));
1443 /* It was a specialization of a template. */
1444 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
1445 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
1447 *targs_out = copy_node (targs);
1448 SET_TMPL_ARGS_LEVEL (*targs_out,
1449 TMPL_ARGS_DEPTH (*targs_out),
1450 TREE_PURPOSE (templates));
1452 else
1453 *targs_out = TREE_PURPOSE (templates);
1454 return TREE_VALUE (templates);
1457 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
1458 but with the default argument values filled in from those in the
1459 TMPL_TYPES. */
1461 static tree
1462 copy_default_args_to_explicit_spec_1 (tree spec_types,
1463 tree tmpl_types)
1465 tree new_spec_types;
1467 if (!spec_types)
1468 return NULL_TREE;
1470 if (spec_types == void_list_node)
1471 return void_list_node;
1473 /* Substitute into the rest of the list. */
1474 new_spec_types =
1475 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
1476 TREE_CHAIN (tmpl_types));
1478 /* Add the default argument for this parameter. */
1479 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
1480 TREE_VALUE (spec_types),
1481 new_spec_types);
1484 /* DECL is an explicit specialization. Replicate default arguments
1485 from the template it specializes. (That way, code like:
1487 template <class T> void f(T = 3);
1488 template <> void f(double);
1489 void g () { f (); }
1491 works, as required.) An alternative approach would be to look up
1492 the correct default arguments at the call-site, but this approach
1493 is consistent with how implicit instantiations are handled. */
1495 static void
1496 copy_default_args_to_explicit_spec (tree decl)
1498 tree tmpl;
1499 tree spec_types;
1500 tree tmpl_types;
1501 tree new_spec_types;
1502 tree old_type;
1503 tree new_type;
1504 tree t;
1505 tree object_type = NULL_TREE;
1506 tree in_charge = NULL_TREE;
1507 tree vtt = NULL_TREE;
1509 /* See if there's anything we need to do. */
1510 tmpl = DECL_TI_TEMPLATE (decl);
1511 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
1512 for (t = tmpl_types; t; t = TREE_CHAIN (t))
1513 if (TREE_PURPOSE (t))
1514 break;
1515 if (!t)
1516 return;
1518 old_type = TREE_TYPE (decl);
1519 spec_types = TYPE_ARG_TYPES (old_type);
1521 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1523 /* Remove the this pointer, but remember the object's type for
1524 CV quals. */
1525 object_type = TREE_TYPE (TREE_VALUE (spec_types));
1526 spec_types = TREE_CHAIN (spec_types);
1527 tmpl_types = TREE_CHAIN (tmpl_types);
1529 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
1531 /* DECL may contain more parameters than TMPL due to the extra
1532 in-charge parameter in constructors and destructors. */
1533 in_charge = spec_types;
1534 spec_types = TREE_CHAIN (spec_types);
1536 if (DECL_HAS_VTT_PARM_P (decl))
1538 vtt = spec_types;
1539 spec_types = TREE_CHAIN (spec_types);
1543 /* Compute the merged default arguments. */
1544 new_spec_types =
1545 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
1547 /* Compute the new FUNCTION_TYPE. */
1548 if (object_type)
1550 if (vtt)
1551 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
1552 TREE_VALUE (vtt),
1553 new_spec_types);
1555 if (in_charge)
1556 /* Put the in-charge parameter back. */
1557 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
1558 TREE_VALUE (in_charge),
1559 new_spec_types);
1561 new_type = build_method_type_directly (object_type,
1562 TREE_TYPE (old_type),
1563 new_spec_types);
1565 else
1566 new_type = build_function_type (TREE_TYPE (old_type),
1567 new_spec_types);
1568 new_type = cp_build_type_attribute_variant (new_type,
1569 TYPE_ATTRIBUTES (old_type));
1570 new_type = build_exception_variant (new_type,
1571 TYPE_RAISES_EXCEPTIONS (old_type));
1572 TREE_TYPE (decl) = new_type;
1575 /* Check to see if the function just declared, as indicated in
1576 DECLARATOR, and in DECL, is a specialization of a function
1577 template. We may also discover that the declaration is an explicit
1578 instantiation at this point.
1580 Returns DECL, or an equivalent declaration that should be used
1581 instead if all goes well. Issues an error message if something is
1582 amiss. Returns error_mark_node if the error is not easily
1583 recoverable.
1585 FLAGS is a bitmask consisting of the following flags:
1587 2: The function has a definition.
1588 4: The function is a friend.
1590 The TEMPLATE_COUNT is the number of references to qualifying
1591 template classes that appeared in the name of the function. For
1592 example, in
1594 template <class T> struct S { void f(); };
1595 void S<int>::f();
1597 the TEMPLATE_COUNT would be 1. However, explicitly specialized
1598 classes are not counted in the TEMPLATE_COUNT, so that in
1600 template <class T> struct S {};
1601 template <> struct S<int> { void f(); }
1602 template <> void S<int>::f();
1604 the TEMPLATE_COUNT would be 0. (Note that this declaration is
1605 invalid; there should be no template <>.)
1607 If the function is a specialization, it is marked as such via
1608 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
1609 is set up correctly, and it is added to the list of specializations
1610 for that template. */
1612 tree
1613 check_explicit_specialization (tree declarator,
1614 tree decl,
1615 int template_count,
1616 int flags)
1618 int have_def = flags & 2;
1619 int is_friend = flags & 4;
1620 int specialization = 0;
1621 int explicit_instantiation = 0;
1622 int member_specialization = 0;
1623 tree ctype = DECL_CLASS_CONTEXT (decl);
1624 tree dname = DECL_NAME (decl);
1625 tmpl_spec_kind tsk;
1627 tsk = current_tmpl_spec_kind (template_count);
1629 switch (tsk)
1631 case tsk_none:
1632 if (processing_specialization)
1634 specialization = 1;
1635 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1637 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1639 if (is_friend)
1640 /* This could be something like:
1642 template <class T> void f(T);
1643 class S { friend void f<>(int); } */
1644 specialization = 1;
1645 else
1647 /* This case handles bogus declarations like template <>
1648 template <class T> void f<int>(); */
1650 error ("template-id `%D' in declaration of primary template",
1651 declarator);
1652 return decl;
1655 break;
1657 case tsk_invalid_member_spec:
1658 /* The error has already been reported in
1659 check_specialization_scope. */
1660 return error_mark_node;
1662 case tsk_invalid_expl_inst:
1663 error ("template parameter list used in explicit instantiation");
1665 /* Fall through. */
1667 case tsk_expl_inst:
1668 if (have_def)
1669 error ("definition provided for explicit instantiation");
1671 explicit_instantiation = 1;
1672 break;
1674 case tsk_excessive_parms:
1675 error ("too many template parameter lists in declaration of `%D'",
1676 decl);
1677 return error_mark_node;
1679 /* Fall through. */
1680 case tsk_expl_spec:
1681 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1682 if (ctype)
1683 member_specialization = 1;
1684 else
1685 specialization = 1;
1686 break;
1688 case tsk_insufficient_parms:
1689 if (template_header_count)
1691 error("too few template parameter lists in declaration of `%D'",
1692 decl);
1693 return decl;
1695 else if (ctype != NULL_TREE
1696 && !TYPE_BEING_DEFINED (ctype)
1697 && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype)
1698 && !is_friend)
1700 /* For backwards compatibility, we accept:
1702 template <class T> struct S { void f(); };
1703 void S<int>::f() {} // Missing template <>
1705 That used to be valid C++. */
1706 if (pedantic)
1707 pedwarn
1708 ("explicit specialization not preceded by `template <>'");
1709 specialization = 1;
1710 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1712 break;
1714 case tsk_template:
1715 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1717 /* This case handles bogus declarations like template <>
1718 template <class T> void f<int>(); */
1720 if (uses_template_parms (declarator))
1721 error ("partial specialization `%D' of function template",
1722 declarator);
1723 else
1724 error ("template-id `%D' in declaration of primary template",
1725 declarator);
1726 return decl;
1729 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
1730 /* This is a specialization of a member template, without
1731 specialization the containing class. Something like:
1733 template <class T> struct S {
1734 template <class U> void f (U);
1736 template <> template <class U> void S<int>::f(U) {}
1738 That's a specialization -- but of the entire template. */
1739 specialization = 1;
1740 break;
1742 default:
1743 abort ();
1746 if (specialization || member_specialization)
1748 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
1749 for (; t; t = TREE_CHAIN (t))
1750 if (TREE_PURPOSE (t))
1752 pedwarn
1753 ("default argument specified in explicit specialization");
1754 break;
1756 if (current_lang_name == lang_name_c)
1757 error ("template specialization with C linkage");
1760 if (specialization || member_specialization || explicit_instantiation)
1762 tree tmpl = NULL_TREE;
1763 tree targs = NULL_TREE;
1765 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
1766 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
1768 tree fns;
1770 my_friendly_assert (TREE_CODE (declarator) == IDENTIFIER_NODE, 0);
1771 if (ctype)
1772 fns = dname;
1773 else
1775 /* If there is no class context, the explicit instantiation
1776 must be at namespace scope. */
1777 my_friendly_assert (DECL_NAMESPACE_SCOPE_P (decl), 20030625);
1779 /* Find the namespace binding, using the declaration
1780 context. */
1781 fns = namespace_binding (dname, CP_DECL_CONTEXT (decl));
1782 if (!fns || !is_overloaded_fn (fns))
1784 error ("`%D' is not a template function", dname);
1785 fns = error_mark_node;
1789 declarator = lookup_template_function (fns, NULL_TREE);
1792 if (declarator == error_mark_node)
1793 return error_mark_node;
1795 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
1797 if (!explicit_instantiation)
1798 /* A specialization in class scope. This is invalid,
1799 but the error will already have been flagged by
1800 check_specialization_scope. */
1801 return error_mark_node;
1802 else
1804 /* It's not valid to write an explicit instantiation in
1805 class scope, e.g.:
1807 class C { template void f(); }
1809 This case is caught by the parser. However, on
1810 something like:
1812 template class C { void f(); };
1814 (which is invalid) we can get here. The error will be
1815 issued later. */
1819 return decl;
1821 else if (ctype != NULL_TREE
1822 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
1823 IDENTIFIER_NODE))
1825 /* Find the list of functions in ctype that have the same
1826 name as the declared function. */
1827 tree name = TREE_OPERAND (declarator, 0);
1828 tree fns = NULL_TREE;
1829 int idx;
1831 if (constructor_name_p (name, ctype))
1833 int is_constructor = DECL_CONSTRUCTOR_P (decl);
1835 if (is_constructor ? !TYPE_HAS_CONSTRUCTOR (ctype)
1836 : !TYPE_HAS_DESTRUCTOR (ctype))
1838 /* From [temp.expl.spec]:
1840 If such an explicit specialization for the member
1841 of a class template names an implicitly-declared
1842 special member function (clause _special_), the
1843 program is ill-formed.
1845 Similar language is found in [temp.explicit]. */
1846 error ("specialization of implicitly-declared special member function");
1847 return error_mark_node;
1850 name = is_constructor ? ctor_identifier : dtor_identifier;
1853 if (!DECL_CONV_FN_P (decl))
1855 idx = lookup_fnfields_1 (ctype, name);
1856 if (idx >= 0)
1857 fns = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (ctype), idx);
1859 else
1861 tree methods;
1863 /* For a type-conversion operator, we cannot do a
1864 name-based lookup. We might be looking for `operator
1865 int' which will be a specialization of `operator T'.
1866 So, we find *all* the conversion operators, and then
1867 select from them. */
1868 fns = NULL_TREE;
1870 methods = CLASSTYPE_METHOD_VEC (ctype);
1871 if (methods)
1872 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
1873 idx < TREE_VEC_LENGTH (methods); ++idx)
1875 tree ovl = TREE_VEC_ELT (methods, idx);
1877 if (!ovl || !DECL_CONV_FN_P (OVL_CURRENT (ovl)))
1878 /* There are no more conversion functions. */
1879 break;
1881 /* Glue all these conversion functions together
1882 with those we already have. */
1883 for (; ovl; ovl = OVL_NEXT (ovl))
1884 fns = ovl_cons (OVL_CURRENT (ovl), fns);
1888 if (fns == NULL_TREE)
1890 error ("no member function `%D' declared in `%T'",
1891 name, ctype);
1892 return error_mark_node;
1894 else
1895 TREE_OPERAND (declarator, 0) = fns;
1898 /* Figure out what exactly is being specialized at this point.
1899 Note that for an explicit instantiation, even one for a
1900 member function, we cannot tell apriori whether the
1901 instantiation is for a member template, or just a member
1902 function of a template class. Even if a member template is
1903 being instantiated, the member template arguments may be
1904 elided if they can be deduced from the rest of the
1905 declaration. */
1906 tmpl = determine_specialization (declarator, decl,
1907 &targs,
1908 member_specialization);
1910 if (!tmpl || tmpl == error_mark_node)
1911 /* We couldn't figure out what this declaration was
1912 specializing. */
1913 return error_mark_node;
1914 else
1916 tree gen_tmpl = most_general_template (tmpl);
1918 if (explicit_instantiation)
1920 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
1921 is done by do_decl_instantiation later. */
1923 int arg_depth = TMPL_ARGS_DEPTH (targs);
1924 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
1926 if (arg_depth > parm_depth)
1928 /* If TMPL is not the most general template (for
1929 example, if TMPL is a friend template that is
1930 injected into namespace scope), then there will
1931 be too many levels of TARGS. Remove some of them
1932 here. */
1933 int i;
1934 tree new_targs;
1936 new_targs = make_tree_vec (parm_depth);
1937 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
1938 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
1939 = TREE_VEC_ELT (targs, i);
1940 targs = new_targs;
1943 return instantiate_template (tmpl, targs, tf_error);
1946 /* If we thought that the DECL was a member function, but it
1947 turns out to be specializing a static member function,
1948 make DECL a static member function as well. */
1949 if (DECL_STATIC_FUNCTION_P (tmpl)
1950 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1951 revert_static_member_fn (decl);
1953 /* If this is a specialization of a member template of a
1954 template class. In we want to return the TEMPLATE_DECL,
1955 not the specialization of it. */
1956 if (tsk == tsk_template)
1958 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
1959 DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl)) = NULL_TREE;
1960 if (have_def)
1962 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
1963 DECL_SOURCE_LOCATION (DECL_TEMPLATE_RESULT (tmpl))
1964 = DECL_SOURCE_LOCATION (decl);
1965 /* We want to use the argument list specified in the
1966 definition, not in the original declaration. */
1967 DECL_ARGUMENTS (DECL_TEMPLATE_RESULT (tmpl))
1968 = DECL_ARGUMENTS (decl);
1970 return tmpl;
1973 /* Set up the DECL_TEMPLATE_INFO for DECL. */
1974 DECL_TEMPLATE_INFO (decl) = tree_cons (tmpl, targs, NULL_TREE);
1976 /* Inherit default function arguments from the template
1977 DECL is specializing. */
1978 copy_default_args_to_explicit_spec (decl);
1980 /* This specialization has the same protection as the
1981 template it specializes. */
1982 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
1983 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
1985 if (is_friend && !have_def)
1986 /* This is not really a declaration of a specialization.
1987 It's just the name of an instantiation. But, it's not
1988 a request for an instantiation, either. */
1989 SET_DECL_IMPLICIT_INSTANTIATION (decl);
1990 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
1991 /* This is indeed a specialization. In case of constructors
1992 and destructors, we need in-charge and not-in-charge
1993 versions in V3 ABI. */
1994 clone_function_decl (decl, /*update_method_vec_p=*/0);
1996 /* Register this specialization so that we can find it
1997 again. */
1998 decl = register_specialization (decl, gen_tmpl, targs);
2002 return decl;
2005 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2006 parameters. These are represented in the same format used for
2007 DECL_TEMPLATE_PARMS. */
2009 int comp_template_parms (tree parms1, tree parms2)
2011 tree p1;
2012 tree p2;
2014 if (parms1 == parms2)
2015 return 1;
2017 for (p1 = parms1, p2 = parms2;
2018 p1 != NULL_TREE && p2 != NULL_TREE;
2019 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2021 tree t1 = TREE_VALUE (p1);
2022 tree t2 = TREE_VALUE (p2);
2023 int i;
2025 my_friendly_assert (TREE_CODE (t1) == TREE_VEC, 0);
2026 my_friendly_assert (TREE_CODE (t2) == TREE_VEC, 0);
2028 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2029 return 0;
2031 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2033 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2034 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2036 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2037 return 0;
2039 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM)
2040 continue;
2041 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2042 return 0;
2046 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2047 /* One set of parameters has more parameters lists than the
2048 other. */
2049 return 0;
2051 return 1;
2054 /* Complain if DECL shadows a template parameter.
2056 [temp.local]: A template-parameter shall not be redeclared within its
2057 scope (including nested scopes). */
2059 void
2060 check_template_shadow (tree decl)
2062 tree olddecl;
2064 /* If we're not in a template, we can't possibly shadow a template
2065 parameter. */
2066 if (!current_template_parms)
2067 return;
2069 /* Figure out what we're shadowing. */
2070 if (TREE_CODE (decl) == OVERLOAD)
2071 decl = OVL_CURRENT (decl);
2072 olddecl = IDENTIFIER_VALUE (DECL_NAME (decl));
2074 /* If there's no previous binding for this name, we're not shadowing
2075 anything, let alone a template parameter. */
2076 if (!olddecl)
2077 return;
2079 /* If we're not shadowing a template parameter, we're done. Note
2080 that OLDDECL might be an OVERLOAD (or perhaps even an
2081 ERROR_MARK), so we can't just blithely assume it to be a _DECL
2082 node. */
2083 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
2084 return;
2086 /* We check for decl != olddecl to avoid bogus errors for using a
2087 name inside a class. We check TPFI to avoid duplicate errors for
2088 inline member templates. */
2089 if (decl == olddecl
2090 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
2091 return;
2093 cp_error_at ("declaration of `%#D'", decl);
2094 cp_error_at (" shadows template parm `%#D'", olddecl);
2097 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
2098 ORIG_LEVEL, DECL, and TYPE. */
2100 static tree
2101 build_template_parm_index (int index,
2102 int level,
2103 int orig_level,
2104 tree decl,
2105 tree type)
2107 tree t = make_node (TEMPLATE_PARM_INDEX);
2108 TEMPLATE_PARM_IDX (t) = index;
2109 TEMPLATE_PARM_LEVEL (t) = level;
2110 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
2111 TEMPLATE_PARM_DECL (t) = decl;
2112 TREE_TYPE (t) = type;
2113 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
2114 TREE_READONLY (t) = TREE_READONLY (decl);
2116 return t;
2119 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
2120 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
2121 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
2122 new one is created. */
2124 static tree
2125 reduce_template_parm_level (tree index, tree type, int levels)
2127 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
2128 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
2129 != TEMPLATE_PARM_LEVEL (index) - levels))
2131 tree orig_decl = TEMPLATE_PARM_DECL (index);
2132 tree decl, t;
2134 decl = build_decl (TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
2135 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
2136 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
2137 DECL_ARTIFICIAL (decl) = 1;
2138 SET_DECL_TEMPLATE_PARM_P (decl);
2140 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
2141 TEMPLATE_PARM_LEVEL (index) - levels,
2142 TEMPLATE_PARM_ORIG_LEVEL (index),
2143 decl, type);
2144 TEMPLATE_PARM_DESCENDANTS (index) = t;
2146 /* Template template parameters need this. */
2147 DECL_TEMPLATE_PARMS (decl)
2148 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index));
2151 return TEMPLATE_PARM_DESCENDANTS (index);
2154 /* Process information from new template parameter NEXT and append it to the
2155 LIST being built. */
2157 tree
2158 process_template_parm (tree list, tree next)
2160 tree parm;
2161 tree decl = 0;
2162 tree defval;
2163 int is_type, idx;
2165 parm = next;
2166 my_friendly_assert (TREE_CODE (parm) == TREE_LIST, 259);
2167 defval = TREE_PURPOSE (parm);
2168 parm = TREE_VALUE (parm);
2169 is_type = TREE_PURPOSE (parm) == class_type_node;
2171 if (list)
2173 tree p = TREE_VALUE (tree_last (list));
2175 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
2176 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
2177 else
2178 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
2179 ++idx;
2181 else
2182 idx = 0;
2184 if (!is_type)
2186 my_friendly_assert (TREE_CODE (TREE_PURPOSE (parm)) == TREE_LIST, 260);
2187 /* is a const-param */
2188 parm = grokdeclarator (TREE_VALUE (parm), TREE_PURPOSE (parm),
2189 PARM, 0, NULL);
2190 SET_DECL_TEMPLATE_PARM_P (parm);
2192 /* [temp.param]
2194 The top-level cv-qualifiers on the template-parameter are
2195 ignored when determining its type. */
2196 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
2198 /* A template parameter is not modifiable. */
2199 TREE_READONLY (parm) = TREE_CONSTANT (parm) = 1;
2200 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
2201 TREE_TYPE (parm) = void_type_node;
2202 decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
2203 TREE_CONSTANT (decl) = TREE_READONLY (decl) = 1;
2204 DECL_INITIAL (parm) = DECL_INITIAL (decl)
2205 = build_template_parm_index (idx, processing_template_decl,
2206 processing_template_decl,
2207 decl, TREE_TYPE (parm));
2209 else
2211 tree t;
2212 parm = TREE_VALUE (parm);
2214 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
2216 t = make_aggr_type (TEMPLATE_TEMPLATE_PARM);
2217 /* This is for distinguishing between real templates and template
2218 template parameters */
2219 TREE_TYPE (parm) = t;
2220 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
2221 decl = parm;
2223 else
2225 t = make_aggr_type (TEMPLATE_TYPE_PARM);
2226 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
2227 decl = build_decl (TYPE_DECL, parm, t);
2230 TYPE_NAME (t) = decl;
2231 TYPE_STUB_DECL (t) = decl;
2232 parm = decl;
2233 TEMPLATE_TYPE_PARM_INDEX (t)
2234 = build_template_parm_index (idx, processing_template_decl,
2235 processing_template_decl,
2236 decl, TREE_TYPE (parm));
2238 DECL_ARTIFICIAL (decl) = 1;
2239 SET_DECL_TEMPLATE_PARM_P (decl);
2240 pushdecl (decl);
2241 parm = build_tree_list (defval, parm);
2242 return chainon (list, parm);
2245 /* The end of a template parameter list has been reached. Process the
2246 tree list into a parameter vector, converting each parameter into a more
2247 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
2248 as PARM_DECLs. */
2250 tree
2251 end_template_parm_list (tree parms)
2253 int nparms;
2254 tree parm, next;
2255 tree saved_parmlist = make_tree_vec (list_length (parms));
2257 current_template_parms
2258 = tree_cons (size_int (processing_template_decl),
2259 saved_parmlist, current_template_parms);
2261 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
2263 next = TREE_CHAIN (parm);
2264 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
2265 TREE_CHAIN (parm) = NULL_TREE;
2268 --processing_template_parmlist;
2270 return saved_parmlist;
2273 /* end_template_decl is called after a template declaration is seen. */
2275 void
2276 end_template_decl (void)
2278 reset_specialization ();
2280 if (! processing_template_decl)
2281 return;
2283 /* This matches the pushlevel in begin_template_parm_list. */
2284 finish_scope ();
2286 --processing_template_decl;
2287 current_template_parms = TREE_CHAIN (current_template_parms);
2290 /* Given a template argument vector containing the template PARMS.
2291 The innermost PARMS are given first. */
2293 tree
2294 current_template_args (void)
2296 tree header;
2297 tree args = NULL_TREE;
2298 int length = TMPL_PARMS_DEPTH (current_template_parms);
2299 int l = length;
2301 /* If there is only one level of template parameters, we do not
2302 create a TREE_VEC of TREE_VECs. Instead, we return a single
2303 TREE_VEC containing the arguments. */
2304 if (length > 1)
2305 args = make_tree_vec (length);
2307 for (header = current_template_parms; header; header = TREE_CHAIN (header))
2309 tree a = copy_node (TREE_VALUE (header));
2310 int i;
2312 TREE_TYPE (a) = NULL_TREE;
2313 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
2315 tree t = TREE_VEC_ELT (a, i);
2317 /* T will be a list if we are called from within a
2318 begin/end_template_parm_list pair, but a vector directly
2319 if within a begin/end_member_template_processing pair. */
2320 if (TREE_CODE (t) == TREE_LIST)
2322 t = TREE_VALUE (t);
2324 if (TREE_CODE (t) == TYPE_DECL
2325 || TREE_CODE (t) == TEMPLATE_DECL)
2326 t = TREE_TYPE (t);
2327 else
2328 t = DECL_INITIAL (t);
2329 TREE_VEC_ELT (a, i) = t;
2333 if (length > 1)
2334 TREE_VEC_ELT (args, --l) = a;
2335 else
2336 args = a;
2339 return args;
2342 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
2343 template PARMS. Used by push_template_decl below. */
2345 static tree
2346 build_template_decl (tree decl, tree parms)
2348 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
2349 DECL_TEMPLATE_PARMS (tmpl) = parms;
2350 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
2351 if (DECL_LANG_SPECIFIC (decl))
2353 DECL_STATIC_FUNCTION_P (tmpl) = DECL_STATIC_FUNCTION_P (decl);
2354 DECL_CONSTRUCTOR_P (tmpl) = DECL_CONSTRUCTOR_P (decl);
2355 DECL_DESTRUCTOR_P (tmpl) = DECL_DESTRUCTOR_P (decl);
2356 DECL_NONCONVERTING_P (tmpl) = DECL_NONCONVERTING_P (decl);
2357 DECL_ASSIGNMENT_OPERATOR_P (tmpl) = DECL_ASSIGNMENT_OPERATOR_P (decl);
2358 if (DECL_OVERLOADED_OPERATOR_P (decl))
2359 SET_OVERLOADED_OPERATOR_CODE (tmpl,
2360 DECL_OVERLOADED_OPERATOR_P (decl));
2363 return tmpl;
2366 struct template_parm_data
2368 /* The level of the template parameters we are currently
2369 processing. */
2370 int level;
2372 /* The index of the specialization argument we are currently
2373 processing. */
2374 int current_arg;
2376 /* An array whose size is the number of template parameters. The
2377 elements are nonzero if the parameter has been used in any one
2378 of the arguments processed so far. */
2379 int* parms;
2381 /* An array whose size is the number of template arguments. The
2382 elements are nonzero if the argument makes use of template
2383 parameters of this level. */
2384 int* arg_uses_template_parms;
2387 /* Subroutine of push_template_decl used to see if each template
2388 parameter in a partial specialization is used in the explicit
2389 argument list. If T is of the LEVEL given in DATA (which is
2390 treated as a template_parm_data*), then DATA->PARMS is marked
2391 appropriately. */
2393 static int
2394 mark_template_parm (tree t, void* data)
2396 int level;
2397 int idx;
2398 struct template_parm_data* tpd = (struct template_parm_data*) data;
2400 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2402 level = TEMPLATE_PARM_LEVEL (t);
2403 idx = TEMPLATE_PARM_IDX (t);
2405 else
2407 level = TEMPLATE_TYPE_LEVEL (t);
2408 idx = TEMPLATE_TYPE_IDX (t);
2411 if (level == tpd->level)
2413 tpd->parms[idx] = 1;
2414 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
2417 /* Return zero so that for_each_template_parm will continue the
2418 traversal of the tree; we want to mark *every* template parm. */
2419 return 0;
2422 /* Process the partial specialization DECL. */
2424 static tree
2425 process_partial_specialization (tree decl)
2427 tree type = TREE_TYPE (decl);
2428 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
2429 tree specargs = CLASSTYPE_TI_ARGS (type);
2430 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
2431 tree inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
2432 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
2433 int nargs = TREE_VEC_LENGTH (inner_args);
2434 int ntparms = TREE_VEC_LENGTH (inner_parms);
2435 int i;
2436 int did_error_intro = 0;
2437 struct template_parm_data tpd;
2438 struct template_parm_data tpd2;
2440 /* We check that each of the template parameters given in the
2441 partial specialization is used in the argument list to the
2442 specialization. For example:
2444 template <class T> struct S;
2445 template <class T> struct S<T*>;
2447 The second declaration is OK because `T*' uses the template
2448 parameter T, whereas
2450 template <class T> struct S<int>;
2452 is no good. Even trickier is:
2454 template <class T>
2455 struct S1
2457 template <class U>
2458 struct S2;
2459 template <class U>
2460 struct S2<T>;
2463 The S2<T> declaration is actually invalid; it is a
2464 full-specialization. Of course,
2466 template <class U>
2467 struct S2<T (*)(U)>;
2469 or some such would have been OK. */
2470 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
2471 tpd.parms = alloca (sizeof (int) * ntparms);
2472 memset (tpd.parms, 0, sizeof (int) * ntparms);
2474 tpd.arg_uses_template_parms = alloca (sizeof (int) * nargs);
2475 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
2476 for (i = 0; i < nargs; ++i)
2478 tpd.current_arg = i;
2479 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
2480 &mark_template_parm,
2481 &tpd,
2482 NULL);
2484 for (i = 0; i < ntparms; ++i)
2485 if (tpd.parms[i] == 0)
2487 /* One of the template parms was not used in the
2488 specialization. */
2489 if (!did_error_intro)
2491 error ("template parameters not used in partial specialization:");
2492 did_error_intro = 1;
2495 error (" `%D'",
2496 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
2499 /* [temp.class.spec]
2501 The argument list of the specialization shall not be identical to
2502 the implicit argument list of the primary template. */
2503 if (comp_template_args
2504 (inner_args,
2505 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
2506 (maintmpl)))))
2507 error ("partial specialization `%T' does not specialize any template arguments", type);
2509 /* [temp.class.spec]
2511 A partially specialized non-type argument expression shall not
2512 involve template parameters of the partial specialization except
2513 when the argument expression is a simple identifier.
2515 The type of a template parameter corresponding to a specialized
2516 non-type argument shall not be dependent on a parameter of the
2517 specialization. */
2518 my_friendly_assert (nargs == DECL_NTPARMS (maintmpl), 0);
2519 tpd2.parms = 0;
2520 for (i = 0; i < nargs; ++i)
2522 tree arg = TREE_VEC_ELT (inner_args, i);
2523 if (/* These first two lines are the `non-type' bit. */
2524 !TYPE_P (arg)
2525 && TREE_CODE (arg) != TEMPLATE_DECL
2526 /* This next line is the `argument expression is not just a
2527 simple identifier' condition and also the `specialized
2528 non-type argument' bit. */
2529 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
2531 if (tpd.arg_uses_template_parms[i])
2532 error ("template argument `%E' involves template parameter(s)", arg);
2533 else
2535 /* Look at the corresponding template parameter,
2536 marking which template parameters its type depends
2537 upon. */
2538 tree type =
2539 TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (main_inner_parms,
2540 i)));
2542 if (!tpd2.parms)
2544 /* We haven't yet initialized TPD2. Do so now. */
2545 tpd2.arg_uses_template_parms
2546 = alloca (sizeof (int) * nargs);
2547 /* The number of parameters here is the number in the
2548 main template, which, as checked in the assertion
2549 above, is NARGS. */
2550 tpd2.parms = alloca (sizeof (int) * nargs);
2551 tpd2.level =
2552 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
2555 /* Mark the template parameters. But this time, we're
2556 looking for the template parameters of the main
2557 template, not in the specialization. */
2558 tpd2.current_arg = i;
2559 tpd2.arg_uses_template_parms[i] = 0;
2560 memset (tpd2.parms, 0, sizeof (int) * nargs);
2561 for_each_template_parm (type,
2562 &mark_template_parm,
2563 &tpd2,
2564 NULL);
2566 if (tpd2.arg_uses_template_parms [i])
2568 /* The type depended on some template parameters.
2569 If they are fully specialized in the
2570 specialization, that's OK. */
2571 int j;
2572 for (j = 0; j < nargs; ++j)
2573 if (tpd2.parms[j] != 0
2574 && tpd.arg_uses_template_parms [j])
2576 error ("type `%T' of template argument `%E' depends on template parameter(s)",
2577 type,
2578 arg);
2579 break;
2586 if (retrieve_specialization (maintmpl, specargs))
2587 /* We've already got this specialization. */
2588 return decl;
2590 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
2591 = tree_cons (inner_args, inner_parms,
2592 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
2593 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
2594 return decl;
2597 /* Check that a template declaration's use of default arguments is not
2598 invalid. Here, PARMS are the template parameters. IS_PRIMARY is
2599 nonzero if DECL is the thing declared by a primary template.
2600 IS_PARTIAL is nonzero if DECL is a partial specialization. */
2602 static void
2603 check_default_tmpl_args (tree decl, tree parms, int is_primary, int is_partial)
2605 const char *msg;
2606 int last_level_to_check;
2607 tree parm_level;
2609 /* [temp.param]
2611 A default template-argument shall not be specified in a
2612 function template declaration or a function template definition, nor
2613 in the template-parameter-list of the definition of a member of a
2614 class template. */
2616 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
2617 /* You can't have a function template declaration in a local
2618 scope, nor you can you define a member of a class template in a
2619 local scope. */
2620 return;
2622 if (current_class_type
2623 && !TYPE_BEING_DEFINED (current_class_type)
2624 && DECL_LANG_SPECIFIC (decl)
2625 /* If this is either a friend defined in the scope of the class
2626 or a member function. */
2627 && (DECL_FUNCTION_MEMBER_P (decl)
2628 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
2629 : DECL_FRIEND_CONTEXT (decl)
2630 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
2631 : false)
2632 /* And, if it was a member function, it really was defined in
2633 the scope of the class. */
2634 && (!DECL_FUNCTION_MEMBER_P (decl)
2635 || DECL_INITIALIZED_IN_CLASS_P (decl)))
2636 /* We already checked these parameters when the template was
2637 declared, so there's no need to do it again now. This function
2638 was defined in class scope, but we're processing it's body now
2639 that the class is complete. */
2640 return;
2642 /* [temp.param]
2644 If a template-parameter has a default template-argument, all
2645 subsequent template-parameters shall have a default
2646 template-argument supplied. */
2647 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
2649 tree inner_parms = TREE_VALUE (parm_level);
2650 int ntparms = TREE_VEC_LENGTH (inner_parms);
2651 int seen_def_arg_p = 0;
2652 int i;
2654 for (i = 0; i < ntparms; ++i)
2656 tree parm = TREE_VEC_ELT (inner_parms, i);
2657 if (TREE_PURPOSE (parm))
2658 seen_def_arg_p = 1;
2659 else if (seen_def_arg_p)
2661 error ("no default argument for `%D'", TREE_VALUE (parm));
2662 /* For better subsequent error-recovery, we indicate that
2663 there should have been a default argument. */
2664 TREE_PURPOSE (parm) = error_mark_node;
2669 if (TREE_CODE (decl) != TYPE_DECL || is_partial || !is_primary)
2670 /* For an ordinary class template, default template arguments are
2671 allowed at the innermost level, e.g.:
2672 template <class T = int>
2673 struct S {};
2674 but, in a partial specialization, they're not allowed even
2675 there, as we have in [temp.class.spec]:
2677 The template parameter list of a specialization shall not
2678 contain default template argument values.
2680 So, for a partial specialization, or for a function template,
2681 we look at all of them. */
2683 else
2684 /* But, for a primary class template that is not a partial
2685 specialization we look at all template parameters except the
2686 innermost ones. */
2687 parms = TREE_CHAIN (parms);
2689 /* Figure out what error message to issue. */
2690 if (TREE_CODE (decl) == FUNCTION_DECL)
2691 msg = "default template arguments may not be used in function templates";
2692 else if (is_partial)
2693 msg = "default template arguments may not be used in partial specializations";
2694 else
2695 msg = "default argument for template parameter for class enclosing `%D'";
2697 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
2698 /* If we're inside a class definition, there's no need to
2699 examine the parameters to the class itself. On the one
2700 hand, they will be checked when the class is defined, and,
2701 on the other, default arguments are valid in things like:
2702 template <class T = double>
2703 struct S { template <class U> void f(U); };
2704 Here the default argument for `S' has no bearing on the
2705 declaration of `f'. */
2706 last_level_to_check = template_class_depth (current_class_type) + 1;
2707 else
2708 /* Check everything. */
2709 last_level_to_check = 0;
2711 for (parm_level = parms;
2712 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
2713 parm_level = TREE_CHAIN (parm_level))
2715 tree inner_parms = TREE_VALUE (parm_level);
2716 int i;
2717 int ntparms;
2719 ntparms = TREE_VEC_LENGTH (inner_parms);
2720 for (i = 0; i < ntparms; ++i)
2721 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
2723 if (msg)
2725 error (msg, decl);
2726 msg = 0;
2729 /* Clear out the default argument so that we are not
2730 confused later. */
2731 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
2734 /* At this point, if we're still interested in issuing messages,
2735 they must apply to classes surrounding the object declared. */
2736 if (msg)
2737 msg = "default argument for template parameter for class enclosing `%D'";
2741 /* Worker for push_template_decl_real, called via
2742 for_each_template_parm. DATA is really an int, indicating the
2743 level of the parameters we are interested in. If T is a template
2744 parameter of that level, return nonzero. */
2746 static int
2747 template_parm_this_level_p (tree t, void* data)
2749 int this_level = *(int *)data;
2750 int level;
2752 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2753 level = TEMPLATE_PARM_LEVEL (t);
2754 else
2755 level = TEMPLATE_TYPE_LEVEL (t);
2756 return level == this_level;
2759 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
2760 parameters given by current_template_args, or reuses a
2761 previously existing one, if appropriate. Returns the DECL, or an
2762 equivalent one, if it is replaced via a call to duplicate_decls.
2764 If IS_FRIEND is nonzero, DECL is a friend declaration. */
2766 tree
2767 push_template_decl_real (tree decl, int is_friend)
2769 tree tmpl;
2770 tree args;
2771 tree info;
2772 tree ctx;
2773 int primary;
2774 int is_partial;
2775 int new_template_p = 0;
2777 /* See if this is a partial specialization. */
2778 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
2779 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
2780 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
2782 is_friend |= (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl));
2784 if (is_friend)
2785 /* For a friend, we want the context of the friend function, not
2786 the type of which it is a friend. */
2787 ctx = DECL_CONTEXT (decl);
2788 else if (CP_DECL_CONTEXT (decl)
2789 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
2790 /* In the case of a virtual function, we want the class in which
2791 it is defined. */
2792 ctx = CP_DECL_CONTEXT (decl);
2793 else
2794 /* Otherwise, if we're currently defining some class, the DECL
2795 is assumed to be a member of the class. */
2796 ctx = current_scope ();
2798 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
2799 ctx = NULL_TREE;
2801 if (!DECL_CONTEXT (decl))
2802 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
2804 /* See if this is a primary template. */
2805 primary = template_parm_scope_p ();
2807 if (primary)
2809 if (current_lang_name == lang_name_c)
2810 error ("template with C linkage");
2811 else if (TREE_CODE (decl) == TYPE_DECL
2812 && ANON_AGGRNAME_P (DECL_NAME (decl)))
2813 error ("template class without a name");
2814 else if (TREE_CODE (decl) == FUNCTION_DECL)
2816 if (DECL_DESTRUCTOR_P (decl))
2818 /* [temp.mem]
2820 A destructor shall not be a member template. */
2821 error ("destructor `%D' declared as member template", decl);
2822 return error_mark_node;
2824 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
2825 && (!TYPE_ARG_TYPES (TREE_TYPE (decl))
2826 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
2827 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
2828 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
2829 == void_list_node)))
2831 /* [basic.stc.dynamic.allocation]
2833 An allocation function can be a function
2834 template. ... Template allocation functions shall
2835 have two or more parameters. */
2836 error ("invalid template declaration of `%D'", decl);
2837 return decl;
2840 else if ((DECL_IMPLICIT_TYPEDEF_P (decl)
2841 && CLASS_TYPE_P (TREE_TYPE (decl)))
2842 || (TREE_CODE (decl) == VAR_DECL && ctx && CLASS_TYPE_P (ctx)))
2843 /* OK */;
2844 else
2846 error ("template declaration of `%#D'", decl);
2847 return error_mark_node;
2851 /* Check to see that the rules regarding the use of default
2852 arguments are not being violated. */
2853 check_default_tmpl_args (decl, current_template_parms,
2854 primary, is_partial);
2856 if (is_partial)
2857 return process_partial_specialization (decl);
2859 args = current_template_args ();
2861 if (!ctx
2862 || TREE_CODE (ctx) == FUNCTION_DECL
2863 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
2864 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
2866 if (DECL_LANG_SPECIFIC (decl)
2867 && DECL_TEMPLATE_INFO (decl)
2868 && DECL_TI_TEMPLATE (decl))
2869 tmpl = DECL_TI_TEMPLATE (decl);
2870 /* If DECL is a TYPE_DECL for a class-template, then there won't
2871 be DECL_LANG_SPECIFIC. The information equivalent to
2872 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
2873 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
2874 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2875 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2877 /* Since a template declaration already existed for this
2878 class-type, we must be redeclaring it here. Make sure
2879 that the redeclaration is valid. */
2880 redeclare_class_template (TREE_TYPE (decl),
2881 current_template_parms);
2882 /* We don't need to create a new TEMPLATE_DECL; just use the
2883 one we already had. */
2884 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
2886 else
2888 tmpl = build_template_decl (decl, current_template_parms);
2889 new_template_p = 1;
2891 if (DECL_LANG_SPECIFIC (decl)
2892 && DECL_TEMPLATE_SPECIALIZATION (decl))
2894 /* A specialization of a member template of a template
2895 class. */
2896 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2897 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
2898 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
2902 else
2904 tree a, t, current, parms;
2905 int i;
2907 if (TREE_CODE (decl) == TYPE_DECL)
2909 if ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (decl)))
2910 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
2911 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2912 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2913 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
2914 else
2916 error ("`%D' does not declare a template type", decl);
2917 return decl;
2920 else if (!DECL_LANG_SPECIFIC (decl) || !DECL_TEMPLATE_INFO (decl))
2922 error ("template definition of non-template `%#D'", decl);
2923 return decl;
2925 else
2926 tmpl = DECL_TI_TEMPLATE (decl);
2928 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2929 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
2930 && DECL_TEMPLATE_SPECIALIZATION (decl)
2931 && is_member_template (tmpl))
2933 tree new_tmpl;
2935 /* The declaration is a specialization of a member
2936 template, declared outside the class. Therefore, the
2937 innermost template arguments will be NULL, so we
2938 replace them with the arguments determined by the
2939 earlier call to check_explicit_specialization. */
2940 args = DECL_TI_ARGS (decl);
2942 new_tmpl
2943 = build_template_decl (decl, current_template_parms);
2944 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
2945 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
2946 DECL_TI_TEMPLATE (decl) = new_tmpl;
2947 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
2948 DECL_TEMPLATE_INFO (new_tmpl)
2949 = tree_cons (tmpl, args, NULL_TREE);
2951 register_specialization (new_tmpl,
2952 most_general_template (tmpl),
2953 args);
2954 return decl;
2957 /* Make sure the template headers we got make sense. */
2959 parms = DECL_TEMPLATE_PARMS (tmpl);
2960 i = TMPL_PARMS_DEPTH (parms);
2961 if (TMPL_ARGS_DEPTH (args) != i)
2963 error ("expected %d levels of template parms for `%#D', got %d",
2964 i, decl, TMPL_ARGS_DEPTH (args));
2966 else
2967 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
2969 a = TMPL_ARGS_LEVEL (args, i);
2970 t = INNERMOST_TEMPLATE_PARMS (parms);
2972 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
2974 if (current == decl)
2975 error ("got %d template parameters for `%#D'",
2976 TREE_VEC_LENGTH (a), decl);
2977 else
2978 error ("got %d template parameters for `%#T'",
2979 TREE_VEC_LENGTH (a), current);
2980 error (" but %d required", TREE_VEC_LENGTH (t));
2981 return error_mark_node;
2984 /* Perhaps we should also check that the parms are used in the
2985 appropriate qualifying scopes in the declarator? */
2987 if (current == decl)
2988 current = ctx;
2989 else
2990 current = TYPE_CONTEXT (current);
2994 DECL_TEMPLATE_RESULT (tmpl) = decl;
2995 TREE_TYPE (tmpl) = TREE_TYPE (decl);
2997 /* Push template declarations for global functions and types. Note
2998 that we do not try to push a global template friend declared in a
2999 template class; such a thing may well depend on the template
3000 parameters of the class. */
3001 if (new_template_p && !ctx
3002 && !(is_friend && template_class_depth (current_class_type) > 0))
3003 tmpl = pushdecl_namespace_level (tmpl);
3005 if (primary)
3007 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
3008 if (DECL_CONV_FN_P (tmpl))
3010 int depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
3012 /* It is a conversion operator. See if the type converted to
3013 depends on innermost template operands. */
3015 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
3016 depth))
3017 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
3021 /* The DECL_TI_ARGS of DECL contains full set of arguments refering
3022 back to its most general template. If TMPL is a specialization,
3023 ARGS may only have the innermost set of arguments. Add the missing
3024 argument levels if necessary. */
3025 if (DECL_TEMPLATE_INFO (tmpl))
3026 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
3028 info = tree_cons (tmpl, args, NULL_TREE);
3030 if (DECL_IMPLICIT_TYPEDEF_P (decl))
3032 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
3033 if ((!ctx || TREE_CODE (ctx) != FUNCTION_DECL)
3034 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
3035 /* Don't change the name if we've already set it up. */
3036 && !IDENTIFIER_TEMPLATE (DECL_NAME (decl)))
3037 DECL_NAME (decl) = classtype_mangled_name (TREE_TYPE (decl));
3039 else if (DECL_LANG_SPECIFIC (decl))
3040 DECL_TEMPLATE_INFO (decl) = info;
3042 return DECL_TEMPLATE_RESULT (tmpl);
3045 tree
3046 push_template_decl (tree decl)
3048 return push_template_decl_real (decl, 0);
3051 /* Called when a class template TYPE is redeclared with the indicated
3052 template PARMS, e.g.:
3054 template <class T> struct S;
3055 template <class T> struct S {}; */
3057 void
3058 redeclare_class_template (tree type, tree parms)
3060 tree tmpl;
3061 tree tmpl_parms;
3062 int i;
3064 if (!TYPE_TEMPLATE_INFO (type))
3066 error ("`%T' is not a template type", type);
3067 return;
3070 tmpl = TYPE_TI_TEMPLATE (type);
3071 if (!PRIMARY_TEMPLATE_P (tmpl))
3072 /* The type is nested in some template class. Nothing to worry
3073 about here; there are no new template parameters for the nested
3074 type. */
3075 return;
3077 parms = INNERMOST_TEMPLATE_PARMS (parms);
3078 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
3080 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
3082 cp_error_at ("previous declaration `%D'", tmpl);
3083 error ("used %d template parameter(s) instead of %d",
3084 TREE_VEC_LENGTH (tmpl_parms),
3085 TREE_VEC_LENGTH (parms));
3086 return;
3089 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
3091 tree tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
3092 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
3093 tree tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
3094 tree parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
3096 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm))
3098 cp_error_at ("template parameter `%#D'", tmpl_parm);
3099 error ("redeclared here as `%#D'", parm);
3100 return;
3103 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
3105 /* We have in [temp.param]:
3107 A template-parameter may not be given default arguments
3108 by two different declarations in the same scope. */
3109 error ("redefinition of default argument for `%#D'", parm);
3110 error ("%J original definition appeared here", tmpl_parm);
3111 return;
3114 if (parm_default != NULL_TREE)
3115 /* Update the previous template parameters (which are the ones
3116 that will really count) with the new default value. */
3117 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
3118 else if (tmpl_default != NULL_TREE)
3119 /* Update the new parameters, too; they'll be used as the
3120 parameters for any members. */
3121 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
3125 /* Simplify EXPR if it is a non-dependent expression. Returns the
3126 (possibly simplified) expression. */
3128 tree
3129 fold_non_dependent_expr (tree expr)
3131 /* If we're in a template, but EXPR isn't value dependent, simplify
3132 it. We're supposed to treat:
3134 template <typename T> void f(T[1 + 1]);
3135 template <typename T> void f(T[2]);
3137 as two declarations of the same function, for example. */
3138 if (processing_template_decl
3139 && !type_dependent_expression_p (expr)
3140 && !value_dependent_expression_p (expr))
3142 HOST_WIDE_INT saved_processing_template_decl;
3144 saved_processing_template_decl = processing_template_decl;
3145 processing_template_decl = 0;
3146 expr = tsubst_copy_and_build (expr,
3147 /*args=*/NULL_TREE,
3148 tf_error,
3149 /*in_decl=*/NULL_TREE,
3150 /*function_p=*/false);
3151 processing_template_decl = saved_processing_template_decl;
3153 return expr;
3156 /* Attempt to convert the non-type template parameter EXPR to the
3157 indicated TYPE. If the conversion is successful, return the
3158 converted value. If the conversion is unsuccessful, return
3159 NULL_TREE if we issued an error message, or error_mark_node if we
3160 did not. We issue error messages for out-and-out bad template
3161 parameters, but not simply because the conversion failed, since we
3162 might be just trying to do argument deduction. Both TYPE and EXPR
3163 must be non-dependent. */
3165 static tree
3166 convert_nontype_argument (tree type, tree expr)
3168 tree expr_type;
3170 /* If we are in a template, EXPR may be non-dependent, but still
3171 have a syntactic, rather than semantic, form. For example, EXPR
3172 might be a SCOPE_REF, rather than the VAR_DECL to which the
3173 SCOPE_REF refers. Preserving the qualifying scope is necessary
3174 so that access checking can be performed when the template is
3175 instantiated -- but here we need the resolved form so that we can
3176 convert the argument. */
3177 expr = fold_non_dependent_expr (expr);
3178 expr_type = TREE_TYPE (expr);
3180 /* A template-argument for a non-type, non-template
3181 template-parameter shall be one of:
3183 --an integral constant-expression of integral or enumeration
3184 type; or
3186 --the name of a non-type template-parameter; or
3188 --the name of an object or function with external linkage,
3189 including function templates and function template-ids but
3190 excluding non-static class members, expressed as id-expression;
3193 --the address of an object or function with external linkage,
3194 including function templates and function template-ids but
3195 excluding non-static class members, expressed as & id-expression
3196 where the & is optional if the name refers to a function or
3197 array; or
3199 --a pointer to member expressed as described in _expr.unary.op_. */
3201 /* An integral constant-expression can include const variables or
3202 . enumerators. Simplify things by folding them to their values,
3203 unless we're about to bind the declaration to a reference
3204 parameter. */
3205 if (INTEGRAL_TYPE_P (expr_type) && TREE_CODE (type) != REFERENCE_TYPE)
3206 while (true)
3208 tree const_expr = decl_constant_value (expr);
3209 /* In a template, the initializer for a VAR_DECL may not be
3210 marked as TREE_CONSTANT, in which case decl_constant_value
3211 will not return the initializer. Handle that special case
3212 here. */
3213 if (expr == const_expr
3214 && DECL_INTEGRAL_CONSTANT_VAR_P (expr)
3215 /* DECL_INITIAL can be NULL if we are processing a
3216 variable initialized to an expression involving itself.
3217 We know it is initialized to a constant -- but not what
3218 constant, yet. */
3219 && DECL_INITIAL (expr))
3220 const_expr = DECL_INITIAL (expr);
3221 if (expr == const_expr)
3222 break;
3223 expr = fold_non_dependent_expr (const_expr);
3226 if (is_overloaded_fn (expr))
3227 /* OK for now. We'll check that it has external linkage later.
3228 Check this first since if expr_type is the unknown_type_node
3229 we would otherwise complain below. */
3231 else if (TYPE_PTR_TO_MEMBER_P (expr_type))
3233 if (TREE_CODE (expr) != PTRMEM_CST)
3234 goto bad_argument;
3236 else if (TYPE_PTR_P (expr_type)
3237 || TREE_CODE (expr_type) == ARRAY_TYPE
3238 || TREE_CODE (type) == REFERENCE_TYPE
3239 /* If expr is the address of an overloaded function, we
3240 will get the unknown_type_node at this point. */
3241 || expr_type == unknown_type_node)
3243 tree referent;
3244 tree e = expr;
3245 STRIP_NOPS (e);
3247 if (TREE_CODE (expr_type) == ARRAY_TYPE
3248 || (TREE_CODE (type) == REFERENCE_TYPE
3249 && TREE_CODE (e) != ADDR_EXPR))
3250 referent = e;
3251 else
3253 if (TREE_CODE (e) != ADDR_EXPR)
3255 bad_argument:
3256 error ("`%E' is not a valid template argument", expr);
3257 if (TYPE_PTR_P (expr_type))
3259 if (TREE_CODE (TREE_TYPE (expr_type)) == FUNCTION_TYPE)
3260 error ("it must be the address of a function with external linkage");
3261 else
3262 error ("it must be the address of an object with external linkage");
3264 else if (TYPE_PTR_TO_MEMBER_P (expr_type))
3265 error ("it must be a pointer-to-member of the form `&X::Y'");
3267 return NULL_TREE;
3270 referent = TREE_OPERAND (e, 0);
3271 STRIP_NOPS (referent);
3274 if (TREE_CODE (referent) == STRING_CST)
3276 error ("string literal %E is not a valid template argument because it is the address of an object with static linkage",
3277 referent);
3278 return NULL_TREE;
3281 if (TREE_CODE (referent) == SCOPE_REF)
3282 referent = TREE_OPERAND (referent, 1);
3284 if (is_overloaded_fn (referent))
3285 /* We'll check that it has external linkage later. */
3287 else if (TREE_CODE (referent) != VAR_DECL)
3288 goto bad_argument;
3289 else if (!DECL_EXTERNAL_LINKAGE_P (referent))
3291 error ("address of non-extern `%E' cannot be used as template argument", referent);
3292 return error_mark_node;
3295 else if (INTEGRAL_TYPE_P (expr_type) || TYPE_PTR_TO_MEMBER_P (expr_type))
3297 if (! TREE_CONSTANT (expr))
3299 non_constant:
3300 error ("non-constant `%E' cannot be used as template argument",
3301 expr);
3302 return NULL_TREE;
3305 else
3307 if (TYPE_P (expr))
3308 error ("type '%T' cannot be used as a value for a non-type "
3309 "template-parameter", expr);
3310 else if (DECL_P (expr))
3311 error ("invalid use of '%D' as a non-type template-argument", expr);
3312 else
3313 error ("invalid use of '%E' as a non-type template-argument", expr);
3315 return NULL_TREE;
3318 switch (TREE_CODE (type))
3320 case INTEGER_TYPE:
3321 case BOOLEAN_TYPE:
3322 case ENUMERAL_TYPE:
3323 /* For a non-type template-parameter of integral or enumeration
3324 type, integral promotions (_conv.prom_) and integral
3325 conversions (_conv.integral_) are applied. */
3326 if (!INTEGRAL_TYPE_P (expr_type))
3327 return error_mark_node;
3329 /* It's safe to call digest_init in this case; we know we're
3330 just converting one integral constant expression to another. */
3331 expr = digest_init (type, expr, (tree*) 0);
3333 if (TREE_CODE (expr) != INTEGER_CST)
3334 /* Curiously, some TREE_CONSTANT integral expressions do not
3335 simplify to integer constants. For example, `3 % 0',
3336 remains a TRUNC_MOD_EXPR. */
3337 goto non_constant;
3339 return expr;
3341 case OFFSET_TYPE:
3343 tree e;
3345 /* For a non-type template-parameter of type pointer to data
3346 member, qualification conversions (_conv.qual_) are
3347 applied. */
3348 e = perform_qualification_conversions (type, expr);
3349 if (TREE_CODE (e) == NOP_EXPR)
3350 /* The call to perform_qualification_conversions will
3351 insert a NOP_EXPR over EXPR to do express conversion,
3352 if necessary. But, that will confuse us if we use
3353 this (converted) template parameter to instantiate
3354 another template; then the thing will not look like a
3355 valid template argument. So, just make a new
3356 constant, of the appropriate type. */
3357 e = make_ptrmem_cst (type, PTRMEM_CST_MEMBER (expr));
3358 return e;
3361 case POINTER_TYPE:
3363 tree type_pointed_to = TREE_TYPE (type);
3365 if (TREE_CODE (type_pointed_to) == FUNCTION_TYPE)
3367 /* For a non-type template-parameter of type pointer to
3368 function, only the function-to-pointer conversion
3369 (_conv.func_) is applied. If the template-argument
3370 represents a set of overloaded functions (or a pointer to
3371 such), the matching function is selected from the set
3372 (_over.over_). */
3373 tree fns;
3374 tree fn;
3376 if (TREE_CODE (expr) == ADDR_EXPR)
3377 fns = TREE_OPERAND (expr, 0);
3378 else
3379 fns = expr;
3381 fn = instantiate_type (type_pointed_to, fns, tf_none);
3383 if (fn == error_mark_node)
3384 return error_mark_node;
3386 if (!DECL_EXTERNAL_LINKAGE_P (fn))
3388 if (really_overloaded_fn (fns))
3389 return error_mark_node;
3390 else
3391 goto bad_argument;
3394 expr = build_unary_op (ADDR_EXPR, fn, 0);
3396 my_friendly_assert (same_type_p (type, TREE_TYPE (expr)),
3398 return expr;
3400 else
3402 /* For a non-type template-parameter of type pointer to
3403 object, qualification conversions (_conv.qual_) and the
3404 array-to-pointer conversion (_conv.array_) are applied.
3405 [Note: In particular, neither the null pointer conversion
3406 (_conv.ptr_) nor the derived-to-base conversion
3407 (_conv.ptr_) are applied. Although 0 is a valid
3408 template-argument for a non-type template-parameter of
3409 integral type, it is not a valid template-argument for a
3410 non-type template-parameter of pointer type.]
3412 The call to decay_conversion performs the
3413 array-to-pointer conversion, if appropriate. */
3414 expr = decay_conversion (expr);
3416 if (expr == error_mark_node)
3417 return error_mark_node;
3418 else
3419 return perform_qualification_conversions (type, expr);
3422 break;
3424 case REFERENCE_TYPE:
3426 tree type_referred_to = TREE_TYPE (type);
3428 /* If this expression already has reference type, get the
3429 underlying object. */
3430 if (TREE_CODE (expr_type) == REFERENCE_TYPE)
3432 if (TREE_CODE (expr) == NOP_EXPR
3433 && TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR)
3434 STRIP_NOPS (expr);
3435 my_friendly_assert (TREE_CODE (expr) == ADDR_EXPR, 20000604);
3436 expr = TREE_OPERAND (expr, 0);
3437 expr_type = TREE_TYPE (expr);
3440 if (TREE_CODE (type_referred_to) == FUNCTION_TYPE)
3442 /* For a non-type template-parameter of type reference to
3443 function, no conversions apply. If the
3444 template-argument represents a set of overloaded
3445 functions, the matching function is selected from the
3446 set (_over.over_). */
3447 tree fn;
3449 fn = instantiate_type (type_referred_to, expr, tf_none);
3451 if (fn == error_mark_node)
3452 return error_mark_node;
3454 if (!DECL_EXTERNAL_LINKAGE_P (fn))
3456 if (really_overloaded_fn (expr))
3457 /* Don't issue an error here; we might get a different
3458 function if the overloading had worked out
3459 differently. */
3460 return error_mark_node;
3461 else
3462 goto bad_argument;
3465 my_friendly_assert (same_type_p (type_referred_to,
3466 TREE_TYPE (fn)),
3469 expr = fn;
3471 else
3473 /* For a non-type template-parameter of type reference to
3474 object, no conversions apply. The type referred to by the
3475 reference may be more cv-qualified than the (otherwise
3476 identical) type of the template-argument. The
3477 template-parameter is bound directly to the
3478 template-argument, which must be an lvalue. */
3479 if (!same_type_p (TYPE_MAIN_VARIANT (expr_type),
3480 TYPE_MAIN_VARIANT (type_referred_to))
3481 || !at_least_as_qualified_p (type_referred_to,
3482 expr_type)
3483 || !real_lvalue_p (expr))
3484 return error_mark_node;
3487 cxx_mark_addressable (expr);
3488 return build_nop (type, build_address (expr));
3490 break;
3492 case RECORD_TYPE:
3494 my_friendly_assert (TYPE_PTRMEMFUNC_P (type), 20010112);
3496 /* For a non-type template-parameter of type pointer to member
3497 function, no conversions apply. If the template-argument
3498 represents a set of overloaded member functions, the
3499 matching member function is selected from the set
3500 (_over.over_). */
3502 if (!TYPE_PTRMEMFUNC_P (expr_type) &&
3503 expr_type != unknown_type_node)
3504 return error_mark_node;
3506 if (TREE_CODE (expr) == PTRMEM_CST)
3508 /* A ptr-to-member constant. */
3509 if (!same_type_p (type, expr_type))
3510 return error_mark_node;
3511 else
3512 return expr;
3515 if (TREE_CODE (expr) != ADDR_EXPR)
3516 return error_mark_node;
3518 expr = instantiate_type (type, expr, tf_none);
3520 if (expr == error_mark_node)
3521 return error_mark_node;
3523 if (!same_type_p (type, TREE_TYPE (expr)))
3524 return error_mark_node;
3526 return expr;
3528 break;
3530 default:
3531 /* All non-type parameters must have one of these types. */
3532 abort ();
3533 break;
3536 return error_mark_node;
3539 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
3540 template template parameters. Both PARM_PARMS and ARG_PARMS are
3541 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
3542 or PARM_DECL.
3544 ARG_PARMS may contain more parameters than PARM_PARMS. If this is
3545 the case, then extra parameters must have default arguments.
3547 Consider the example:
3548 template <class T, class Allocator = allocator> class vector;
3549 template<template <class U> class TT> class C;
3551 C<vector> is a valid instantiation. PARM_PARMS for the above code
3552 contains a TYPE_DECL (for U), ARG_PARMS contains two TYPE_DECLs (for
3553 T and Allocator) and OUTER_ARGS contains the argument that is used to
3554 substitute the TT parameter. */
3556 static int
3557 coerce_template_template_parms (tree parm_parms,
3558 tree arg_parms,
3559 tsubst_flags_t complain,
3560 tree in_decl,
3561 tree outer_args)
3563 int nparms, nargs, i;
3564 tree parm, arg;
3566 my_friendly_assert (TREE_CODE (parm_parms) == TREE_VEC, 0);
3567 my_friendly_assert (TREE_CODE (arg_parms) == TREE_VEC, 0);
3569 nparms = TREE_VEC_LENGTH (parm_parms);
3570 nargs = TREE_VEC_LENGTH (arg_parms);
3572 /* The rule here is opposite of coerce_template_parms. */
3573 if (nargs < nparms
3574 || (nargs > nparms
3575 && TREE_PURPOSE (TREE_VEC_ELT (arg_parms, nparms)) == NULL_TREE))
3576 return 0;
3578 for (i = 0; i < nparms; ++i)
3580 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
3581 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
3583 if (arg == NULL_TREE || arg == error_mark_node
3584 || parm == NULL_TREE || parm == error_mark_node)
3585 return 0;
3587 if (TREE_CODE (arg) != TREE_CODE (parm))
3588 return 0;
3590 switch (TREE_CODE (parm))
3592 case TYPE_DECL:
3593 break;
3595 case TEMPLATE_DECL:
3596 /* We encounter instantiations of templates like
3597 template <template <template <class> class> class TT>
3598 class C; */
3600 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3601 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3603 if (!coerce_template_template_parms
3604 (parmparm, argparm, complain, in_decl, outer_args))
3605 return 0;
3607 break;
3609 case PARM_DECL:
3610 /* The tsubst call is used to handle cases such as
3611 template <class T, template <T> class TT> class D;
3612 i.e. the parameter list of TT depends on earlier parameters. */
3613 if (!same_type_p
3614 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
3615 TREE_TYPE (arg)))
3616 return 0;
3617 break;
3619 default:
3620 abort ();
3623 return 1;
3626 /* Convert the indicated template ARG as necessary to match the
3627 indicated template PARM. Returns the converted ARG, or
3628 error_mark_node if the conversion was unsuccessful. Error and
3629 warning messages are issued under control of COMPLAIN. This
3630 conversion is for the Ith parameter in the parameter list. ARGS is
3631 the full set of template arguments deduced so far. */
3633 static tree
3634 convert_template_argument (tree parm,
3635 tree arg,
3636 tree args,
3637 tsubst_flags_t complain,
3638 int i,
3639 tree in_decl)
3641 tree val;
3642 tree inner_args;
3643 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
3645 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3647 if (TREE_CODE (arg) == TREE_LIST
3648 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
3650 /* The template argument was the name of some
3651 member function. That's usually
3652 invalid, but static members are OK. In any
3653 case, grab the underlying fields/functions
3654 and issue an error later if required. */
3655 arg = TREE_VALUE (arg);
3656 TREE_TYPE (arg) = unknown_type_node;
3659 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
3660 requires_type = (TREE_CODE (parm) == TYPE_DECL
3661 || requires_tmpl_type);
3663 is_tmpl_type = ((TREE_CODE (arg) == TEMPLATE_DECL
3664 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
3665 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3666 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
3668 if (is_tmpl_type
3669 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3670 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
3671 arg = TYPE_STUB_DECL (arg);
3673 is_type = TYPE_P (arg) || is_tmpl_type;
3675 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
3676 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
3678 pedwarn ("to refer to a type member of a template parameter, use `typename %E'", arg);
3680 arg = make_typename_type (TREE_OPERAND (arg, 0),
3681 TREE_OPERAND (arg, 1),
3682 complain & tf_error);
3683 is_type = 1;
3685 if (is_type != requires_type)
3687 if (in_decl)
3689 if (complain & tf_error)
3691 error ("type/value mismatch at argument %d in template parameter list for `%D'",
3692 i + 1, in_decl);
3693 if (is_type)
3694 error (" expected a constant of type `%T', got `%T'",
3695 TREE_TYPE (parm),
3696 (is_tmpl_type ? DECL_NAME (arg) : arg));
3697 else if (requires_tmpl_type)
3698 error (" expected a class template, got `%E'", arg);
3699 else
3700 error (" expected a type, got `%E'", arg);
3703 return error_mark_node;
3705 if (is_tmpl_type ^ requires_tmpl_type)
3707 if (in_decl && (complain & tf_error))
3709 error ("type/value mismatch at argument %d in template parameter list for `%D'",
3710 i + 1, in_decl);
3711 if (is_tmpl_type)
3712 error (" expected a type, got `%T'", DECL_NAME (arg));
3713 else
3714 error (" expected a class template, got `%T'", arg);
3716 return error_mark_node;
3719 if (is_type)
3721 if (requires_tmpl_type)
3723 if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
3724 /* The number of argument required is not known yet.
3725 Just accept it for now. */
3726 val = TREE_TYPE (arg);
3727 else
3729 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3730 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3732 if (coerce_template_template_parms (parmparm, argparm,
3733 complain, in_decl,
3734 inner_args))
3736 val = arg;
3738 /* TEMPLATE_TEMPLATE_PARM node is preferred over
3739 TEMPLATE_DECL. */
3740 if (val != error_mark_node
3741 && DECL_TEMPLATE_TEMPLATE_PARM_P (val))
3742 val = TREE_TYPE (val);
3744 else
3746 if (in_decl && (complain & tf_error))
3748 error ("type/value mismatch at argument %d in template parameter list for `%D'",
3749 i + 1, in_decl);
3750 error (" expected a template of type `%D', got `%D'", parm, arg);
3753 val = error_mark_node;
3757 else
3758 val = groktypename (arg);
3760 else
3762 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
3764 if (invalid_nontype_parm_type_p (t, complain))
3765 return error_mark_node;
3767 if (!uses_template_parms (arg) && !uses_template_parms (t))
3768 /* We used to call digest_init here. However, digest_init
3769 will report errors, which we don't want when complain
3770 is zero. More importantly, digest_init will try too
3771 hard to convert things: for example, `0' should not be
3772 converted to pointer type at this point according to
3773 the standard. Accepting this is not merely an
3774 extension, since deciding whether or not these
3775 conversions can occur is part of determining which
3776 function template to call, or whether a given explicit
3777 argument specification is valid. */
3778 val = convert_nontype_argument (t, arg);
3779 else
3780 val = arg;
3782 if (val == NULL_TREE)
3783 val = error_mark_node;
3784 else if (val == error_mark_node && (complain & tf_error))
3785 error ("could not convert template argument `%E' to `%T'",
3786 arg, t);
3789 return val;
3792 /* Convert all template arguments to their appropriate types, and
3793 return a vector containing the innermost resulting template
3794 arguments. If any error occurs, return error_mark_node. Error and
3795 warning messages are issued under control of COMPLAIN.
3797 If REQUIRE_ALL_ARGUMENTS is nonzero, all arguments must be
3798 provided in ARGLIST, or else trailing parameters must have default
3799 values. If REQUIRE_ALL_ARGUMENTS is zero, we will attempt argument
3800 deduction for any unspecified trailing arguments. */
3802 static tree
3803 coerce_template_parms (tree parms,
3804 tree args,
3805 tree in_decl,
3806 tsubst_flags_t complain,
3807 int require_all_arguments)
3809 int nparms, nargs, i, lost = 0;
3810 tree inner_args;
3811 tree new_args;
3812 tree new_inner_args;
3814 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3815 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
3816 nparms = TREE_VEC_LENGTH (parms);
3818 if (nargs > nparms
3819 || (nargs < nparms
3820 && require_all_arguments
3821 && TREE_PURPOSE (TREE_VEC_ELT (parms, nargs)) == NULL_TREE))
3823 if (complain & tf_error)
3825 error ("wrong number of template arguments (%d, should be %d)",
3826 nargs, nparms);
3828 if (in_decl)
3829 cp_error_at ("provided for `%D'", in_decl);
3832 return error_mark_node;
3835 new_inner_args = make_tree_vec (nparms);
3836 new_args = add_outermost_template_args (args, new_inner_args);
3837 for (i = 0; i < nparms; i++)
3839 tree arg;
3840 tree parm;
3842 /* Get the Ith template parameter. */
3843 parm = TREE_VEC_ELT (parms, i);
3845 /* Calculate the Ith argument. */
3846 if (i < nargs)
3847 arg = TREE_VEC_ELT (inner_args, i);
3848 else if (require_all_arguments)
3849 /* There must be a default arg in this case. */
3850 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
3851 complain, in_decl);
3852 else
3853 break;
3855 my_friendly_assert (arg, 20030727);
3856 if (arg == error_mark_node)
3857 error ("template argument %d is invalid", i + 1);
3858 else
3859 arg = convert_template_argument (TREE_VALUE (parm),
3860 arg, new_args, complain, i,
3861 in_decl);
3863 if (arg == error_mark_node)
3864 lost++;
3865 TREE_VEC_ELT (new_inner_args, i) = arg;
3868 if (lost)
3869 return error_mark_node;
3871 return new_inner_args;
3874 /* Returns 1 if template args OT and NT are equivalent. */
3876 static int
3877 template_args_equal (tree ot, tree nt)
3879 if (nt == ot)
3880 return 1;
3882 if (TREE_CODE (nt) == TREE_VEC)
3883 /* For member templates */
3884 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
3885 else if (TYPE_P (nt))
3886 return TYPE_P (ot) && same_type_p (ot, nt);
3887 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
3888 return 0;
3889 else
3890 return cp_tree_equal (ot, nt);
3893 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
3894 of template arguments. Returns 0 otherwise. */
3897 comp_template_args (tree oldargs, tree newargs)
3899 int i;
3901 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
3902 return 0;
3904 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
3906 tree nt = TREE_VEC_ELT (newargs, i);
3907 tree ot = TREE_VEC_ELT (oldargs, i);
3909 if (! template_args_equal (ot, nt))
3910 return 0;
3912 return 1;
3915 /* Given class template name and parameter list, produce a user-friendly name
3916 for the instantiation. */
3918 static char *
3919 mangle_class_name_for_template (const char* name, tree parms, tree arglist)
3921 static struct obstack scratch_obstack;
3922 static char *scratch_firstobj;
3923 int i, nparms;
3925 if (!scratch_firstobj)
3926 gcc_obstack_init (&scratch_obstack);
3927 else
3928 obstack_free (&scratch_obstack, scratch_firstobj);
3929 scratch_firstobj = obstack_alloc (&scratch_obstack, 1);
3931 #define ccat(C) obstack_1grow (&scratch_obstack, (C));
3932 #define cat(S) obstack_grow (&scratch_obstack, (S), strlen (S))
3934 cat (name);
3935 ccat ('<');
3936 nparms = TREE_VEC_LENGTH (parms);
3937 arglist = INNERMOST_TEMPLATE_ARGS (arglist);
3938 my_friendly_assert (nparms == TREE_VEC_LENGTH (arglist), 268);
3939 for (i = 0; i < nparms; i++)
3941 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
3942 tree arg = TREE_VEC_ELT (arglist, i);
3944 if (i)
3945 ccat (',');
3947 if (TREE_CODE (parm) == TYPE_DECL)
3949 cat (type_as_string (arg, TFF_CHASE_TYPEDEF));
3950 continue;
3952 else if (TREE_CODE (parm) == TEMPLATE_DECL)
3954 if (TREE_CODE (arg) == TEMPLATE_DECL)
3956 /* Already substituted with real template. Just output
3957 the template name here */
3958 tree context = DECL_CONTEXT (arg);
3959 if (context)
3961 /* The template may be defined in a namespace, or
3962 may be a member template. */
3963 my_friendly_assert (TREE_CODE (context) == NAMESPACE_DECL
3964 || CLASS_TYPE_P (context),
3965 980422);
3966 cat(decl_as_string (DECL_CONTEXT (arg), TFF_PLAIN_IDENTIFIER));
3967 cat("::");
3969 cat (IDENTIFIER_POINTER (DECL_NAME (arg)));
3971 else
3972 /* Output the parameter declaration. */
3973 cat (type_as_string (arg, TFF_CHASE_TYPEDEF));
3974 continue;
3976 else
3977 my_friendly_assert (TREE_CODE (parm) == PARM_DECL, 269);
3979 /* No need to check arglist against parmlist here; we did that
3980 in coerce_template_parms, called from lookup_template_class. */
3981 cat (expr_as_string (arg, TFF_PLAIN_IDENTIFIER));
3984 char *bufp = obstack_next_free (&scratch_obstack);
3985 int offset = 0;
3986 while (bufp[offset - 1] == ' ')
3987 offset--;
3988 obstack_blank_fast (&scratch_obstack, offset);
3990 /* B<C<char> >, not B<C<char>> */
3991 if (bufp[offset - 1] == '>')
3992 ccat (' ');
3994 ccat ('>');
3995 ccat ('\0');
3996 return (char *) obstack_base (&scratch_obstack);
3999 static tree
4000 classtype_mangled_name (tree t)
4002 if (CLASSTYPE_TEMPLATE_INFO (t)
4003 /* Specializations have already had their names set up in
4004 lookup_template_class. */
4005 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
4007 tree tmpl = most_general_template (CLASSTYPE_TI_TEMPLATE (t));
4009 /* For non-primary templates, the template parameters are
4010 implicit from their surrounding context. */
4011 if (PRIMARY_TEMPLATE_P (tmpl))
4013 tree name = DECL_NAME (tmpl);
4014 char *mangled_name = mangle_class_name_for_template
4015 (IDENTIFIER_POINTER (name),
4016 DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
4017 CLASSTYPE_TI_ARGS (t));
4018 tree id = get_identifier (mangled_name);
4019 IDENTIFIER_TEMPLATE (id) = name;
4020 return id;
4024 return TYPE_IDENTIFIER (t);
4027 static void
4028 add_pending_template (tree d)
4030 tree ti = (TYPE_P (d)
4031 ? CLASSTYPE_TEMPLATE_INFO (d)
4032 : DECL_TEMPLATE_INFO (d));
4033 tree pt;
4034 int level;
4036 if (TI_PENDING_TEMPLATE_FLAG (ti))
4037 return;
4039 /* We are called both from instantiate_decl, where we've already had a
4040 tinst_level pushed, and instantiate_template, where we haven't.
4041 Compensate. */
4042 level = !(current_tinst_level && TINST_DECL (current_tinst_level) == d);
4044 if (level)
4045 push_tinst_level (d);
4047 pt = tree_cons (current_tinst_level, d, NULL_TREE);
4048 if (last_pending_template)
4049 TREE_CHAIN (last_pending_template) = pt;
4050 else
4051 pending_templates = pt;
4053 last_pending_template = pt;
4055 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
4057 if (level)
4058 pop_tinst_level ();
4062 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
4063 ARGLIST. Valid choices for FNS are given in the cp-tree.def
4064 documentation for TEMPLATE_ID_EXPR. */
4066 tree
4067 lookup_template_function (tree fns, tree arglist)
4069 tree type;
4071 if (fns == error_mark_node || arglist == error_mark_node)
4072 return error_mark_node;
4074 my_friendly_assert (!arglist || TREE_CODE (arglist) == TREE_VEC, 20030726);
4075 my_friendly_assert (fns && (is_overloaded_fn (fns)
4076 || TREE_CODE (fns) == IDENTIFIER_NODE),
4077 20050608);
4079 if (BASELINK_P (fns))
4081 BASELINK_FUNCTIONS (fns) = build (TEMPLATE_ID_EXPR,
4082 unknown_type_node,
4083 BASELINK_FUNCTIONS (fns),
4084 arglist);
4085 return fns;
4088 type = TREE_TYPE (fns);
4089 if (TREE_CODE (fns) == OVERLOAD || !type)
4090 type = unknown_type_node;
4092 return build (TEMPLATE_ID_EXPR, type, fns, arglist);
4095 /* Within the scope of a template class S<T>, the name S gets bound
4096 (in build_self_reference) to a TYPE_DECL for the class, not a
4097 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
4098 or one of its enclosing classes, and that type is a template,
4099 return the associated TEMPLATE_DECL. Otherwise, the original
4100 DECL is returned. */
4102 tree
4103 maybe_get_template_decl_from_type_decl (tree decl)
4105 return (decl != NULL_TREE
4106 && TREE_CODE (decl) == TYPE_DECL
4107 && DECL_ARTIFICIAL (decl)
4108 && CLASS_TYPE_P (TREE_TYPE (decl))
4109 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
4110 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
4113 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
4114 parameters, find the desired type.
4116 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
4118 IN_DECL, if non-NULL, is the template declaration we are trying to
4119 instantiate.
4121 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
4122 the class we are looking up.
4124 Issue error and warning messages under control of COMPLAIN.
4126 If the template class is really a local class in a template
4127 function, then the FUNCTION_CONTEXT is the function in which it is
4128 being instantiated. */
4130 tree
4131 lookup_template_class (tree d1,
4132 tree arglist,
4133 tree in_decl,
4134 tree context,
4135 int entering_scope,
4136 tsubst_flags_t complain)
4138 tree template = NULL_TREE, parmlist;
4139 tree t;
4141 timevar_push (TV_NAME_LOOKUP);
4143 if (TREE_CODE (d1) == IDENTIFIER_NODE)
4145 if (IDENTIFIER_VALUE (d1)
4146 && DECL_TEMPLATE_TEMPLATE_PARM_P (IDENTIFIER_VALUE (d1)))
4147 template = IDENTIFIER_VALUE (d1);
4148 else
4150 if (context)
4151 push_decl_namespace (context);
4152 template = lookup_name (d1, /*prefer_type=*/0);
4153 template = maybe_get_template_decl_from_type_decl (template);
4154 if (context)
4155 pop_decl_namespace ();
4157 if (template)
4158 context = DECL_CONTEXT (template);
4160 else if (TREE_CODE (d1) == TYPE_DECL && IS_AGGR_TYPE (TREE_TYPE (d1)))
4162 tree type = TREE_TYPE (d1);
4164 /* If we are declaring a constructor, say A<T>::A<T>, we will get
4165 an implicit typename for the second A. Deal with it. */
4166 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
4167 type = TREE_TYPE (type);
4169 if (CLASSTYPE_TEMPLATE_INFO (type))
4171 template = CLASSTYPE_TI_TEMPLATE (type);
4172 d1 = DECL_NAME (template);
4175 else if (TREE_CODE (d1) == ENUMERAL_TYPE
4176 || (TYPE_P (d1) && IS_AGGR_TYPE (d1)))
4178 template = TYPE_TI_TEMPLATE (d1);
4179 d1 = DECL_NAME (template);
4181 else if (TREE_CODE (d1) == TEMPLATE_DECL
4182 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
4184 template = d1;
4185 d1 = DECL_NAME (template);
4186 context = DECL_CONTEXT (template);
4189 /* With something like `template <class T> class X class X { ... };'
4190 we could end up with D1 having nothing but an IDENTIFIER_VALUE.
4191 We don't want to do that, but we have to deal with the situation,
4192 so let's give them some syntax errors to chew on instead of a
4193 crash. Alternatively D1 might not be a template type at all. */
4194 if (! template)
4196 if (complain & tf_error)
4197 error ("`%T' is not a template", d1);
4198 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4201 if (TREE_CODE (template) != TEMPLATE_DECL
4202 /* Make sure it's a user visible template, if it was named by
4203 the user. */
4204 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (template)
4205 && !PRIMARY_TEMPLATE_P (template)))
4207 if (complain & tf_error)
4209 error ("non-template type `%T' used as a template", d1);
4210 if (in_decl)
4211 cp_error_at ("for template declaration `%D'", in_decl);
4213 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4216 complain &= ~tf_user;
4218 if (DECL_TEMPLATE_TEMPLATE_PARM_P (template))
4220 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
4221 template arguments */
4223 tree parm;
4224 tree arglist2;
4226 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (template);
4228 /* Consider an example where a template template parameter declared as
4230 template <class T, class U = std::allocator<T> > class TT
4232 The template parameter level of T and U are one level larger than
4233 of TT. To proper process the default argument of U, say when an
4234 instantiation `TT<int>' is seen, we need to build the full
4235 arguments containing {int} as the innermost level. Outer levels,
4236 available when not appearing as default template argument, can be
4237 obtained from `current_template_args ()'.
4239 Suppose that TT is later substituted with std::vector. The above
4240 instantiation is `TT<int, std::allocator<T> >' with TT at
4241 level 1, and T at level 2, while the template arguments at level 1
4242 becomes {std::vector} and the inner level 2 is {int}. */
4244 if (current_template_parms)
4245 arglist = add_to_template_args (current_template_args (), arglist);
4247 arglist2 = coerce_template_parms (parmlist, arglist, template,
4248 complain, /*require_all_args=*/1);
4249 if (arglist2 == error_mark_node
4250 || (!uses_template_parms (arglist2)
4251 && check_instantiated_args (template, arglist2, complain)))
4252 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4254 parm = bind_template_template_parm (TREE_TYPE (template), arglist2);
4255 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, parm);
4257 else
4259 tree template_type = TREE_TYPE (template);
4260 tree gen_tmpl;
4261 tree type_decl;
4262 tree found = NULL_TREE;
4263 tree *tp;
4264 int arg_depth;
4265 int parm_depth;
4266 int is_partial_instantiation;
4268 gen_tmpl = most_general_template (template);
4269 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
4270 parm_depth = TMPL_PARMS_DEPTH (parmlist);
4271 arg_depth = TMPL_ARGS_DEPTH (arglist);
4273 if (arg_depth == 1 && parm_depth > 1)
4275 /* We've been given an incomplete set of template arguments.
4276 For example, given:
4278 template <class T> struct S1 {
4279 template <class U> struct S2 {};
4280 template <class U> struct S2<U*> {};
4283 we will be called with an ARGLIST of `U*', but the
4284 TEMPLATE will be `template <class T> template
4285 <class U> struct S1<T>::S2'. We must fill in the missing
4286 arguments. */
4287 arglist
4288 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (template)),
4289 arglist);
4290 arg_depth = TMPL_ARGS_DEPTH (arglist);
4293 /* Now we should have enough arguments. */
4294 my_friendly_assert (parm_depth == arg_depth, 0);
4296 /* From here on, we're only interested in the most general
4297 template. */
4298 template = gen_tmpl;
4300 /* Calculate the BOUND_ARGS. These will be the args that are
4301 actually tsubst'd into the definition to create the
4302 instantiation. */
4303 if (parm_depth > 1)
4305 /* We have multiple levels of arguments to coerce, at once. */
4306 int i;
4307 int saved_depth = TMPL_ARGS_DEPTH (arglist);
4309 tree bound_args = make_tree_vec (parm_depth);
4311 for (i = saved_depth,
4312 t = DECL_TEMPLATE_PARMS (template);
4313 i > 0 && t != NULL_TREE;
4314 --i, t = TREE_CHAIN (t))
4316 tree a = coerce_template_parms (TREE_VALUE (t),
4317 arglist, template,
4318 complain, /*require_all_args=*/1);
4320 /* Don't process further if one of the levels fails. */
4321 if (a == error_mark_node)
4323 /* Restore the ARGLIST to its full size. */
4324 TREE_VEC_LENGTH (arglist) = saved_depth;
4325 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4328 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
4330 /* We temporarily reduce the length of the ARGLIST so
4331 that coerce_template_parms will see only the arguments
4332 corresponding to the template parameters it is
4333 examining. */
4334 TREE_VEC_LENGTH (arglist)--;
4337 /* Restore the ARGLIST to its full size. */
4338 TREE_VEC_LENGTH (arglist) = saved_depth;
4340 arglist = bound_args;
4342 else
4343 arglist
4344 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
4345 INNERMOST_TEMPLATE_ARGS (arglist),
4346 template,
4347 complain, /*require_all_args=*/1);
4349 if (arglist == error_mark_node)
4350 /* We were unable to bind the arguments. */
4351 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4353 /* In the scope of a template class, explicit references to the
4354 template class refer to the type of the template, not any
4355 instantiation of it. For example, in:
4357 template <class T> class C { void f(C<T>); }
4359 the `C<T>' is just the same as `C'. Outside of the
4360 class, however, such a reference is an instantiation. */
4361 if (comp_template_args (TYPE_TI_ARGS (template_type),
4362 arglist))
4364 found = template_type;
4366 if (!entering_scope && PRIMARY_TEMPLATE_P (template))
4368 tree ctx;
4370 for (ctx = current_class_type;
4371 ctx && TREE_CODE (ctx) != NAMESPACE_DECL;
4372 ctx = (TYPE_P (ctx)
4373 ? TYPE_CONTEXT (ctx)
4374 : DECL_CONTEXT (ctx)))
4375 if (TYPE_P (ctx) && same_type_p (ctx, template_type))
4376 goto found_ctx;
4378 /* We're not in the scope of the class, so the
4379 TEMPLATE_TYPE is not the type we want after all. */
4380 found = NULL_TREE;
4381 found_ctx:;
4384 if (found)
4385 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
4387 for (tp = &DECL_TEMPLATE_INSTANTIATIONS (template);
4388 *tp;
4389 tp = &TREE_CHAIN (*tp))
4390 if (comp_template_args (TREE_PURPOSE (*tp), arglist))
4392 found = *tp;
4394 /* Use the move-to-front heuristic to speed up future
4395 searches. */
4396 *tp = TREE_CHAIN (*tp);
4397 TREE_CHAIN (found)
4398 = DECL_TEMPLATE_INSTANTIATIONS (template);
4399 DECL_TEMPLATE_INSTANTIATIONS (template) = found;
4401 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, TREE_VALUE (found));
4404 /* This type is a "partial instantiation" if any of the template
4405 arguments still involve template parameters. Note that we set
4406 IS_PARTIAL_INSTANTIATION for partial specializations as
4407 well. */
4408 is_partial_instantiation = uses_template_parms (arglist);
4410 /* If the deduced arguments are invalid, then the binding
4411 failed. */
4412 if (!is_partial_instantiation
4413 && check_instantiated_args (template,
4414 INNERMOST_TEMPLATE_ARGS (arglist),
4415 complain))
4416 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4418 if (!is_partial_instantiation
4419 && !PRIMARY_TEMPLATE_P (template)
4420 && TREE_CODE (CP_DECL_CONTEXT (template)) == NAMESPACE_DECL)
4422 found = xref_tag_from_type (TREE_TYPE (template),
4423 DECL_NAME (template),
4424 /*globalize=*/1);
4425 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
4428 context = tsubst (DECL_CONTEXT (template), arglist,
4429 complain, in_decl);
4430 if (!context)
4431 context = global_namespace;
4433 /* Create the type. */
4434 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
4436 if (!is_partial_instantiation)
4438 set_current_access_from_decl (TYPE_NAME (template_type));
4439 t = start_enum (TYPE_IDENTIFIER (template_type));
4441 else
4442 /* We don't want to call start_enum for this type, since
4443 the values for the enumeration constants may involve
4444 template parameters. And, no one should be interested
4445 in the enumeration constants for such a type. */
4446 t = make_node (ENUMERAL_TYPE);
4448 else
4450 t = make_aggr_type (TREE_CODE (template_type));
4451 CLASSTYPE_DECLARED_CLASS (t)
4452 = CLASSTYPE_DECLARED_CLASS (template_type);
4453 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
4454 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
4456 /* A local class. Make sure the decl gets registered properly. */
4457 if (context == current_function_decl)
4458 pushtag (DECL_NAME (template), t, 0);
4461 /* If we called start_enum or pushtag above, this information
4462 will already be set up. */
4463 if (!TYPE_NAME (t))
4465 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
4467 type_decl = create_implicit_typedef (DECL_NAME (template), t);
4468 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
4469 TYPE_STUB_DECL (t) = type_decl;
4470 DECL_SOURCE_LOCATION (type_decl)
4471 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
4473 else
4474 type_decl = TYPE_NAME (t);
4476 TREE_PRIVATE (type_decl)
4477 = TREE_PRIVATE (TYPE_STUB_DECL (template_type));
4478 TREE_PROTECTED (type_decl)
4479 = TREE_PROTECTED (TYPE_STUB_DECL (template_type));
4481 /* Set up the template information. We have to figure out which
4482 template is the immediate parent if this is a full
4483 instantiation. */
4484 if (parm_depth == 1 || is_partial_instantiation
4485 || !PRIMARY_TEMPLATE_P (template))
4486 /* This case is easy; there are no member templates involved. */
4487 found = template;
4488 else
4490 /* This is a full instantiation of a member template. Look
4491 for a partial instantiation of which this is an instance. */
4493 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
4494 found; found = TREE_CHAIN (found))
4496 int success;
4497 tree tmpl = CLASSTYPE_TI_TEMPLATE (TREE_VALUE (found));
4499 /* We only want partial instantiations, here, not
4500 specializations or full instantiations. */
4501 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_VALUE (found))
4502 || !uses_template_parms (TREE_VALUE (found)))
4503 continue;
4505 /* Temporarily reduce by one the number of levels in the
4506 ARGLIST and in FOUND so as to avoid comparing the
4507 last set of arguments. */
4508 TREE_VEC_LENGTH (arglist)--;
4509 TREE_VEC_LENGTH (TREE_PURPOSE (found)) --;
4511 /* See if the arguments match. If they do, then TMPL is
4512 the partial instantiation we want. */
4513 success = comp_template_args (TREE_PURPOSE (found), arglist);
4515 /* Restore the argument vectors to their full size. */
4516 TREE_VEC_LENGTH (arglist)++;
4517 TREE_VEC_LENGTH (TREE_PURPOSE (found))++;
4519 if (success)
4521 found = tmpl;
4522 break;
4526 if (!found)
4528 /* There was no partial instantiation. This happens
4529 where C<T> is a member template of A<T> and it's used
4530 in something like
4532 template <typename T> struct B { A<T>::C<int> m; };
4533 B<float>;
4535 Create the partial instantiation.
4537 TREE_VEC_LENGTH (arglist)--;
4538 found = tsubst (template, arglist, complain, NULL_TREE);
4539 TREE_VEC_LENGTH (arglist)++;
4543 SET_TYPE_TEMPLATE_INFO (t, tree_cons (found, arglist, NULL_TREE));
4544 DECL_TEMPLATE_INSTANTIATIONS (template)
4545 = tree_cons (arglist, t,
4546 DECL_TEMPLATE_INSTANTIATIONS (template));
4548 if (TREE_CODE (t) == ENUMERAL_TYPE
4549 && !is_partial_instantiation)
4550 /* Now that the type has been registered on the instantiations
4551 list, we set up the enumerators. Because the enumeration
4552 constants may involve the enumeration type itself, we make
4553 sure to register the type first, and then create the
4554 constants. That way, doing tsubst_expr for the enumeration
4555 constants won't result in recursive calls here; we'll find
4556 the instantiation and exit above. */
4557 tsubst_enum (template_type, t, arglist);
4559 /* Reset the name of the type, now that CLASSTYPE_TEMPLATE_INFO
4560 is set up. */
4561 if (TREE_CODE (t) != ENUMERAL_TYPE)
4562 DECL_NAME (type_decl) = classtype_mangled_name (t);
4563 if (is_partial_instantiation)
4564 /* If the type makes use of template parameters, the
4565 code that generates debugging information will crash. */
4566 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
4568 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4570 timevar_pop (TV_NAME_LOOKUP);
4573 struct pair_fn_data
4575 tree_fn_t fn;
4576 void *data;
4577 htab_t visited;
4580 /* Called from for_each_template_parm via walk_tree. */
4582 static tree
4583 for_each_template_parm_r (tree* tp, int* walk_subtrees, void* d)
4585 tree t = *tp;
4586 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
4587 tree_fn_t fn = pfd->fn;
4588 void *data = pfd->data;
4590 if (TYPE_P (t)
4591 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited))
4592 return error_mark_node;
4594 switch (TREE_CODE (t))
4596 case RECORD_TYPE:
4597 if (TYPE_PTRMEMFUNC_P (t))
4598 break;
4599 /* Fall through. */
4601 case UNION_TYPE:
4602 case ENUMERAL_TYPE:
4603 if (!TYPE_TEMPLATE_INFO (t))
4604 *walk_subtrees = 0;
4605 else if (for_each_template_parm (TREE_VALUE (TYPE_TEMPLATE_INFO (t)),
4606 fn, data, pfd->visited))
4607 return error_mark_node;
4608 break;
4610 case METHOD_TYPE:
4611 /* Since we're not going to walk subtrees, we have to do this
4612 explicitly here. */
4613 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
4614 pfd->visited))
4615 return error_mark_node;
4616 /* Fall through. */
4618 case FUNCTION_TYPE:
4619 /* Check the return type. */
4620 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited))
4621 return error_mark_node;
4623 /* Check the parameter types. Since default arguments are not
4624 instantiated until they are needed, the TYPE_ARG_TYPES may
4625 contain expressions that involve template parameters. But,
4626 no-one should be looking at them yet. And, once they're
4627 instantiated, they don't contain template parameters, so
4628 there's no point in looking at them then, either. */
4630 tree parm;
4632 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
4633 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
4634 pfd->visited))
4635 return error_mark_node;
4637 /* Since we've already handled the TYPE_ARG_TYPES, we don't
4638 want walk_tree walking into them itself. */
4639 *walk_subtrees = 0;
4641 break;
4643 case TYPEOF_TYPE:
4644 if (for_each_template_parm (TYPE_FIELDS (t), fn, data,
4645 pfd->visited))
4646 return error_mark_node;
4647 break;
4649 case FUNCTION_DECL:
4650 case VAR_DECL:
4651 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
4652 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
4653 pfd->visited))
4654 return error_mark_node;
4655 /* Fall through. */
4657 case PARM_DECL:
4658 case CONST_DECL:
4659 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
4660 && for_each_template_parm (DECL_INITIAL (t), fn, data,
4661 pfd->visited))
4662 return error_mark_node;
4663 if (DECL_CONTEXT (t)
4664 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
4665 pfd->visited))
4666 return error_mark_node;
4667 break;
4669 case BOUND_TEMPLATE_TEMPLATE_PARM:
4670 /* Record template parameters such as `T' inside `TT<T>'. */
4671 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited))
4672 return error_mark_node;
4673 /* Fall through. */
4675 case TEMPLATE_TEMPLATE_PARM:
4676 case TEMPLATE_TYPE_PARM:
4677 case TEMPLATE_PARM_INDEX:
4678 if (fn && (*fn)(t, data))
4679 return error_mark_node;
4680 else if (!fn)
4681 return error_mark_node;
4682 break;
4684 case TEMPLATE_DECL:
4685 /* A template template parameter is encountered. */
4686 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
4687 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited))
4688 return error_mark_node;
4690 /* Already substituted template template parameter */
4691 *walk_subtrees = 0;
4692 break;
4694 case TYPENAME_TYPE:
4695 if (!fn
4696 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
4697 data, pfd->visited))
4698 return error_mark_node;
4699 break;
4701 case CONSTRUCTOR:
4702 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
4703 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
4704 (TREE_TYPE (t)), fn, data,
4705 pfd->visited))
4706 return error_mark_node;
4707 break;
4709 case INDIRECT_REF:
4710 case COMPONENT_REF:
4711 /* If there's no type, then this thing must be some expression
4712 involving template parameters. */
4713 if (!fn && !TREE_TYPE (t))
4714 return error_mark_node;
4715 break;
4717 case MODOP_EXPR:
4718 case CAST_EXPR:
4719 case REINTERPRET_CAST_EXPR:
4720 case CONST_CAST_EXPR:
4721 case STATIC_CAST_EXPR:
4722 case DYNAMIC_CAST_EXPR:
4723 case ARROW_EXPR:
4724 case DOTSTAR_EXPR:
4725 case TYPEID_EXPR:
4726 case PSEUDO_DTOR_EXPR:
4727 if (!fn)
4728 return error_mark_node;
4729 break;
4731 case BASELINK:
4732 /* If we do not handle this case specially, we end up walking
4733 the BINFO hierarchy, which is circular, and therefore
4734 confuses walk_tree. */
4735 *walk_subtrees = 0;
4736 if (for_each_template_parm (BASELINK_FUNCTIONS (*tp), fn, data,
4737 pfd->visited))
4738 return error_mark_node;
4739 break;
4741 default:
4742 break;
4745 /* We didn't find any template parameters we liked. */
4746 return NULL_TREE;
4749 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
4750 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
4751 call FN with the parameter and the DATA.
4752 If FN returns nonzero, the iteration is terminated, and
4753 for_each_template_parm returns 1. Otherwise, the iteration
4754 continues. If FN never returns a nonzero value, the value
4755 returned by for_each_template_parm is 0. If FN is NULL, it is
4756 considered to be the function which always returns 1. */
4758 static int
4759 for_each_template_parm (tree t, tree_fn_t fn, void* data, htab_t visited)
4761 struct pair_fn_data pfd;
4762 int result;
4764 /* Set up. */
4765 pfd.fn = fn;
4766 pfd.data = data;
4768 /* Walk the tree. (Conceptually, we would like to walk without
4769 duplicates, but for_each_template_parm_r recursively calls
4770 for_each_template_parm, so we would need to reorganize a fair
4771 bit to use walk_tree_without_duplicates, so we keep our own
4772 visited list.) */
4773 if (visited)
4774 pfd.visited = visited;
4775 else
4776 pfd.visited = htab_create (37, htab_hash_pointer, htab_eq_pointer,
4777 NULL);
4778 result = walk_tree (&t,
4779 for_each_template_parm_r,
4780 &pfd,
4781 pfd.visited) != NULL_TREE;
4783 /* Clean up. */
4784 if (!visited)
4785 htab_delete (pfd.visited);
4787 return result;
4790 /* Returns true if T depends on any template parameter. */
4793 uses_template_parms (tree t)
4795 bool dependent_p;
4796 int saved_processing_template_decl;
4798 saved_processing_template_decl = processing_template_decl;
4799 if (!saved_processing_template_decl)
4800 processing_template_decl = 1;
4801 if (TYPE_P (t))
4802 dependent_p = dependent_type_p (t);
4803 else if (TREE_CODE (t) == TREE_VEC)
4804 dependent_p = any_dependent_template_arguments_p (t);
4805 else if (TREE_CODE (t) == TREE_LIST)
4806 dependent_p = (uses_template_parms (TREE_VALUE (t))
4807 || uses_template_parms (TREE_CHAIN (t)));
4808 else if (TREE_CODE (t) == TYPE_DECL)
4809 dependent_p = dependent_type_p (TREE_TYPE (t));
4810 else if (DECL_P (t)
4811 || EXPR_P (t)
4812 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
4813 || TREE_CODE (t) == OVERLOAD
4814 || TREE_CODE (t) == BASELINK
4815 || TREE_CODE (t) == IDENTIFIER_NODE
4816 || TREE_CODE_CLASS (TREE_CODE (t)) == 'c')
4817 dependent_p = (type_dependent_expression_p (t)
4818 || value_dependent_expression_p (t));
4819 else if (t == error_mark_node)
4820 dependent_p = false;
4821 else
4822 abort ();
4823 processing_template_decl = saved_processing_template_decl;
4825 return dependent_p;
4828 /* Returns true if T depends on any template parameter with level LEVEL. */
4831 uses_template_parms_level (tree t, int level)
4833 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL);
4836 static int tinst_depth;
4837 extern int max_tinst_depth;
4838 #ifdef GATHER_STATISTICS
4839 int depth_reached;
4840 #endif
4841 static int tinst_level_tick;
4842 static int last_template_error_tick;
4844 /* We're starting to instantiate D; record the template instantiation context
4845 for diagnostics and to restore it later. */
4848 push_tinst_level (tree d)
4850 tree new;
4852 if (tinst_depth >= max_tinst_depth)
4854 /* If the instantiation in question still has unbound template parms,
4855 we don't really care if we can't instantiate it, so just return.
4856 This happens with base instantiation for implicit `typename'. */
4857 if (uses_template_parms (d))
4858 return 0;
4860 last_template_error_tick = tinst_level_tick;
4861 error ("template instantiation depth exceeds maximum of %d (use -ftemplate-depth-NN to increase the maximum) instantiating `%D'",
4862 max_tinst_depth, d);
4864 print_instantiation_context ();
4866 return 0;
4869 new = build_expr_wfl (d, input_filename, input_line, 0);
4870 TREE_CHAIN (new) = current_tinst_level;
4871 current_tinst_level = new;
4873 ++tinst_depth;
4874 #ifdef GATHER_STATISTICS
4875 if (tinst_depth > depth_reached)
4876 depth_reached = tinst_depth;
4877 #endif
4879 ++tinst_level_tick;
4880 return 1;
4883 /* We're done instantiating this template; return to the instantiation
4884 context. */
4886 void
4887 pop_tinst_level (void)
4889 tree old = current_tinst_level;
4891 /* Restore the filename and line number stashed away when we started
4892 this instantiation. */
4893 input_line = TINST_LINE (old);
4894 input_filename = TINST_FILE (old);
4895 extract_interface_info ();
4897 current_tinst_level = TREE_CHAIN (old);
4898 --tinst_depth;
4899 ++tinst_level_tick;
4902 /* We're instantiating a deferred template; restore the template
4903 instantiation context in which the instantiation was requested, which
4904 is one step out from LEVEL. */
4906 static void
4907 reopen_tinst_level (tree level)
4909 tree t;
4911 tinst_depth = 0;
4912 for (t = level; t; t = TREE_CHAIN (t))
4913 ++tinst_depth;
4915 current_tinst_level = level;
4916 pop_tinst_level ();
4919 /* Return the outermost template instantiation context, for use with
4920 -falt-external-templates. */
4922 tree
4923 tinst_for_decl (void)
4925 tree p = current_tinst_level;
4927 if (p)
4928 for (; TREE_CHAIN (p) ; p = TREE_CHAIN (p))
4930 return p;
4933 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
4934 vector of template arguments, as for tsubst.
4936 Returns an appropriate tsubst'd friend declaration. */
4938 static tree
4939 tsubst_friend_function (tree decl, tree args)
4941 tree new_friend;
4942 location_t saved_loc = input_location;
4944 input_location = DECL_SOURCE_LOCATION (decl);
4946 if (TREE_CODE (decl) == FUNCTION_DECL
4947 && DECL_TEMPLATE_INSTANTIATION (decl)
4948 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
4949 /* This was a friend declared with an explicit template
4950 argument list, e.g.:
4952 friend void f<>(T);
4954 to indicate that f was a template instantiation, not a new
4955 function declaration. Now, we have to figure out what
4956 instantiation of what template. */
4958 tree template_id, arglist, fns;
4959 tree new_args;
4960 tree tmpl;
4961 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
4963 /* Friend functions are looked up in the containing namespace scope.
4964 We must enter that scope, to avoid finding member functions of the
4965 current cless with same name. */
4966 push_nested_namespace (ns);
4967 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
4968 tf_error | tf_warning, NULL_TREE);
4969 pop_nested_namespace (ns);
4970 arglist = tsubst (DECL_TI_ARGS (decl), args,
4971 tf_error | tf_warning, NULL_TREE);
4972 template_id = lookup_template_function (fns, arglist);
4974 new_friend = tsubst (decl, args, tf_error | tf_warning, NULL_TREE);
4975 tmpl = determine_specialization (template_id, new_friend,
4976 &new_args,
4977 /*need_member_template=*/0);
4978 new_friend = instantiate_template (tmpl, new_args, tf_error);
4979 goto done;
4982 new_friend = tsubst (decl, args, tf_error | tf_warning, NULL_TREE);
4984 /* The NEW_FRIEND will look like an instantiation, to the
4985 compiler, but is not an instantiation from the point of view of
4986 the language. For example, we might have had:
4988 template <class T> struct S {
4989 template <class U> friend void f(T, U);
4992 Then, in S<int>, template <class U> void f(int, U) is not an
4993 instantiation of anything. */
4994 if (new_friend == error_mark_node)
4995 return error_mark_node;
4997 DECL_USE_TEMPLATE (new_friend) = 0;
4998 if (TREE_CODE (decl) == TEMPLATE_DECL)
5000 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
5001 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
5002 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
5005 /* The mangled name for the NEW_FRIEND is incorrect. The function
5006 is not a template instantiation and should not be mangled like
5007 one. Therefore, we forget the mangling here; we'll recompute it
5008 later if we need it. */
5009 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
5011 SET_DECL_RTL (new_friend, NULL_RTX);
5012 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
5015 if (DECL_NAMESPACE_SCOPE_P (new_friend))
5017 tree old_decl;
5018 tree new_friend_template_info;
5019 tree new_friend_result_template_info;
5020 tree ns;
5021 int new_friend_is_defn;
5023 /* We must save some information from NEW_FRIEND before calling
5024 duplicate decls since that function will free NEW_FRIEND if
5025 possible. */
5026 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
5027 new_friend_is_defn =
5028 (DECL_INITIAL (DECL_TEMPLATE_RESULT
5029 (template_for_substitution (new_friend)))
5030 != NULL_TREE);
5031 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
5033 /* This declaration is a `primary' template. */
5034 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
5036 new_friend_result_template_info
5037 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
5039 else
5040 new_friend_result_template_info = NULL_TREE;
5042 /* Inside pushdecl_namespace_level, we will push into the
5043 current namespace. However, the friend function should go
5044 into the namespace of the template. */
5045 ns = decl_namespace_context (new_friend);
5046 push_nested_namespace (ns);
5047 old_decl = pushdecl_namespace_level (new_friend);
5048 pop_nested_namespace (ns);
5050 if (old_decl != new_friend)
5052 /* This new friend declaration matched an existing
5053 declaration. For example, given:
5055 template <class T> void f(T);
5056 template <class U> class C {
5057 template <class T> friend void f(T) {}
5060 the friend declaration actually provides the definition
5061 of `f', once C has been instantiated for some type. So,
5062 old_decl will be the out-of-class template declaration,
5063 while new_friend is the in-class definition.
5065 But, if `f' was called before this point, the
5066 instantiation of `f' will have DECL_TI_ARGS corresponding
5067 to `T' but not to `U', references to which might appear
5068 in the definition of `f'. Previously, the most general
5069 template for an instantiation of `f' was the out-of-class
5070 version; now it is the in-class version. Therefore, we
5071 run through all specialization of `f', adding to their
5072 DECL_TI_ARGS appropriately. In particular, they need a
5073 new set of outer arguments, corresponding to the
5074 arguments for this class instantiation.
5076 The same situation can arise with something like this:
5078 friend void f(int);
5079 template <class T> class C {
5080 friend void f(T) {}
5083 when `C<int>' is instantiated. Now, `f(int)' is defined
5084 in the class. */
5086 if (!new_friend_is_defn)
5087 /* On the other hand, if the in-class declaration does
5088 *not* provide a definition, then we don't want to alter
5089 existing definitions. We can just leave everything
5090 alone. */
5092 else
5094 /* Overwrite whatever template info was there before, if
5095 any, with the new template information pertaining to
5096 the declaration. */
5097 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
5099 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
5100 reregister_specialization (new_friend,
5101 most_general_template (old_decl),
5102 old_decl);
5103 else
5105 tree t;
5106 tree new_friend_args;
5108 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
5109 = new_friend_result_template_info;
5111 new_friend_args = TI_ARGS (new_friend_template_info);
5112 for (t = DECL_TEMPLATE_SPECIALIZATIONS (old_decl);
5113 t != NULL_TREE;
5114 t = TREE_CHAIN (t))
5116 tree spec = TREE_VALUE (t);
5118 DECL_TI_ARGS (spec)
5119 = add_outermost_template_args (new_friend_args,
5120 DECL_TI_ARGS (spec));
5123 /* Now, since specializations are always supposed to
5124 hang off of the most general template, we must move
5125 them. */
5126 t = most_general_template (old_decl);
5127 if (t != old_decl)
5129 DECL_TEMPLATE_SPECIALIZATIONS (t)
5130 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (t),
5131 DECL_TEMPLATE_SPECIALIZATIONS (old_decl));
5132 DECL_TEMPLATE_SPECIALIZATIONS (old_decl) = NULL_TREE;
5137 /* The information from NEW_FRIEND has been merged into OLD_DECL
5138 by duplicate_decls. */
5139 new_friend = old_decl;
5142 else if (COMPLETE_TYPE_P (DECL_CONTEXT (new_friend)))
5144 /* Check to see that the declaration is really present, and,
5145 possibly obtain an improved declaration. */
5146 tree fn = check_classfn (DECL_CONTEXT (new_friend),
5147 new_friend, false);
5149 if (fn)
5150 new_friend = fn;
5153 done:
5154 input_location = saved_loc;
5155 return new_friend;
5158 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
5159 template arguments, as for tsubst.
5161 Returns an appropriate tsubst'd friend type or error_mark_node on
5162 failure. */
5164 static tree
5165 tsubst_friend_class (tree friend_tmpl, tree args)
5167 tree friend_type;
5168 tree tmpl;
5169 tree context;
5171 context = DECL_CONTEXT (friend_tmpl);
5173 if (context)
5175 if (TREE_CODE (context) == NAMESPACE_DECL)
5176 push_nested_namespace (context);
5177 else
5178 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
5181 /* First, we look for a class template. */
5182 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/0);
5184 /* But, if we don't find one, it might be because we're in a
5185 situation like this:
5187 template <class T>
5188 struct S {
5189 template <class U>
5190 friend struct S;
5193 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
5194 for `S<int>', not the TEMPLATE_DECL. */
5195 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
5197 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/1);
5198 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
5201 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
5203 /* The friend template has already been declared. Just
5204 check to see that the declarations match, and install any new
5205 default parameters. We must tsubst the default parameters,
5206 of course. We only need the innermost template parameters
5207 because that is all that redeclare_class_template will look
5208 at. */
5209 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
5210 > TMPL_ARGS_DEPTH (args))
5212 tree parms;
5213 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
5214 args, tf_error | tf_warning);
5215 redeclare_class_template (TREE_TYPE (tmpl), parms);
5218 friend_type = TREE_TYPE (tmpl);
5220 else
5222 /* The friend template has not already been declared. In this
5223 case, the instantiation of the template class will cause the
5224 injection of this template into the global scope. */
5225 tmpl = tsubst (friend_tmpl, args, tf_error | tf_warning, NULL_TREE);
5227 /* The new TMPL is not an instantiation of anything, so we
5228 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
5229 the new type because that is supposed to be the corresponding
5230 template decl, i.e., TMPL. */
5231 DECL_USE_TEMPLATE (tmpl) = 0;
5232 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
5233 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
5234 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
5235 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
5237 /* Inject this template into the global scope. */
5238 friend_type = TREE_TYPE (pushdecl_top_level (tmpl));
5241 if (context)
5243 if (TREE_CODE (context) == NAMESPACE_DECL)
5244 pop_nested_namespace (context);
5245 else
5246 pop_nested_class ();
5249 return friend_type;
5252 /* Returns zero if TYPE cannot be completed later due to circularity.
5253 Otherwise returns one. */
5255 static int
5256 can_complete_type_without_circularity (tree type)
5258 if (type == NULL_TREE || type == error_mark_node)
5259 return 0;
5260 else if (COMPLETE_TYPE_P (type))
5261 return 1;
5262 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
5263 return can_complete_type_without_circularity (TREE_TYPE (type));
5264 else if (CLASS_TYPE_P (type)
5265 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
5266 return 0;
5267 else
5268 return 1;
5271 tree
5272 instantiate_class_template (tree type)
5274 tree template, args, pattern, t, member;
5275 tree typedecl;
5276 tree pbinfo;
5278 if (type == error_mark_node)
5279 return error_mark_node;
5281 if (TYPE_BEING_DEFINED (type)
5282 || COMPLETE_TYPE_P (type)
5283 || dependent_type_p (type))
5284 return type;
5286 /* Figure out which template is being instantiated. */
5287 template = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
5288 my_friendly_assert (TREE_CODE (template) == TEMPLATE_DECL, 279);
5290 /* Figure out which arguments are being used to do the
5291 instantiation. */
5292 args = CLASSTYPE_TI_ARGS (type);
5294 /* Determine what specialization of the original template to
5295 instantiate. */
5296 t = most_specialized_class (template, args);
5297 if (t == error_mark_node)
5299 const char *str = "candidates are:";
5300 error ("ambiguous class template instantiation for `%#T'", type);
5301 for (t = DECL_TEMPLATE_SPECIALIZATIONS (template); t;
5302 t = TREE_CHAIN (t))
5304 if (get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args))
5306 cp_error_at ("%s %+#T", str, TREE_TYPE (t));
5307 str = " ";
5310 TYPE_BEING_DEFINED (type) = 1;
5311 return error_mark_node;
5314 if (t)
5315 pattern = TREE_TYPE (t);
5316 else
5317 pattern = TREE_TYPE (template);
5319 /* If the template we're instantiating is incomplete, then clearly
5320 there's nothing we can do. */
5321 if (!COMPLETE_TYPE_P (pattern))
5322 return type;
5324 /* If we've recursively instantiated too many templates, stop. */
5325 if (! push_tinst_level (type))
5326 return type;
5328 /* Now we're really doing the instantiation. Mark the type as in
5329 the process of being defined. */
5330 TYPE_BEING_DEFINED (type) = 1;
5332 /* We may be in the middle of deferred access check. Disable
5333 it now. */
5334 push_deferring_access_checks (dk_no_deferred);
5336 push_to_top_level ();
5338 if (t)
5340 /* This TYPE is actually an instantiation of a partial
5341 specialization. We replace the innermost set of ARGS with
5342 the arguments appropriate for substitution. For example,
5343 given:
5345 template <class T> struct S {};
5346 template <class T> struct S<T*> {};
5348 and supposing that we are instantiating S<int*>, ARGS will
5349 present be {int*} but we need {int}. */
5350 tree inner_args
5351 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t),
5352 args);
5354 /* If there were multiple levels in ARGS, replacing the
5355 innermost level would alter CLASSTYPE_TI_ARGS, which we don't
5356 want, so we make a copy first. */
5357 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
5359 args = copy_node (args);
5360 SET_TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args), inner_args);
5362 else
5363 args = inner_args;
5366 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
5368 /* Set the input location to the template definition. This is needed
5369 if tsubsting causes an error. */
5370 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (pattern));
5372 TYPE_HAS_CONSTRUCTOR (type) = TYPE_HAS_CONSTRUCTOR (pattern);
5373 TYPE_HAS_DESTRUCTOR (type) = TYPE_HAS_DESTRUCTOR (pattern);
5374 TYPE_HAS_NEW_OPERATOR (type) = TYPE_HAS_NEW_OPERATOR (pattern);
5375 TYPE_HAS_ARRAY_NEW_OPERATOR (type) = TYPE_HAS_ARRAY_NEW_OPERATOR (pattern);
5376 TYPE_GETS_DELETE (type) = TYPE_GETS_DELETE (pattern);
5377 TYPE_HAS_ASSIGN_REF (type) = TYPE_HAS_ASSIGN_REF (pattern);
5378 TYPE_HAS_CONST_ASSIGN_REF (type) = TYPE_HAS_CONST_ASSIGN_REF (pattern);
5379 TYPE_HAS_ABSTRACT_ASSIGN_REF (type) = TYPE_HAS_ABSTRACT_ASSIGN_REF (pattern);
5380 TYPE_HAS_INIT_REF (type) = TYPE_HAS_INIT_REF (pattern);
5381 TYPE_HAS_CONST_INIT_REF (type) = TYPE_HAS_CONST_INIT_REF (pattern);
5382 TYPE_HAS_DEFAULT_CONSTRUCTOR (type) = TYPE_HAS_DEFAULT_CONSTRUCTOR (pattern);
5383 TYPE_HAS_CONVERSION (type) = TYPE_HAS_CONVERSION (pattern);
5384 TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type)
5385 = TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (pattern);
5386 TYPE_USES_MULTIPLE_INHERITANCE (type)
5387 = TYPE_USES_MULTIPLE_INHERITANCE (pattern);
5388 TYPE_USES_VIRTUAL_BASECLASSES (type)
5389 = TYPE_USES_VIRTUAL_BASECLASSES (pattern);
5390 TYPE_PACKED (type) = TYPE_PACKED (pattern);
5391 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
5392 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
5393 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
5394 if (ANON_AGGR_TYPE_P (pattern))
5395 SET_ANON_AGGR_TYPE_P (type);
5397 pbinfo = TYPE_BINFO (pattern);
5399 #ifdef ENABLE_CHECKING
5400 if (DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
5401 && ! COMPLETE_TYPE_P (TYPE_CONTEXT (type))
5402 && ! TYPE_BEING_DEFINED (TYPE_CONTEXT (type)))
5403 /* We should never instantiate a nested class before its enclosing
5404 class; we need to look up the nested class by name before we can
5405 instantiate it, and that lookup should instantiate the enclosing
5406 class. */
5407 abort ();
5408 #endif
5410 if (BINFO_BASETYPES (pbinfo))
5412 tree base_list = NULL_TREE;
5413 tree pbases = BINFO_BASETYPES (pbinfo);
5414 tree paccesses = BINFO_BASEACCESSES (pbinfo);
5415 tree context = TYPE_CONTEXT (type);
5416 bool pop_p;
5417 int i;
5419 /* We must enter the scope containing the type, as that is where
5420 the accessibility of types named in dependent bases are
5421 looked up from. */
5422 pop_p = push_scope (context ? context : global_namespace);
5424 /* Substitute into each of the bases to determine the actual
5425 basetypes. */
5426 for (i = 0; i < TREE_VEC_LENGTH (pbases); ++i)
5428 tree base;
5429 tree access;
5430 tree pbase;
5432 pbase = TREE_VEC_ELT (pbases, i);
5433 access = TREE_VEC_ELT (paccesses, i);
5435 /* Substitute to figure out the base class. */
5436 base = tsubst (BINFO_TYPE (pbase), args, tf_error, NULL_TREE);
5437 if (base == error_mark_node)
5438 continue;
5440 base_list = tree_cons (access, base, base_list);
5441 TREE_VIA_VIRTUAL (base_list) = TREE_VIA_VIRTUAL (pbase);
5444 /* The list is now in reverse order; correct that. */
5445 base_list = nreverse (base_list);
5447 /* Now call xref_basetypes to set up all the base-class
5448 information. */
5449 xref_basetypes (type, base_list);
5451 if (pop_p)
5452 pop_scope (context ? context : global_namespace);
5455 /* Now that our base classes are set up, enter the scope of the
5456 class, so that name lookups into base classes, etc. will work
5457 correctly. This is precisely analogous to what we do in
5458 begin_class_definition when defining an ordinary non-template
5459 class. */
5460 pushclass (type);
5462 /* Now members are processed in the order of declaration. */
5463 for (member = CLASSTYPE_DECL_LIST (pattern);
5464 member; member = TREE_CHAIN (member))
5466 tree t = TREE_VALUE (member);
5468 if (TREE_PURPOSE (member))
5470 if (TYPE_P (t))
5472 /* Build new CLASSTYPE_NESTED_UTDS. */
5474 tree tag = t;
5475 tree name = TYPE_IDENTIFIER (tag);
5476 tree newtag;
5477 bool class_template_p;
5479 class_template_p = (TREE_CODE (tag) != ENUMERAL_TYPE
5480 && TYPE_LANG_SPECIFIC (tag)
5481 && CLASSTYPE_IS_TEMPLATE (tag));
5482 /* If the member is a class template, then -- even after
5483 substituition -- there may be dependent types in the
5484 template argument list for the class. We increment
5485 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
5486 that function will assume that no types are dependent
5487 when outside of a template. */
5488 if (class_template_p)
5489 ++processing_template_decl;
5490 newtag = tsubst (tag, args, tf_error, NULL_TREE);
5491 if (class_template_p)
5492 --processing_template_decl;
5493 if (newtag == error_mark_node)
5494 continue;
5496 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
5498 if (class_template_p)
5499 /* Unfortunately, lookup_template_class sets
5500 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
5501 instantiation (i.e., for the type of a member
5502 template class nested within a template class.)
5503 This behavior is required for
5504 maybe_process_partial_specialization to work
5505 correctly, but is not accurate in this case;
5506 the TAG is not an instantiation of anything.
5507 (The corresponding TEMPLATE_DECL is an
5508 instantiation, but the TYPE is not.) */
5509 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
5511 /* Now, we call pushtag to put this NEWTAG into the scope of
5512 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
5513 pushtag calling push_template_decl. We don't have to do
5514 this for enums because it will already have been done in
5515 tsubst_enum. */
5516 if (name)
5517 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
5518 pushtag (name, newtag, /*globalize=*/0);
5521 else if (TREE_CODE (t) == FUNCTION_DECL
5522 || DECL_FUNCTION_TEMPLATE_P (t))
5524 /* Build new TYPE_METHODS. */
5525 tree r;
5527 if (TREE_CODE (t) == TEMPLATE_DECL)
5528 ++processing_template_decl;
5529 r = tsubst (t, args, tf_error, NULL_TREE);
5530 if (TREE_CODE (t) == TEMPLATE_DECL)
5531 --processing_template_decl;
5532 set_current_access_from_decl (r);
5533 grok_special_member_properties (r);
5534 finish_member_declaration (r);
5536 else
5538 /* Build new TYPE_FIELDS. */
5540 if (TREE_CODE (t) != CONST_DECL)
5542 tree r;
5544 /* The the file and line for this declaration, to
5545 assist in error message reporting. Since we
5546 called push_tinst_level above, we don't need to
5547 restore these. */
5548 input_location = DECL_SOURCE_LOCATION (t);
5550 if (TREE_CODE (t) == TEMPLATE_DECL)
5551 ++processing_template_decl;
5552 r = tsubst (t, args, tf_error | tf_warning, NULL_TREE);
5553 if (TREE_CODE (t) == TEMPLATE_DECL)
5554 --processing_template_decl;
5555 if (TREE_CODE (r) == VAR_DECL)
5557 tree init;
5559 if (DECL_INITIALIZED_IN_CLASS_P (r))
5560 init = tsubst_expr (DECL_INITIAL (t), args,
5561 tf_error | tf_warning, NULL_TREE);
5562 else
5563 init = NULL_TREE;
5565 finish_static_data_member_decl
5566 (r, init, /*asmspec_tree=*/NULL_TREE, /*flags=*/0);
5568 if (DECL_INITIALIZED_IN_CLASS_P (r))
5569 check_static_variable_definition (r, TREE_TYPE (r));
5571 else if (TREE_CODE (r) == FIELD_DECL)
5573 /* Determine whether R has a valid type and can be
5574 completed later. If R is invalid, then it is
5575 replaced by error_mark_node so that it will not be
5576 added to TYPE_FIELDS. */
5577 tree rtype = TREE_TYPE (r);
5578 if (can_complete_type_without_circularity (rtype))
5579 complete_type (rtype);
5581 if (!COMPLETE_TYPE_P (rtype))
5583 cxx_incomplete_type_error (r, rtype);
5584 r = error_mark_node;
5588 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
5589 such a thing will already have been added to the field
5590 list by tsubst_enum in finish_member_declaration in the
5591 CLASSTYPE_NESTED_UTDS case above. */
5592 if (!(TREE_CODE (r) == TYPE_DECL
5593 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
5594 && DECL_ARTIFICIAL (r)))
5596 set_current_access_from_decl (r);
5597 finish_member_declaration (r);
5602 else
5604 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t))
5606 /* Build new CLASSTYPE_FRIEND_CLASSES. */
5608 tree friend_type = t;
5609 tree new_friend_type;
5611 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5612 new_friend_type = tsubst_friend_class (friend_type, args);
5613 else if (uses_template_parms (friend_type))
5614 new_friend_type = tsubst (friend_type, args,
5615 tf_error | tf_warning, NULL_TREE);
5616 else if (CLASSTYPE_USE_TEMPLATE (friend_type))
5617 new_friend_type = friend_type;
5618 else
5620 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
5622 /* The call to xref_tag_from_type does injection for friend
5623 classes. */
5624 push_nested_namespace (ns);
5625 new_friend_type =
5626 xref_tag_from_type (friend_type, NULL_TREE, 1);
5627 pop_nested_namespace (ns);
5630 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5631 /* Trick make_friend_class into realizing that the friend
5632 we're adding is a template, not an ordinary class. It's
5633 important that we use make_friend_class since it will
5634 perform some error-checking and output cross-reference
5635 information. */
5636 ++processing_template_decl;
5638 if (new_friend_type != error_mark_node)
5639 make_friend_class (type, new_friend_type,
5640 /*complain=*/false);
5642 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5643 --processing_template_decl;
5645 else
5647 /* Build new DECL_FRIENDLIST. */
5648 tree r;
5650 if (TREE_CODE (t) == TEMPLATE_DECL)
5651 ++processing_template_decl;
5652 r = tsubst_friend_function (t, args);
5653 if (TREE_CODE (t) == TEMPLATE_DECL)
5654 --processing_template_decl;
5655 add_friend (type, r, /*complain=*/false);
5660 /* Set the file and line number information to whatever is given for
5661 the class itself. This puts error messages involving generated
5662 implicit functions at a predictable point, and the same point
5663 that would be used for non-template classes. */
5664 typedecl = TYPE_MAIN_DECL (type);
5665 input_location = DECL_SOURCE_LOCATION (typedecl);
5667 unreverse_member_declarations (type);
5668 finish_struct_1 (type);
5670 /* Clear this now so repo_template_used is happy. */
5671 TYPE_BEING_DEFINED (type) = 0;
5672 repo_template_used (type);
5674 /* Now that the class is complete, instantiate default arguments for
5675 any member functions. We don't do this earlier because the
5676 default arguments may reference members of the class. */
5677 if (!PRIMARY_TEMPLATE_P (template))
5678 for (t = TYPE_METHODS (type); t; t = TREE_CHAIN (t))
5679 if (TREE_CODE (t) == FUNCTION_DECL
5680 /* Implicitly generated member functions will not have template
5681 information; they are not instantiations, but instead are
5682 created "fresh" for each instantiation. */
5683 && DECL_TEMPLATE_INFO (t))
5684 tsubst_default_arguments (t);
5686 popclass ();
5687 pop_from_top_level ();
5688 pop_deferring_access_checks ();
5689 pop_tinst_level ();
5691 if (TYPE_CONTAINS_VPTR_P (type))
5692 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
5694 return type;
5697 static tree
5698 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
5700 tree r;
5702 if (!t)
5703 r = t;
5704 else if (TYPE_P (t))
5705 r = tsubst (t, args, complain, in_decl);
5706 else
5708 r = tsubst_expr (t, args, complain, in_decl);
5710 if (!uses_template_parms (r))
5712 /* Sometimes, one of the args was an expression involving a
5713 template constant parameter, like N - 1. Now that we've
5714 tsubst'd, we might have something like 2 - 1. This will
5715 confuse lookup_template_class, so we do constant folding
5716 here. We have to unset processing_template_decl, to fool
5717 tsubst_copy_and_build() into building an actual tree. */
5719 /* If the TREE_TYPE of ARG is not NULL_TREE, ARG is already
5720 as simple as it's going to get, and trying to reprocess
5721 the trees will break. Once tsubst_expr et al DTRT for
5722 non-dependent exprs, this code can go away, as the type
5723 will always be set. */
5724 if (!TREE_TYPE (r))
5726 int saved_processing_template_decl = processing_template_decl;
5727 processing_template_decl = 0;
5728 r = tsubst_copy_and_build (r, /*args=*/NULL_TREE,
5729 tf_error, /*in_decl=*/NULL_TREE,
5730 /*function_p=*/false);
5731 processing_template_decl = saved_processing_template_decl;
5733 r = fold (r);
5736 return r;
5739 /* Substitute ARGS into the vector or list of template arguments T. */
5741 static tree
5742 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
5744 int len = TREE_VEC_LENGTH (t);
5745 int need_new = 0, i;
5746 tree *elts = alloca (len * sizeof (tree));
5748 for (i = 0; i < len; i++)
5750 tree orig_arg = TREE_VEC_ELT (t, i);
5751 tree new_arg;
5753 if (TREE_CODE (orig_arg) == TREE_VEC)
5754 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
5755 else
5756 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
5758 if (new_arg == error_mark_node)
5759 return error_mark_node;
5761 elts[i] = new_arg;
5762 if (new_arg != orig_arg)
5763 need_new = 1;
5766 if (!need_new)
5767 return t;
5769 t = make_tree_vec (len);
5770 for (i = 0; i < len; i++)
5771 TREE_VEC_ELT (t, i) = elts[i];
5773 return t;
5776 /* Return the result of substituting ARGS into the template parameters
5777 given by PARMS. If there are m levels of ARGS and m + n levels of
5778 PARMS, then the result will contain n levels of PARMS. For
5779 example, if PARMS is `template <class T> template <class U>
5780 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
5781 result will be `template <int*, double, class V>'. */
5783 static tree
5784 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
5786 tree r = NULL_TREE;
5787 tree* new_parms;
5789 for (new_parms = &r;
5790 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
5791 new_parms = &(TREE_CHAIN (*new_parms)),
5792 parms = TREE_CHAIN (parms))
5794 tree new_vec =
5795 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
5796 int i;
5798 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
5800 tree tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
5801 tree default_value = TREE_PURPOSE (tuple);
5802 tree parm_decl = TREE_VALUE (tuple);
5804 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
5805 default_value = tsubst_template_arg (default_value, args,
5806 complain, NULL_TREE);
5808 tuple = build_tree_list (default_value, parm_decl);
5809 TREE_VEC_ELT (new_vec, i) = tuple;
5812 *new_parms =
5813 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
5814 - TMPL_ARGS_DEPTH (args)),
5815 new_vec, NULL_TREE);
5818 return r;
5821 /* Substitute the ARGS into the indicated aggregate (or enumeration)
5822 type T. If T is not an aggregate or enumeration type, it is
5823 handled as if by tsubst. IN_DECL is as for tsubst. If
5824 ENTERING_SCOPE is nonzero, T is the context for a template which
5825 we are presently tsubst'ing. Return the substituted value. */
5827 static tree
5828 tsubst_aggr_type (tree t,
5829 tree args,
5830 tsubst_flags_t complain,
5831 tree in_decl,
5832 int entering_scope)
5834 if (t == NULL_TREE)
5835 return NULL_TREE;
5837 switch (TREE_CODE (t))
5839 case RECORD_TYPE:
5840 if (TYPE_PTRMEMFUNC_P (t))
5841 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
5843 /* Else fall through. */
5844 case ENUMERAL_TYPE:
5845 case UNION_TYPE:
5846 if (TYPE_TEMPLATE_INFO (t))
5848 tree argvec;
5849 tree context;
5850 tree r;
5852 /* First, determine the context for the type we are looking
5853 up. */
5854 context = TYPE_CONTEXT (t);
5855 if (context)
5856 context = tsubst_aggr_type (context, args, complain,
5857 in_decl, /*entering_scope=*/1);
5859 /* Then, figure out what arguments are appropriate for the
5860 type we are trying to find. For example, given:
5862 template <class T> struct S;
5863 template <class T, class U> void f(T, U) { S<U> su; }
5865 and supposing that we are instantiating f<int, double>,
5866 then our ARGS will be {int, double}, but, when looking up
5867 S we only want {double}. */
5868 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
5869 complain, in_decl);
5870 if (argvec == error_mark_node)
5871 return error_mark_node;
5873 r = lookup_template_class (t, argvec, in_decl, context,
5874 entering_scope, complain);
5876 return cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
5878 else
5879 /* This is not a template type, so there's nothing to do. */
5880 return t;
5882 default:
5883 return tsubst (t, args, complain, in_decl);
5887 /* Substitute into the default argument ARG (a default argument for
5888 FN), which has the indicated TYPE. */
5890 tree
5891 tsubst_default_argument (tree fn, tree type, tree arg)
5893 tree saved_class_ptr = NULL_TREE;
5894 tree saved_class_ref = NULL_TREE;
5896 /* This default argument came from a template. Instantiate the
5897 default argument here, not in tsubst. In the case of
5898 something like:
5900 template <class T>
5901 struct S {
5902 static T t();
5903 void f(T = t());
5906 we must be careful to do name lookup in the scope of S<T>,
5907 rather than in the current class. */
5908 push_access_scope (fn);
5909 /* The default argument expression should not be considered to be
5910 within the scope of FN. Since push_access_scope sets
5911 current_function_decl, we must explicitly clear it here. */
5912 current_function_decl = NULL_TREE;
5913 /* The "this" pointer is not valid in a default argument. */
5914 if (cfun)
5916 saved_class_ptr = current_class_ptr;
5917 cp_function_chain->x_current_class_ptr = NULL_TREE;
5918 saved_class_ref = current_class_ref;
5919 cp_function_chain->x_current_class_ref = NULL_TREE;
5922 push_deferring_access_checks(dk_no_deferred);
5923 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
5924 tf_error | tf_warning, NULL_TREE);
5925 pop_deferring_access_checks();
5927 /* Restore the "this" pointer. */
5928 if (cfun)
5930 cp_function_chain->x_current_class_ptr = saved_class_ptr;
5931 cp_function_chain->x_current_class_ref = saved_class_ref;
5934 pop_access_scope (fn);
5936 /* Make sure the default argument is reasonable. */
5937 arg = check_default_argument (type, arg);
5939 return arg;
5942 /* Substitute into all the default arguments for FN. */
5944 static void
5945 tsubst_default_arguments (tree fn)
5947 tree arg;
5948 tree tmpl_args;
5950 tmpl_args = DECL_TI_ARGS (fn);
5952 /* If this function is not yet instantiated, we certainly don't need
5953 its default arguments. */
5954 if (uses_template_parms (tmpl_args))
5955 return;
5957 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
5958 arg;
5959 arg = TREE_CHAIN (arg))
5960 if (TREE_PURPOSE (arg))
5961 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
5962 TREE_VALUE (arg),
5963 TREE_PURPOSE (arg));
5966 /* Substitute the ARGS into the T, which is a _DECL. TYPE is the
5967 (already computed) substitution of ARGS into TREE_TYPE (T), if
5968 appropriate. Return the result of the substitution. Issue error
5969 and warning messages under control of COMPLAIN. */
5971 static tree
5972 tsubst_decl (tree t, tree args, tree type, tsubst_flags_t complain)
5974 location_t saved_loc;
5975 tree r = NULL_TREE;
5976 tree in_decl = t;
5978 /* Set the filename and linenumber to improve error-reporting. */
5979 saved_loc = input_location;
5980 input_location = DECL_SOURCE_LOCATION (t);
5982 switch (TREE_CODE (t))
5984 case TEMPLATE_DECL:
5986 /* We can get here when processing a member template function
5987 of a template class. */
5988 tree decl = DECL_TEMPLATE_RESULT (t);
5989 tree spec;
5990 int is_template_template_parm = DECL_TEMPLATE_TEMPLATE_PARM_P (t);
5992 if (!is_template_template_parm)
5994 /* We might already have an instance of this template.
5995 The ARGS are for the surrounding class type, so the
5996 full args contain the tsubst'd args for the context,
5997 plus the innermost args from the template decl. */
5998 tree tmpl_args = DECL_CLASS_TEMPLATE_P (t)
5999 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
6000 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
6001 tree full_args;
6003 full_args = tsubst_template_args (tmpl_args, args,
6004 complain, in_decl);
6006 /* tsubst_template_args doesn't copy the vector if
6007 nothing changed. But, *something* should have
6008 changed. */
6009 my_friendly_assert (full_args != tmpl_args, 0);
6011 spec = retrieve_specialization (t, full_args);
6012 if (spec != NULL_TREE)
6014 r = spec;
6015 break;
6019 /* Make a new template decl. It will be similar to the
6020 original, but will record the current template arguments.
6021 We also create a new function declaration, which is just
6022 like the old one, but points to this new template, rather
6023 than the old one. */
6024 r = copy_decl (t);
6025 my_friendly_assert (DECL_LANG_SPECIFIC (r) != 0, 0);
6026 TREE_CHAIN (r) = NULL_TREE;
6028 if (is_template_template_parm)
6030 tree new_decl = tsubst (decl, args, complain, in_decl);
6031 DECL_TEMPLATE_RESULT (r) = new_decl;
6032 TREE_TYPE (r) = TREE_TYPE (new_decl);
6033 break;
6036 DECL_CONTEXT (r)
6037 = tsubst_aggr_type (DECL_CONTEXT (t), args,
6038 complain, in_decl,
6039 /*entering_scope=*/1);
6040 DECL_TEMPLATE_INFO (r) = build_tree_list (t, args);
6042 if (TREE_CODE (decl) == TYPE_DECL)
6044 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6045 if (new_type == error_mark_node)
6046 return error_mark_node;
6048 TREE_TYPE (r) = new_type;
6049 CLASSTYPE_TI_TEMPLATE (new_type) = r;
6050 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
6051 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
6053 else
6055 tree new_decl = tsubst (decl, args, complain, in_decl);
6056 if (new_decl == error_mark_node)
6057 return error_mark_node;
6059 DECL_TEMPLATE_RESULT (r) = new_decl;
6060 DECL_TI_TEMPLATE (new_decl) = r;
6061 TREE_TYPE (r) = TREE_TYPE (new_decl);
6062 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
6065 SET_DECL_IMPLICIT_INSTANTIATION (r);
6066 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
6067 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
6069 /* The template parameters for this new template are all the
6070 template parameters for the old template, except the
6071 outermost level of parameters. */
6072 DECL_TEMPLATE_PARMS (r)
6073 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
6074 complain);
6076 if (PRIMARY_TEMPLATE_P (t))
6077 DECL_PRIMARY_TEMPLATE (r) = r;
6079 if (TREE_CODE (decl) != TYPE_DECL)
6080 /* Record this non-type partial instantiation. */
6081 register_specialization (r, t,
6082 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)));
6084 break;
6086 case FUNCTION_DECL:
6088 tree ctx;
6089 tree argvec = NULL_TREE;
6090 tree *friends;
6091 tree gen_tmpl;
6092 int member;
6093 int args_depth;
6094 int parms_depth;
6096 /* Nobody should be tsubst'ing into non-template functions. */
6097 my_friendly_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE, 0);
6099 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
6101 tree spec;
6102 bool dependent_p;
6104 /* If T is not dependent, just return it. We have to
6105 increment PROCESSING_TEMPLATE_DECL because
6106 value_dependent_expression_p assumes that nothing is
6107 dependent when PROCESSING_TEMPLATE_DECL is zero. */
6108 ++processing_template_decl;
6109 dependent_p = value_dependent_expression_p (t);
6110 --processing_template_decl;
6111 if (!dependent_p)
6112 return t;
6114 /* Calculate the most general template of which R is a
6115 specialization, and the complete set of arguments used to
6116 specialize R. */
6117 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
6118 argvec = tsubst_template_args (DECL_TI_ARGS
6119 (DECL_TEMPLATE_RESULT (gen_tmpl)),
6120 args, complain, in_decl);
6122 /* Check to see if we already have this specialization. */
6123 spec = retrieve_specialization (gen_tmpl, argvec);
6125 if (spec)
6127 r = spec;
6128 break;
6131 /* We can see more levels of arguments than parameters if
6132 there was a specialization of a member template, like
6133 this:
6135 template <class T> struct S { template <class U> void f(); }
6136 template <> template <class U> void S<int>::f(U);
6138 Here, we'll be substituting into the specialization,
6139 because that's where we can find the code we actually
6140 want to generate, but we'll have enough arguments for
6141 the most general template.
6143 We also deal with the peculiar case:
6145 template <class T> struct S {
6146 template <class U> friend void f();
6148 template <class U> void f() {}
6149 template S<int>;
6150 template void f<double>();
6152 Here, the ARGS for the instantiation of will be {int,
6153 double}. But, we only need as many ARGS as there are
6154 levels of template parameters in CODE_PATTERN. We are
6155 careful not to get fooled into reducing the ARGS in
6156 situations like:
6158 template <class T> struct S { template <class U> void f(U); }
6159 template <class T> template <> void S<T>::f(int) {}
6161 which we can spot because the pattern will be a
6162 specialization in this case. */
6163 args_depth = TMPL_ARGS_DEPTH (args);
6164 parms_depth =
6165 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
6166 if (args_depth > parms_depth
6167 && !DECL_TEMPLATE_SPECIALIZATION (t))
6168 args = get_innermost_template_args (args, parms_depth);
6170 else
6172 /* This special case arises when we have something like this:
6174 template <class T> struct S {
6175 friend void f<int>(int, double);
6178 Here, the DECL_TI_TEMPLATE for the friend declaration
6179 will be an IDENTIFIER_NODE. We are being called from
6180 tsubst_friend_function, and we want only to create a
6181 new decl (R) with appropriate types so that we can call
6182 determine_specialization. */
6183 gen_tmpl = NULL_TREE;
6186 if (DECL_CLASS_SCOPE_P (t))
6188 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
6189 member = 2;
6190 else
6191 member = 1;
6192 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
6193 complain, t, /*entering_scope=*/1);
6195 else
6197 member = 0;
6198 ctx = DECL_CONTEXT (t);
6200 type = tsubst (type, args, complain, in_decl);
6201 if (type == error_mark_node)
6202 return error_mark_node;
6204 /* We do NOT check for matching decls pushed separately at this
6205 point, as they may not represent instantiations of this
6206 template, and in any case are considered separate under the
6207 discrete model. */
6208 r = copy_decl (t);
6209 DECL_USE_TEMPLATE (r) = 0;
6210 TREE_TYPE (r) = type;
6211 /* Clear out the mangled name and RTL for the instantiation. */
6212 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
6213 SET_DECL_RTL (r, NULL_RTX);
6214 DECL_INITIAL (r) = NULL_TREE;
6215 DECL_CONTEXT (r) = ctx;
6217 if (member && DECL_CONV_FN_P (r))
6218 /* Type-conversion operator. Reconstruct the name, in
6219 case it's the name of one of the template's parameters. */
6220 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
6222 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
6223 complain, t);
6224 DECL_RESULT (r) = NULL_TREE;
6226 TREE_STATIC (r) = 0;
6227 TREE_PUBLIC (r) = TREE_PUBLIC (t);
6228 DECL_EXTERNAL (r) = 1;
6229 DECL_INTERFACE_KNOWN (r) = 0;
6230 DECL_DEFER_OUTPUT (r) = 0;
6231 TREE_CHAIN (r) = NULL_TREE;
6232 DECL_PENDING_INLINE_INFO (r) = 0;
6233 DECL_PENDING_INLINE_P (r) = 0;
6234 DECL_SAVED_TREE (r) = NULL_TREE;
6235 TREE_USED (r) = 0;
6236 if (DECL_CLONED_FUNCTION (r))
6238 DECL_CLONED_FUNCTION (r) = tsubst (DECL_CLONED_FUNCTION (t),
6239 args, complain, t);
6240 TREE_CHAIN (r) = TREE_CHAIN (DECL_CLONED_FUNCTION (r));
6241 TREE_CHAIN (DECL_CLONED_FUNCTION (r)) = r;
6244 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
6245 this in the special friend case mentioned above where
6246 GEN_TMPL is NULL. */
6247 if (gen_tmpl)
6249 DECL_TEMPLATE_INFO (r)
6250 = tree_cons (gen_tmpl, argvec, NULL_TREE);
6251 SET_DECL_IMPLICIT_INSTANTIATION (r);
6252 register_specialization (r, gen_tmpl, argvec);
6254 /* We're not supposed to instantiate default arguments
6255 until they are called, for a template. But, for a
6256 declaration like:
6258 template <class T> void f ()
6259 { extern void g(int i = T()); }
6261 we should do the substitution when the template is
6262 instantiated. We handle the member function case in
6263 instantiate_class_template since the default arguments
6264 might refer to other members of the class. */
6265 if (!member
6266 && !PRIMARY_TEMPLATE_P (gen_tmpl)
6267 && !uses_template_parms (argvec))
6268 tsubst_default_arguments (r);
6271 /* Copy the list of befriending classes. */
6272 for (friends = &DECL_BEFRIENDING_CLASSES (r);
6273 *friends;
6274 friends = &TREE_CHAIN (*friends))
6276 *friends = copy_node (*friends);
6277 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
6278 args, complain,
6279 in_decl);
6282 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
6284 maybe_retrofit_in_chrg (r);
6285 if (DECL_CONSTRUCTOR_P (r))
6286 grok_ctor_properties (ctx, r);
6287 /* If this is an instantiation of a member template, clone it.
6288 If it isn't, that'll be handled by
6289 clone_constructors_and_destructors. */
6290 if (PRIMARY_TEMPLATE_P (gen_tmpl))
6291 clone_function_decl (r, /*update_method_vec_p=*/0);
6293 else if (IDENTIFIER_OPNAME_P (DECL_NAME (r)))
6294 grok_op_properties (r, (complain & tf_error) != 0);
6296 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
6297 SET_DECL_FRIEND_CONTEXT (r,
6298 tsubst (DECL_FRIEND_CONTEXT (t),
6299 args, complain, in_decl));
6301 break;
6303 case PARM_DECL:
6305 r = copy_node (t);
6306 if (DECL_TEMPLATE_PARM_P (t))
6307 SET_DECL_TEMPLATE_PARM_P (r);
6309 TREE_TYPE (r) = type;
6310 c_apply_type_quals_to_decl (cp_type_quals (type), r);
6312 if (DECL_INITIAL (r))
6314 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
6315 DECL_INITIAL (r) = TREE_TYPE (r);
6316 else
6317 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
6318 complain, in_decl);
6321 DECL_CONTEXT (r) = NULL_TREE;
6323 if (!DECL_TEMPLATE_PARM_P (r))
6324 DECL_ARG_TYPE (r) = type_passed_as (type);
6325 if (TREE_CHAIN (t))
6326 TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args,
6327 complain, TREE_CHAIN (t));
6329 break;
6331 case FIELD_DECL:
6333 r = copy_decl (t);
6334 TREE_TYPE (r) = type;
6335 c_apply_type_quals_to_decl (cp_type_quals (type), r);
6337 /* We don't have to set DECL_CONTEXT here; it is set by
6338 finish_member_declaration. */
6339 DECL_INITIAL (r) = tsubst_expr (DECL_INITIAL (t), args,
6340 complain, in_decl);
6341 TREE_CHAIN (r) = NULL_TREE;
6342 if (VOID_TYPE_P (type))
6343 cp_error_at ("instantiation of `%D' as type `%T'", r, type);
6345 break;
6347 case USING_DECL:
6349 r = copy_node (t);
6350 /* It is not a dependent using decl any more. */
6351 TREE_TYPE (r) = void_type_node;
6352 DECL_INITIAL (r)
6353 = tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
6354 DECL_NAME (r)
6355 = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
6356 TREE_CHAIN (r) = NULL_TREE;
6358 break;
6360 case TYPE_DECL:
6361 if (TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM
6362 || t == TYPE_MAIN_DECL (TREE_TYPE (t)))
6364 /* If this is the canonical decl, we don't have to mess with
6365 instantiations, and often we can't (for typename, template
6366 type parms and such). Note that TYPE_NAME is not correct for
6367 the above test if we've copied the type for a typedef. */
6368 r = TYPE_NAME (type);
6369 break;
6372 /* Fall through. */
6374 case VAR_DECL:
6376 tree argvec = NULL_TREE;
6377 tree gen_tmpl = NULL_TREE;
6378 tree spec;
6379 tree tmpl = NULL_TREE;
6380 tree ctx;
6381 int local_p;
6383 /* Assume this is a non-local variable. */
6384 local_p = 0;
6386 if (TYPE_P (CP_DECL_CONTEXT (t)))
6387 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
6388 complain,
6389 in_decl, /*entering_scope=*/1);
6390 else if (DECL_NAMESPACE_SCOPE_P (t))
6391 ctx = DECL_CONTEXT (t);
6392 else
6394 /* Subsequent calls to pushdecl will fill this in. */
6395 ctx = NULL_TREE;
6396 local_p = 1;
6399 /* Check to see if we already have this specialization. */
6400 if (!local_p)
6402 tmpl = DECL_TI_TEMPLATE (t);
6403 gen_tmpl = most_general_template (tmpl);
6404 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
6405 spec = retrieve_specialization (gen_tmpl, argvec);
6407 else
6408 spec = retrieve_local_specialization (t);
6410 if (spec)
6412 r = spec;
6413 break;
6416 r = copy_decl (t);
6417 if (TREE_CODE (r) == VAR_DECL)
6419 type = complete_type (type);
6420 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
6421 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (t);
6422 type = check_var_type (DECL_NAME (r), type);
6424 else if (DECL_SELF_REFERENCE_P (t))
6425 SET_DECL_SELF_REFERENCE_P (r);
6426 TREE_TYPE (r) = type;
6427 c_apply_type_quals_to_decl (cp_type_quals (type), r);
6428 DECL_CONTEXT (r) = ctx;
6429 /* Clear out the mangled name and RTL for the instantiation. */
6430 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
6431 SET_DECL_RTL (r, NULL_RTX);
6433 /* Don't try to expand the initializer until someone tries to use
6434 this variable; otherwise we run into circular dependencies. */
6435 DECL_INITIAL (r) = NULL_TREE;
6436 SET_DECL_RTL (r, NULL_RTX);
6437 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
6439 /* Even if the original location is out of scope, the newly
6440 substituted one is not. */
6441 if (TREE_CODE (r) == VAR_DECL)
6443 DECL_DEAD_FOR_LOCAL (r) = 0;
6444 DECL_INITIALIZED_P (r) = 0;
6447 if (!local_p)
6449 /* A static data member declaration is always marked
6450 external when it is declared in-class, even if an
6451 initializer is present. We mimic the non-template
6452 processing here. */
6453 DECL_EXTERNAL (r) = 1;
6455 register_specialization (r, gen_tmpl, argvec);
6456 DECL_TEMPLATE_INFO (r) = tree_cons (tmpl, argvec, NULL_TREE);
6457 SET_DECL_IMPLICIT_INSTANTIATION (r);
6459 else
6460 register_local_specialization (r, t);
6462 TREE_CHAIN (r) = NULL_TREE;
6463 layout_decl (r, 0);
6465 break;
6467 default:
6468 abort ();
6471 /* Restore the file and line information. */
6472 input_location = saved_loc;
6474 return r;
6477 /* Substitute into the ARG_TYPES of a function type. */
6479 static tree
6480 tsubst_arg_types (tree arg_types,
6481 tree args,
6482 tsubst_flags_t complain,
6483 tree in_decl)
6485 tree remaining_arg_types;
6486 tree type;
6487 tree default_arg;
6488 tree result = NULL_TREE;
6490 if (!arg_types || arg_types == void_list_node)
6491 return arg_types;
6493 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
6494 args, complain, in_decl);
6495 if (remaining_arg_types == error_mark_node)
6496 return error_mark_node;
6498 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
6499 if (type == error_mark_node)
6500 return error_mark_node;
6501 if (VOID_TYPE_P (type))
6503 if (complain & tf_error)
6505 error ("invalid parameter type `%T'", type);
6506 if (in_decl)
6507 cp_error_at ("in declaration `%D'", in_decl);
6509 return error_mark_node;
6512 /* Do array-to-pointer, function-to-pointer conversion, and ignore
6513 top-level qualifiers as required. */
6514 type = TYPE_MAIN_VARIANT (type_decays_to (type));
6516 /* We do not substitute into default arguments here. The standard
6517 mandates that they be instantiated only when needed, which is
6518 done in build_over_call. */
6519 default_arg = TREE_PURPOSE (arg_types);
6521 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
6523 /* We've instantiated a template before its default arguments
6524 have been parsed. This can happen for a nested template
6525 class, and is not an error unless we require the default
6526 argument in a call of this function. */
6527 result = tree_cons (default_arg, type, remaining_arg_types);
6528 TREE_CHAIN (default_arg) = tree_cons (result, NULL_TREE,
6529 TREE_CHAIN (default_arg));
6531 else
6532 result = hash_tree_cons (default_arg, type, remaining_arg_types);
6534 return result;
6537 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
6538 *not* handle the exception-specification for FNTYPE, because the
6539 initial substitution of explicitly provided template parameters
6540 during argument deduction forbids substitution into the
6541 exception-specification:
6543 [temp.deduct]
6545 All references in the function type of the function template to the
6546 corresponding template parameters are replaced by the specified tem-
6547 plate argument values. If a substitution in a template parameter or
6548 in the function type of the function template results in an invalid
6549 type, type deduction fails. [Note: The equivalent substitution in
6550 exception specifications is done only when the function is instanti-
6551 ated, at which point a program is ill-formed if the substitution
6552 results in an invalid type.] */
6554 static tree
6555 tsubst_function_type (tree t,
6556 tree args,
6557 tsubst_flags_t complain,
6558 tree in_decl)
6560 tree return_type;
6561 tree arg_types;
6562 tree fntype;
6564 /* The TYPE_CONTEXT is not used for function/method types. */
6565 my_friendly_assert (TYPE_CONTEXT (t) == NULL_TREE, 0);
6567 /* Substitute the return type. */
6568 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6569 if (return_type == error_mark_node)
6570 return error_mark_node;
6572 /* Substitute the argument types. */
6573 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
6574 complain, in_decl);
6575 if (arg_types == error_mark_node)
6576 return error_mark_node;
6578 /* Construct a new type node and return it. */
6579 if (TREE_CODE (t) == FUNCTION_TYPE)
6580 fntype = build_function_type (return_type, arg_types);
6581 else
6583 tree r = TREE_TYPE (TREE_VALUE (arg_types));
6584 if (! IS_AGGR_TYPE (r))
6586 /* [temp.deduct]
6588 Type deduction may fail for any of the following
6589 reasons:
6591 -- Attempting to create "pointer to member of T" when T
6592 is not a class type. */
6593 if (complain & tf_error)
6594 error ("creating pointer to member function of non-class type `%T'",
6596 return error_mark_node;
6599 fntype = build_method_type_directly (r, return_type,
6600 TREE_CHAIN (arg_types));
6602 fntype = cp_build_qualified_type_real (fntype, TYPE_QUALS (t), complain);
6603 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
6605 return fntype;
6608 /* Substitute into the PARMS of a call-declarator. */
6610 static tree
6611 tsubst_call_declarator_parms (tree parms,
6612 tree args,
6613 tsubst_flags_t complain,
6614 tree in_decl)
6616 tree new_parms;
6617 tree type;
6618 tree defarg;
6620 if (!parms || parms == void_list_node)
6621 return parms;
6623 new_parms = tsubst_call_declarator_parms (TREE_CHAIN (parms),
6624 args, complain, in_decl);
6626 /* Figure out the type of this parameter. */
6627 type = tsubst (TREE_VALUE (parms), args, complain, in_decl);
6629 /* Figure out the default argument as well. Note that we use
6630 tsubst_expr since the default argument is really an expression. */
6631 defarg = tsubst_expr (TREE_PURPOSE (parms), args, complain, in_decl);
6633 /* Chain this parameter on to the front of those we have already
6634 processed. We don't use hash_tree_cons because that function
6635 doesn't check TREE_PARMLIST. */
6636 new_parms = tree_cons (defarg, type, new_parms);
6638 /* And note that these are parameters. */
6639 TREE_PARMLIST (new_parms) = 1;
6641 return new_parms;
6644 /* Take the tree structure T and replace template parameters used
6645 therein with the argument vector ARGS. IN_DECL is an associated
6646 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
6647 Issue error and warning messages under control of COMPLAIN. Note
6648 that we must be relatively non-tolerant of extensions here, in
6649 order to preserve conformance; if we allow substitutions that
6650 should not be allowed, we may allow argument deductions that should
6651 not succeed, and therefore report ambiguous overload situations
6652 where there are none. In theory, we could allow the substitution,
6653 but indicate that it should have failed, and allow our caller to
6654 make sure that the right thing happens, but we don't try to do this
6655 yet.
6657 This function is used for dealing with types, decls and the like;
6658 for expressions, use tsubst_expr or tsubst_copy. */
6660 static tree
6661 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
6663 tree type, r;
6665 if (t == NULL_TREE || t == error_mark_node
6666 || t == integer_type_node
6667 || t == void_type_node
6668 || t == char_type_node
6669 || t == unknown_type_node
6670 || TREE_CODE (t) == NAMESPACE_DECL)
6671 return t;
6673 if (TREE_CODE (t) == IDENTIFIER_NODE)
6674 type = IDENTIFIER_TYPE_VALUE (t);
6675 else
6676 type = TREE_TYPE (t);
6678 my_friendly_assert (type != unknown_type_node, 20030716);
6680 if (type && TREE_CODE (t) != FUNCTION_DECL
6681 && TREE_CODE (t) != TYPENAME_TYPE
6682 && TREE_CODE (t) != TEMPLATE_DECL
6683 && TREE_CODE (t) != IDENTIFIER_NODE
6684 && TREE_CODE (t) != FUNCTION_TYPE
6685 && TREE_CODE (t) != METHOD_TYPE)
6686 type = tsubst (type, args, complain, in_decl);
6687 if (type == error_mark_node)
6688 return error_mark_node;
6690 if (DECL_P (t))
6691 return tsubst_decl (t, args, type, complain);
6693 switch (TREE_CODE (t))
6695 case RECORD_TYPE:
6696 case UNION_TYPE:
6697 case ENUMERAL_TYPE:
6698 return tsubst_aggr_type (t, args, complain, in_decl,
6699 /*entering_scope=*/0);
6701 case ERROR_MARK:
6702 case IDENTIFIER_NODE:
6703 case VOID_TYPE:
6704 case REAL_TYPE:
6705 case COMPLEX_TYPE:
6706 case VECTOR_TYPE:
6707 case BOOLEAN_TYPE:
6708 case INTEGER_CST:
6709 case REAL_CST:
6710 case STRING_CST:
6711 return t;
6713 case INTEGER_TYPE:
6714 if (t == integer_type_node)
6715 return t;
6717 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
6718 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
6719 return t;
6722 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
6724 /* The array dimension behaves like a non-type template arg,
6725 in that we want to fold it as much as possible. */
6726 max = tsubst_template_arg (omax, args, complain, in_decl);
6727 max = fold_non_dependent_expr (max);
6729 if (integer_zerop (omax))
6731 /* Still allow an explicit array of size zero. */
6732 if (pedantic)
6733 pedwarn ("creating array with size zero");
6735 else if (integer_zerop (max)
6736 || (TREE_CODE (max) == INTEGER_CST
6737 && INT_CST_LT (max, integer_zero_node)))
6739 /* [temp.deduct]
6741 Type deduction may fail for any of the following
6742 reasons:
6744 Attempting to create an array with a size that is
6745 zero or negative. */
6746 if (complain & tf_error)
6747 error ("creating array with size zero (`%E')", max);
6749 return error_mark_node;
6752 return compute_array_index_type (NULL_TREE, max);
6755 case TEMPLATE_TYPE_PARM:
6756 case TEMPLATE_TEMPLATE_PARM:
6757 case BOUND_TEMPLATE_TEMPLATE_PARM:
6758 case TEMPLATE_PARM_INDEX:
6760 int idx;
6761 int level;
6762 int levels;
6764 r = NULL_TREE;
6766 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
6767 || TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
6768 || TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6770 idx = TEMPLATE_TYPE_IDX (t);
6771 level = TEMPLATE_TYPE_LEVEL (t);
6773 else
6775 idx = TEMPLATE_PARM_IDX (t);
6776 level = TEMPLATE_PARM_LEVEL (t);
6779 if (TREE_VEC_LENGTH (args) > 0)
6781 tree arg = NULL_TREE;
6783 levels = TMPL_ARGS_DEPTH (args);
6784 if (level <= levels)
6785 arg = TMPL_ARG (args, level, idx);
6787 if (arg == error_mark_node)
6788 return error_mark_node;
6789 else if (arg != NULL_TREE)
6791 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
6793 my_friendly_assert (TYPE_P (arg), 0);
6794 return cp_build_qualified_type_real
6795 (arg, cp_type_quals (arg) | cp_type_quals (t),
6796 complain | tf_ignore_bad_quals);
6798 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6800 /* We are processing a type constructed from
6801 a template template parameter. */
6802 tree argvec = tsubst (TYPE_TI_ARGS (t),
6803 args, complain, in_decl);
6804 if (argvec == error_mark_node)
6805 return error_mark_node;
6807 /* We can get a TEMPLATE_TEMPLATE_PARM here when
6808 we are resolving nested-types in the signature of
6809 a member function templates.
6810 Otherwise ARG is a TEMPLATE_DECL and is the real
6811 template to be instantiated. */
6812 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
6813 arg = TYPE_NAME (arg);
6815 r = lookup_template_class (arg,
6816 argvec, in_decl,
6817 DECL_CONTEXT (arg),
6818 /*entering_scope=*/0,
6819 complain);
6820 return cp_build_qualified_type_real
6821 (r, TYPE_QUALS (t), complain);
6823 else
6824 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
6825 return arg;
6828 else
6829 abort ();
6831 if (level == 1)
6832 /* This can happen during the attempted tsubst'ing in
6833 unify. This means that we don't yet have any information
6834 about the template parameter in question. */
6835 return t;
6837 /* If we get here, we must have been looking at a parm for a
6838 more deeply nested template. Make a new version of this
6839 template parameter, but with a lower level. */
6840 switch (TREE_CODE (t))
6842 case TEMPLATE_TYPE_PARM:
6843 case TEMPLATE_TEMPLATE_PARM:
6844 case BOUND_TEMPLATE_TEMPLATE_PARM:
6845 if (cp_type_quals (t))
6847 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
6848 r = cp_build_qualified_type_real
6849 (r, cp_type_quals (t),
6850 complain | (TREE_CODE (t) == TEMPLATE_TYPE_PARM
6851 ? tf_ignore_bad_quals : 0));
6853 else
6855 r = copy_type (t);
6856 TEMPLATE_TYPE_PARM_INDEX (r)
6857 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
6858 r, levels);
6859 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
6860 TYPE_MAIN_VARIANT (r) = r;
6861 TYPE_POINTER_TO (r) = NULL_TREE;
6862 TYPE_REFERENCE_TO (r) = NULL_TREE;
6864 if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6866 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
6867 complain, in_decl);
6868 if (argvec == error_mark_node)
6869 return error_mark_node;
6871 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
6872 = tree_cons (TYPE_TI_TEMPLATE (t), argvec, NULL_TREE);
6875 break;
6877 case TEMPLATE_PARM_INDEX:
6878 r = reduce_template_parm_level (t, type, levels);
6879 break;
6881 default:
6882 abort ();
6885 return r;
6888 case TREE_LIST:
6890 tree purpose, value, chain, result;
6892 if (t == void_list_node)
6893 return t;
6895 purpose = TREE_PURPOSE (t);
6896 if (purpose)
6898 purpose = tsubst (purpose, args, complain, in_decl);
6899 if (purpose == error_mark_node)
6900 return error_mark_node;
6902 value = TREE_VALUE (t);
6903 if (value)
6905 value = tsubst (value, args, complain, in_decl);
6906 if (value == error_mark_node)
6907 return error_mark_node;
6909 chain = TREE_CHAIN (t);
6910 if (chain && chain != void_type_node)
6912 chain = tsubst (chain, args, complain, in_decl);
6913 if (chain == error_mark_node)
6914 return error_mark_node;
6916 if (purpose == TREE_PURPOSE (t)
6917 && value == TREE_VALUE (t)
6918 && chain == TREE_CHAIN (t))
6919 return t;
6920 if (TREE_PARMLIST (t))
6922 result = tree_cons (purpose, value, chain);
6923 TREE_PARMLIST (result) = 1;
6925 else
6926 result = hash_tree_cons (purpose, value, chain);
6927 return result;
6929 case TREE_VEC:
6930 if (type != NULL_TREE)
6932 /* A binfo node. We always need to make a copy, of the node
6933 itself and of its BINFO_BASETYPES. */
6935 t = copy_node (t);
6937 /* Make sure type isn't a typedef copy. */
6938 type = BINFO_TYPE (TYPE_BINFO (type));
6940 TREE_TYPE (t) = complete_type (type);
6941 if (IS_AGGR_TYPE (type))
6943 BINFO_VTABLE (t) = TYPE_BINFO_VTABLE (type);
6944 BINFO_VIRTUALS (t) = TYPE_BINFO_VIRTUALS (type);
6945 if (TYPE_BINFO_BASETYPES (type) != NULL_TREE)
6946 BINFO_BASETYPES (t) = copy_node (TYPE_BINFO_BASETYPES (type));
6948 return t;
6951 /* Otherwise, a vector of template arguments. */
6952 return tsubst_template_args (t, args, complain, in_decl);
6954 case POINTER_TYPE:
6955 case REFERENCE_TYPE:
6957 enum tree_code code;
6959 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
6960 return t;
6962 code = TREE_CODE (t);
6965 /* [temp.deduct]
6967 Type deduction may fail for any of the following
6968 reasons:
6970 -- Attempting to create a pointer to reference type.
6971 -- Attempting to create a reference to a reference type or
6972 a reference to void. */
6973 if (TREE_CODE (type) == REFERENCE_TYPE
6974 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
6976 static location_t last_loc;
6978 /* We keep track of the last time we issued this error
6979 message to avoid spewing a ton of messages during a
6980 single bad template instantiation. */
6981 if (complain & tf_error
6982 && (last_loc.line != input_line
6983 || last_loc.file != input_filename))
6985 if (TREE_CODE (type) == VOID_TYPE)
6986 error ("forming reference to void");
6987 else
6988 error ("forming %s to reference type `%T'",
6989 (code == POINTER_TYPE) ? "pointer" : "reference",
6990 type);
6991 last_loc = input_location;
6994 return error_mark_node;
6996 else if (code == POINTER_TYPE)
6998 r = build_pointer_type (type);
6999 if (TREE_CODE (type) == METHOD_TYPE)
7000 r = build_ptrmemfunc_type (r);
7002 else
7003 r = build_reference_type (type);
7004 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
7006 if (r != error_mark_node)
7007 /* Will this ever be needed for TYPE_..._TO values? */
7008 layout_type (r);
7010 return r;
7012 case OFFSET_TYPE:
7014 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
7015 if (r == error_mark_node || !IS_AGGR_TYPE (r))
7017 /* [temp.deduct]
7019 Type deduction may fail for any of the following
7020 reasons:
7022 -- Attempting to create "pointer to member of T" when T
7023 is not a class type. */
7024 if (complain & tf_error)
7025 error ("creating pointer to member of non-class type `%T'", r);
7026 return error_mark_node;
7028 if (TREE_CODE (type) == REFERENCE_TYPE)
7030 if (complain & tf_error)
7031 error ("creating pointer to member reference type `%T'", type);
7033 return error_mark_node;
7035 my_friendly_assert (TREE_CODE (type) != METHOD_TYPE, 20011231);
7036 if (TREE_CODE (type) == FUNCTION_TYPE)
7038 /* This is really a method type. The cv qualifiers of the
7039 this pointer should _not_ be determined by the cv
7040 qualifiers of the class type. They should be held
7041 somewhere in the FUNCTION_TYPE, but we don't do that at
7042 the moment. Consider
7043 typedef void (Func) () const;
7045 template <typename T1> void Foo (Func T1::*);
7048 tree method_type;
7050 method_type = build_method_type_directly (TYPE_MAIN_VARIANT (r),
7051 TREE_TYPE (type),
7052 TYPE_ARG_TYPES (type));
7053 return build_ptrmemfunc_type (build_pointer_type (method_type));
7055 else
7056 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
7057 TYPE_QUALS (t),
7058 complain);
7060 case FUNCTION_TYPE:
7061 case METHOD_TYPE:
7063 tree fntype;
7064 tree raises;
7066 fntype = tsubst_function_type (t, args, complain, in_decl);
7067 if (fntype == error_mark_node)
7068 return error_mark_node;
7070 /* Substitute the exception specification. */
7071 raises = TYPE_RAISES_EXCEPTIONS (t);
7072 if (raises)
7074 tree list = NULL_TREE;
7076 if (! TREE_VALUE (raises))
7077 list = raises;
7078 else
7079 for (; raises != NULL_TREE; raises = TREE_CHAIN (raises))
7081 tree spec = TREE_VALUE (raises);
7083 spec = tsubst (spec, args, complain, in_decl);
7084 if (spec == error_mark_node)
7085 return spec;
7086 list = add_exception_specifier (list, spec, complain);
7088 fntype = build_exception_variant (fntype, list);
7090 return fntype;
7092 case ARRAY_TYPE:
7094 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
7095 if (domain == error_mark_node)
7096 return error_mark_node;
7098 /* As an optimization, we avoid regenerating the array type if
7099 it will obviously be the same as T. */
7100 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
7101 return t;
7103 /* These checks should match the ones in grokdeclarator.
7105 [temp.deduct]
7107 The deduction may fail for any of the following reasons:
7109 -- Attempting to create an array with an element type that
7110 is void, a function type, or a reference type, or [DR337]
7111 an abstract class type. */
7112 if (TREE_CODE (type) == VOID_TYPE
7113 || TREE_CODE (type) == FUNCTION_TYPE
7114 || TREE_CODE (type) == REFERENCE_TYPE)
7116 if (complain & tf_error)
7117 error ("creating array of `%T'", type);
7118 return error_mark_node;
7120 if (CLASS_TYPE_P (type) && CLASSTYPE_PURE_VIRTUALS (type))
7122 if (complain & tf_error)
7123 error ("creating array of `%T', which is an abstract class type",
7124 type);
7125 return error_mark_node;
7128 r = build_cplus_array_type (type, domain);
7129 return r;
7132 case PLUS_EXPR:
7133 case MINUS_EXPR:
7135 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7136 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
7138 if (e1 == error_mark_node || e2 == error_mark_node)
7139 return error_mark_node;
7141 return fold (build (TREE_CODE (t), TREE_TYPE (t), e1, e2));
7144 case NEGATE_EXPR:
7145 case NOP_EXPR:
7147 tree e = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7148 if (e == error_mark_node)
7149 return error_mark_node;
7151 return fold (build (TREE_CODE (t), TREE_TYPE (t), e));
7154 case TYPENAME_TYPE:
7156 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
7157 in_decl, /*entering_scope=*/1);
7158 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
7159 complain, in_decl);
7161 if (ctx == error_mark_node || f == error_mark_node)
7162 return error_mark_node;
7164 if (!IS_AGGR_TYPE (ctx))
7166 if (complain & tf_error)
7167 error ("`%T' is not a class, struct, or union type",
7168 ctx);
7169 return error_mark_node;
7171 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
7173 /* Normally, make_typename_type does not require that the CTX
7174 have complete type in order to allow things like:
7176 template <class T> struct S { typename S<T>::X Y; };
7178 But, such constructs have already been resolved by this
7179 point, so here CTX really should have complete type, unless
7180 it's a partial instantiation. */
7181 ctx = complete_type (ctx);
7182 if (!COMPLETE_TYPE_P (ctx))
7184 if (complain & tf_error)
7185 cxx_incomplete_type_error (NULL_TREE, ctx);
7186 return error_mark_node;
7190 f = make_typename_type (ctx, f,
7191 (complain & tf_error) | tf_keep_type_decl);
7192 if (f == error_mark_node)
7193 return f;
7194 if (TREE_CODE (f) == TYPE_DECL)
7196 complain |= tf_ignore_bad_quals;
7197 f = TREE_TYPE (f);
7200 return cp_build_qualified_type_real
7201 (f, cp_type_quals (f) | cp_type_quals (t), complain);
7204 case UNBOUND_CLASS_TEMPLATE:
7206 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
7207 in_decl, /*entering_scope=*/1);
7208 tree name = TYPE_IDENTIFIER (t);
7210 if (ctx == error_mark_node || name == error_mark_node)
7211 return error_mark_node;
7213 return make_unbound_class_template (ctx, name, complain);
7216 case INDIRECT_REF:
7218 tree e = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7219 if (e == error_mark_node)
7220 return error_mark_node;
7221 return make_pointer_declarator (type, e);
7224 case ADDR_EXPR:
7226 tree e = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7227 if (e == error_mark_node)
7228 return error_mark_node;
7229 return make_reference_declarator (type, e);
7232 case ARRAY_REF:
7234 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7235 tree e2 = tsubst_expr (TREE_OPERAND (t, 1), args, complain, in_decl);
7236 if (e1 == error_mark_node || e2 == error_mark_node)
7237 return error_mark_node;
7239 return build_nt (ARRAY_REF, e1, e2);
7242 case CALL_EXPR:
7244 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7245 tree e2 = (tsubst_call_declarator_parms
7246 (CALL_DECLARATOR_PARMS (t), args, complain, in_decl));
7247 tree e3 = tsubst (CALL_DECLARATOR_EXCEPTION_SPEC (t), args,
7248 complain, in_decl);
7250 if (e1 == error_mark_node || e2 == error_mark_node
7251 || e3 == error_mark_node)
7252 return error_mark_node;
7254 return make_call_declarator (e1, e2, CALL_DECLARATOR_QUALS (t), e3);
7257 case SCOPE_REF:
7259 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7260 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
7261 if (e1 == error_mark_node || e2 == error_mark_node)
7262 return error_mark_node;
7264 return build_nt (TREE_CODE (t), e1, e2);
7267 case TYPEOF_TYPE:
7269 tree type;
7271 type = finish_typeof (tsubst_expr (TYPE_FIELDS (t), args, complain,
7272 in_decl));
7273 return cp_build_qualified_type_real (type,
7274 cp_type_quals (t)
7275 | cp_type_quals (type),
7276 complain);
7279 default:
7280 sorry ("use of `%s' in template",
7281 tree_code_name [(int) TREE_CODE (t)]);
7282 return error_mark_node;
7286 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
7287 type of the expression on the left-hand side of the "." or "->"
7288 operator. */
7290 static tree
7291 tsubst_baselink (tree baselink, tree object_type,
7292 tree args, tsubst_flags_t complain, tree in_decl)
7294 tree name;
7295 tree qualifying_scope;
7296 tree fns;
7297 tree template_args = 0;
7298 bool template_id_p = false;
7300 /* A baselink indicates a function from a base class. The
7301 BASELINK_ACCESS_BINFO and BASELINK_BINFO are going to have
7302 non-dependent types; otherwise, the lookup could not have
7303 succeeded. However, they may indicate bases of the template
7304 class, rather than the instantiated class.
7306 In addition, lookups that were not ambiguous before may be
7307 ambiguous now. Therefore, we perform the lookup again. */
7308 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
7309 fns = BASELINK_FUNCTIONS (baselink);
7310 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
7312 template_id_p = true;
7313 template_args = TREE_OPERAND (fns, 1);
7314 fns = TREE_OPERAND (fns, 0);
7315 if (template_args)
7316 template_args = tsubst_template_args (template_args, args,
7317 complain, in_decl);
7319 name = DECL_NAME (get_first_fn (fns));
7320 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
7321 if (BASELINK_P (baselink) && template_id_p)
7322 BASELINK_FUNCTIONS (baselink)
7323 = build_nt (TEMPLATE_ID_EXPR,
7324 BASELINK_FUNCTIONS (baselink),
7325 template_args);
7326 if (!object_type)
7327 object_type = current_class_type;
7328 return adjust_result_of_qualified_name_lookup (baselink,
7329 qualifying_scope,
7330 object_type);
7333 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
7334 true if the qualified-id will be a postfix-expression in-and-of
7335 itself; false if more of the postfix-expression follows the
7336 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
7337 of "&". */
7339 static tree
7340 tsubst_qualified_id (tree qualified_id, tree args,
7341 tsubst_flags_t complain, tree in_decl,
7342 bool done, bool address_p)
7344 tree expr;
7345 tree scope;
7346 tree name;
7347 bool is_template;
7348 tree template_args;
7350 my_friendly_assert (TREE_CODE (qualified_id) == SCOPE_REF, 20030706);
7352 /* Figure out what name to look up. */
7353 name = TREE_OPERAND (qualified_id, 1);
7354 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
7356 is_template = true;
7357 template_args = TREE_OPERAND (name, 1);
7358 if (template_args)
7359 template_args = tsubst_template_args (template_args, args,
7360 complain, in_decl);
7361 name = TREE_OPERAND (name, 0);
7363 else
7365 is_template = false;
7366 template_args = NULL_TREE;
7369 /* Substitute into the qualifying scope. When there are no ARGS, we
7370 are just trying to simplify a non-dependent expression. In that
7371 case the qualifying scope may be dependent, and, in any case,
7372 substituting will not help. */
7373 scope = TREE_OPERAND (qualified_id, 0);
7374 if (args)
7376 scope = tsubst (scope, args, complain, in_decl);
7377 expr = tsubst_copy (name, args, complain, in_decl);
7379 else
7380 expr = name;
7382 if (dependent_type_p (scope))
7383 return build_nt (SCOPE_REF, scope, expr);
7385 if (!BASELINK_P (name) && !DECL_P (expr))
7387 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
7388 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
7389 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
7391 if (complain & tf_error)
7393 error ("dependent-name `%E' is parsed as a non-type, but "
7394 "instantiation yields a type", qualified_id);
7395 inform ("say `typename %E' if a type is meant", qualified_id);
7397 return error_mark_node;
7401 if (DECL_P (expr))
7402 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
7403 scope);
7405 /* Remember that there was a reference to this entity. */
7406 if (DECL_P (expr))
7407 mark_used (expr);
7409 if (is_template)
7410 expr = lookup_template_function (expr, template_args);
7412 if (expr == error_mark_node && complain & tf_error)
7413 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1));
7414 else if (TYPE_P (scope))
7416 expr = (adjust_result_of_qualified_name_lookup
7417 (expr, scope, current_class_type));
7418 expr = finish_qualified_id_expr (scope, expr, done, address_p);
7421 return expr;
7424 /* Like tsubst, but deals with expressions. This function just replaces
7425 template parms; to finish processing the resultant expression, use
7426 tsubst_expr. */
7428 static tree
7429 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
7431 enum tree_code code;
7432 tree r;
7434 if (t == NULL_TREE || t == error_mark_node)
7435 return t;
7437 code = TREE_CODE (t);
7439 switch (code)
7441 case PARM_DECL:
7442 r = retrieve_local_specialization (t);
7443 my_friendly_assert (r != NULL, 20020903);
7444 mark_used (r);
7445 return r;
7447 case CONST_DECL:
7449 tree enum_type;
7450 tree v;
7452 if (DECL_TEMPLATE_PARM_P (t))
7453 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
7454 /* There is no need to substitute into namespace-scope
7455 enumerators. */
7456 if (DECL_NAMESPACE_SCOPE_P (t))
7457 return t;
7458 /* If ARGS is NULL, then T is known to be non-dependent. */
7459 if (args == NULL_TREE)
7460 return decl_constant_value (t);
7462 /* Unfortunately, we cannot just call lookup_name here.
7463 Consider:
7465 template <int I> int f() {
7466 enum E { a = I };
7467 struct S { void g() { E e = a; } };
7470 When we instantiate f<7>::S::g(), say, lookup_name is not
7471 clever enough to find f<7>::a. */
7472 enum_type
7473 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
7474 /*entering_scope=*/0);
7476 for (v = TYPE_VALUES (enum_type);
7477 v != NULL_TREE;
7478 v = TREE_CHAIN (v))
7479 if (TREE_PURPOSE (v) == DECL_NAME (t))
7480 return TREE_VALUE (v);
7482 /* We didn't find the name. That should never happen; if
7483 name-lookup found it during preliminary parsing, we
7484 should find it again here during instantiation. */
7485 abort ();
7487 return t;
7489 case FIELD_DECL:
7490 if (DECL_CONTEXT (t))
7492 tree ctx;
7494 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
7495 /*entering_scope=*/1);
7496 if (ctx != DECL_CONTEXT (t))
7498 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
7499 if (!r)
7501 if (complain & tf_error)
7502 error ("using invalid field `%D'", t);
7503 return error_mark_node;
7505 return r;
7508 return t;
7510 case VAR_DECL:
7511 case FUNCTION_DECL:
7512 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
7513 || local_variable_p (t))
7514 t = tsubst (t, args, complain, in_decl);
7515 mark_used (t);
7516 return t;
7518 case BASELINK:
7519 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
7521 case TEMPLATE_DECL:
7522 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
7523 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
7524 args, complain, in_decl);
7525 else if (is_member_template (t))
7526 return tsubst (t, args, complain, in_decl);
7527 else if (DECL_CLASS_SCOPE_P (t)
7528 && uses_template_parms (DECL_CONTEXT (t)))
7530 /* Template template argument like the following example need
7531 special treatment:
7533 template <template <class> class TT> struct C {};
7534 template <class T> struct D {
7535 template <class U> struct E {};
7536 C<E> c; // #1
7538 D<int> d; // #2
7540 We are processing the template argument `E' in #1 for
7541 the template instantiation #2. Originally, `E' is a
7542 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
7543 have to substitute this with one having context `D<int>'. */
7545 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
7546 return lookup_field (context, DECL_NAME(t), 0, false);
7548 else
7549 /* Ordinary template template argument. */
7550 return t;
7552 case CAST_EXPR:
7553 case REINTERPRET_CAST_EXPR:
7554 case CONST_CAST_EXPR:
7555 case STATIC_CAST_EXPR:
7556 case DYNAMIC_CAST_EXPR:
7557 case NOP_EXPR:
7558 return build1
7559 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
7560 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
7562 case INDIRECT_REF:
7563 case NEGATE_EXPR:
7564 case TRUTH_NOT_EXPR:
7565 case BIT_NOT_EXPR:
7566 case ADDR_EXPR:
7567 case CONVERT_EXPR: /* Unary + */
7568 case SIZEOF_EXPR:
7569 case ALIGNOF_EXPR:
7570 case ARROW_EXPR:
7571 case THROW_EXPR:
7572 case TYPEID_EXPR:
7573 case REALPART_EXPR:
7574 case IMAGPART_EXPR:
7575 return build1
7576 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
7577 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
7579 case COMPONENT_REF:
7581 tree object;
7582 tree name;
7584 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
7585 name = TREE_OPERAND (t, 1);
7586 if (TREE_CODE (name) == BIT_NOT_EXPR)
7588 name = tsubst_copy (TREE_OPERAND (name, 0), args,
7589 complain, in_decl);
7590 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
7592 else if (TREE_CODE (name) == SCOPE_REF
7593 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
7595 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
7596 complain, in_decl);
7597 name = TREE_OPERAND (name, 1);
7598 name = tsubst_copy (TREE_OPERAND (name, 0), args,
7599 complain, in_decl);
7600 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
7601 name = build_nt (SCOPE_REF, base, name);
7603 else if (TREE_CODE (name) == BASELINK)
7604 name = tsubst_baselink (name,
7605 non_reference (TREE_TYPE (object)),
7606 args, complain,
7607 in_decl);
7608 else
7609 name = tsubst_copy (name, args, complain, in_decl);
7610 return build_nt (COMPONENT_REF, object, name);
7613 case PLUS_EXPR:
7614 case MINUS_EXPR:
7615 case MULT_EXPR:
7616 case TRUNC_DIV_EXPR:
7617 case CEIL_DIV_EXPR:
7618 case FLOOR_DIV_EXPR:
7619 case ROUND_DIV_EXPR:
7620 case EXACT_DIV_EXPR:
7621 case BIT_AND_EXPR:
7622 case BIT_IOR_EXPR:
7623 case BIT_XOR_EXPR:
7624 case TRUNC_MOD_EXPR:
7625 case FLOOR_MOD_EXPR:
7626 case TRUTH_ANDIF_EXPR:
7627 case TRUTH_ORIF_EXPR:
7628 case TRUTH_AND_EXPR:
7629 case TRUTH_OR_EXPR:
7630 case RSHIFT_EXPR:
7631 case LSHIFT_EXPR:
7632 case RROTATE_EXPR:
7633 case LROTATE_EXPR:
7634 case EQ_EXPR:
7635 case NE_EXPR:
7636 case MAX_EXPR:
7637 case MIN_EXPR:
7638 case LE_EXPR:
7639 case GE_EXPR:
7640 case LT_EXPR:
7641 case GT_EXPR:
7642 case ARRAY_REF:
7643 case COMPOUND_EXPR:
7644 case SCOPE_REF:
7645 case DOTSTAR_EXPR:
7646 case MEMBER_REF:
7647 case PREDECREMENT_EXPR:
7648 case PREINCREMENT_EXPR:
7649 case POSTDECREMENT_EXPR:
7650 case POSTINCREMENT_EXPR:
7651 return build_nt
7652 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7653 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
7655 case CALL_EXPR:
7656 return build_nt (code,
7657 tsubst_copy (TREE_OPERAND (t, 0), args,
7658 complain, in_decl),
7659 tsubst_copy (TREE_OPERAND (t, 1), args, complain,
7660 in_decl),
7661 NULL_TREE);
7663 case STMT_EXPR:
7664 /* This processing should really occur in tsubst_expr. However,
7665 tsubst_expr does not recurse into expressions, since it
7666 assumes that there aren't any statements inside them. So, we
7667 need to expand the STMT_EXPR here. */
7668 if (!processing_template_decl)
7670 tree stmt_expr = begin_stmt_expr ();
7672 tsubst_expr (STMT_EXPR_STMT (t), args,
7673 complain | tf_stmt_expr_cmpd, in_decl);
7674 return finish_stmt_expr (stmt_expr, false);
7677 return t;
7679 case COND_EXPR:
7680 case MODOP_EXPR:
7681 case PSEUDO_DTOR_EXPR:
7683 r = build_nt
7684 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7685 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7686 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
7687 return r;
7690 case NEW_EXPR:
7692 r = build_nt
7693 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7694 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7695 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
7696 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
7697 return r;
7700 case DELETE_EXPR:
7702 r = build_nt
7703 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7704 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
7705 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
7706 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
7707 return r;
7710 case TEMPLATE_ID_EXPR:
7712 /* Substituted template arguments */
7713 tree fn = TREE_OPERAND (t, 0);
7714 tree targs = TREE_OPERAND (t, 1);
7716 fn = tsubst_copy (fn, args, complain, in_decl);
7717 if (targs)
7718 targs = tsubst_template_args (targs, args, complain, in_decl);
7720 return lookup_template_function (fn, targs);
7723 case TREE_LIST:
7725 tree purpose, value, chain;
7727 if (t == void_list_node)
7728 return t;
7730 purpose = TREE_PURPOSE (t);
7731 if (purpose)
7732 purpose = tsubst_copy (purpose, args, complain, in_decl);
7733 value = TREE_VALUE (t);
7734 if (value)
7735 value = tsubst_copy (value, args, complain, in_decl);
7736 chain = TREE_CHAIN (t);
7737 if (chain && chain != void_type_node)
7738 chain = tsubst_copy (chain, args, complain, in_decl);
7739 if (purpose == TREE_PURPOSE (t)
7740 && value == TREE_VALUE (t)
7741 && chain == TREE_CHAIN (t))
7742 return t;
7743 return tree_cons (purpose, value, chain);
7746 case RECORD_TYPE:
7747 case UNION_TYPE:
7748 case ENUMERAL_TYPE:
7749 case INTEGER_TYPE:
7750 case TEMPLATE_TYPE_PARM:
7751 case TEMPLATE_TEMPLATE_PARM:
7752 case BOUND_TEMPLATE_TEMPLATE_PARM:
7753 case TEMPLATE_PARM_INDEX:
7754 case POINTER_TYPE:
7755 case REFERENCE_TYPE:
7756 case OFFSET_TYPE:
7757 case FUNCTION_TYPE:
7758 case METHOD_TYPE:
7759 case ARRAY_TYPE:
7760 case TYPENAME_TYPE:
7761 case UNBOUND_CLASS_TEMPLATE:
7762 case TYPEOF_TYPE:
7763 case TYPE_DECL:
7764 return tsubst (t, args, complain, in_decl);
7766 case IDENTIFIER_NODE:
7767 if (IDENTIFIER_TYPENAME_P (t))
7769 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
7770 return mangle_conv_op_name_for_type (new_type);
7772 else
7773 return t;
7775 case CONSTRUCTOR:
7777 r = build_constructor
7778 (tsubst (TREE_TYPE (t), args, complain, in_decl),
7779 tsubst_copy (CONSTRUCTOR_ELTS (t), args, complain, in_decl));
7780 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
7781 return r;
7784 case VA_ARG_EXPR:
7785 return build_x_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
7786 in_decl),
7787 tsubst (TREE_TYPE (t), args, complain, in_decl));
7789 default:
7790 return t;
7794 /* Like tsubst_copy for expressions, etc. but also does semantic
7795 processing. */
7797 static tree
7798 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
7800 tree stmt, tmp;
7801 tsubst_flags_t stmt_expr
7802 = complain & (tf_stmt_expr_cmpd | tf_stmt_expr_body);
7804 complain ^= stmt_expr;
7805 if (t == NULL_TREE || t == error_mark_node)
7806 return t;
7808 if (!STATEMENT_CODE_P (TREE_CODE (t)))
7809 return tsubst_copy_and_build (t, args, complain, in_decl,
7810 /*function_p=*/false);
7812 switch (TREE_CODE (t))
7814 case CTOR_INITIALIZER:
7815 prep_stmt (t);
7816 finish_mem_initializers (tsubst_initializer_list
7817 (TREE_OPERAND (t, 0), args));
7818 break;
7820 case RETURN_STMT:
7821 prep_stmt (t);
7822 finish_return_stmt (tsubst_expr (RETURN_STMT_EXPR (t),
7823 args, complain, in_decl));
7824 break;
7826 case EXPR_STMT:
7828 tree r;
7830 prep_stmt (t);
7832 r = tsubst_expr (EXPR_STMT_EXPR (t), args, complain, in_decl);
7833 if (stmt_expr & tf_stmt_expr_body && !TREE_CHAIN (t))
7834 finish_stmt_expr_expr (r);
7835 else
7836 finish_expr_stmt (r);
7837 break;
7840 case USING_STMT:
7841 prep_stmt (t);
7842 do_using_directive (tsubst_expr (USING_STMT_NAMESPACE (t),
7843 args, complain, in_decl));
7844 break;
7846 case DECL_STMT:
7848 tree decl;
7849 tree init;
7851 prep_stmt (t);
7852 decl = DECL_STMT_DECL (t);
7853 if (TREE_CODE (decl) == LABEL_DECL)
7854 finish_label_decl (DECL_NAME (decl));
7855 else if (TREE_CODE (decl) == USING_DECL)
7857 tree scope = DECL_INITIAL (decl);
7858 tree name = DECL_NAME (decl);
7859 tree decl;
7861 scope = tsubst_expr (scope, args, complain, in_decl);
7862 decl = lookup_qualified_name (scope, name,
7863 /*is_type_p=*/false,
7864 /*complain=*/false);
7865 if (decl == error_mark_node)
7866 qualified_name_lookup_error (scope, name);
7867 else
7868 do_local_using_decl (decl, scope, name);
7870 else
7872 init = DECL_INITIAL (decl);
7873 decl = tsubst (decl, args, complain, in_decl);
7874 if (decl != error_mark_node)
7876 if (init)
7877 DECL_INITIAL (decl) = error_mark_node;
7878 /* By marking the declaration as instantiated, we avoid
7879 trying to instantiate it. Since instantiate_decl can't
7880 handle local variables, and since we've already done
7881 all that needs to be done, that's the right thing to
7882 do. */
7883 if (TREE_CODE (decl) == VAR_DECL)
7884 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
7885 if (TREE_CODE (decl) == VAR_DECL
7886 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
7887 /* Anonymous aggregates are a special case. */
7888 finish_anon_union (decl);
7889 else
7891 maybe_push_decl (decl);
7892 if (TREE_CODE (decl) == VAR_DECL
7893 && DECL_PRETTY_FUNCTION_P (decl))
7895 /* For __PRETTY_FUNCTION__ we have to adjust the
7896 initializer. */
7897 const char *const name
7898 = cxx_printable_name (current_function_decl, 2);
7899 init = cp_fname_init (name, &TREE_TYPE (decl));
7901 else
7902 init = tsubst_expr (init, args, complain, in_decl);
7903 cp_finish_decl (decl, init, NULL_TREE, 0);
7908 /* A DECL_STMT can also be used as an expression, in the condition
7909 clause of an if/for/while construct. If we aren't followed by
7910 another statement, return our decl. */
7911 if (TREE_CHAIN (t) == NULL_TREE)
7912 return decl;
7914 break;
7916 case FOR_STMT:
7918 prep_stmt (t);
7920 stmt = begin_for_stmt ();
7921 tsubst_expr (FOR_INIT_STMT (t), args, complain, in_decl);
7922 finish_for_init_stmt (stmt);
7923 finish_for_cond (tsubst_expr (FOR_COND (t),
7924 args, complain, in_decl),
7925 stmt);
7926 tmp = tsubst_expr (FOR_EXPR (t), args, complain, in_decl);
7927 finish_for_expr (tmp, stmt);
7928 tsubst_expr (FOR_BODY (t), args, complain, in_decl);
7929 finish_for_stmt (stmt);
7931 break;
7933 case WHILE_STMT:
7935 prep_stmt (t);
7936 stmt = begin_while_stmt ();
7937 finish_while_stmt_cond (tsubst_expr (WHILE_COND (t),
7938 args, complain, in_decl),
7939 stmt);
7940 tsubst_expr (WHILE_BODY (t), args, complain, in_decl);
7941 finish_while_stmt (stmt);
7943 break;
7945 case DO_STMT:
7947 prep_stmt (t);
7948 stmt = begin_do_stmt ();
7949 tsubst_expr (DO_BODY (t), args, complain, in_decl);
7950 finish_do_body (stmt);
7951 finish_do_stmt (tsubst_expr (DO_COND (t),
7952 args, complain, in_decl),
7953 stmt);
7955 break;
7957 case IF_STMT:
7959 prep_stmt (t);
7960 stmt = begin_if_stmt ();
7961 finish_if_stmt_cond (tsubst_expr (IF_COND (t),
7962 args, complain, in_decl),
7963 stmt);
7965 if (tmp = THEN_CLAUSE (t), tmp)
7967 tsubst_expr (tmp, args, complain, in_decl);
7968 finish_then_clause (stmt);
7971 if (tmp = ELSE_CLAUSE (t), tmp)
7973 begin_else_clause ();
7974 tsubst_expr (tmp, args, complain, in_decl);
7975 finish_else_clause (stmt);
7978 finish_if_stmt ();
7980 break;
7982 case COMPOUND_STMT:
7984 prep_stmt (t);
7985 if (COMPOUND_STMT_BODY_BLOCK (t))
7986 stmt = begin_function_body ();
7987 else
7988 stmt = begin_compound_stmt (COMPOUND_STMT_NO_SCOPE (t));
7990 tsubst_expr (COMPOUND_BODY (t), args,
7991 complain | ((stmt_expr & tf_stmt_expr_cmpd) << 1),
7992 in_decl);
7994 if (COMPOUND_STMT_BODY_BLOCK (t))
7995 finish_function_body (stmt);
7996 else
7997 finish_compound_stmt (stmt);
7999 break;
8001 case BREAK_STMT:
8002 prep_stmt (t);
8003 finish_break_stmt ();
8004 break;
8006 case CONTINUE_STMT:
8007 prep_stmt (t);
8008 finish_continue_stmt ();
8009 break;
8011 case SWITCH_STMT:
8013 tree val;
8015 prep_stmt (t);
8016 stmt = begin_switch_stmt ();
8017 val = tsubst_expr (SWITCH_COND (t), args, complain, in_decl);
8018 finish_switch_cond (val, stmt);
8019 tsubst_expr (SWITCH_BODY (t), args, complain, in_decl);
8020 finish_switch_stmt (stmt);
8022 break;
8024 case CASE_LABEL:
8025 prep_stmt (t);
8026 finish_case_label (tsubst_expr (CASE_LOW (t), args, complain, in_decl),
8027 tsubst_expr (CASE_HIGH (t), args, complain,
8028 in_decl));
8029 break;
8031 case LABEL_STMT:
8032 input_line = STMT_LINENO (t);
8033 finish_label_stmt (DECL_NAME (LABEL_STMT_LABEL (t)));
8034 break;
8036 case FILE_STMT:
8037 input_filename = FILE_STMT_FILENAME (t);
8038 add_stmt (build_nt (FILE_STMT, FILE_STMT_FILENAME_NODE (t)));
8039 break;
8041 case GOTO_STMT:
8042 prep_stmt (t);
8043 tmp = GOTO_DESTINATION (t);
8044 if (TREE_CODE (tmp) != LABEL_DECL)
8045 /* Computed goto's must be tsubst'd into. On the other hand,
8046 non-computed gotos must not be; the identifier in question
8047 will have no binding. */
8048 tmp = tsubst_expr (tmp, args, complain, in_decl);
8049 else
8050 tmp = DECL_NAME (tmp);
8051 finish_goto_stmt (tmp);
8052 break;
8054 case ASM_STMT:
8055 prep_stmt (t);
8056 tmp = finish_asm_stmt
8057 (ASM_CV_QUAL (t),
8058 tsubst_expr (ASM_STRING (t), args, complain, in_decl),
8059 tsubst_expr (ASM_OUTPUTS (t), args, complain, in_decl),
8060 tsubst_expr (ASM_INPUTS (t), args, complain, in_decl),
8061 tsubst_expr (ASM_CLOBBERS (t), args, complain, in_decl));
8062 ASM_INPUT_P (tmp) = ASM_INPUT_P (t);
8063 break;
8065 case TRY_BLOCK:
8066 prep_stmt (t);
8067 if (CLEANUP_P (t))
8069 stmt = begin_try_block ();
8070 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
8071 finish_cleanup_try_block (stmt);
8072 finish_cleanup (tsubst_expr (TRY_HANDLERS (t), args,
8073 complain, in_decl),
8074 stmt);
8076 else
8078 if (FN_TRY_BLOCK_P (t))
8079 stmt = begin_function_try_block ();
8080 else
8081 stmt = begin_try_block ();
8083 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
8085 if (FN_TRY_BLOCK_P (t))
8086 finish_function_try_block (stmt);
8087 else
8088 finish_try_block (stmt);
8090 tsubst_expr (TRY_HANDLERS (t), args, complain, in_decl);
8091 if (FN_TRY_BLOCK_P (t))
8092 finish_function_handler_sequence (stmt);
8093 else
8094 finish_handler_sequence (stmt);
8096 break;
8098 case HANDLER:
8100 tree decl;
8102 prep_stmt (t);
8103 stmt = begin_handler ();
8104 if (HANDLER_PARMS (t))
8106 decl = DECL_STMT_DECL (HANDLER_PARMS (t));
8107 decl = tsubst (decl, args, complain, in_decl);
8108 /* Prevent instantiate_decl from trying to instantiate
8109 this variable. We've already done all that needs to be
8110 done. */
8111 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
8113 else
8114 decl = NULL_TREE;
8115 finish_handler_parms (decl, stmt);
8116 tsubst_expr (HANDLER_BODY (t), args, complain, in_decl);
8117 finish_handler (stmt);
8119 break;
8121 case TAG_DEFN:
8122 prep_stmt (t);
8123 tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
8124 break;
8126 default:
8127 abort ();
8130 return tsubst_expr (TREE_CHAIN (t), args, complain | stmt_expr, in_decl);
8133 /* T is a postfix-expression that is not being used in a function
8134 call. Return the substituted version of T. */
8136 static tree
8137 tsubst_non_call_postfix_expression (tree t, tree args,
8138 tsubst_flags_t complain,
8139 tree in_decl)
8141 if (TREE_CODE (t) == SCOPE_REF)
8142 t = tsubst_qualified_id (t, args, complain, in_decl,
8143 /*done=*/false, /*address_p=*/false);
8144 else
8145 t = tsubst_copy_and_build (t, args, complain, in_decl,
8146 /*function_p=*/false);
8148 return t;
8151 /* Like tsubst but deals with expressions and performs semantic
8152 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
8154 tree
8155 tsubst_copy_and_build (tree t,
8156 tree args,
8157 tsubst_flags_t complain,
8158 tree in_decl,
8159 bool function_p)
8161 #define RECUR(NODE) \
8162 tsubst_copy_and_build (NODE, args, complain, in_decl, /*function_p=*/false)
8164 tree op1;
8166 if (t == NULL_TREE || t == error_mark_node)
8167 return t;
8169 switch (TREE_CODE (t))
8171 case USING_DECL:
8172 t = DECL_NAME (t);
8173 /* Fallthrough. */
8174 case IDENTIFIER_NODE:
8176 tree decl;
8177 cp_id_kind idk;
8178 tree qualifying_class;
8179 bool non_integral_constant_expression_p;
8180 const char *error_msg;
8182 if (IDENTIFIER_TYPENAME_P (t))
8184 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8185 t = mangle_conv_op_name_for_type (new_type);
8188 /* Look up the name. */
8189 decl = lookup_name (t, 0);
8191 /* By convention, expressions use ERROR_MARK_NODE to indicate
8192 failure, not NULL_TREE. */
8193 if (decl == NULL_TREE)
8194 decl = error_mark_node;
8196 decl = finish_id_expression (t, decl, NULL_TREE,
8197 &idk,
8198 &qualifying_class,
8199 /*integral_constant_expression_p=*/false,
8200 /*allow_non_integral_constant_expression_p=*/false,
8201 &non_integral_constant_expression_p,
8202 &error_msg);
8203 if (error_msg)
8204 error (error_msg);
8205 if (!function_p && TREE_CODE (decl) == IDENTIFIER_NODE)
8206 decl = unqualified_name_lookup_error (decl);
8207 return decl;
8210 case TEMPLATE_ID_EXPR:
8212 tree object;
8213 tree template = RECUR (TREE_OPERAND (t, 0));
8214 tree targs = TREE_OPERAND (t, 1);
8216 if (targs)
8217 targs = tsubst_template_args (targs, args, complain, in_decl);
8219 if (TREE_CODE (template) == COMPONENT_REF)
8221 object = TREE_OPERAND (template, 0);
8222 template = TREE_OPERAND (template, 1);
8224 else
8225 object = NULL_TREE;
8226 template = lookup_template_function (template, targs);
8228 if (object)
8229 return build (COMPONENT_REF, TREE_TYPE (template),
8230 object, template);
8231 else
8232 return template;
8235 case INDIRECT_REF:
8236 return build_x_indirect_ref (RECUR (TREE_OPERAND (t, 0)), "unary *");
8238 case NOP_EXPR:
8239 return build_nop
8240 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8241 RECUR (TREE_OPERAND (t, 0)));
8243 case CAST_EXPR:
8244 return build_functional_cast
8245 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8246 RECUR (TREE_OPERAND (t, 0)));
8248 case REINTERPRET_CAST_EXPR:
8249 return build_reinterpret_cast
8250 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8251 RECUR (TREE_OPERAND (t, 0)));
8253 case CONST_CAST_EXPR:
8254 return build_const_cast
8255 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8256 RECUR (TREE_OPERAND (t, 0)));
8258 case DYNAMIC_CAST_EXPR:
8259 return build_dynamic_cast
8260 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8261 RECUR (TREE_OPERAND (t, 0)));
8263 case STATIC_CAST_EXPR:
8264 return build_static_cast
8265 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8266 RECUR (TREE_OPERAND (t, 0)));
8268 case POSTDECREMENT_EXPR:
8269 case POSTINCREMENT_EXPR:
8270 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8271 args, complain, in_decl);
8272 return build_x_unary_op (TREE_CODE (t), op1);
8274 case PREDECREMENT_EXPR:
8275 case PREINCREMENT_EXPR:
8276 case NEGATE_EXPR:
8277 case BIT_NOT_EXPR:
8278 case ABS_EXPR:
8279 case TRUTH_NOT_EXPR:
8280 case CONVERT_EXPR: /* Unary + */
8281 case REALPART_EXPR:
8282 case IMAGPART_EXPR:
8283 return build_x_unary_op (TREE_CODE (t), RECUR (TREE_OPERAND (t, 0)));
8285 case ADDR_EXPR:
8286 op1 = TREE_OPERAND (t, 0);
8287 if (TREE_CODE (op1) == SCOPE_REF)
8288 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
8289 /*done=*/true, /*address_p=*/true);
8290 else
8291 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
8292 in_decl);
8293 if (TREE_CODE (op1) == LABEL_DECL)
8294 return finish_label_address_expr (DECL_NAME (op1));
8295 return build_x_unary_op (ADDR_EXPR, op1);
8297 case PLUS_EXPR:
8298 case MINUS_EXPR:
8299 case MULT_EXPR:
8300 case TRUNC_DIV_EXPR:
8301 case CEIL_DIV_EXPR:
8302 case FLOOR_DIV_EXPR:
8303 case ROUND_DIV_EXPR:
8304 case EXACT_DIV_EXPR:
8305 case BIT_AND_EXPR:
8306 case BIT_IOR_EXPR:
8307 case BIT_XOR_EXPR:
8308 case TRUNC_MOD_EXPR:
8309 case FLOOR_MOD_EXPR:
8310 case TRUTH_ANDIF_EXPR:
8311 case TRUTH_ORIF_EXPR:
8312 case TRUTH_AND_EXPR:
8313 case TRUTH_OR_EXPR:
8314 case RSHIFT_EXPR:
8315 case LSHIFT_EXPR:
8316 case RROTATE_EXPR:
8317 case LROTATE_EXPR:
8318 case EQ_EXPR:
8319 case NE_EXPR:
8320 case MAX_EXPR:
8321 case MIN_EXPR:
8322 case LE_EXPR:
8323 case GE_EXPR:
8324 case LT_EXPR:
8325 case GT_EXPR:
8326 case MEMBER_REF:
8327 case DOTSTAR_EXPR:
8328 return build_x_binary_op
8329 (TREE_CODE (t),
8330 RECUR (TREE_OPERAND (t, 0)),
8331 RECUR (TREE_OPERAND (t, 1)),
8332 /*overloaded_p=*/NULL);
8334 case SCOPE_REF:
8335 return tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
8336 /*address_p=*/false);
8338 case ARRAY_REF:
8339 if (tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl)
8340 == NULL_TREE)
8341 /* new-type-id */
8342 return build_nt (ARRAY_REF, NULL_TREE, RECUR (TREE_OPERAND (t, 1)));
8344 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8345 args, complain, in_decl);
8346 /* Remember that there was a reference to this entity. */
8347 if (DECL_P (op1))
8348 mark_used (op1);
8349 return grok_array_decl (op1, RECUR (TREE_OPERAND (t, 1)));
8351 case SIZEOF_EXPR:
8352 case ALIGNOF_EXPR:
8353 op1 = TREE_OPERAND (t, 0);
8354 if (!args)
8356 /* When there are no ARGS, we are trying to evaluate a
8357 non-dependent expression from the parser. Trying to do
8358 the substitutions may not work. */
8359 if (!TYPE_P (op1))
8360 op1 = TREE_TYPE (op1);
8362 else
8364 ++skip_evaluation;
8365 op1 = RECUR (op1);
8366 --skip_evaluation;
8368 if (TYPE_P (op1))
8369 return cxx_sizeof_or_alignof_type (op1, TREE_CODE (t), true);
8370 else
8371 return cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t));
8373 case MODOP_EXPR:
8374 return build_x_modify_expr
8375 (RECUR (TREE_OPERAND (t, 0)),
8376 TREE_CODE (TREE_OPERAND (t, 1)),
8377 RECUR (TREE_OPERAND (t, 2)));
8379 case ARROW_EXPR:
8380 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8381 args, complain, in_decl);
8382 /* Remember that there was a reference to this entity. */
8383 if (DECL_P (op1))
8384 mark_used (op1);
8385 return build_x_arrow (op1);
8387 case NEW_EXPR:
8388 return build_new
8389 (RECUR (TREE_OPERAND (t, 0)),
8390 RECUR (TREE_OPERAND (t, 1)),
8391 RECUR (TREE_OPERAND (t, 2)),
8392 NEW_EXPR_USE_GLOBAL (t));
8394 case DELETE_EXPR:
8395 return delete_sanity
8396 (RECUR (TREE_OPERAND (t, 0)),
8397 RECUR (TREE_OPERAND (t, 1)),
8398 DELETE_EXPR_USE_VEC (t),
8399 DELETE_EXPR_USE_GLOBAL (t));
8401 case COMPOUND_EXPR:
8402 return build_x_compound_expr (RECUR (TREE_OPERAND (t, 0)),
8403 RECUR (TREE_OPERAND (t, 1)));
8405 case CALL_EXPR:
8407 tree function;
8408 tree call_args;
8409 bool qualified_p;
8410 bool koenig_p;
8412 function = TREE_OPERAND (t, 0);
8413 /* When we parsed the expression, we determined whether or
8414 not Koenig lookup should be performed. */
8415 koenig_p = KOENIG_LOOKUP_P (t);
8416 if (TREE_CODE (function) == SCOPE_REF)
8418 qualified_p = true;
8419 function = tsubst_qualified_id (function, args, complain, in_decl,
8420 /*done=*/false,
8421 /*address_p=*/false);
8423 else
8425 qualified_p = (TREE_CODE (function) == COMPONENT_REF
8426 && (TREE_CODE (TREE_OPERAND (function, 1))
8427 == SCOPE_REF));
8428 function = tsubst_copy_and_build (function, args, complain,
8429 in_decl,
8430 !qualified_p);
8431 if (BASELINK_P (function))
8432 qualified_p = true;
8435 call_args = RECUR (TREE_OPERAND (t, 1));
8437 /* We do not perform argument-dependent lookup if normal
8438 lookup finds a non-function, in accordance with the
8439 expected resolution of DR 218. */
8440 if (koenig_p
8441 && ((is_overloaded_fn (function)
8442 /* If lookup found a member function, the Koenig lookup is
8443 not appropriate, even if an unqualified-name was used
8444 to denote the function. */
8445 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
8446 || TREE_CODE (function) == IDENTIFIER_NODE))
8447 function = perform_koenig_lookup (function, call_args);
8449 if (TREE_CODE (function) == IDENTIFIER_NODE)
8451 unqualified_name_lookup_error (function);
8452 return error_mark_node;
8455 /* Remember that there was a reference to this entity. */
8456 if (DECL_P (function))
8457 mark_used (function);
8459 function = convert_from_reference (function);
8461 if (TREE_CODE (function) == OFFSET_REF)
8462 return build_offset_ref_call_from_tree (function, call_args);
8463 if (TREE_CODE (function) == COMPONENT_REF)
8465 if (!BASELINK_P (TREE_OPERAND (function, 1)))
8466 return finish_call_expr (function, call_args,
8467 /*disallow_virtual=*/false,
8468 /*koenig_p=*/false);
8469 else
8470 return (build_new_method_call
8471 (TREE_OPERAND (function, 0),
8472 TREE_OPERAND (function, 1),
8473 call_args, NULL_TREE,
8474 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL));
8476 return finish_call_expr (function, call_args,
8477 /*disallow_virtual=*/qualified_p,
8478 koenig_p);
8481 case COND_EXPR:
8482 return build_x_conditional_expr
8483 (RECUR (TREE_OPERAND (t, 0)),
8484 RECUR (TREE_OPERAND (t, 1)),
8485 RECUR (TREE_OPERAND (t, 2)));
8487 case PSEUDO_DTOR_EXPR:
8488 return finish_pseudo_destructor_expr
8489 (RECUR (TREE_OPERAND (t, 0)),
8490 RECUR (TREE_OPERAND (t, 1)),
8491 RECUR (TREE_OPERAND (t, 2)));
8493 case TREE_LIST:
8495 tree purpose, value, chain;
8497 if (t == void_list_node)
8498 return t;
8500 purpose = TREE_PURPOSE (t);
8501 if (purpose)
8502 purpose = RECUR (purpose);
8503 value = TREE_VALUE (t);
8504 if (value)
8505 value = RECUR (value);
8506 chain = TREE_CHAIN (t);
8507 if (chain && chain != void_type_node)
8508 chain = RECUR (chain);
8509 if (purpose == TREE_PURPOSE (t)
8510 && value == TREE_VALUE (t)
8511 && chain == TREE_CHAIN (t))
8512 return t;
8513 return tree_cons (purpose, value, chain);
8516 case COMPONENT_REF:
8518 tree object;
8519 tree member;
8521 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8522 args, complain, in_decl);
8523 /* Remember that there was a reference to this entity. */
8524 if (DECL_P (object))
8525 mark_used (object);
8527 member = TREE_OPERAND (t, 1);
8528 if (BASELINK_P (member))
8529 member = tsubst_baselink (member,
8530 non_reference (TREE_TYPE (object)),
8531 args, complain, in_decl);
8532 else
8533 member = tsubst_copy (member, args, complain, in_decl);
8535 if (member == error_mark_node)
8536 return error_mark_node;
8537 else if (!CLASS_TYPE_P (TREE_TYPE (object)))
8539 if (TREE_CODE (member) == BIT_NOT_EXPR)
8540 return finish_pseudo_destructor_expr (object,
8541 NULL_TREE,
8542 TREE_TYPE (object));
8543 else if (TREE_CODE (member) == SCOPE_REF
8544 && (TREE_CODE (TREE_OPERAND (member, 1)) == BIT_NOT_EXPR))
8545 return finish_pseudo_destructor_expr (object,
8546 object,
8547 TREE_TYPE (object));
8549 else if (TREE_CODE (member) == SCOPE_REF
8550 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
8552 tree tmpl;
8553 tree args;
8555 /* Lookup the template functions now that we know what the
8556 scope is. */
8557 tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
8558 args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
8559 member = lookup_qualified_name (TREE_OPERAND (member, 0), tmpl,
8560 /*is_type_p=*/false,
8561 /*complain=*/false);
8562 if (BASELINK_P (member))
8564 BASELINK_FUNCTIONS (member)
8565 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
8566 args);
8567 member = (adjust_result_of_qualified_name_lookup
8568 (member, BINFO_TYPE (BASELINK_BINFO (member)),
8569 TREE_TYPE (object)));
8571 else
8573 qualified_name_lookup_error (TREE_TYPE (object), tmpl);
8574 return error_mark_node;
8577 else if (TREE_CODE (member) == SCOPE_REF
8578 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
8579 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
8581 if (complain & tf_error)
8583 if (TYPE_P (TREE_OPERAND (member, 0)))
8584 error ("`%T' is not a class or namespace",
8585 TREE_OPERAND (member, 0));
8586 else
8587 error ("`%D' is not a class or namespace",
8588 TREE_OPERAND (member, 0));
8590 return error_mark_node;
8592 else if (TREE_CODE (member) == FIELD_DECL)
8593 return finish_non_static_data_member (member, object, NULL_TREE);
8595 return finish_class_member_access_expr (object, member);
8598 case THROW_EXPR:
8599 return build_throw
8600 (RECUR (TREE_OPERAND (t, 0)));
8602 case CONSTRUCTOR:
8604 tree r;
8605 tree elts;
8606 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8607 bool purpose_p;
8609 /* digest_init will do the wrong thing if we let it. */
8610 if (type && TYPE_PTRMEMFUNC_P (type))
8611 return t;
8613 r = NULL_TREE;
8614 /* We do not want to process the purpose of aggregate
8615 initializers as they are identifier nodes which will be
8616 looked up by digest_init. */
8617 purpose_p = !(type && IS_AGGR_TYPE (type));
8618 for (elts = CONSTRUCTOR_ELTS (t);
8619 elts;
8620 elts = TREE_CHAIN (elts))
8622 tree purpose = TREE_PURPOSE (elts);
8623 tree value = TREE_VALUE (elts);
8625 if (purpose && purpose_p)
8626 purpose = RECUR (purpose);
8627 value = RECUR (value);
8628 r = tree_cons (purpose, value, r);
8631 r = build_constructor (NULL_TREE, nreverse (r));
8632 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
8634 if (type)
8635 return digest_init (type, r, 0);
8636 return r;
8639 case TYPEID_EXPR:
8641 tree operand_0 = RECUR (TREE_OPERAND (t, 0));
8642 if (TYPE_P (operand_0))
8643 return get_typeid (operand_0);
8644 return build_typeid (operand_0);
8647 case PARM_DECL:
8648 return convert_from_reference (tsubst_copy (t, args, complain, in_decl));
8650 case VAR_DECL:
8651 if (args)
8652 t = tsubst_copy (t, args, complain, in_decl);
8653 return convert_from_reference (t);
8655 case VA_ARG_EXPR:
8656 return build_x_va_arg (RECUR (TREE_OPERAND (t, 0)),
8657 tsubst_copy (TREE_TYPE (t), args, complain,
8658 in_decl));
8660 case CONST_DECL:
8661 t = tsubst_copy (t, args, complain, in_decl);
8662 /* As in finish_id_expression, we resolve enumeration constants
8663 to their underlying values. */
8664 if (TREE_CODE (t) == CONST_DECL)
8665 return DECL_INITIAL (t);
8666 return t;
8668 default:
8669 return tsubst_copy (t, args, complain, in_decl);
8672 #undef RECUR
8675 /* Verify that the instantiated ARGS are valid. For type arguments,
8676 make sure that the type's linkage is ok. For non-type arguments,
8677 make sure they are constants if they are integral or enumerations.
8678 Emit an error under control of COMPLAIN, and return TRUE on error. */
8680 static bool
8681 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
8683 int ix, len = DECL_NTPARMS (tmpl);
8684 bool result = false;
8686 for (ix = 0; ix != len; ix++)
8688 tree t = TREE_VEC_ELT (args, ix);
8690 if (TYPE_P (t))
8692 /* [basic.link]: A name with no linkage (notably, the name
8693 of a class or enumeration declared in a local scope)
8694 shall not be used to declare an entity with linkage.
8695 This implies that names with no linkage cannot be used as
8696 template arguments. */
8697 tree nt = no_linkage_check (t);
8699 if (nt)
8701 if (!(complain & tf_error))
8702 /*OK*/;
8703 else if (TYPE_ANONYMOUS_P (nt))
8704 error ("`%T' uses anonymous type", t);
8705 else
8706 error ("`%T' uses local type `%T'", t, nt);
8707 result = true;
8709 /* In order to avoid all sorts of complications, we do not
8710 allow variably-modified types as template arguments. */
8711 else if (variably_modified_type_p (t))
8713 if (complain & tf_error)
8714 error ("`%T' is a variably modified type", t);
8715 result = true;
8718 /* A non-type argument of integral or enumerated type must be a
8719 constant. */
8720 else if (TREE_TYPE (t)
8721 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
8722 && !TREE_CONSTANT (t))
8724 if (complain & tf_error)
8725 error ("integral expression `%E' is not constant", t);
8726 result = true;
8729 if (result && complain & tf_error)
8730 error (" trying to instantiate `%D'", tmpl);
8731 return result;
8734 /* Instantiate the indicated variable or function template TMPL with
8735 the template arguments in TARG_PTR. */
8737 tree
8738 instantiate_template (tree tmpl, tree targ_ptr, tsubst_flags_t complain)
8740 tree fndecl;
8741 tree gen_tmpl;
8742 tree spec;
8744 if (tmpl == error_mark_node)
8745 return error_mark_node;
8747 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 283);
8749 /* If this function is a clone, handle it specially. */
8750 if (DECL_CLONED_FUNCTION_P (tmpl))
8752 tree spec;
8753 tree clone;
8755 spec = instantiate_template (DECL_CLONED_FUNCTION (tmpl), targ_ptr,
8756 complain);
8757 if (spec == error_mark_node)
8758 return error_mark_node;
8760 /* Look for the clone. */
8761 for (clone = TREE_CHAIN (spec);
8762 clone && DECL_CLONED_FUNCTION_P (clone);
8763 clone = TREE_CHAIN (clone))
8764 if (DECL_NAME (clone) == DECL_NAME (tmpl))
8765 return clone;
8766 /* We should always have found the clone by now. */
8767 abort ();
8768 return NULL_TREE;
8771 /* Check to see if we already have this specialization. */
8772 spec = retrieve_specialization (tmpl, targ_ptr);
8773 if (spec != NULL_TREE)
8774 return spec;
8776 gen_tmpl = most_general_template (tmpl);
8777 if (tmpl != gen_tmpl)
8779 /* The TMPL is a partial instantiation. To get a full set of
8780 arguments we must add the arguments used to perform the
8781 partial instantiation. */
8782 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
8783 targ_ptr);
8785 /* Check to see if we already have this specialization. */
8786 spec = retrieve_specialization (gen_tmpl, targ_ptr);
8787 if (spec != NULL_TREE)
8788 return spec;
8791 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
8792 complain))
8793 return error_mark_node;
8795 /* We are building a FUNCTION_DECL, during which the access of its
8796 parameters and return types have to be checked. However this
8797 FUNCTION_DECL which is the desired context for access checking
8798 is not built yet. We solve this chicken-and-egg problem by
8799 deferring all checks until we have the FUNCTION_DECL. */
8800 push_deferring_access_checks (dk_deferred);
8802 /* Substitute template parameters. */
8803 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
8804 targ_ptr, complain, gen_tmpl);
8806 /* Now we know the specialization, compute access previously
8807 deferred. */
8808 push_access_scope (fndecl);
8809 perform_deferred_access_checks ();
8810 pop_access_scope (fndecl);
8811 pop_deferring_access_checks ();
8813 /* The DECL_TI_TEMPLATE should always be the immediate parent
8814 template, not the most general template. */
8815 DECL_TI_TEMPLATE (fndecl) = tmpl;
8817 /* If we've just instantiated the main entry point for a function,
8818 instantiate all the alternate entry points as well. We do this
8819 by cloning the instantiation of the main entry point, not by
8820 instantiating the template clones. */
8821 if (TREE_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (TREE_CHAIN (gen_tmpl)))
8822 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
8824 return fndecl;
8827 /* The FN is a TEMPLATE_DECL for a function. The ARGS are the
8828 arguments that are being used when calling it. TARGS is a vector
8829 into which the deduced template arguments are placed.
8831 Return zero for success, 2 for an incomplete match that doesn't resolve
8832 all the types, and 1 for complete failure. An error message will be
8833 printed only for an incomplete match.
8835 If FN is a conversion operator, or we are trying to produce a specific
8836 specialization, RETURN_TYPE is the return type desired.
8838 The EXPLICIT_TARGS are explicit template arguments provided via a
8839 template-id.
8841 The parameter STRICT is one of:
8843 DEDUCE_CALL:
8844 We are deducing arguments for a function call, as in
8845 [temp.deduct.call].
8847 DEDUCE_CONV:
8848 We are deducing arguments for a conversion function, as in
8849 [temp.deduct.conv].
8851 DEDUCE_EXACT:
8852 We are deducing arguments when doing an explicit instantiation
8853 as in [temp.explicit], when determining an explicit specialization
8854 as in [temp.expl.spec], or when taking the address of a function
8855 template, as in [temp.deduct.funcaddr].
8857 DEDUCE_ORDER:
8858 We are deducing arguments when calculating the partial
8859 ordering between specializations of function or class
8860 templates, as in [temp.func.order] and [temp.class.order].
8862 LEN is the number of parms to consider before returning success, or -1
8863 for all. This is used in partial ordering to avoid comparing parms for
8864 which no actual argument was passed, since they are not considered in
8865 overload resolution (and are explicitly excluded from consideration in
8866 partial ordering in [temp.func.order]/6). */
8869 fn_type_unification (tree fn,
8870 tree explicit_targs,
8871 tree targs,
8872 tree args,
8873 tree return_type,
8874 unification_kind_t strict,
8875 int len)
8877 tree parms;
8878 tree fntype;
8879 int result;
8881 my_friendly_assert (TREE_CODE (fn) == TEMPLATE_DECL, 0);
8883 fntype = TREE_TYPE (fn);
8884 if (explicit_targs)
8886 /* [temp.deduct]
8888 The specified template arguments must match the template
8889 parameters in kind (i.e., type, nontype, template), and there
8890 must not be more arguments than there are parameters;
8891 otherwise type deduction fails.
8893 Nontype arguments must match the types of the corresponding
8894 nontype template parameters, or must be convertible to the
8895 types of the corresponding nontype parameters as specified in
8896 _temp.arg.nontype_, otherwise type deduction fails.
8898 All references in the function type of the function template
8899 to the corresponding template parameters are replaced by the
8900 specified template argument values. If a substitution in a
8901 template parameter or in the function type of the function
8902 template results in an invalid type, type deduction fails. */
8903 int i;
8904 tree converted_args;
8905 bool incomplete;
8907 if (explicit_targs == error_mark_node)
8908 return 1;
8910 converted_args
8911 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
8912 explicit_targs, NULL_TREE, tf_none,
8913 /*require_all_arguments=*/0));
8914 if (converted_args == error_mark_node)
8915 return 1;
8917 /* Substitute the explicit args into the function type. This is
8918 necessary so that, for instance, explicitly declared function
8919 arguments can match null pointed constants. If we were given
8920 an incomplete set of explicit args, we must not do semantic
8921 processing during substitution as we could create partial
8922 instantiations. */
8923 incomplete = NUM_TMPL_ARGS (explicit_targs) != NUM_TMPL_ARGS (targs);
8924 processing_template_decl += incomplete;
8925 fntype = tsubst (fntype, converted_args, tf_none, NULL_TREE);
8926 processing_template_decl -= incomplete;
8928 if (fntype == error_mark_node)
8929 return 1;
8931 /* Place the explicitly specified arguments in TARGS. */
8932 for (i = NUM_TMPL_ARGS (converted_args); i--;)
8933 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
8936 parms = TYPE_ARG_TYPES (fntype);
8937 /* Never do unification on the 'this' parameter. */
8938 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
8939 parms = TREE_CHAIN (parms);
8941 if (return_type)
8943 /* We've been given a return type to match, prepend it. */
8944 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
8945 args = tree_cons (NULL_TREE, return_type, args);
8946 if (len >= 0)
8947 ++len;
8950 /* We allow incomplete unification without an error message here
8951 because the standard doesn't seem to explicitly prohibit it. Our
8952 callers must be ready to deal with unification failures in any
8953 event. */
8954 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
8955 targs, parms, args, /*subr=*/0,
8956 strict, /*allow_incomplete*/1, len);
8958 if (result == 0)
8959 /* All is well so far. Now, check:
8961 [temp.deduct]
8963 When all template arguments have been deduced, all uses of
8964 template parameters in nondeduced contexts are replaced with
8965 the corresponding deduced argument values. If the
8966 substitution results in an invalid type, as described above,
8967 type deduction fails. */
8968 if (tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE)
8969 == error_mark_node)
8970 return 1;
8972 return result;
8975 /* Adjust types before performing type deduction, as described in
8976 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
8977 sections are symmetric. PARM is the type of a function parameter
8978 or the return type of the conversion function. ARG is the type of
8979 the argument passed to the call, or the type of the value
8980 initialized with the result of the conversion function. */
8982 static int
8983 maybe_adjust_types_for_deduction (unification_kind_t strict,
8984 tree* parm,
8985 tree* arg)
8987 int result = 0;
8989 switch (strict)
8991 case DEDUCE_CALL:
8992 break;
8994 case DEDUCE_CONV:
8996 /* Swap PARM and ARG throughout the remainder of this
8997 function; the handling is precisely symmetric since PARM
8998 will initialize ARG rather than vice versa. */
8999 tree* temp = parm;
9000 parm = arg;
9001 arg = temp;
9002 break;
9005 case DEDUCE_EXACT:
9006 /* There is nothing to do in this case. */
9007 return 0;
9009 case DEDUCE_ORDER:
9010 /* DR 214. [temp.func.order] is underspecified, and leads to no
9011 ordering between things like `T *' and `T const &' for `U *'.
9012 The former has T=U and the latter T=U*. The former looks more
9013 specialized and John Spicer considers it well-formed (the EDG
9014 compiler accepts it).
9016 John also confirms that deduction should proceed as in a function
9017 call. Which implies the usual ARG and PARM conversions as DEDUCE_CALL.
9018 However, in ordering, ARG can have REFERENCE_TYPE, but no argument
9019 to an actual call can have such a type.
9021 If both ARG and PARM are REFERENCE_TYPE, we change neither.
9022 If only ARG is a REFERENCE_TYPE, we look through that and then
9023 proceed as with DEDUCE_CALL (which could further convert it). */
9024 if (TREE_CODE (*arg) == REFERENCE_TYPE)
9026 if (TREE_CODE (*parm) == REFERENCE_TYPE)
9027 return 0;
9028 *arg = TREE_TYPE (*arg);
9030 break;
9031 default:
9032 abort ();
9035 if (TREE_CODE (*parm) != REFERENCE_TYPE)
9037 /* [temp.deduct.call]
9039 If P is not a reference type:
9041 --If A is an array type, the pointer type produced by the
9042 array-to-pointer standard conversion (_conv.array_) is
9043 used in place of A for type deduction; otherwise,
9045 --If A is a function type, the pointer type produced by
9046 the function-to-pointer standard conversion
9047 (_conv.func_) is used in place of A for type deduction;
9048 otherwise,
9050 --If A is a cv-qualified type, the top level
9051 cv-qualifiers of A's type are ignored for type
9052 deduction. */
9053 if (TREE_CODE (*arg) == ARRAY_TYPE)
9054 *arg = build_pointer_type (TREE_TYPE (*arg));
9055 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
9056 *arg = build_pointer_type (*arg);
9057 else
9058 *arg = TYPE_MAIN_VARIANT (*arg);
9061 /* [temp.deduct.call]
9063 If P is a cv-qualified type, the top level cv-qualifiers
9064 of P's type are ignored for type deduction. If P is a
9065 reference type, the type referred to by P is used for
9066 type deduction. */
9067 *parm = TYPE_MAIN_VARIANT (*parm);
9068 if (TREE_CODE (*parm) == REFERENCE_TYPE)
9070 *parm = TREE_TYPE (*parm);
9071 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
9074 /* DR 322. For conversion deduction, remove a reference type on parm
9075 too (which has been swapped into ARG). */
9076 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
9077 *arg = TREE_TYPE (*arg);
9079 return result;
9082 /* Most parms like fn_type_unification.
9084 If SUBR is 1, we're being called recursively (to unify the
9085 arguments of a function or method parameter of a function
9086 template). */
9088 static int
9089 type_unification_real (tree tparms,
9090 tree targs,
9091 tree xparms,
9092 tree xargs,
9093 int subr,
9094 unification_kind_t strict,
9095 int allow_incomplete,
9096 int xlen)
9098 tree parm, arg;
9099 int i;
9100 int ntparms = TREE_VEC_LENGTH (tparms);
9101 int sub_strict;
9102 int saw_undeduced = 0;
9103 tree parms, args;
9104 int len;
9106 my_friendly_assert (TREE_CODE (tparms) == TREE_VEC, 289);
9107 my_friendly_assert (xparms == NULL_TREE
9108 || TREE_CODE (xparms) == TREE_LIST, 290);
9109 my_friendly_assert (!xargs || TREE_CODE (xargs) == TREE_LIST, 291);
9110 my_friendly_assert (ntparms > 0, 292);
9112 switch (strict)
9114 case DEDUCE_CALL:
9115 sub_strict = (UNIFY_ALLOW_OUTER_LEVEL | UNIFY_ALLOW_MORE_CV_QUAL
9116 | UNIFY_ALLOW_DERIVED);
9117 break;
9119 case DEDUCE_CONV:
9120 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
9121 break;
9123 case DEDUCE_EXACT:
9124 sub_strict = UNIFY_ALLOW_NONE;
9125 break;
9127 case DEDUCE_ORDER:
9128 sub_strict = UNIFY_ALLOW_NONE;
9129 break;
9131 default:
9132 abort ();
9135 if (xlen == 0)
9136 return 0;
9138 again:
9139 parms = xparms;
9140 args = xargs;
9141 len = xlen;
9143 while (parms
9144 && parms != void_list_node
9145 && args
9146 && args != void_list_node)
9148 parm = TREE_VALUE (parms);
9149 parms = TREE_CHAIN (parms);
9150 arg = TREE_VALUE (args);
9151 args = TREE_CHAIN (args);
9153 if (arg == error_mark_node)
9154 return 1;
9155 if (arg == unknown_type_node)
9156 /* We can't deduce anything from this, but we might get all the
9157 template args from other function args. */
9158 continue;
9160 /* Conversions will be performed on a function argument that
9161 corresponds with a function parameter that contains only
9162 non-deducible template parameters and explicitly specified
9163 template parameters. */
9164 if (!uses_template_parms (parm))
9166 tree type;
9168 if (!TYPE_P (arg))
9169 type = TREE_TYPE (arg);
9170 else
9171 type = arg;
9173 if (same_type_p (parm, type))
9174 continue;
9175 if (strict != DEDUCE_EXACT
9176 && can_convert_arg (parm, type, TYPE_P (arg) ? NULL_TREE : arg))
9177 continue;
9179 return 1;
9182 if (!TYPE_P (arg))
9184 my_friendly_assert (TREE_TYPE (arg) != NULL_TREE, 293);
9185 if (type_unknown_p (arg))
9187 /* [temp.deduct.type] A template-argument can be deduced from
9188 a pointer to function or pointer to member function
9189 argument if the set of overloaded functions does not
9190 contain function templates and at most one of a set of
9191 overloaded functions provides a unique match. */
9193 if (resolve_overloaded_unification
9194 (tparms, targs, parm, arg, strict, sub_strict)
9195 != 0)
9196 return 1;
9197 continue;
9199 arg = TREE_TYPE (arg);
9200 if (arg == error_mark_node)
9201 return 1;
9205 int arg_strict = sub_strict;
9207 if (!subr)
9208 arg_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg);
9210 if (unify (tparms, targs, parm, arg, arg_strict))
9211 return 1;
9214 /* Are we done with the interesting parms? */
9215 if (--len == 0)
9216 goto done;
9218 /* Fail if we've reached the end of the parm list, and more args
9219 are present, and the parm list isn't variadic. */
9220 if (args && args != void_list_node && parms == void_list_node)
9221 return 1;
9222 /* Fail if parms are left and they don't have default values. */
9223 if (parms
9224 && parms != void_list_node
9225 && TREE_PURPOSE (parms) == NULL_TREE)
9226 return 1;
9228 done:
9229 if (!subr)
9230 for (i = 0; i < ntparms; i++)
9231 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
9233 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
9235 /* If this is an undeduced nontype parameter that depends on
9236 a type parameter, try another pass; its type may have been
9237 deduced from a later argument than the one from which
9238 this parameter can be deduced. */
9239 if (TREE_CODE (tparm) == PARM_DECL
9240 && uses_template_parms (TREE_TYPE (tparm))
9241 && !saw_undeduced++)
9242 goto again;
9244 if (!allow_incomplete)
9245 error ("incomplete type unification");
9246 return 2;
9248 return 0;
9251 /* Subroutine of type_unification_real. Args are like the variables at the
9252 call site. ARG is an overloaded function (or template-id); we try
9253 deducing template args from each of the overloads, and if only one
9254 succeeds, we go with that. Modifies TARGS and returns 0 on success. */
9256 static int
9257 resolve_overloaded_unification (tree tparms,
9258 tree targs,
9259 tree parm,
9260 tree arg,
9261 unification_kind_t strict,
9262 int sub_strict)
9264 tree tempargs = copy_node (targs);
9265 int good = 0;
9266 bool addr_p;
9268 if (TREE_CODE (arg) == ADDR_EXPR)
9270 arg = TREE_OPERAND (arg, 0);
9271 addr_p = true;
9273 else
9274 addr_p = false;
9276 if (TREE_CODE (arg) == COMPONENT_REF)
9277 /* Handle `&x' where `x' is some static or non-static member
9278 function name. */
9279 arg = TREE_OPERAND (arg, 1);
9281 if (TREE_CODE (arg) == OFFSET_REF)
9282 arg = TREE_OPERAND (arg, 1);
9284 /* Strip baselink information. */
9285 if (BASELINK_P (arg))
9286 arg = BASELINK_FUNCTIONS (arg);
9288 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
9290 /* If we got some explicit template args, we need to plug them into
9291 the affected templates before we try to unify, in case the
9292 explicit args will completely resolve the templates in question. */
9294 tree expl_subargs = TREE_OPERAND (arg, 1);
9295 arg = TREE_OPERAND (arg, 0);
9297 for (; arg; arg = OVL_NEXT (arg))
9299 tree fn = OVL_CURRENT (arg);
9300 tree subargs, elem;
9302 if (TREE_CODE (fn) != TEMPLATE_DECL)
9303 continue;
9305 subargs = get_bindings_overload (fn, DECL_TEMPLATE_RESULT (fn),
9306 expl_subargs);
9307 if (subargs)
9309 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
9310 good += try_one_overload (tparms, targs, tempargs, parm,
9311 elem, strict, sub_strict, addr_p);
9315 else if (TREE_CODE (arg) == OVERLOAD
9316 || TREE_CODE (arg) == FUNCTION_DECL)
9318 for (; arg; arg = OVL_NEXT (arg))
9319 good += try_one_overload (tparms, targs, tempargs, parm,
9320 TREE_TYPE (OVL_CURRENT (arg)),
9321 strict, sub_strict, addr_p);
9323 else
9324 abort ();
9326 /* [temp.deduct.type] A template-argument can be deduced from a pointer
9327 to function or pointer to member function argument if the set of
9328 overloaded functions does not contain function templates and at most
9329 one of a set of overloaded functions provides a unique match.
9331 So if we found multiple possibilities, we return success but don't
9332 deduce anything. */
9334 if (good == 1)
9336 int i = TREE_VEC_LENGTH (targs);
9337 for (; i--; )
9338 if (TREE_VEC_ELT (tempargs, i))
9339 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
9341 if (good)
9342 return 0;
9344 return 1;
9347 /* Subroutine of resolve_overloaded_unification; does deduction for a single
9348 overload. Fills TARGS with any deduced arguments, or error_mark_node if
9349 different overloads deduce different arguments for a given parm.
9350 ADDR_P is true if the expression for which deduction is being
9351 performed was of the form "& fn" rather than simply "fn".
9353 Returns 1 on success. */
9355 static int
9356 try_one_overload (tree tparms,
9357 tree orig_targs,
9358 tree targs,
9359 tree parm,
9360 tree arg,
9361 unification_kind_t strict,
9362 int sub_strict,
9363 bool addr_p)
9365 int nargs;
9366 tree tempargs;
9367 int i;
9369 /* [temp.deduct.type] A template-argument can be deduced from a pointer
9370 to function or pointer to member function argument if the set of
9371 overloaded functions does not contain function templates and at most
9372 one of a set of overloaded functions provides a unique match.
9374 So if this is a template, just return success. */
9376 if (uses_template_parms (arg))
9377 return 1;
9379 if (TREE_CODE (arg) == METHOD_TYPE)
9380 arg = build_ptrmemfunc_type (build_pointer_type (arg));
9381 else if (addr_p)
9382 arg = build_pointer_type (arg);
9384 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg);
9386 /* We don't copy orig_targs for this because if we have already deduced
9387 some template args from previous args, unify would complain when we
9388 try to deduce a template parameter for the same argument, even though
9389 there isn't really a conflict. */
9390 nargs = TREE_VEC_LENGTH (targs);
9391 tempargs = make_tree_vec (nargs);
9393 if (unify (tparms, tempargs, parm, arg, sub_strict) != 0)
9394 return 0;
9396 /* First make sure we didn't deduce anything that conflicts with
9397 explicitly specified args. */
9398 for (i = nargs; i--; )
9400 tree elt = TREE_VEC_ELT (tempargs, i);
9401 tree oldelt = TREE_VEC_ELT (orig_targs, i);
9403 if (elt == NULL_TREE)
9404 continue;
9405 else if (uses_template_parms (elt))
9407 /* Since we're unifying against ourselves, we will fill in template
9408 args used in the function parm list with our own template parms.
9409 Discard them. */
9410 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
9411 continue;
9413 else if (oldelt && ! template_args_equal (oldelt, elt))
9414 return 0;
9417 for (i = nargs; i--; )
9419 tree elt = TREE_VEC_ELT (tempargs, i);
9421 if (elt)
9422 TREE_VEC_ELT (targs, i) = elt;
9425 return 1;
9428 /* Verify that nondeduce template argument agrees with the type
9429 obtained from argument deduction. Return nonzero if the
9430 verification fails.
9432 For example:
9434 struct A { typedef int X; };
9435 template <class T, class U> struct C {};
9436 template <class T> struct C<T, typename T::X> {};
9438 Then with the instantiation `C<A, int>', we can deduce that
9439 `T' is `A' but unify () does not check whether `typename T::X'
9440 is `int'. This function ensure that they agree.
9442 TARGS, PARMS are the same as the arguments of unify.
9443 ARGS contains template arguments from all levels. */
9445 static int
9446 verify_class_unification (tree targs, tree parms, tree args)
9448 parms = tsubst (parms, add_outermost_template_args (args, targs),
9449 tf_none, NULL_TREE);
9450 if (parms == error_mark_node)
9451 return 1;
9453 return !comp_template_args (parms, INNERMOST_TEMPLATE_ARGS (args));
9456 /* PARM is a template class (perhaps with unbound template
9457 parameters). ARG is a fully instantiated type. If ARG can be
9458 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
9459 TARGS are as for unify. */
9461 static tree
9462 try_class_unification (tree tparms, tree targs, tree parm, tree arg)
9464 tree copy_of_targs;
9466 if (!CLASSTYPE_TEMPLATE_INFO (arg)
9467 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
9468 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
9469 return NULL_TREE;
9471 /* We need to make a new template argument vector for the call to
9472 unify. If we used TARGS, we'd clutter it up with the result of
9473 the attempted unification, even if this class didn't work out.
9474 We also don't want to commit ourselves to all the unifications
9475 we've already done, since unification is supposed to be done on
9476 an argument-by-argument basis. In other words, consider the
9477 following pathological case:
9479 template <int I, int J, int K>
9480 struct S {};
9482 template <int I, int J>
9483 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
9485 template <int I, int J, int K>
9486 void f(S<I, J, K>, S<I, I, I>);
9488 void g() {
9489 S<0, 0, 0> s0;
9490 S<0, 1, 2> s2;
9492 f(s0, s2);
9495 Now, by the time we consider the unification involving `s2', we
9496 already know that we must have `f<0, 0, 0>'. But, even though
9497 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
9498 because there are two ways to unify base classes of S<0, 1, 2>
9499 with S<I, I, I>. If we kept the already deduced knowledge, we
9500 would reject the possibility I=1. */
9501 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
9503 /* If unification failed, we're done. */
9504 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
9505 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE))
9506 return NULL_TREE;
9508 return arg;
9511 /* Subroutine of get_template_base. RVAL, if non-NULL, is a base we
9512 have already discovered to be satisfactory. ARG_BINFO is the binfo
9513 for the base class of ARG that we are currently examining. */
9515 static tree
9516 get_template_base_recursive (tree tparms,
9517 tree targs,
9518 tree parm,
9519 tree arg_binfo,
9520 tree rval,
9521 int flags)
9523 tree binfos;
9524 int i, n_baselinks;
9525 tree arg = BINFO_TYPE (arg_binfo);
9527 if (!(flags & GTB_IGNORE_TYPE))
9529 tree r = try_class_unification (tparms, targs,
9530 parm, arg);
9532 /* If there is more than one satisfactory baseclass, then:
9534 [temp.deduct.call]
9536 If they yield more than one possible deduced A, the type
9537 deduction fails.
9539 applies. */
9540 if (r && rval && !same_type_p (r, rval))
9541 return error_mark_node;
9542 else if (r)
9543 rval = r;
9546 binfos = BINFO_BASETYPES (arg_binfo);
9547 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
9549 /* Process base types. */
9550 for (i = 0; i < n_baselinks; i++)
9552 tree base_binfo = TREE_VEC_ELT (binfos, i);
9553 int this_virtual;
9555 /* Skip this base, if we've already seen it. */
9556 if (BINFO_MARKED (base_binfo))
9557 continue;
9559 this_virtual =
9560 (flags & GTB_VIA_VIRTUAL) || TREE_VIA_VIRTUAL (base_binfo);
9562 /* When searching for a non-virtual, we cannot mark virtually
9563 found binfos. */
9564 if (! this_virtual)
9565 BINFO_MARKED (base_binfo) = 1;
9567 rval = get_template_base_recursive (tparms, targs,
9568 parm,
9569 base_binfo,
9570 rval,
9571 GTB_VIA_VIRTUAL * this_virtual);
9573 /* If we discovered more than one matching base class, we can
9574 stop now. */
9575 if (rval == error_mark_node)
9576 return error_mark_node;
9579 return rval;
9582 /* Given a template type PARM and a class type ARG, find the unique
9583 base type in ARG that is an instance of PARM. We do not examine
9584 ARG itself; only its base-classes. If there is no appropriate base
9585 class, return NULL_TREE. If there is more than one, return
9586 error_mark_node. PARM may be the type of a partial specialization,
9587 as well as a plain template type. Used by unify. */
9589 static tree
9590 get_template_base (tree tparms, tree targs, tree parm, tree arg)
9592 tree rval;
9593 tree arg_binfo;
9595 my_friendly_assert (IS_AGGR_TYPE_CODE (TREE_CODE (arg)), 92);
9597 arg_binfo = TYPE_BINFO (complete_type (arg));
9598 rval = get_template_base_recursive (tparms, targs,
9599 parm, arg_binfo,
9600 NULL_TREE,
9601 GTB_IGNORE_TYPE);
9603 /* Since get_template_base_recursive marks the bases classes, we
9604 must unmark them here. */
9605 dfs_walk (arg_binfo, dfs_unmark, markedp, 0);
9607 return rval;
9610 /* Returns the level of DECL, which declares a template parameter. */
9612 static int
9613 template_decl_level (tree decl)
9615 switch (TREE_CODE (decl))
9617 case TYPE_DECL:
9618 case TEMPLATE_DECL:
9619 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
9621 case PARM_DECL:
9622 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
9624 default:
9625 abort ();
9626 return 0;
9630 /* Decide whether ARG can be unified with PARM, considering only the
9631 cv-qualifiers of each type, given STRICT as documented for unify.
9632 Returns nonzero iff the unification is OK on that basis. */
9634 static int
9635 check_cv_quals_for_unify (int strict, tree arg, tree parm)
9637 int arg_quals = cp_type_quals (arg);
9638 int parm_quals = cp_type_quals (parm);
9640 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
9641 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
9643 /* Although a CVR qualifier is ignored when being applied to a
9644 substituted template parameter ([8.3.2]/1 for example), that
9645 does not apply during deduction [14.8.2.4]/1, (even though
9646 that is not explicitly mentioned, [14.8.2.4]/9 indicates
9647 this). Except when we're allowing additional CV qualifiers
9648 at the outer level [14.8.2.1]/3,1st bullet. */
9649 if ((TREE_CODE (arg) == REFERENCE_TYPE
9650 || TREE_CODE (arg) == FUNCTION_TYPE
9651 || TREE_CODE (arg) == METHOD_TYPE)
9652 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
9653 return 0;
9655 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
9656 && (parm_quals & TYPE_QUAL_RESTRICT))
9657 return 0;
9660 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
9661 && (arg_quals & parm_quals) != parm_quals)
9662 return 0;
9664 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
9665 && (parm_quals & arg_quals) != arg_quals)
9666 return 0;
9668 return 1;
9671 /* Takes parameters as for type_unification. Returns 0 if the
9672 type deduction succeeds, 1 otherwise. The parameter STRICT is a
9673 bitwise or of the following flags:
9675 UNIFY_ALLOW_NONE:
9676 Require an exact match between PARM and ARG.
9677 UNIFY_ALLOW_MORE_CV_QUAL:
9678 Allow the deduced ARG to be more cv-qualified (by qualification
9679 conversion) than ARG.
9680 UNIFY_ALLOW_LESS_CV_QUAL:
9681 Allow the deduced ARG to be less cv-qualified than ARG.
9682 UNIFY_ALLOW_DERIVED:
9683 Allow the deduced ARG to be a template base class of ARG,
9684 or a pointer to a template base class of the type pointed to by
9685 ARG.
9686 UNIFY_ALLOW_INTEGER:
9687 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
9688 case for more information.
9689 UNIFY_ALLOW_OUTER_LEVEL:
9690 This is the outermost level of a deduction. Used to determine validity
9691 of qualification conversions. A valid qualification conversion must
9692 have const qualified pointers leading up to the inner type which
9693 requires additional CV quals, except at the outer level, where const
9694 is not required [conv.qual]. It would be normal to set this flag in
9695 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
9696 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
9697 This is the outermost level of a deduction, and PARM can be more CV
9698 qualified at this point.
9699 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
9700 This is the outermost level of a deduction, and PARM can be less CV
9701 qualified at this point.
9702 UNIFY_ALLOW_MAX_CORRECTION:
9703 This is an INTEGER_TYPE's maximum value. Used if the range may
9704 have been derived from a size specification, such as an array size.
9705 If the size was given by a nontype template parameter N, the maximum
9706 value will have the form N-1. The flag says that we can (and indeed
9707 must) unify N with (ARG + 1), an exception to the normal rules on
9708 folding PARM. */
9710 static int
9711 unify (tree tparms, tree targs, tree parm, tree arg, int strict)
9713 int idx;
9714 tree targ;
9715 tree tparm;
9716 int strict_in = strict;
9718 /* I don't think this will do the right thing with respect to types.
9719 But the only case I've seen it in so far has been array bounds, where
9720 signedness is the only information lost, and I think that will be
9721 okay. */
9722 while (TREE_CODE (parm) == NOP_EXPR)
9723 parm = TREE_OPERAND (parm, 0);
9725 if (arg == error_mark_node)
9726 return 1;
9727 if (arg == unknown_type_node)
9728 /* We can't deduce anything from this, but we might get all the
9729 template args from other function args. */
9730 return 0;
9732 /* If PARM uses template parameters, then we can't bail out here,
9733 even if ARG == PARM, since we won't record unifications for the
9734 template parameters. We might need them if we're trying to
9735 figure out which of two things is more specialized. */
9736 if (arg == parm && !uses_template_parms (parm))
9737 return 0;
9739 /* Immediately reject some pairs that won't unify because of
9740 cv-qualification mismatches. */
9741 if (TREE_CODE (arg) == TREE_CODE (parm)
9742 && TYPE_P (arg)
9743 /* It is the elements of the array which hold the cv quals of an array
9744 type, and the elements might be template type parms. We'll check
9745 when we recurse. */
9746 && TREE_CODE (arg) != ARRAY_TYPE
9747 /* We check the cv-qualifiers when unifying with template type
9748 parameters below. We want to allow ARG `const T' to unify with
9749 PARM `T' for example, when computing which of two templates
9750 is more specialized, for example. */
9751 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
9752 && !check_cv_quals_for_unify (strict_in, arg, parm))
9753 return 1;
9755 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
9756 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
9757 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
9758 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
9759 strict &= ~UNIFY_ALLOW_DERIVED;
9760 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
9761 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
9762 strict &= ~UNIFY_ALLOW_MAX_CORRECTION;
9764 switch (TREE_CODE (parm))
9766 case TYPENAME_TYPE:
9767 case SCOPE_REF:
9768 case UNBOUND_CLASS_TEMPLATE:
9769 /* In a type which contains a nested-name-specifier, template
9770 argument values cannot be deduced for template parameters used
9771 within the nested-name-specifier. */
9772 return 0;
9774 case TEMPLATE_TYPE_PARM:
9775 case TEMPLATE_TEMPLATE_PARM:
9776 case BOUND_TEMPLATE_TEMPLATE_PARM:
9777 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
9779 if (TEMPLATE_TYPE_LEVEL (parm)
9780 != template_decl_level (tparm))
9781 /* The PARM is not one we're trying to unify. Just check
9782 to see if it matches ARG. */
9783 return (TREE_CODE (arg) == TREE_CODE (parm)
9784 && same_type_p (parm, arg)) ? 0 : 1;
9785 idx = TEMPLATE_TYPE_IDX (parm);
9786 targ = TREE_VEC_ELT (targs, idx);
9787 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
9789 /* Check for mixed types and values. */
9790 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
9791 && TREE_CODE (tparm) != TYPE_DECL)
9792 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
9793 && TREE_CODE (tparm) != TEMPLATE_DECL))
9794 return 1;
9796 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
9798 /* ARG must be constructed from a template class or a template
9799 template parameter. */
9800 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
9801 && (TREE_CODE (arg) != RECORD_TYPE || !CLASSTYPE_TEMPLATE_INFO (arg)))
9802 return 1;
9805 tree parmtmpl = TYPE_TI_TEMPLATE (parm);
9806 tree parmvec = TYPE_TI_ARGS (parm);
9807 tree argvec = TYPE_TI_ARGS (arg);
9808 tree argtmplvec
9809 = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_TI_TEMPLATE (arg));
9810 int i;
9812 /* The parameter and argument roles have to be switched here
9813 in order to handle default arguments properly. For example,
9814 template<template <class> class TT> void f(TT<int>)
9815 should be able to accept vector<int> which comes from
9816 template <class T, class Allocator = allocator>
9817 class vector. */
9819 if (coerce_template_parms (argtmplvec, parmvec, parmtmpl, 0, 1)
9820 == error_mark_node)
9821 return 1;
9823 /* Deduce arguments T, i from TT<T> or TT<i>.
9824 We check each element of PARMVEC and ARGVEC individually
9825 rather than the whole TREE_VEC since they can have
9826 different number of elements. */
9828 for (i = 0; i < TREE_VEC_LENGTH (parmvec); ++i)
9830 tree t = TREE_VEC_ELT (parmvec, i);
9832 if (unify (tparms, targs, t,
9833 TREE_VEC_ELT (argvec, i),
9834 UNIFY_ALLOW_NONE))
9835 return 1;
9838 arg = TYPE_TI_TEMPLATE (arg);
9840 /* Fall through to deduce template name. */
9843 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
9844 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
9846 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
9848 /* Simple cases: Value already set, does match or doesn't. */
9849 if (targ != NULL_TREE && template_args_equal (targ, arg))
9850 return 0;
9851 else if (targ)
9852 return 1;
9854 else
9856 /* If PARM is `const T' and ARG is only `int', we don't have
9857 a match unless we are allowing additional qualification.
9858 If ARG is `const int' and PARM is just `T' that's OK;
9859 that binds `const int' to `T'. */
9860 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
9861 arg, parm))
9862 return 1;
9864 /* Consider the case where ARG is `const volatile int' and
9865 PARM is `const T'. Then, T should be `volatile int'. */
9866 arg = cp_build_qualified_type_real
9867 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
9868 if (arg == error_mark_node)
9869 return 1;
9871 /* Simple cases: Value already set, does match or doesn't. */
9872 if (targ != NULL_TREE && same_type_p (targ, arg))
9873 return 0;
9874 else if (targ)
9875 return 1;
9877 /* Make sure that ARG is not a variable-sized array. (Note
9878 that were talking about variable-sized arrays (like
9879 `int[n]'), rather than arrays of unknown size (like
9880 `int[]').) We'll get very confused by such a type since
9881 the bound of the array will not be computable in an
9882 instantiation. Besides, such types are not allowed in
9883 ISO C++, so we can do as we please here. */
9884 if (variably_modified_type_p (arg))
9885 return 1;
9888 TREE_VEC_ELT (targs, idx) = arg;
9889 return 0;
9891 case TEMPLATE_PARM_INDEX:
9892 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
9894 if (TEMPLATE_PARM_LEVEL (parm)
9895 != template_decl_level (tparm))
9896 /* The PARM is not one we're trying to unify. Just check
9897 to see if it matches ARG. */
9898 return !(TREE_CODE (arg) == TREE_CODE (parm)
9899 && cp_tree_equal (parm, arg));
9901 idx = TEMPLATE_PARM_IDX (parm);
9902 targ = TREE_VEC_ELT (targs, idx);
9904 if (targ)
9905 return !cp_tree_equal (targ, arg);
9907 /* [temp.deduct.type] If, in the declaration of a function template
9908 with a non-type template-parameter, the non-type
9909 template-parameter is used in an expression in the function
9910 parameter-list and, if the corresponding template-argument is
9911 deduced, the template-argument type shall match the type of the
9912 template-parameter exactly, except that a template-argument
9913 deduced from an array bound may be of any integral type.
9914 The non-type parameter might use already deduced type parameters. */
9915 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
9916 if (!TREE_TYPE (arg))
9917 /* Template-parameter dependent expression. Just accept it for now.
9918 It will later be processed in convert_template_argument. */
9920 else if (same_type_p (TREE_TYPE (arg), tparm))
9921 /* OK */;
9922 else if ((strict & UNIFY_ALLOW_INTEGER)
9923 && (TREE_CODE (tparm) == INTEGER_TYPE
9924 || TREE_CODE (tparm) == BOOLEAN_TYPE))
9925 /* Convert the ARG to the type of PARM; the deduced non-type
9926 template argument must exactly match the types of the
9927 corresponding parameter. */
9928 arg = fold (build_nop (TREE_TYPE (parm), arg));
9929 else if (uses_template_parms (tparm))
9930 /* We haven't deduced the type of this parameter yet. Try again
9931 later. */
9932 return 0;
9933 else
9934 return 1;
9936 TREE_VEC_ELT (targs, idx) = arg;
9937 return 0;
9939 case PTRMEM_CST:
9941 /* A pointer-to-member constant can be unified only with
9942 another constant. */
9943 if (TREE_CODE (arg) != PTRMEM_CST)
9944 return 1;
9946 /* Just unify the class member. It would be useless (and possibly
9947 wrong, depending on the strict flags) to unify also
9948 PTRMEM_CST_CLASS, because we want to be sure that both parm and
9949 arg refer to the same variable, even if through different
9950 classes. For instance:
9952 struct A { int x; };
9953 struct B : A { };
9955 Unification of &A::x and &B::x must succeed. */
9956 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
9957 PTRMEM_CST_MEMBER (arg), strict);
9960 case POINTER_TYPE:
9962 if (TREE_CODE (arg) != POINTER_TYPE)
9963 return 1;
9965 /* [temp.deduct.call]
9967 A can be another pointer or pointer to member type that can
9968 be converted to the deduced A via a qualification
9969 conversion (_conv.qual_).
9971 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
9972 This will allow for additional cv-qualification of the
9973 pointed-to types if appropriate. */
9975 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
9976 /* The derived-to-base conversion only persists through one
9977 level of pointers. */
9978 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
9980 return unify (tparms, targs, TREE_TYPE (parm),
9981 TREE_TYPE (arg), strict);
9984 case REFERENCE_TYPE:
9985 if (TREE_CODE (arg) != REFERENCE_TYPE)
9986 return 1;
9987 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
9988 strict & UNIFY_ALLOW_MORE_CV_QUAL);
9990 case ARRAY_TYPE:
9991 if (TREE_CODE (arg) != ARRAY_TYPE)
9992 return 1;
9993 if ((TYPE_DOMAIN (parm) == NULL_TREE)
9994 != (TYPE_DOMAIN (arg) == NULL_TREE))
9995 return 1;
9996 if (TYPE_DOMAIN (parm) != NULL_TREE
9997 && unify (tparms, targs, TYPE_DOMAIN (parm),
9998 TYPE_DOMAIN (arg), UNIFY_ALLOW_NONE) != 0)
9999 return 1;
10000 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
10001 strict & UNIFY_ALLOW_MORE_CV_QUAL);
10003 case REAL_TYPE:
10004 case COMPLEX_TYPE:
10005 case VECTOR_TYPE:
10006 case INTEGER_TYPE:
10007 case BOOLEAN_TYPE:
10008 case ENUMERAL_TYPE:
10009 case VOID_TYPE:
10010 if (TREE_CODE (arg) != TREE_CODE (parm))
10011 return 1;
10013 if (TREE_CODE (parm) == INTEGER_TYPE
10014 && TREE_CODE (TYPE_MAX_VALUE (parm)) != INTEGER_CST)
10016 if (TYPE_MIN_VALUE (parm) && TYPE_MIN_VALUE (arg)
10017 && unify (tparms, targs, TYPE_MIN_VALUE (parm),
10018 TYPE_MIN_VALUE (arg), UNIFY_ALLOW_INTEGER))
10019 return 1;
10020 if (TYPE_MAX_VALUE (parm) && TYPE_MAX_VALUE (arg)
10021 && unify (tparms, targs, TYPE_MAX_VALUE (parm),
10022 TYPE_MAX_VALUE (arg),
10023 UNIFY_ALLOW_INTEGER | UNIFY_ALLOW_MAX_CORRECTION))
10024 return 1;
10026 /* We have already checked cv-qualification at the top of the
10027 function. */
10028 else if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
10029 return 1;
10031 /* As far as unification is concerned, this wins. Later checks
10032 will invalidate it if necessary. */
10033 return 0;
10035 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
10036 /* Type INTEGER_CST can come from ordinary constant template args. */
10037 case INTEGER_CST:
10038 while (TREE_CODE (arg) == NOP_EXPR)
10039 arg = TREE_OPERAND (arg, 0);
10041 if (TREE_CODE (arg) != INTEGER_CST)
10042 return 1;
10043 return !tree_int_cst_equal (parm, arg);
10045 case TREE_VEC:
10047 int i;
10048 if (TREE_CODE (arg) != TREE_VEC)
10049 return 1;
10050 if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
10051 return 1;
10052 for (i = 0; i < TREE_VEC_LENGTH (parm); ++i)
10053 if (unify (tparms, targs,
10054 TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
10055 UNIFY_ALLOW_NONE))
10056 return 1;
10057 return 0;
10060 case RECORD_TYPE:
10061 case UNION_TYPE:
10062 if (TREE_CODE (arg) != TREE_CODE (parm))
10063 return 1;
10065 if (TYPE_PTRMEMFUNC_P (parm))
10067 if (!TYPE_PTRMEMFUNC_P (arg))
10068 return 1;
10070 return unify (tparms, targs,
10071 TYPE_PTRMEMFUNC_FN_TYPE (parm),
10072 TYPE_PTRMEMFUNC_FN_TYPE (arg),
10073 strict);
10076 if (CLASSTYPE_TEMPLATE_INFO (parm))
10078 tree t = NULL_TREE;
10080 if (strict_in & UNIFY_ALLOW_DERIVED)
10082 /* First, we try to unify the PARM and ARG directly. */
10083 t = try_class_unification (tparms, targs,
10084 parm, arg);
10086 if (!t)
10088 /* Fallback to the special case allowed in
10089 [temp.deduct.call]:
10091 If P is a class, and P has the form
10092 template-id, then A can be a derived class of
10093 the deduced A. Likewise, if P is a pointer to
10094 a class of the form template-id, A can be a
10095 pointer to a derived class pointed to by the
10096 deduced A. */
10097 t = get_template_base (tparms, targs,
10098 parm, arg);
10100 if (! t || t == error_mark_node)
10101 return 1;
10104 else if (CLASSTYPE_TEMPLATE_INFO (arg)
10105 && (CLASSTYPE_TI_TEMPLATE (parm)
10106 == CLASSTYPE_TI_TEMPLATE (arg)))
10107 /* Perhaps PARM is something like S<U> and ARG is S<int>.
10108 Then, we should unify `int' and `U'. */
10109 t = arg;
10110 else
10111 /* There's no chance of unification succeeding. */
10112 return 1;
10114 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
10115 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE);
10117 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
10118 return 1;
10119 return 0;
10121 case METHOD_TYPE:
10122 case FUNCTION_TYPE:
10123 if (TREE_CODE (arg) != TREE_CODE (parm))
10124 return 1;
10126 if (unify (tparms, targs, TREE_TYPE (parm),
10127 TREE_TYPE (arg), UNIFY_ALLOW_NONE))
10128 return 1;
10129 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
10130 TYPE_ARG_TYPES (arg), 1,
10131 DEDUCE_EXACT, 0, -1);
10133 case OFFSET_TYPE:
10134 if (TREE_CODE (arg) != OFFSET_TYPE)
10135 return 1;
10136 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
10137 TYPE_OFFSET_BASETYPE (arg), UNIFY_ALLOW_NONE))
10138 return 1;
10139 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
10140 strict);
10142 case CONST_DECL:
10143 if (DECL_TEMPLATE_PARM_P (parm))
10144 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict);
10145 if (arg != decl_constant_value (parm))
10146 return 1;
10147 return 0;
10149 case FIELD_DECL:
10150 case TEMPLATE_DECL:
10151 /* Matched cases are handled by the ARG == PARM test above. */
10152 return 1;
10154 case MINUS_EXPR:
10155 if (tree_int_cst_equal (TREE_OPERAND (parm, 1), integer_one_node)
10156 && (strict_in & UNIFY_ALLOW_MAX_CORRECTION))
10158 /* We handle this case specially, since it comes up with
10159 arrays. In particular, something like:
10161 template <int N> void f(int (&x)[N]);
10163 Here, we are trying to unify the range type, which
10164 looks like [0 ... (N - 1)]. */
10165 tree t, t1, t2;
10166 t1 = TREE_OPERAND (parm, 0);
10167 t2 = TREE_OPERAND (parm, 1);
10169 t = fold (build (PLUS_EXPR, integer_type_node, arg, t2));
10171 return unify (tparms, targs, t1, t, strict);
10173 /* Else fall through. */
10175 default:
10176 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (parm))))
10179 /* We're looking at an expression. This can happen with
10180 something like:
10182 template <int I>
10183 void foo(S<I>, S<I + 2>);
10185 This is a "nondeduced context":
10187 [deduct.type]
10189 The nondeduced contexts are:
10191 --A type that is a template-id in which one or more of
10192 the template-arguments is an expression that references
10193 a template-parameter.
10195 In these cases, we assume deduction succeeded, but don't
10196 actually infer any unifications. */
10198 if (!uses_template_parms (parm)
10199 && !template_args_equal (parm, arg))
10200 return 1;
10201 else
10202 return 0;
10204 sorry ("use of `%s' in template type unification",
10205 tree_code_name [(int) TREE_CODE (parm)]);
10206 return 1;
10210 /* Called if RESULT is explicitly instantiated, or is a member of an
10211 explicitly instantiated class, or if using -frepo and the
10212 instantiation of RESULT has been assigned to this file. */
10214 void
10215 mark_decl_instantiated (tree result, int extern_p)
10217 /* We used to set this unconditionally; we moved that to
10218 do_decl_instantiation so it wouldn't get set on members of
10219 explicit class template instantiations. But we still need to set
10220 it here for the 'extern template' case in order to suppress
10221 implicit instantiations. */
10222 if (extern_p)
10223 SET_DECL_EXPLICIT_INSTANTIATION (result);
10225 /* If this entity has already been written out, it's too late to
10226 make any modifications. */
10227 if (TREE_ASM_WRITTEN (result))
10228 return;
10230 if (TREE_CODE (result) != FUNCTION_DECL)
10231 /* The TREE_PUBLIC flag for function declarations will have been
10232 set correctly by tsubst. */
10233 TREE_PUBLIC (result) = 1;
10235 /* This might have been set by an earlier implicit instantiation. */
10236 DECL_COMDAT (result) = 0;
10238 if (! extern_p)
10240 DECL_INTERFACE_KNOWN (result) = 1;
10241 DECL_NOT_REALLY_EXTERN (result) = 1;
10243 /* Always make artificials weak. */
10244 if (DECL_ARTIFICIAL (result) && flag_weak)
10245 comdat_linkage (result);
10246 /* For WIN32 we also want to put explicit instantiations in
10247 linkonce sections. */
10248 else if (TREE_PUBLIC (result))
10249 maybe_make_one_only (result);
10252 if (TREE_CODE (result) == FUNCTION_DECL)
10253 defer_fn (result);
10256 /* Given two function templates PAT1 and PAT2, return:
10258 DEDUCE should be DEDUCE_EXACT or DEDUCE_ORDER.
10260 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
10261 -1 if PAT2 is more specialized than PAT1.
10262 0 if neither is more specialized.
10264 LEN is passed through to fn_type_unification. */
10267 more_specialized (tree pat1, tree pat2, int deduce, int len)
10269 tree targs;
10270 int winner = 0;
10272 /* If template argument deduction succeeds, we substitute the
10273 resulting arguments into non-deduced contexts. While doing that,
10274 we must be aware that we may encounter dependent types. */
10275 ++processing_template_decl;
10276 targs = get_bindings_real (pat1, DECL_TEMPLATE_RESULT (pat2),
10277 NULL_TREE, 0, deduce, len);
10278 if (targs)
10279 --winner;
10281 targs = get_bindings_real (pat2, DECL_TEMPLATE_RESULT (pat1),
10282 NULL_TREE, 0, deduce, len);
10283 if (targs)
10284 ++winner;
10285 --processing_template_decl;
10287 return winner;
10290 /* Given two class template specialization list nodes PAT1 and PAT2, return:
10292 1 if PAT1 is more specialized than PAT2 as described in [temp.class.order].
10293 -1 if PAT2 is more specialized than PAT1.
10294 0 if neither is more specialized.
10296 FULL_ARGS is the full set of template arguments that triggers this
10297 partial ordering. */
10300 more_specialized_class (tree pat1, tree pat2, tree full_args)
10302 tree targs;
10303 int winner = 0;
10305 /* Just like what happens for functions, if we are ordering between
10306 different class template specializations, we may encounter dependent
10307 types in the arguments, and we need our dependency check functions
10308 to behave correctly. */
10309 ++processing_template_decl;
10310 targs = get_class_bindings (TREE_VALUE (pat1), TREE_PURPOSE (pat1),
10311 add_outermost_template_args (full_args, TREE_PURPOSE (pat2)));
10312 if (targs)
10313 --winner;
10315 targs = get_class_bindings (TREE_VALUE (pat2), TREE_PURPOSE (pat2),
10316 add_outermost_template_args (full_args, TREE_PURPOSE (pat1)));
10317 if (targs)
10318 ++winner;
10319 --processing_template_decl;
10321 return winner;
10324 /* Return the template arguments that will produce the function signature
10325 DECL from the function template FN, with the explicit template
10326 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is 1, the return type must
10327 also match. Return NULL_TREE if no satisfactory arguments could be
10328 found. DEDUCE and LEN are passed through to fn_type_unification. */
10330 static tree
10331 get_bindings_real (tree fn,
10332 tree decl,
10333 tree explicit_args,
10334 int check_rettype,
10335 int deduce,
10336 int len)
10338 int ntparms = DECL_NTPARMS (fn);
10339 tree targs = make_tree_vec (ntparms);
10340 tree decl_type;
10341 tree decl_arg_types;
10342 int i;
10344 /* Substitute the explicit template arguments into the type of DECL.
10345 The call to fn_type_unification will handle substitution into the
10346 FN. */
10347 decl_type = TREE_TYPE (decl);
10348 if (explicit_args && uses_template_parms (decl_type))
10350 tree tmpl;
10351 tree converted_args;
10353 if (DECL_TEMPLATE_INFO (decl))
10354 tmpl = DECL_TI_TEMPLATE (decl);
10355 else
10356 /* We can get here for some invalid specializations. */
10357 return NULL_TREE;
10359 converted_args
10360 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
10361 explicit_args, NULL_TREE,
10362 tf_none, /*require_all_arguments=*/0));
10363 if (converted_args == error_mark_node)
10364 return NULL_TREE;
10366 decl_type = tsubst (decl_type, converted_args, tf_none, NULL_TREE);
10367 if (decl_type == error_mark_node)
10368 return NULL_TREE;
10371 decl_arg_types = TYPE_ARG_TYPES (decl_type);
10372 /* Never do unification on the 'this' parameter. */
10373 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
10374 decl_arg_types = TREE_CHAIN (decl_arg_types);
10376 i = fn_type_unification (fn, explicit_args, targs,
10377 decl_arg_types,
10378 (check_rettype || DECL_CONV_FN_P (fn)
10379 ? TREE_TYPE (decl_type) : NULL_TREE),
10380 deduce, len);
10382 if (i != 0)
10383 return NULL_TREE;
10385 return targs;
10388 /* For most uses, we want to check the return type. */
10390 static tree
10391 get_bindings (tree fn, tree decl, tree explicit_args)
10393 return get_bindings_real (fn, decl, explicit_args, 1, DEDUCE_EXACT, -1);
10396 /* But for resolve_overloaded_unification, we only care about the parameter
10397 types. */
10399 static tree
10400 get_bindings_overload (tree fn, tree decl, tree explicit_args)
10402 return get_bindings_real (fn, decl, explicit_args, 0, DEDUCE_EXACT, -1);
10405 /* Return the innermost template arguments that, when applied to a
10406 template specialization whose innermost template parameters are
10407 TPARMS, and whose specialization arguments are PARMS, yield the
10408 ARGS.
10410 For example, suppose we have:
10412 template <class T, class U> struct S {};
10413 template <class T> struct S<T*, int> {};
10415 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
10416 {T}, the PARMS will be {T*, int} and the ARGS will be {double*,
10417 int}. The resulting vector will be {double}, indicating that `T'
10418 is bound to `double'. */
10420 static tree
10421 get_class_bindings (tree tparms, tree parms, tree args)
10423 int i, ntparms = TREE_VEC_LENGTH (tparms);
10424 tree vec = make_tree_vec (ntparms);
10426 if (unify (tparms, vec, parms, INNERMOST_TEMPLATE_ARGS (args),
10427 UNIFY_ALLOW_NONE))
10428 return NULL_TREE;
10430 for (i = 0; i < ntparms; ++i)
10431 if (! TREE_VEC_ELT (vec, i))
10432 return NULL_TREE;
10434 if (verify_class_unification (vec, parms, args))
10435 return NULL_TREE;
10437 return vec;
10440 /* In INSTANTIATIONS is a list of <INSTANTIATION, TEMPLATE> pairs.
10441 Pick the most specialized template, and return the corresponding
10442 instantiation, or if there is no corresponding instantiation, the
10443 template itself. If there is no most specialized template,
10444 error_mark_node is returned. If there are no templates at all,
10445 NULL_TREE is returned. */
10447 tree
10448 most_specialized_instantiation (tree instantiations)
10450 tree fn, champ;
10451 int fate;
10453 if (!instantiations)
10454 return NULL_TREE;
10456 champ = instantiations;
10457 for (fn = TREE_CHAIN (instantiations); fn; fn = TREE_CHAIN (fn))
10459 fate = more_specialized (TREE_VALUE (champ), TREE_VALUE (fn),
10460 DEDUCE_EXACT, -1);
10461 if (fate == 1)
10463 else
10465 if (fate == 0)
10467 fn = TREE_CHAIN (fn);
10468 if (! fn)
10469 return error_mark_node;
10471 champ = fn;
10475 for (fn = instantiations; fn && fn != champ; fn = TREE_CHAIN (fn))
10477 fate = more_specialized (TREE_VALUE (champ), TREE_VALUE (fn),
10478 DEDUCE_EXACT, -1);
10479 if (fate != 1)
10480 return error_mark_node;
10483 return TREE_PURPOSE (champ) ? TREE_PURPOSE (champ) : TREE_VALUE (champ);
10486 /* Return the most specialized of the list of templates in FNS that can
10487 produce an instantiation matching DECL, given the explicit template
10488 arguments EXPLICIT_ARGS. */
10490 static tree
10491 most_specialized (tree fns, tree decl, tree explicit_args)
10493 tree candidates = NULL_TREE;
10494 tree fn, args;
10496 for (fn = fns; fn; fn = TREE_CHAIN (fn))
10498 tree candidate = TREE_VALUE (fn);
10500 args = get_bindings (candidate, decl, explicit_args);
10501 if (args)
10502 candidates = tree_cons (NULL_TREE, candidate, candidates);
10505 return most_specialized_instantiation (candidates);
10508 /* If DECL is a specialization of some template, return the most
10509 general such template. Otherwise, returns NULL_TREE.
10511 For example, given:
10513 template <class T> struct S { template <class U> void f(U); };
10515 if TMPL is `template <class U> void S<int>::f(U)' this will return
10516 the full template. This function will not trace past partial
10517 specializations, however. For example, given in addition:
10519 template <class T> struct S<T*> { template <class U> void f(U); };
10521 if TMPL is `template <class U> void S<int*>::f(U)' this will return
10522 `template <class T> template <class U> S<T*>::f(U)'. */
10524 tree
10525 most_general_template (tree decl)
10527 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
10528 an immediate specialization. */
10529 if (TREE_CODE (decl) == FUNCTION_DECL)
10531 if (DECL_TEMPLATE_INFO (decl)) {
10532 decl = DECL_TI_TEMPLATE (decl);
10534 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
10535 template friend. */
10536 if (TREE_CODE (decl) != TEMPLATE_DECL)
10537 return NULL_TREE;
10538 } else
10539 return NULL_TREE;
10542 /* Look for more and more general templates. */
10543 while (DECL_TEMPLATE_INFO (decl))
10545 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
10546 (See cp-tree.h for details.) */
10547 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
10548 break;
10550 if (CLASS_TYPE_P (TREE_TYPE (decl))
10551 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
10552 break;
10554 /* Stop if we run into an explicitly specialized class template. */
10555 if (!DECL_NAMESPACE_SCOPE_P (decl)
10556 && DECL_CONTEXT (decl)
10557 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
10558 break;
10560 decl = DECL_TI_TEMPLATE (decl);
10563 return decl;
10566 /* Return the most specialized of the class template specializations
10567 of TMPL which can produce an instantiation matching ARGS, or
10568 error_mark_node if the choice is ambiguous. */
10570 static tree
10571 most_specialized_class (tree tmpl, tree args)
10573 tree list = NULL_TREE;
10574 tree t;
10575 tree champ;
10576 int fate;
10578 tmpl = most_general_template (tmpl);
10579 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
10581 tree spec_args
10582 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args);
10583 if (spec_args)
10585 list = tree_cons (TREE_PURPOSE (t), TREE_VALUE (t), list);
10586 TREE_TYPE (list) = TREE_TYPE (t);
10590 if (! list)
10591 return NULL_TREE;
10593 t = list;
10594 champ = t;
10595 t = TREE_CHAIN (t);
10596 for (; t; t = TREE_CHAIN (t))
10598 fate = more_specialized_class (champ, t, args);
10599 if (fate == 1)
10601 else
10603 if (fate == 0)
10605 t = TREE_CHAIN (t);
10606 if (! t)
10607 return error_mark_node;
10609 champ = t;
10613 for (t = list; t && t != champ; t = TREE_CHAIN (t))
10615 fate = more_specialized_class (champ, t, args);
10616 if (fate != 1)
10617 return error_mark_node;
10620 return champ;
10623 /* Explicitly instantiate DECL. */
10625 void
10626 do_decl_instantiation (tree decl, tree storage)
10628 tree result = NULL_TREE;
10629 int extern_p = 0;
10631 if (!decl)
10632 /* An error occurred, for which grokdeclarator has already issued
10633 an appropriate message. */
10634 return;
10635 else if (! DECL_LANG_SPECIFIC (decl))
10637 error ("explicit instantiation of non-template `%#D'", decl);
10638 return;
10640 else if (TREE_CODE (decl) == VAR_DECL)
10642 /* There is an asymmetry here in the way VAR_DECLs and
10643 FUNCTION_DECLs are handled by grokdeclarator. In the case of
10644 the latter, the DECL we get back will be marked as a
10645 template instantiation, and the appropriate
10646 DECL_TEMPLATE_INFO will be set up. This does not happen for
10647 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
10648 should handle VAR_DECLs as it currently handles
10649 FUNCTION_DECLs. */
10650 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
10651 if (!result || TREE_CODE (result) != VAR_DECL)
10653 error ("no matching template for `%D' found", decl);
10654 return;
10657 else if (TREE_CODE (decl) != FUNCTION_DECL)
10659 error ("explicit instantiation of `%#D'", decl);
10660 return;
10662 else
10663 result = decl;
10665 /* Check for various error cases. Note that if the explicit
10666 instantiation is valid the RESULT will currently be marked as an
10667 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
10668 until we get here. */
10670 if (DECL_TEMPLATE_SPECIALIZATION (result))
10672 /* DR 259 [temp.spec].
10674 Both an explicit instantiation and a declaration of an explicit
10675 specialization shall not appear in a program unless the explicit
10676 instantiation follows a declaration of the explicit specialization.
10678 For a given set of template parameters, if an explicit
10679 instantiation of a template appears after a declaration of an
10680 explicit specialization for that template, the explicit
10681 instantiation has no effect. */
10682 return;
10684 else if (DECL_EXPLICIT_INSTANTIATION (result))
10686 /* [temp.spec]
10688 No program shall explicitly instantiate any template more
10689 than once.
10691 We check DECL_INTERFACE_KNOWN so as not to complain when the first
10692 instantiation was `extern' and the second is not, and EXTERN_P for
10693 the opposite case. If -frepo, chances are we already got marked
10694 as an explicit instantiation because of the repo file. */
10695 if (DECL_INTERFACE_KNOWN (result) && !extern_p && !flag_use_repository)
10696 pedwarn ("duplicate explicit instantiation of `%#D'", result);
10698 /* If we've already instantiated the template, just return now. */
10699 if (DECL_INTERFACE_KNOWN (result))
10700 return;
10702 else if (!DECL_IMPLICIT_INSTANTIATION (result))
10704 error ("no matching template for `%D' found", result);
10705 return;
10707 else if (!DECL_TEMPLATE_INFO (result))
10709 pedwarn ("explicit instantiation of non-template `%#D'", result);
10710 return;
10713 if (storage == NULL_TREE)
10715 else if (storage == ridpointers[(int) RID_EXTERN])
10717 if (pedantic && !in_system_header)
10718 pedwarn ("ISO C++ forbids the use of `extern' on explicit instantiations");
10719 extern_p = 1;
10721 else
10722 error ("storage class `%D' applied to template instantiation",
10723 storage);
10725 SET_DECL_EXPLICIT_INSTANTIATION (result);
10726 mark_decl_instantiated (result, extern_p);
10727 repo_template_instantiated (result, extern_p);
10728 if (! extern_p)
10729 instantiate_decl (result, /*defer_ok=*/1);
10732 void
10733 mark_class_instantiated (tree t, int extern_p)
10735 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
10736 SET_CLASSTYPE_INTERFACE_KNOWN (t);
10737 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
10738 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
10739 if (! extern_p)
10741 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
10742 rest_of_type_compilation (t, 1);
10746 /* Called from do_type_instantiation through binding_table_foreach to
10747 do recursive instantiation for the type bound in ENTRY. */
10748 static void
10749 bt_instantiate_type_proc (binding_entry entry, void *data)
10751 tree storage = *(tree *) data;
10753 if (IS_AGGR_TYPE (entry->type)
10754 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
10755 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
10758 /* Perform an explicit instantiation of template class T. STORAGE, if
10759 non-null, is the RID for extern, inline or static. COMPLAIN is
10760 nonzero if this is called from the parser, zero if called recursively,
10761 since the standard is unclear (as detailed below). */
10763 void
10764 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
10766 int extern_p = 0;
10767 int nomem_p = 0;
10768 int static_p = 0;
10770 if (TREE_CODE (t) == TYPE_DECL)
10771 t = TREE_TYPE (t);
10773 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
10775 error ("explicit instantiation of non-template type `%T'", t);
10776 return;
10779 complete_type (t);
10781 if (!COMPLETE_TYPE_P (t))
10783 if (complain & tf_error)
10784 error ("explicit instantiation of `%#T' before definition of template",
10786 return;
10789 if (storage != NULL_TREE)
10791 if (pedantic && !in_system_header)
10792 pedwarn("ISO C++ forbids the use of `%s' on explicit instantiations",
10793 IDENTIFIER_POINTER (storage));
10795 if (storage == ridpointers[(int) RID_INLINE])
10796 nomem_p = 1;
10797 else if (storage == ridpointers[(int) RID_EXTERN])
10798 extern_p = 1;
10799 else if (storage == ridpointers[(int) RID_STATIC])
10800 static_p = 1;
10801 else
10803 error ("storage class `%D' applied to template instantiation",
10804 storage);
10805 extern_p = 0;
10809 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
10811 /* DR 259 [temp.spec].
10813 Both an explicit instantiation and a declaration of an explicit
10814 specialization shall not appear in a program unless the explicit
10815 instantiation follows a declaration of the explicit specialization.
10817 For a given set of template parameters, if an explicit
10818 instantiation of a template appears after a declaration of an
10819 explicit specialization for that template, the explicit
10820 instantiation has no effect. */
10821 return;
10823 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
10825 /* [temp.spec]
10827 No program shall explicitly instantiate any template more
10828 than once.
10830 If CLASSTYPE_INTERFACE_ONLY, then the first explicit instantiation
10831 was `extern'. If EXTERN_P then the second is. If -frepo, chances
10832 are we already got marked as an explicit instantiation because of the
10833 repo file. All these cases are OK. */
10834 if (!CLASSTYPE_INTERFACE_ONLY (t) && !extern_p && !flag_use_repository
10835 && (complain & tf_error))
10836 pedwarn ("duplicate explicit instantiation of `%#T'", t);
10838 /* If we've already instantiated the template, just return now. */
10839 if (!CLASSTYPE_INTERFACE_ONLY (t))
10840 return;
10843 mark_class_instantiated (t, extern_p);
10844 repo_template_instantiated (t, extern_p);
10846 if (nomem_p)
10847 return;
10850 tree tmp;
10852 /* In contrast to implicit instantiation, where only the
10853 declarations, and not the definitions, of members are
10854 instantiated, we have here:
10856 [temp.explicit]
10858 The explicit instantiation of a class template specialization
10859 implies the instantiation of all of its members not
10860 previously explicitly specialized in the translation unit
10861 containing the explicit instantiation.
10863 Of course, we can't instantiate member template classes, since
10864 we don't have any arguments for them. Note that the standard
10865 is unclear on whether the instantiation of the members are
10866 *explicit* instantiations or not. We choose to be generous,
10867 and not set DECL_EXPLICIT_INSTANTIATION. Therefore, we allow
10868 the explicit instantiation of a class where some of the members
10869 have no definition in the current translation unit. */
10871 if (! static_p)
10872 for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
10873 if (TREE_CODE (tmp) == FUNCTION_DECL
10874 && DECL_TEMPLATE_INSTANTIATION (tmp))
10876 mark_decl_instantiated (tmp, extern_p);
10877 repo_template_instantiated (tmp, extern_p);
10878 if (! extern_p)
10879 instantiate_decl (tmp, /*defer_ok=*/1);
10882 for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
10883 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
10885 mark_decl_instantiated (tmp, extern_p);
10886 repo_template_instantiated (tmp, extern_p);
10887 if (! extern_p)
10888 instantiate_decl (tmp, /*defer_ok=*/1);
10891 if (CLASSTYPE_NESTED_UTDS (t))
10892 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
10893 bt_instantiate_type_proc, &storage);
10897 /* Given a function DECL, which is a specialization of TMPL, modify
10898 DECL to be a re-instantiation of TMPL with the same template
10899 arguments. TMPL should be the template into which tsubst'ing
10900 should occur for DECL, not the most general template.
10902 One reason for doing this is a scenario like this:
10904 template <class T>
10905 void f(const T&, int i);
10907 void g() { f(3, 7); }
10909 template <class T>
10910 void f(const T& t, const int i) { }
10912 Note that when the template is first instantiated, with
10913 instantiate_template, the resulting DECL will have no name for the
10914 first parameter, and the wrong type for the second. So, when we go
10915 to instantiate the DECL, we regenerate it. */
10917 static void
10918 regenerate_decl_from_template (tree decl, tree tmpl)
10920 /* The most general version of TMPL. */
10921 tree gen_tmpl;
10922 /* The arguments used to instantiate DECL, from the most general
10923 template. */
10924 tree args;
10925 tree code_pattern;
10926 tree new_decl;
10927 bool unregistered;
10929 args = DECL_TI_ARGS (decl);
10930 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
10932 /* Unregister the specialization so that when we tsubst we will not
10933 just return DECL. We don't have to unregister DECL from TMPL
10934 because if would only be registered there if it were a partial
10935 instantiation of a specialization, which it isn't: it's a full
10936 instantiation. */
10937 gen_tmpl = most_general_template (tmpl);
10938 unregistered = reregister_specialization (decl, gen_tmpl,
10939 /*new_spec=*/NULL_TREE);
10941 /* If the DECL was not unregistered then something peculiar is
10942 happening: we created a specialization but did not call
10943 register_specialization for it. */
10944 my_friendly_assert (unregistered, 0);
10946 /* Make sure that we can see identifiers, and compute access
10947 correctly. */
10948 push_access_scope (decl);
10950 /* Do the substitution to get the new declaration. */
10951 new_decl = tsubst (code_pattern, args, tf_error, NULL_TREE);
10953 if (TREE_CODE (decl) == VAR_DECL)
10955 /* Set up DECL_INITIAL, since tsubst doesn't. */
10956 if (!DECL_INITIALIZED_IN_CLASS_P (decl))
10957 DECL_INITIAL (new_decl) =
10958 tsubst_expr (DECL_INITIAL (code_pattern), args,
10959 tf_error, DECL_TI_TEMPLATE (decl));
10961 else if (TREE_CODE (decl) == FUNCTION_DECL)
10963 /* Convince duplicate_decls to use the DECL_ARGUMENTS from the
10964 new decl. */
10965 DECL_INITIAL (new_decl) = error_mark_node;
10966 /* And don't complain about a duplicate definition. */
10967 DECL_INITIAL (decl) = NULL_TREE;
10970 pop_access_scope (decl);
10972 /* The immediate parent of the new template is still whatever it was
10973 before, even though tsubst sets DECL_TI_TEMPLATE up as the most
10974 general template. We also reset the DECL_ASSEMBLER_NAME since
10975 tsubst always calculates the name as if the function in question
10976 were really a template instance, and sometimes, with friend
10977 functions, this is not so. See tsubst_friend_function for
10978 details. */
10979 DECL_TI_TEMPLATE (new_decl) = DECL_TI_TEMPLATE (decl);
10980 COPY_DECL_ASSEMBLER_NAME (decl, new_decl);
10981 COPY_DECL_RTL (decl, new_decl);
10982 DECL_USE_TEMPLATE (new_decl) = DECL_USE_TEMPLATE (decl);
10984 /* Call duplicate decls to merge the old and new declarations. */
10985 duplicate_decls (new_decl, decl);
10987 /* Now, re-register the specialization. */
10988 register_specialization (decl, gen_tmpl, args);
10991 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
10992 substituted to get DECL. */
10994 tree
10995 template_for_substitution (tree decl)
10997 tree tmpl = DECL_TI_TEMPLATE (decl);
10999 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
11000 for the instantiation. This is not always the most general
11001 template. Consider, for example:
11003 template <class T>
11004 struct S { template <class U> void f();
11005 template <> void f<int>(); };
11007 and an instantiation of S<double>::f<int>. We want TD to be the
11008 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
11009 while (/* An instantiation cannot have a definition, so we need a
11010 more general template. */
11011 DECL_TEMPLATE_INSTANTIATION (tmpl)
11012 /* We must also deal with friend templates. Given:
11014 template <class T> struct S {
11015 template <class U> friend void f() {};
11018 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
11019 so far as the language is concerned, but that's still
11020 where we get the pattern for the instantiation from. On
11021 other hand, if the definition comes outside the class, say:
11023 template <class T> struct S {
11024 template <class U> friend void f();
11026 template <class U> friend void f() {}
11028 we don't need to look any further. That's what the check for
11029 DECL_INITIAL is for. */
11030 || (TREE_CODE (decl) == FUNCTION_DECL
11031 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
11032 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
11034 /* The present template, TD, should not be a definition. If it
11035 were a definition, we should be using it! Note that we
11036 cannot restructure the loop to just keep going until we find
11037 a template with a definition, since that might go too far if
11038 a specialization was declared, but not defined. */
11039 my_friendly_assert (!(TREE_CODE (decl) == VAR_DECL
11040 && !DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl))),
11041 0);
11043 /* Fetch the more general template. */
11044 tmpl = DECL_TI_TEMPLATE (tmpl);
11047 return tmpl;
11050 /* Produce the definition of D, a _DECL generated from a template. If
11051 DEFER_OK is nonzero, then we don't have to actually do the
11052 instantiation now; we just have to do it sometime. */
11054 tree
11055 instantiate_decl (tree d, int defer_ok)
11057 tree tmpl = DECL_TI_TEMPLATE (d);
11058 tree gen_args;
11059 tree args;
11060 tree td;
11061 tree code_pattern;
11062 tree spec;
11063 tree gen_tmpl;
11064 int pattern_defined;
11065 int need_push;
11066 location_t saved_loc = input_location;
11068 /* This function should only be used to instantiate templates for
11069 functions and static member variables. */
11070 my_friendly_assert (TREE_CODE (d) == FUNCTION_DECL
11071 || TREE_CODE (d) == VAR_DECL, 0);
11073 /* Variables are never deferred; if instantiation is required, they
11074 are instantiated right away. That allows for better code in the
11075 case that an expression refers to the value of the variable --
11076 if the variable has a constant value the referring expression can
11077 take advantage of that fact. */
11078 if (TREE_CODE (d) == VAR_DECL)
11079 defer_ok = 0;
11081 /* Don't instantiate cloned functions. Instead, instantiate the
11082 functions they cloned. */
11083 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
11084 d = DECL_CLONED_FUNCTION (d);
11086 if (DECL_TEMPLATE_INSTANTIATED (d))
11087 /* D has already been instantiated. It might seem reasonable to
11088 check whether or not D is an explicit instantiation, and, if so,
11089 stop here. But when an explicit instantiation is deferred
11090 until the end of the compilation, DECL_EXPLICIT_INSTANTIATION
11091 is set, even though we still need to do the instantiation. */
11092 return d;
11094 /* If we already have a specialization of this declaration, then
11095 there's no reason to instantiate it. Note that
11096 retrieve_specialization gives us both instantiations and
11097 specializations, so we must explicitly check
11098 DECL_TEMPLATE_SPECIALIZATION. */
11099 gen_tmpl = most_general_template (tmpl);
11100 gen_args = DECL_TI_ARGS (d);
11101 spec = retrieve_specialization (gen_tmpl, gen_args);
11102 if (spec != NULL_TREE && DECL_TEMPLATE_SPECIALIZATION (spec))
11103 return spec;
11105 /* This needs to happen before any tsubsting. */
11106 if (! push_tinst_level (d))
11107 return d;
11109 timevar_push (TV_PARSE);
11111 /* We may be in the middle of deferred access check. Disable it now. */
11112 push_deferring_access_checks (dk_no_deferred);
11114 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
11115 for the instantiation. */
11116 td = template_for_substitution (d);
11117 code_pattern = DECL_TEMPLATE_RESULT (td);
11119 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
11120 || DECL_TEMPLATE_SPECIALIZATION (td))
11121 /* In the case of a friend template whose definition is provided
11122 outside the class, we may have too many arguments. Drop the
11123 ones we don't need. The same is true for specializations. */
11124 args = get_innermost_template_args
11125 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
11126 else
11127 args = gen_args;
11129 if (TREE_CODE (d) == FUNCTION_DECL)
11130 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE);
11131 else
11132 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
11134 input_location = DECL_SOURCE_LOCATION (d);
11136 if (pattern_defined)
11138 /* Let the repository code that this template definition is
11139 available.
11141 The repository doesn't need to know about cloned functions
11142 because they never actually show up in the object file. It
11143 does need to know about the clones; those are the symbols
11144 that the linker will be emitting error messages about. */
11145 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (d)
11146 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (d))
11148 tree t;
11150 for (t = TREE_CHAIN (d);
11151 t && DECL_CLONED_FUNCTION_P (t);
11152 t = TREE_CHAIN (t))
11153 repo_template_used (t);
11155 else
11156 repo_template_used (d);
11158 if (at_eof)
11159 import_export_decl (d);
11162 if (!defer_ok)
11164 /* Recheck the substitutions to obtain any warning messages
11165 about ignoring cv qualifiers. */
11166 tree gen = DECL_TEMPLATE_RESULT (gen_tmpl);
11167 tree type = TREE_TYPE (gen);
11169 /* Make sure that we can see identifiers, and compute access
11170 correctly. D is already the target FUNCTION_DECL with the
11171 right context. */
11172 push_access_scope (d);
11174 if (TREE_CODE (gen) == FUNCTION_DECL)
11176 tsubst (DECL_ARGUMENTS (gen), gen_args, tf_error | tf_warning, d);
11177 tsubst (TYPE_RAISES_EXCEPTIONS (type), gen_args,
11178 tf_error | tf_warning, d);
11179 /* Don't simply tsubst the function type, as that will give
11180 duplicate warnings about poor parameter qualifications.
11181 The function arguments are the same as the decl_arguments
11182 without the top level cv qualifiers. */
11183 type = TREE_TYPE (type);
11185 tsubst (type, gen_args, tf_error | tf_warning, d);
11187 pop_access_scope (d);
11190 if (TREE_CODE (d) == VAR_DECL && DECL_INITIALIZED_IN_CLASS_P (d)
11191 && DECL_INITIAL (d) == NULL_TREE)
11192 /* We should have set up DECL_INITIAL in instantiate_class_template. */
11193 abort ();
11194 /* Reject all external templates except inline functions. */
11195 else if (DECL_INTERFACE_KNOWN (d)
11196 && ! DECL_NOT_REALLY_EXTERN (d)
11197 && ! (TREE_CODE (d) == FUNCTION_DECL
11198 && DECL_INLINE (d)))
11199 goto out;
11200 /* Defer all other templates, unless we have been explicitly
11201 forbidden from doing so. We restore the source position here
11202 because it's used by add_pending_template. */
11203 else if (! pattern_defined || defer_ok)
11205 input_location = saved_loc;
11207 if (at_eof && !pattern_defined
11208 && DECL_EXPLICIT_INSTANTIATION (d))
11209 /* [temp.explicit]
11211 The definition of a non-exported function template, a
11212 non-exported member function template, or a non-exported
11213 member function or static data member of a class template
11214 shall be present in every translation unit in which it is
11215 explicitly instantiated. */
11216 pedwarn
11217 ("explicit instantiation of `%D' but no definition available", d);
11219 add_pending_template (d);
11220 goto out;
11223 need_push = !global_bindings_p ();
11224 if (need_push)
11225 push_to_top_level ();
11227 /* Mark D as instantiated so that recursive calls to
11228 instantiate_decl do not try to instantiate it again. */
11229 DECL_TEMPLATE_INSTANTIATED (d) = 1;
11231 /* Regenerate the declaration in case the template has been modified
11232 by a subsequent redeclaration. */
11233 regenerate_decl_from_template (d, td);
11235 /* We already set the file and line above. Reset them now in case
11236 they changed as a result of calling
11237 regenerate_decl_from_template. */
11238 input_location = DECL_SOURCE_LOCATION (d);
11240 if (TREE_CODE (d) == VAR_DECL)
11242 /* Clear out DECL_RTL; whatever was there before may not be right
11243 since we've reset the type of the declaration. */
11244 SET_DECL_RTL (d, NULL_RTX);
11246 DECL_IN_AGGR_P (d) = 0;
11247 import_export_decl (d);
11248 DECL_EXTERNAL (d) = ! DECL_NOT_REALLY_EXTERN (d);
11250 if (DECL_EXTERNAL (d))
11252 /* The fact that this code is executing indicates that:
11254 (1) D is a template static data member, for which a
11255 definition is available.
11257 (2) An implicit or explicit instantiation has occurred.
11259 (3) We are not going to emit a definition of the static
11260 data member at this time.
11262 This situation is peculiar, but it occurs on platforms
11263 without weak symbols when performing an implicit
11264 instantiation. There, we cannot implicitly instantiate a
11265 defined static data member in more than one translation
11266 unit, so import_export_decl marks the declaration as
11267 external; we must rely on explicit instantiation.
11269 Reset instantiated marker to make sure that later
11270 explicit instantiation will be processed. */
11271 DECL_TEMPLATE_INSTANTIATED (d) = 0;
11273 else
11275 /* Enter the scope of D so that access-checking works correctly. */
11276 push_nested_class (DECL_CONTEXT (d));
11277 cp_finish_decl (d,
11278 (!DECL_INITIALIZED_IN_CLASS_P (d)
11279 ? DECL_INITIAL (d) : NULL_TREE),
11280 NULL_TREE, 0);
11281 pop_nested_class ();
11283 /* We're not deferring instantiation any more. */
11284 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
11286 else if (TREE_CODE (d) == FUNCTION_DECL)
11288 htab_t saved_local_specializations;
11289 tree subst_decl;
11290 tree tmpl_parm;
11291 tree spec_parm;
11293 /* Mark D as instantiated so that recursive calls to
11294 instantiate_decl do not try to instantiate it again. */
11295 DECL_TEMPLATE_INSTANTIATED (d) = 1;
11297 /* Save away the current list, in case we are instantiating one
11298 template from within the body of another. */
11299 saved_local_specializations = local_specializations;
11301 /* Set up the list of local specializations. */
11302 local_specializations = htab_create (37,
11303 hash_local_specialization,
11304 eq_local_specializations,
11305 NULL);
11307 /* Set up context. */
11308 import_export_decl (d);
11309 start_function (NULL_TREE, d, NULL_TREE, SF_PRE_PARSED);
11311 /* Create substitution entries for the parameters. */
11312 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
11313 tmpl_parm = DECL_ARGUMENTS (subst_decl);
11314 spec_parm = DECL_ARGUMENTS (d);
11315 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
11317 register_local_specialization (spec_parm, tmpl_parm);
11318 spec_parm = skip_artificial_parms_for (d, spec_parm);
11319 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
11321 while (tmpl_parm)
11323 register_local_specialization (spec_parm, tmpl_parm);
11324 tmpl_parm = TREE_CHAIN (tmpl_parm);
11325 spec_parm = TREE_CHAIN (spec_parm);
11327 my_friendly_assert (!spec_parm, 20020813);
11329 /* Substitute into the body of the function. */
11330 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
11331 tf_error | tf_warning, tmpl);
11333 /* We don't need the local specializations any more. */
11334 htab_delete (local_specializations);
11335 local_specializations = saved_local_specializations;
11337 /* We're not deferring instantiation any more. */
11338 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
11340 /* Finish the function. */
11341 d = finish_function (0);
11342 expand_or_defer_fn (d);
11345 if (need_push)
11346 pop_from_top_level ();
11348 out:
11349 input_location = saved_loc;
11350 pop_deferring_access_checks ();
11351 pop_tinst_level ();
11353 timevar_pop (TV_PARSE);
11355 return d;
11358 /* Run through the list of templates that we wish we could
11359 instantiate, and instantiate any we can. */
11362 instantiate_pending_templates (void)
11364 tree *t;
11365 tree last = NULL_TREE;
11366 int instantiated_something = 0;
11367 int reconsider;
11368 location_t saved_loc = input_location;
11372 reconsider = 0;
11374 t = &pending_templates;
11375 while (*t)
11377 tree instantiation = TREE_VALUE (*t);
11379 reopen_tinst_level (TREE_PURPOSE (*t));
11381 if (TYPE_P (instantiation))
11383 tree fn;
11385 if (!COMPLETE_TYPE_P (instantiation))
11387 instantiate_class_template (instantiation);
11388 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
11389 for (fn = TYPE_METHODS (instantiation);
11391 fn = TREE_CHAIN (fn))
11392 if (! DECL_ARTIFICIAL (fn))
11393 instantiate_decl (fn, /*defer_ok=*/0);
11394 if (COMPLETE_TYPE_P (instantiation))
11396 instantiated_something = 1;
11397 reconsider = 1;
11401 if (COMPLETE_TYPE_P (instantiation))
11402 /* If INSTANTIATION has been instantiated, then we don't
11403 need to consider it again in the future. */
11404 *t = TREE_CHAIN (*t);
11405 else
11407 last = *t;
11408 t = &TREE_CHAIN (*t);
11411 else
11413 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
11414 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
11416 instantiation = instantiate_decl (instantiation,
11417 /*defer_ok=*/0);
11418 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
11420 instantiated_something = 1;
11421 reconsider = 1;
11425 if (DECL_TEMPLATE_SPECIALIZATION (instantiation)
11426 || DECL_TEMPLATE_INSTANTIATED (instantiation))
11427 /* If INSTANTIATION has been instantiated, then we don't
11428 need to consider it again in the future. */
11429 *t = TREE_CHAIN (*t);
11430 else
11432 last = *t;
11433 t = &TREE_CHAIN (*t);
11436 tinst_depth = 0;
11437 current_tinst_level = NULL_TREE;
11439 last_pending_template = last;
11441 while (reconsider);
11443 input_location = saved_loc;
11444 return instantiated_something;
11447 /* Substitute ARGVEC into T, which is a list of initializers for
11448 either base class or a non-static data member. The TREE_PURPOSEs
11449 are DECLs, and the TREE_VALUEs are the initializer values. Used by
11450 instantiate_decl. */
11452 static tree
11453 tsubst_initializer_list (tree t, tree argvec)
11455 tree inits = NULL_TREE;
11457 for (; t; t = TREE_CHAIN (t))
11459 tree decl;
11460 tree init;
11461 tree val;
11463 decl = tsubst_copy (TREE_PURPOSE (t), argvec, tf_error | tf_warning,
11464 NULL_TREE);
11465 decl = expand_member_init (decl);
11466 if (decl && !DECL_P (decl))
11467 in_base_initializer = 1;
11469 init = tsubst_expr (TREE_VALUE (t), argvec, tf_error | tf_warning,
11470 NULL_TREE);
11471 if (!init)
11473 else if (TREE_CODE (init) == TREE_LIST)
11474 for (val = init; val; val = TREE_CHAIN (val))
11475 TREE_VALUE (val) = convert_from_reference (TREE_VALUE (val));
11476 else if (init != void_type_node)
11477 init = convert_from_reference (init);
11479 in_base_initializer = 0;
11481 if (decl)
11483 init = build_tree_list (decl, init);
11484 TREE_CHAIN (init) = inits;
11485 inits = init;
11488 return inits;
11491 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
11493 static void
11494 set_current_access_from_decl (tree decl)
11496 if (TREE_PRIVATE (decl))
11497 current_access_specifier = access_private_node;
11498 else if (TREE_PROTECTED (decl))
11499 current_access_specifier = access_protected_node;
11500 else
11501 current_access_specifier = access_public_node;
11504 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
11505 is the instantiation (which should have been created with
11506 start_enum) and ARGS are the template arguments to use. */
11508 static void
11509 tsubst_enum (tree tag, tree newtag, tree args)
11511 tree e;
11513 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
11515 tree value;
11516 tree decl;
11518 decl = TREE_VALUE (e);
11519 /* Note that in a template enum, the TREE_VALUE is the
11520 CONST_DECL, not the corresponding INTEGER_CST. */
11521 value = tsubst_expr (DECL_INITIAL (decl),
11522 args, tf_error | tf_warning,
11523 NULL_TREE);
11525 /* Give this enumeration constant the correct access. */
11526 set_current_access_from_decl (decl);
11528 /* Actually build the enumerator itself. */
11529 build_enumerator (DECL_NAME (decl), value, newtag);
11532 finish_enum (newtag);
11533 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
11534 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
11537 /* DECL is a FUNCTION_DECL that is a template specialization. Return
11538 its type -- but without substituting the innermost set of template
11539 arguments. So, innermost set of template parameters will appear in
11540 the type. */
11542 tree
11543 get_mostly_instantiated_function_type (tree decl)
11545 tree fn_type;
11546 tree tmpl;
11547 tree targs;
11548 tree tparms;
11549 int parm_depth;
11551 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11552 targs = DECL_TI_ARGS (decl);
11553 tparms = DECL_TEMPLATE_PARMS (tmpl);
11554 parm_depth = TMPL_PARMS_DEPTH (tparms);
11556 /* There should be as many levels of arguments as there are levels
11557 of parameters. */
11558 my_friendly_assert (parm_depth == TMPL_ARGS_DEPTH (targs), 0);
11560 fn_type = TREE_TYPE (tmpl);
11562 if (parm_depth == 1)
11563 /* No substitution is necessary. */
11565 else
11567 int i;
11568 tree partial_args;
11570 /* Replace the innermost level of the TARGS with NULL_TREEs to
11571 let tsubst know not to substitute for those parameters. */
11572 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
11573 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
11574 SET_TMPL_ARGS_LEVEL (partial_args, i,
11575 TMPL_ARGS_LEVEL (targs, i));
11576 SET_TMPL_ARGS_LEVEL (partial_args,
11577 TMPL_ARGS_DEPTH (targs),
11578 make_tree_vec (DECL_NTPARMS (tmpl)));
11580 /* Make sure that we can see identifiers, and compute access
11581 correctly. We can just use the context of DECL for the
11582 partial substitution here. It depends only on outer template
11583 parameters, regardless of whether the innermost level is
11584 specialized or not. */
11585 push_access_scope (decl);
11587 ++processing_template_decl;
11588 /* Now, do the (partial) substitution to figure out the
11589 appropriate function type. */
11590 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
11591 --processing_template_decl;
11593 /* Substitute into the template parameters to obtain the real
11594 innermost set of parameters. This step is important if the
11595 innermost set of template parameters contains value
11596 parameters whose types depend on outer template parameters. */
11597 TREE_VEC_LENGTH (partial_args)--;
11598 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
11600 pop_access_scope (decl);
11603 return fn_type;
11606 /* Return truthvalue if we're processing a template different from
11607 the last one involved in diagnostics. */
11609 problematic_instantiation_changed (void)
11611 return last_template_error_tick != tinst_level_tick;
11614 /* Remember current template involved in diagnostics. */
11615 void
11616 record_last_problematic_instantiation (void)
11618 last_template_error_tick = tinst_level_tick;
11621 tree
11622 current_instantiation (void)
11624 return current_tinst_level;
11627 /* [temp.param] Check that template non-type parm TYPE is of an allowable
11628 type. Return zero for ok, nonzero for disallowed. Issue error and
11629 warning messages under control of COMPLAIN. */
11631 static int
11632 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
11634 if (INTEGRAL_TYPE_P (type))
11635 return 0;
11636 else if (POINTER_TYPE_P (type))
11637 return 0;
11638 else if (TYPE_PTR_TO_MEMBER_P (type))
11639 return 0;
11640 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
11641 return 0;
11642 else if (TREE_CODE (type) == TYPENAME_TYPE)
11643 return 0;
11645 if (complain & tf_error)
11646 error ("`%#T' is not a valid type for a template constant parameter",
11647 type);
11648 return 1;
11651 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
11652 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
11654 static bool
11655 dependent_type_p_r (tree type)
11657 tree scope;
11659 /* [temp.dep.type]
11661 A type is dependent if it is:
11663 -- a template parameter. Template template parameters are
11664 types for us (since TYPE_P holds true for them) so we
11665 handle them here. */
11666 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
11667 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
11668 return true;
11669 /* -- a qualified-id with a nested-name-specifier which contains a
11670 class-name that names a dependent type or whose unqualified-id
11671 names a dependent type. */
11672 if (TREE_CODE (type) == TYPENAME_TYPE)
11673 return true;
11674 /* -- a cv-qualified type where the cv-unqualified type is
11675 dependent. */
11676 type = TYPE_MAIN_VARIANT (type);
11677 /* -- a compound type constructed from any dependent type. */
11678 if (TYPE_PTR_TO_MEMBER_P (type))
11679 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
11680 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
11681 (type)));
11682 else if (TREE_CODE (type) == POINTER_TYPE
11683 || TREE_CODE (type) == REFERENCE_TYPE)
11684 return dependent_type_p (TREE_TYPE (type));
11685 else if (TREE_CODE (type) == FUNCTION_TYPE
11686 || TREE_CODE (type) == METHOD_TYPE)
11688 tree arg_type;
11690 if (dependent_type_p (TREE_TYPE (type)))
11691 return true;
11692 for (arg_type = TYPE_ARG_TYPES (type);
11693 arg_type;
11694 arg_type = TREE_CHAIN (arg_type))
11695 if (dependent_type_p (TREE_VALUE (arg_type)))
11696 return true;
11697 return false;
11699 /* -- an array type constructed from any dependent type or whose
11700 size is specified by a constant expression that is
11701 value-dependent. */
11702 if (TREE_CODE (type) == ARRAY_TYPE)
11704 if (TYPE_DOMAIN (type)
11705 && ((value_dependent_expression_p
11706 (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
11707 || (type_dependent_expression_p
11708 (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))))
11709 return true;
11710 return dependent_type_p (TREE_TYPE (type));
11713 /* -- a template-id in which either the template name is a template
11714 parameter ... */
11715 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
11716 return true;
11717 /* ... or any of the template arguments is a dependent type or
11718 an expression that is type-dependent or value-dependent. */
11719 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
11720 && (any_dependent_template_arguments_p
11721 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
11722 return true;
11724 /* All TYPEOF_TYPEs are dependent; if the argument of the `typeof'
11725 expression is not type-dependent, then it should already been
11726 have resolved. */
11727 if (TREE_CODE (type) == TYPEOF_TYPE)
11728 return true;
11730 /* The standard does not specifically mention types that are local
11731 to template functions or local classes, but they should be
11732 considered dependent too. For example:
11734 template <int I> void f() {
11735 enum E { a = I };
11736 S<sizeof (E)> s;
11739 The size of `E' cannot be known until the value of `I' has been
11740 determined. Therefore, `E' must be considered dependent. */
11741 scope = TYPE_CONTEXT (type);
11742 if (scope && TYPE_P (scope))
11743 return dependent_type_p (scope);
11744 else if (scope && TREE_CODE (scope) == FUNCTION_DECL)
11745 return type_dependent_expression_p (scope);
11747 /* Other types are non-dependent. */
11748 return false;
11751 /* Returns TRUE if TYPE is dependent, in the sense of
11752 [temp.dep.type]. */
11754 bool
11755 dependent_type_p (tree type)
11757 /* If there are no template parameters in scope, then there can't be
11758 any dependent types. */
11759 if (!processing_template_decl)
11760 return false;
11762 /* If the type is NULL, we have not computed a type for the entity
11763 in question; in that case, the type is dependent. */
11764 if (!type)
11765 return true;
11767 /* Erroneous types can be considered non-dependent. */
11768 if (type == error_mark_node)
11769 return false;
11771 /* If we have not already computed the appropriate value for TYPE,
11772 do so now. */
11773 if (!TYPE_DEPENDENT_P_VALID (type))
11775 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
11776 TYPE_DEPENDENT_P_VALID (type) = 1;
11779 return TYPE_DEPENDENT_P (type);
11782 /* Returns TRUE if EXPRESSION is dependent, according to CRITERION. */
11784 static bool
11785 dependent_scope_ref_p (tree expression, bool criterion (tree))
11787 tree scope;
11788 tree name;
11790 my_friendly_assert (TREE_CODE (expression) == SCOPE_REF, 20030714);
11792 if (!TYPE_P (TREE_OPERAND (expression, 0)))
11793 return true;
11795 scope = TREE_OPERAND (expression, 0);
11796 name = TREE_OPERAND (expression, 1);
11798 /* [temp.dep.expr]
11800 An id-expression is type-dependent if it contains a
11801 nested-name-specifier that contains a class-name that names a
11802 dependent type. */
11803 /* The suggested resolution to Core Issue 2 implies that if the
11804 qualifying type is the current class, then we must peek
11805 inside it. */
11806 if (DECL_P (name)
11807 && currently_open_class (scope)
11808 && !criterion (name))
11809 return false;
11810 if (dependent_type_p (scope))
11811 return true;
11813 return false;
11816 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
11817 [temp.dep.constexpr] */
11819 bool
11820 value_dependent_expression_p (tree expression)
11822 if (!processing_template_decl)
11823 return false;
11825 /* A name declared with a dependent type. */
11826 if (TREE_CODE (expression) == IDENTIFIER_NODE
11827 || (DECL_P (expression)
11828 && type_dependent_expression_p (expression)))
11829 return true;
11830 /* A non-type template parameter. */
11831 if ((TREE_CODE (expression) == CONST_DECL
11832 && DECL_TEMPLATE_PARM_P (expression))
11833 || TREE_CODE (expression) == TEMPLATE_PARM_INDEX)
11834 return true;
11835 /* A constant with integral or enumeration type and is initialized
11836 with an expression that is value-dependent. */
11837 if (TREE_CODE (expression) == VAR_DECL
11838 && DECL_INITIAL (expression)
11839 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (expression))
11840 && value_dependent_expression_p (DECL_INITIAL (expression)))
11841 return true;
11842 /* These expressions are value-dependent if the type to which the
11843 cast occurs is dependent or the expression being casted is
11844 value-dependent. */
11845 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
11846 || TREE_CODE (expression) == STATIC_CAST_EXPR
11847 || TREE_CODE (expression) == CONST_CAST_EXPR
11848 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
11849 || TREE_CODE (expression) == CAST_EXPR)
11851 tree type = TREE_TYPE (expression);
11852 if (dependent_type_p (type))
11853 return true;
11854 /* A functional cast has a list of operands. */
11855 expression = TREE_OPERAND (expression, 0);
11856 if (!expression)
11858 /* If there are no operands, it must be an expression such
11859 as "int()". This should not happen for aggregate types
11860 because it would form non-constant expressions. */
11861 my_friendly_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type),
11862 20040318);
11864 return false;
11866 if (TREE_CODE (expression) == TREE_LIST)
11870 if (value_dependent_expression_p (TREE_VALUE (expression)))
11871 return true;
11872 expression = TREE_CHAIN (expression);
11874 while (expression);
11875 return false;
11877 else
11878 return value_dependent_expression_p (expression);
11880 /* A `sizeof' expression is value-dependent if the operand is
11881 type-dependent. */
11882 if (TREE_CODE (expression) == SIZEOF_EXPR
11883 || TREE_CODE (expression) == ALIGNOF_EXPR)
11885 expression = TREE_OPERAND (expression, 0);
11886 if (TYPE_P (expression))
11887 return dependent_type_p (expression);
11888 return type_dependent_expression_p (expression);
11890 if (TREE_CODE (expression) == SCOPE_REF)
11891 return dependent_scope_ref_p (expression, value_dependent_expression_p);
11892 if (TREE_CODE (expression) == COMPONENT_REF)
11893 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
11894 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
11895 /* A constant expression is value-dependent if any subexpression is
11896 value-dependent. */
11897 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (expression))))
11899 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
11901 case '1':
11902 return (value_dependent_expression_p
11903 (TREE_OPERAND (expression, 0)));
11904 case '<':
11905 case '2':
11906 return ((value_dependent_expression_p
11907 (TREE_OPERAND (expression, 0)))
11908 || (value_dependent_expression_p
11909 (TREE_OPERAND (expression, 1))));
11910 case 'e':
11912 int i;
11913 for (i = 0; i < first_rtl_op (TREE_CODE (expression)); ++i)
11914 /* In some cases, some of the operands may be missing.
11915 (For example, in the case of PREDECREMENT_EXPR, the
11916 amount to increment by may be missing.) That doesn't
11917 make the expression dependent. */
11918 if (TREE_OPERAND (expression, i)
11919 && (value_dependent_expression_p
11920 (TREE_OPERAND (expression, i))))
11921 return true;
11922 return false;
11927 /* The expression is not value-dependent. */
11928 return false;
11931 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
11932 [temp.dep.expr]. */
11934 bool
11935 type_dependent_expression_p (tree expression)
11937 if (!processing_template_decl)
11938 return false;
11940 if (expression == error_mark_node)
11941 return false;
11943 /* An unresolved name is always dependent. */
11944 if (TREE_CODE (expression) == IDENTIFIER_NODE)
11945 return true;
11947 /* Some expression forms are never type-dependent. */
11948 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
11949 || TREE_CODE (expression) == SIZEOF_EXPR
11950 || TREE_CODE (expression) == ALIGNOF_EXPR
11951 || TREE_CODE (expression) == TYPEID_EXPR
11952 || TREE_CODE (expression) == DELETE_EXPR
11953 || TREE_CODE (expression) == VEC_DELETE_EXPR
11954 || TREE_CODE (expression) == THROW_EXPR)
11955 return false;
11957 /* The types of these expressions depends only on the type to which
11958 the cast occurs. */
11959 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
11960 || TREE_CODE (expression) == STATIC_CAST_EXPR
11961 || TREE_CODE (expression) == CONST_CAST_EXPR
11962 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
11963 || TREE_CODE (expression) == CAST_EXPR)
11964 return dependent_type_p (TREE_TYPE (expression));
11966 /* The types of these expressions depends only on the type created
11967 by the expression. */
11968 if (TREE_CODE (expression) == NEW_EXPR
11969 || TREE_CODE (expression) == VEC_NEW_EXPR)
11971 /* For NEW_EXPR tree nodes created inside a template, either
11972 the object type itself or a TREE_LIST may appear as the
11973 operand 1. */
11974 tree type = TREE_OPERAND (expression, 1);
11975 if (TREE_CODE (type) == TREE_LIST)
11976 /* This is an array type. We need to check array dimensions
11977 as well. */
11978 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
11979 || value_dependent_expression_p
11980 (TREE_OPERAND (TREE_VALUE (type), 1));
11981 else
11982 return dependent_type_p (type);
11985 if (TREE_CODE (expression) == SCOPE_REF
11986 && dependent_scope_ref_p (expression,
11987 type_dependent_expression_p))
11988 return true;
11990 if (TREE_CODE (expression) == FUNCTION_DECL
11991 && DECL_LANG_SPECIFIC (expression)
11992 && DECL_TEMPLATE_INFO (expression)
11993 && (any_dependent_template_arguments_p
11994 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
11995 return true;
11997 if (TREE_CODE (expression) == TEMPLATE_DECL
11998 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
11999 return false;
12001 if (TREE_TYPE (expression) == unknown_type_node)
12003 if (TREE_CODE (expression) == ADDR_EXPR)
12004 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
12005 if (TREE_CODE (expression) == COMPONENT_REF
12006 || TREE_CODE (expression) == OFFSET_REF)
12008 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
12009 return true;
12010 expression = TREE_OPERAND (expression, 1);
12011 if (TREE_CODE (expression) == IDENTIFIER_NODE)
12012 return false;
12014 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
12015 if (TREE_CODE (expression) == SCOPE_REF)
12016 return false;
12018 if (TREE_CODE (expression) == BASELINK)
12019 expression = BASELINK_FUNCTIONS (expression);
12020 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
12022 if (any_dependent_template_arguments_p
12023 (TREE_OPERAND (expression, 1)))
12024 return true;
12025 expression = TREE_OPERAND (expression, 0);
12027 if (TREE_CODE (expression) == OVERLOAD
12028 || TREE_CODE (expression) == FUNCTION_DECL)
12030 while (expression)
12032 if (type_dependent_expression_p (OVL_CURRENT (expression)))
12033 return true;
12034 expression = OVL_NEXT (expression);
12036 return false;
12038 abort ();
12041 my_friendly_assert (TREE_CODE (expression) != TYPE_DECL, 20051116);
12043 return (dependent_type_p (TREE_TYPE (expression)));
12046 /* Returns TRUE if ARGS (a TREE_LIST of arguments to a function call)
12047 contains a type-dependent expression. */
12049 bool
12050 any_type_dependent_arguments_p (tree args)
12052 while (args)
12054 tree arg = TREE_VALUE (args);
12056 if (type_dependent_expression_p (arg))
12057 return true;
12058 args = TREE_CHAIN (args);
12060 return false;
12063 /* Returns TRUE if the ARG (a template argument) is dependent. */
12065 static bool
12066 dependent_template_arg_p (tree arg)
12068 if (!processing_template_decl)
12069 return false;
12071 if (TREE_CODE (arg) == TEMPLATE_DECL
12072 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
12073 return dependent_template_p (arg);
12074 else if (TYPE_P (arg))
12075 return dependent_type_p (arg);
12076 else
12077 return (type_dependent_expression_p (arg)
12078 || value_dependent_expression_p (arg));
12081 /* Returns true if ARGS (a collection of template arguments) contains
12082 any dependent arguments. */
12084 bool
12085 any_dependent_template_arguments_p (tree args)
12087 int i;
12088 int j;
12090 if (!args)
12091 return false;
12093 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
12095 tree level = TMPL_ARGS_LEVEL (args, i + 1);
12096 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
12097 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
12098 return true;
12101 return false;
12104 /* Returns TRUE if the template TMPL is dependent. */
12106 bool
12107 dependent_template_p (tree tmpl)
12109 if (TREE_CODE (tmpl) == OVERLOAD)
12111 while (tmpl)
12113 if (dependent_template_p (OVL_FUNCTION (tmpl)))
12114 return true;
12115 tmpl = OVL_CHAIN (tmpl);
12117 return false;
12120 /* Template template parameters are dependent. */
12121 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
12122 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
12123 return true;
12124 /* So arenames that have not been looked up. */
12125 if (TREE_CODE (tmpl) == SCOPE_REF
12126 || TREE_CODE (tmpl) == IDENTIFIER_NODE)
12127 return true;
12128 /* So are member templates of dependent classes. */
12129 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
12130 return dependent_type_p (DECL_CONTEXT (tmpl));
12131 return false;
12134 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
12136 bool
12137 dependent_template_id_p (tree tmpl, tree args)
12139 return (dependent_template_p (tmpl)
12140 || any_dependent_template_arguments_p (args));
12143 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
12144 TYPENAME_TYPE corresponds. Returns ERROR_MARK_NODE if no such TYPE
12145 can be found. Note that this function peers inside uninstantiated
12146 templates and therefore should be used only in extremely limited
12147 situations. */
12149 tree
12150 resolve_typename_type (tree type, bool only_current_p)
12152 tree scope;
12153 tree name;
12154 tree decl;
12155 int quals;
12156 bool pop_p;
12158 my_friendly_assert (TREE_CODE (type) == TYPENAME_TYPE,
12159 20010702);
12161 scope = TYPE_CONTEXT (type);
12162 name = TYPE_IDENTIFIER (type);
12164 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
12165 it first before we can figure out what NAME refers to. */
12166 if (TREE_CODE (scope) == TYPENAME_TYPE)
12167 scope = resolve_typename_type (scope, only_current_p);
12168 /* If we don't know what SCOPE refers to, then we cannot resolve the
12169 TYPENAME_TYPE. */
12170 if (scope == error_mark_node || TREE_CODE (scope) == TYPENAME_TYPE)
12171 return error_mark_node;
12172 /* If the SCOPE is a template type parameter, we have no way of
12173 resolving the name. */
12174 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
12175 return type;
12176 /* If the SCOPE is not the current instantiation, there's no reason
12177 to look inside it. */
12178 if (only_current_p && !currently_open_class (scope))
12179 return error_mark_node;
12180 /* If SCOPE is a partial instantiation, it will not have a valid
12181 TYPE_FIELDS list, so use the original template. */
12182 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
12183 /* Enter the SCOPE so that name lookup will be resolved as if we
12184 were in the class definition. In particular, SCOPE will no
12185 longer be considered a dependent type. */
12186 pop_p = push_scope (scope);
12187 /* Look up the declaration. */
12188 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true);
12189 /* Obtain the set of qualifiers applied to the TYPE. */
12190 quals = cp_type_quals (type);
12191 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
12192 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
12193 if (!decl)
12194 type = error_mark_node;
12195 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == IDENTIFIER_NODE
12196 && TREE_CODE (decl) == TYPE_DECL)
12197 type = TREE_TYPE (decl);
12198 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
12199 && DECL_CLASS_TEMPLATE_P (decl))
12201 tree tmpl;
12202 tree args;
12203 /* Obtain the template and the arguments. */
12204 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
12205 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
12206 /* Instantiate the template. */
12207 type = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
12208 /*entering_scope=*/0, tf_error | tf_user);
12210 else
12211 type = error_mark_node;
12212 /* Qualify the resulting type. */
12213 if (type != error_mark_node && quals)
12214 type = cp_build_qualified_type (type, quals);
12215 /* Leave the SCOPE. */
12216 if (pop_p)
12217 pop_scope (scope);
12219 return type;
12222 /* EXPR is an expression which is not type-dependent. Return a proxy
12223 for EXPR that can be used to compute the types of larger
12224 expressions containing EXPR. */
12226 tree
12227 build_non_dependent_expr (tree expr)
12229 tree inner_expr;
12231 /* Preserve null pointer constants so that the type of things like
12232 "p == 0" where "p" is a pointer can be determined. */
12233 if (null_ptr_cst_p (expr))
12234 return expr;
12235 /* Preserve OVERLOADs; the functions must be available to resolve
12236 types. */
12237 inner_expr = (TREE_CODE (expr) == ADDR_EXPR ?
12238 TREE_OPERAND (expr, 0) : expr);
12239 if (TREE_CODE (inner_expr) == OVERLOAD
12240 || TREE_CODE (inner_expr) == FUNCTION_DECL
12241 || TREE_CODE (inner_expr) == TEMPLATE_DECL
12242 || TREE_CODE (inner_expr) == TEMPLATE_ID_EXPR
12243 || TREE_CODE (inner_expr) == OFFSET_REF)
12244 return expr;
12245 /* Preserve string constants; conversions from string constants to
12246 "char *" are allowed, even though normally a "const char *"
12247 cannot be used to initialize a "char *". */
12248 if (TREE_CODE (expr) == STRING_CST)
12249 return expr;
12250 /* Preserve arithmetic constants, as an optimization -- there is no
12251 reason to create a new node. */
12252 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
12253 return expr;
12254 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
12255 There is at least one place where we want to know that a
12256 particular expression is a throw-expression: when checking a ?:
12257 expression, there are special rules if the second or third
12258 argument is a throw-expresion. */
12259 if (TREE_CODE (expr) == THROW_EXPR)
12260 return expr;
12262 if (TREE_CODE (expr) == COND_EXPR)
12263 return build (COND_EXPR,
12264 TREE_TYPE (expr),
12265 TREE_OPERAND (expr, 0),
12266 (TREE_OPERAND (expr, 1)
12267 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
12268 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
12269 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
12270 if (TREE_CODE (expr) == COMPOUND_EXPR
12271 && !COMPOUND_EXPR_OVERLOADED (expr))
12272 return build (COMPOUND_EXPR,
12273 TREE_TYPE (expr),
12274 TREE_OPERAND (expr, 0),
12275 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
12277 /* Otherwise, build a NON_DEPENDENT_EXPR.
12279 REFERENCE_TYPEs are not stripped for expressions in templates
12280 because doing so would play havoc with mangling. Consider, for
12281 example:
12283 template <typename T> void f<T& g>() { g(); }
12285 In the body of "f", the expression for "g" will have
12286 REFERENCE_TYPE, even though the standard says that it should
12287 not. The reason is that we must preserve the syntactic form of
12288 the expression so that mangling (say) "f<g>" inside the body of
12289 "f" works out correctly. Therefore, the REFERENCE_TYPE is
12290 stripped here. */
12291 return build1 (NON_DEPENDENT_EXPR, non_reference (TREE_TYPE (expr)), expr);
12294 /* ARGS is a TREE_LIST of expressions as arguments to a function call.
12295 Return a new TREE_LIST with the various arguments replaced with
12296 equivalent non-dependent expressions. */
12298 tree
12299 build_non_dependent_args (tree args)
12301 tree a;
12302 tree new_args;
12304 new_args = NULL_TREE;
12305 for (a = args; a; a = TREE_CHAIN (a))
12306 new_args = tree_cons (NULL_TREE,
12307 build_non_dependent_expr (TREE_VALUE (a)),
12308 new_args);
12309 return nreverse (new_args);
12312 #include "gt-cp-pt.h"