This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / cp / pt.c
blob2e761469ec3c979974bc266f741d289e980fe7b9
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 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_CLASS_SCOPE_P (t))
184 push_nested_class (DECL_CONTEXT (t));
185 else
186 push_to_top_level ();
188 if (TREE_CODE (t) == FUNCTION_DECL)
190 saved_access_scope = tree_cons
191 (NULL_TREE, current_function_decl, saved_access_scope);
192 current_function_decl = t;
196 /* Restore the scope set up by push_access_scope. T is the node we
197 are processing. */
199 static void
200 pop_access_scope (tree t)
202 if (TREE_CODE (t) == FUNCTION_DECL)
204 current_function_decl = TREE_VALUE (saved_access_scope);
205 saved_access_scope = TREE_CHAIN (saved_access_scope);
208 if (DECL_CLASS_SCOPE_P (t))
209 pop_nested_class ();
210 else
211 pop_from_top_level ();
214 /* Do any processing required when DECL (a member template
215 declaration) is finished. Returns the TEMPLATE_DECL corresponding
216 to DECL, unless it is a specialization, in which case the DECL
217 itself is returned. */
219 tree
220 finish_member_template_decl (tree decl)
222 if (decl == error_mark_node)
223 return error_mark_node;
225 my_friendly_assert (DECL_P (decl), 20020812);
227 if (TREE_CODE (decl) == TYPE_DECL)
229 tree type;
231 type = TREE_TYPE (decl);
232 if (IS_AGGR_TYPE (type)
233 && CLASSTYPE_TEMPLATE_INFO (type)
234 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
236 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
237 check_member_template (tmpl);
238 return tmpl;
240 return NULL_TREE;
242 else if (TREE_CODE (decl) == FIELD_DECL)
243 error ("data member `%D' cannot be a member template", decl);
244 else if (DECL_TEMPLATE_INFO (decl))
246 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
248 check_member_template (DECL_TI_TEMPLATE (decl));
249 return DECL_TI_TEMPLATE (decl);
251 else
252 return decl;
254 else
255 error ("invalid member template declaration `%D'", decl);
257 return error_mark_node;
260 /* Returns the template nesting level of the indicated class TYPE.
262 For example, in:
263 template <class T>
264 struct A
266 template <class U>
267 struct B {};
270 A<T>::B<U> has depth two, while A<T> has depth one.
271 Both A<T>::B<int> and A<int>::B<U> have depth one, if
272 COUNT_SPECIALIZATIONS is 0 or if they are instantiations, not
273 specializations.
275 This function is guaranteed to return 0 if passed NULL_TREE so
276 that, for example, `template_class_depth (current_class_type)' is
277 always safe. */
279 static int
280 template_class_depth_real (tree type, int count_specializations)
282 int depth;
284 for (depth = 0;
285 type && TREE_CODE (type) != NAMESPACE_DECL;
286 type = (TREE_CODE (type) == FUNCTION_DECL)
287 ? CP_DECL_CONTEXT (type) : TYPE_CONTEXT (type))
289 if (TREE_CODE (type) != FUNCTION_DECL)
291 if (CLASSTYPE_TEMPLATE_INFO (type)
292 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
293 && ((count_specializations
294 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
295 || uses_template_parms (CLASSTYPE_TI_ARGS (type))))
296 ++depth;
298 else
300 if (DECL_TEMPLATE_INFO (type)
301 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (type))
302 && ((count_specializations
303 && DECL_TEMPLATE_SPECIALIZATION (type))
304 || uses_template_parms (DECL_TI_ARGS (type))))
305 ++depth;
309 return depth;
312 /* Returns the template nesting level of the indicated class TYPE.
313 Like template_class_depth_real, but instantiations do not count in
314 the depth. */
316 int
317 template_class_depth (tree type)
319 return template_class_depth_real (type, /*count_specializations=*/0);
322 /* Returns 1 if processing DECL as part of do_pending_inlines
323 needs us to push template parms. */
325 static int
326 inline_needs_template_parms (tree decl)
328 if (! DECL_TEMPLATE_INFO (decl))
329 return 0;
331 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
332 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
335 /* Subroutine of maybe_begin_member_template_processing.
336 Push the template parms in PARMS, starting from LEVELS steps into the
337 chain, and ending at the beginning, since template parms are listed
338 innermost first. */
340 static void
341 push_inline_template_parms_recursive (tree parmlist, int levels)
343 tree parms = TREE_VALUE (parmlist);
344 int i;
346 if (levels > 1)
347 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
349 ++processing_template_decl;
350 current_template_parms
351 = tree_cons (size_int (processing_template_decl),
352 parms, current_template_parms);
353 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
355 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
356 NULL);
357 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
359 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
360 my_friendly_assert (DECL_P (parm), 0);
362 switch (TREE_CODE (parm))
364 case TYPE_DECL:
365 case TEMPLATE_DECL:
366 pushdecl (parm);
367 break;
369 case PARM_DECL:
371 /* Make a CONST_DECL as is done in process_template_parm.
372 It is ugly that we recreate this here; the original
373 version built in process_template_parm is no longer
374 available. */
375 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
376 TREE_TYPE (parm));
377 DECL_ARTIFICIAL (decl) = 1;
378 TREE_CONSTANT (decl) = TREE_READONLY (decl) = 1;
379 DECL_INITIAL (decl) = DECL_INITIAL (parm);
380 SET_DECL_TEMPLATE_PARM_P (decl);
381 pushdecl (decl);
383 break;
385 default:
386 abort ();
391 /* Restore the template parameter context for a member template or
392 a friend template defined in a class definition. */
394 void
395 maybe_begin_member_template_processing (tree decl)
397 tree parms;
398 int levels = 0;
400 if (inline_needs_template_parms (decl))
402 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
403 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
405 if (DECL_TEMPLATE_SPECIALIZATION (decl))
407 --levels;
408 parms = TREE_CHAIN (parms);
411 push_inline_template_parms_recursive (parms, levels);
414 /* Remember how many levels of template parameters we pushed so that
415 we can pop them later. */
416 if (!inline_parm_levels)
417 VARRAY_INT_INIT (inline_parm_levels, 4, "inline_parm_levels");
418 if (inline_parm_levels_used == inline_parm_levels->num_elements)
419 VARRAY_GROW (inline_parm_levels, 2 * inline_parm_levels_used);
420 VARRAY_INT (inline_parm_levels, inline_parm_levels_used) = levels;
421 ++inline_parm_levels_used;
424 /* Undo the effects of begin_member_template_processing. */
426 void
427 maybe_end_member_template_processing (void)
429 int i;
431 if (!inline_parm_levels_used)
432 return;
434 --inline_parm_levels_used;
435 for (i = 0;
436 i < VARRAY_INT (inline_parm_levels, inline_parm_levels_used);
437 ++i)
439 --processing_template_decl;
440 current_template_parms = TREE_CHAIN (current_template_parms);
441 poplevel (0, 0, 0);
445 /* Returns nonzero iff T is a member template function. We must be
446 careful as in
448 template <class T> class C { void f(); }
450 Here, f is a template function, and a member, but not a member
451 template. This function does not concern itself with the origin of
452 T, only its present state. So if we have
454 template <class T> class C { template <class U> void f(U); }
456 then neither C<int>::f<char> nor C<T>::f<double> is considered
457 to be a member template. But, `template <class U> void
458 C<int>::f(U)' is considered a member template. */
461 is_member_template (tree t)
463 if (!DECL_FUNCTION_TEMPLATE_P (t))
464 /* Anything that isn't a function or a template function is
465 certainly not a member template. */
466 return 0;
468 /* A local class can't have member templates. */
469 if (decl_function_context (t))
470 return 0;
472 return (DECL_FUNCTION_MEMBER_P (DECL_TEMPLATE_RESULT (t))
473 /* If there are more levels of template parameters than
474 there are template classes surrounding the declaration,
475 then we have a member template. */
476 && (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
477 template_class_depth (DECL_CONTEXT (t))));
480 #if 0 /* UNUSED */
481 /* Returns nonzero iff T is a member template class. See
482 is_member_template for a description of what precisely constitutes
483 a member template. */
486 is_member_template_class (tree t)
488 if (!DECL_CLASS_TEMPLATE_P (t))
489 /* Anything that isn't a class template, is certainly not a member
490 template. */
491 return 0;
493 if (!DECL_CLASS_SCOPE_P (t))
494 /* Anything whose context isn't a class type is surely not a
495 member template. */
496 return 0;
498 /* If there are more levels of template parameters than there are
499 template classes surrounding the declaration, then we have a
500 member template. */
501 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
502 template_class_depth (DECL_CONTEXT (t)));
504 #endif
506 /* Return a new template argument vector which contains all of ARGS,
507 but has as its innermost set of arguments the EXTRA_ARGS. */
509 static tree
510 add_to_template_args (tree args, tree extra_args)
512 tree new_args;
513 int extra_depth;
514 int i;
515 int j;
517 extra_depth = TMPL_ARGS_DEPTH (extra_args);
518 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
520 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
521 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
523 for (j = 1; j <= extra_depth; ++j, ++i)
524 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
526 return new_args;
529 /* Like add_to_template_args, but only the outermost ARGS are added to
530 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
531 (EXTRA_ARGS) levels are added. This function is used to combine
532 the template arguments from a partial instantiation with the
533 template arguments used to attain the full instantiation from the
534 partial instantiation. */
536 static tree
537 add_outermost_template_args (tree args, tree extra_args)
539 tree new_args;
541 /* If there are more levels of EXTRA_ARGS than there are ARGS,
542 something very fishy is going on. */
543 my_friendly_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args),
546 /* If *all* the new arguments will be the EXTRA_ARGS, just return
547 them. */
548 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
549 return extra_args;
551 /* For the moment, we make ARGS look like it contains fewer levels. */
552 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
554 new_args = add_to_template_args (args, extra_args);
556 /* Now, we restore ARGS to its full dimensions. */
557 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
559 return new_args;
562 /* Return the N levels of innermost template arguments from the ARGS. */
564 tree
565 get_innermost_template_args (tree args, int n)
567 tree new_args;
568 int extra_levels;
569 int i;
571 my_friendly_assert (n >= 0, 20000603);
573 /* If N is 1, just return the innermost set of template arguments. */
574 if (n == 1)
575 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
577 /* If we're not removing anything, just return the arguments we were
578 given. */
579 extra_levels = TMPL_ARGS_DEPTH (args) - n;
580 my_friendly_assert (extra_levels >= 0, 20000603);
581 if (extra_levels == 0)
582 return args;
584 /* Make a new set of arguments, not containing the outer arguments. */
585 new_args = make_tree_vec (n);
586 for (i = 1; i <= n; ++i)
587 SET_TMPL_ARGS_LEVEL (new_args, i,
588 TMPL_ARGS_LEVEL (args, i + extra_levels));
590 return new_args;
593 /* We've got a template header coming up; push to a new level for storing
594 the parms. */
596 void
597 begin_template_parm_list (void)
599 /* We use a non-tag-transparent scope here, which causes pushtag to
600 put tags in this scope, rather than in the enclosing class or
601 namespace scope. This is the right thing, since we want
602 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
603 global template class, push_template_decl handles putting the
604 TEMPLATE_DECL into top-level scope. For a nested template class,
605 e.g.:
607 template <class T> struct S1 {
608 template <class T> struct S2 {};
611 pushtag contains special code to call pushdecl_with_scope on the
612 TEMPLATE_DECL for S2. */
613 begin_scope (sk_template_parms, NULL);
614 ++processing_template_decl;
615 ++processing_template_parmlist;
616 note_template_header (0);
619 /* This routine is called when a specialization is declared. If it is
620 invalid to declare a specialization here, an error is reported. */
622 static void
623 check_specialization_scope (void)
625 tree scope = current_scope ();
627 /* [temp.expl.spec]
629 An explicit specialization shall be declared in the namespace of
630 which the template is a member, or, for member templates, in the
631 namespace of which the enclosing class or enclosing class
632 template is a member. An explicit specialization of a member
633 function, member class or static data member of a class template
634 shall be declared in the namespace of which the class template
635 is a member. */
636 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
637 error ("explicit specialization in non-namespace scope `%D'",
638 scope);
640 /* [temp.expl.spec]
642 In an explicit specialization declaration for a member of a class
643 template or a member template that appears in namespace scope,
644 the member template and some of its enclosing class templates may
645 remain unspecialized, except that the declaration shall not
646 explicitly specialize a class member template if its enclosing
647 class templates are not explicitly specialized as well. */
648 if (current_template_parms)
649 error ("enclosing class templates are not explicitly specialized");
652 /* We've just seen template <>. */
654 void
655 begin_specialization (void)
657 begin_scope (sk_template_spec, NULL);
658 note_template_header (1);
659 check_specialization_scope ();
662 /* Called at then end of processing a declaration preceded by
663 template<>. */
665 void
666 end_specialization (void)
668 finish_scope ();
669 reset_specialization ();
672 /* Any template <>'s that we have seen thus far are not referring to a
673 function specialization. */
675 void
676 reset_specialization (void)
678 processing_specialization = 0;
679 template_header_count = 0;
682 /* We've just seen a template header. If SPECIALIZATION is nonzero,
683 it was of the form template <>. */
685 static void
686 note_template_header (int specialization)
688 processing_specialization = specialization;
689 template_header_count++;
692 /* We're beginning an explicit instantiation. */
694 void
695 begin_explicit_instantiation (void)
697 my_friendly_assert (!processing_explicit_instantiation, 20020913);
698 processing_explicit_instantiation = true;
702 void
703 end_explicit_instantiation (void)
705 my_friendly_assert(processing_explicit_instantiation, 20020913);
706 processing_explicit_instantiation = false;
709 /* The TYPE is being declared. If it is a template type, that means it
710 is a partial specialization. Do appropriate error-checking. */
712 void
713 maybe_process_partial_specialization (tree type)
715 /* TYPE maybe an ERROR_MARK_NODE. */
716 tree context = TYPE_P (type) ? TYPE_CONTEXT (type) : NULL_TREE;
718 if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
720 /* This is for ordinary explicit specialization and partial
721 specialization of a template class such as:
723 template <> class C<int>;
727 template <class T> class C<T*>;
729 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
731 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
732 && !COMPLETE_TYPE_P (type))
734 tree tpl_ns = decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type));
735 if (is_associated_namespace (current_namespace, tpl_ns))
736 /* Same or super-using namespace. */;
737 else
739 pedwarn ("specializing `%#T' in different namespace", type);
740 cp_pedwarn_at (" from definition of `%#D'",
741 CLASSTYPE_TI_TEMPLATE (type));
743 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
744 if (processing_template_decl)
745 push_template_decl (TYPE_MAIN_DECL (type));
747 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
748 error ("specialization of `%T' after instantiation", type);
750 else if (CLASS_TYPE_P (type)
751 && !CLASSTYPE_USE_TEMPLATE (type)
752 && CLASSTYPE_TEMPLATE_INFO (type)
753 && context && CLASS_TYPE_P (context)
754 && CLASSTYPE_TEMPLATE_INFO (context))
756 /* This is for an explicit specialization of member class
757 template according to [temp.expl.spec/18]:
759 template <> template <class U> class C<int>::D;
761 The context `C<int>' must be an implicit instantiation.
762 Otherwise this is just a member class template declared
763 earlier like:
765 template <> class C<int> { template <class U> class D; };
766 template <> template <class U> class C<int>::D;
768 In the first case, `C<int>::D' is a specialization of `C<T>::D'
769 while in the second case, `C<int>::D' is a primary template
770 and `C<T>::D' may not exist. */
772 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
773 && !COMPLETE_TYPE_P (type))
775 tree t;
777 if (current_namespace
778 != decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type)))
780 pedwarn ("specializing `%#T' in different namespace", type);
781 cp_pedwarn_at (" from definition of `%#D'",
782 CLASSTYPE_TI_TEMPLATE (type));
785 /* Check for invalid specialization after instantiation:
787 template <> template <> class C<int>::D<int>;
788 template <> template <class U> class C<int>::D; */
790 for (t = DECL_TEMPLATE_INSTANTIATIONS
791 (most_general_template (CLASSTYPE_TI_TEMPLATE (type)));
792 t; t = TREE_CHAIN (t))
793 if (TREE_VALUE (t) != type
794 && TYPE_CONTEXT (TREE_VALUE (t)) == context)
795 error ("specialization `%T' after instantiation `%T'",
796 type, TREE_VALUE (t));
798 /* Mark TYPE as a specialization. And as a result, we only
799 have one level of template argument for the innermost
800 class template. */
801 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
802 CLASSTYPE_TI_ARGS (type)
803 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
806 else if (processing_specialization)
807 error ("explicit specialization of non-template `%T'", type);
810 /* Retrieve the specialization (in the sense of [temp.spec] - a
811 specialization is either an instantiation or an explicit
812 specialization) of TMPL for the given template ARGS. If there is
813 no such specialization, return NULL_TREE. The ARGS are a vector of
814 arguments, or a vector of vectors of arguments, in the case of
815 templates with more than one level of parameters. */
817 static tree
818 retrieve_specialization (tree tmpl, tree args)
820 tree s;
822 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
824 /* There should be as many levels of arguments as there are
825 levels of parameters. */
826 my_friendly_assert (TMPL_ARGS_DEPTH (args)
827 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)),
830 for (s = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
831 s != NULL_TREE;
832 s = TREE_CHAIN (s))
833 if (comp_template_args (TREE_PURPOSE (s), args))
834 return TREE_VALUE (s);
836 return NULL_TREE;
839 /* Like retrieve_specialization, but for local declarations. */
841 static tree
842 retrieve_local_specialization (tree tmpl)
844 tree spec = htab_find_with_hash (local_specializations, tmpl,
845 htab_hash_pointer (tmpl));
846 return spec ? TREE_PURPOSE (spec) : NULL_TREE;
849 /* Returns nonzero iff DECL is a specialization of TMPL. */
852 is_specialization_of (tree decl, tree tmpl)
854 tree t;
856 if (TREE_CODE (decl) == FUNCTION_DECL)
858 for (t = decl;
859 t != NULL_TREE;
860 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
861 if (t == tmpl)
862 return 1;
864 else
866 my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 0);
868 for (t = TREE_TYPE (decl);
869 t != NULL_TREE;
870 t = CLASSTYPE_USE_TEMPLATE (t)
871 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
872 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
873 return 1;
876 return 0;
879 /* Returns nonzero iff DECL is a specialization of friend declaration
880 FRIEND according to [temp.friend]. */
882 bool
883 is_specialization_of_friend (tree decl, tree friend)
885 bool need_template = true;
886 int template_depth;
888 my_friendly_assert (TREE_CODE (decl) == FUNCTION_DECL, 0);
890 /* For [temp.friend/6] when FRIEND is an ordinary member function
891 of a template class, we want to check if DECL is a specialization
892 if this. */
893 if (TREE_CODE (friend) == FUNCTION_DECL
894 && DECL_TEMPLATE_INFO (friend)
895 && !DECL_USE_TEMPLATE (friend))
897 friend = DECL_TI_TEMPLATE (friend);
898 need_template = false;
901 /* There is nothing to do if this is not a template friend. */
902 if (TREE_CODE (friend) != TEMPLATE_DECL)
903 return 0;
905 if (is_specialization_of (decl, friend))
906 return 1;
908 /* [temp.friend/6]
909 A member of a class template may be declared to be a friend of a
910 non-template class. In this case, the corresponding member of
911 every specialization of the class template is a friend of the
912 class granting friendship.
914 For example, given a template friend declaration
916 template <class T> friend void A<T>::f();
918 the member function below is considered a friend
920 template <> struct A<int> {
921 void f();
924 For this type of template friend, TEMPLATE_DEPTH below will be
925 nonzero. To determine if DECL is a friend of FRIEND, we first
926 check if the enclosing class is a specialization of another. */
928 template_depth = template_class_depth (DECL_CONTEXT (friend));
929 if (template_depth
930 && DECL_CLASS_SCOPE_P (decl)
931 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
932 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend))))
934 /* Next, we check the members themselves. In order to handle
935 a few tricky cases like
937 template <class T> friend void A<T>::g(T t);
938 template <class T> template <T t> friend void A<T>::h();
940 we need to figure out what ARGS is (corresponding to `T' in above
941 examples) from DECL for later processing. */
943 tree context = DECL_CONTEXT (decl);
944 tree args = NULL_TREE;
945 int current_depth = 0;
946 while (current_depth < template_depth)
948 if (CLASSTYPE_TEMPLATE_INFO (context))
950 if (current_depth == 0)
951 args = TYPE_TI_ARGS (context);
952 else
953 args = add_to_template_args (TYPE_TI_ARGS (context), args);
954 current_depth++;
956 context = TYPE_CONTEXT (context);
959 if (TREE_CODE (decl) == FUNCTION_DECL)
961 bool is_template;
962 tree friend_type;
963 tree decl_type;
964 tree friend_args_type;
965 tree decl_args_type;
967 /* Make sure that both DECL and FRIEND are templates or
968 non-templates. */
969 is_template = DECL_TEMPLATE_INFO (decl)
970 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
971 if (need_template ^ is_template)
972 return 0;
973 else if (is_template)
975 /* If both are templates, check template parameter list. */
976 tree friend_parms
977 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
978 args, tf_none);
979 if (!comp_template_parms
980 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
981 friend_parms))
982 return 0;
984 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
986 else
987 decl_type = TREE_TYPE (decl);
989 friend_type = tsubst_function_type (TREE_TYPE (friend), args,
990 tf_none, NULL_TREE);
991 if (friend_type == error_mark_node)
992 return 0;
994 /* Check if return types match. */
995 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
996 return 0;
998 /* Check if function parameter types match, ignoring the
999 `this' parameter. */
1000 friend_args_type = TYPE_ARG_TYPES (friend_type);
1001 decl_args_type = TYPE_ARG_TYPES (decl_type);
1002 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend))
1003 friend_args_type = TREE_CHAIN (friend_args_type);
1004 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1005 decl_args_type = TREE_CHAIN (decl_args_type);
1006 if (compparms (decl_args_type, friend_args_type))
1007 return 1;
1010 return 0;
1013 /* Register the specialization SPEC as a specialization of TMPL with
1014 the indicated ARGS. Returns SPEC, or an equivalent prior
1015 declaration, if available. */
1017 static tree
1018 register_specialization (tree spec, tree tmpl, tree args)
1020 tree s;
1022 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
1024 if (TREE_CODE (spec) == FUNCTION_DECL
1025 && uses_template_parms (DECL_TI_ARGS (spec)))
1026 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1027 register it; we want the corresponding TEMPLATE_DECL instead.
1028 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1029 the more obvious `uses_template_parms (spec)' to avoid problems
1030 with default function arguments. In particular, given
1031 something like this:
1033 template <class T> void f(T t1, T t = T())
1035 the default argument expression is not substituted for in an
1036 instantiation unless and until it is actually needed. */
1037 return spec;
1039 /* There should be as many levels of arguments as there are
1040 levels of parameters. */
1041 my_friendly_assert (TMPL_ARGS_DEPTH (args)
1042 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)),
1045 for (s = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
1046 s != NULL_TREE;
1047 s = TREE_CHAIN (s))
1049 tree fn = TREE_VALUE (s);
1051 /* We can sometimes try to re-register a specialization that we've
1052 already got. In particular, regenerate_decl_from_template
1053 calls duplicate_decls which will update the specialization
1054 list. But, we'll still get called again here anyhow. It's
1055 more convenient to simply allow this than to try to prevent it. */
1056 if (fn == spec)
1057 return spec;
1058 else if (comp_template_args (TREE_PURPOSE (s), args))
1060 if (DECL_TEMPLATE_SPECIALIZATION (spec))
1062 if (DECL_TEMPLATE_INSTANTIATION (fn))
1064 if (TREE_USED (fn)
1065 || DECL_EXPLICIT_INSTANTIATION (fn))
1067 error ("specialization of %D after instantiation",
1068 fn);
1069 return spec;
1071 else
1073 /* This situation should occur only if the first
1074 specialization is an implicit instantiation,
1075 the second is an explicit specialization, and
1076 the implicit instantiation has not yet been
1077 used. That situation can occur if we have
1078 implicitly instantiated a member function and
1079 then specialized it later.
1081 We can also wind up here if a friend
1082 declaration that looked like an instantiation
1083 turns out to be a specialization:
1085 template <class T> void foo(T);
1086 class S { friend void foo<>(int) };
1087 template <> void foo(int);
1089 We transform the existing DECL in place so that
1090 any pointers to it become pointers to the
1091 updated declaration.
1093 If there was a definition for the template, but
1094 not for the specialization, we want this to
1095 look as if there is no definition, and vice
1096 versa. */
1097 DECL_INITIAL (fn) = NULL_TREE;
1098 duplicate_decls (spec, fn);
1100 return fn;
1103 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1105 if (!duplicate_decls (spec, fn) && DECL_INITIAL (spec))
1106 /* Dup decl failed, but this is a new
1107 definition. Set the line number so any errors
1108 match this new definition. */
1109 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1111 return fn;
1117 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
1118 = tree_cons (args, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
1120 return spec;
1123 /* Unregister the specialization SPEC as a specialization of TMPL.
1124 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1125 if the SPEC was listed as a specialization of TMPL. */
1127 bool
1128 reregister_specialization (tree spec, tree tmpl, tree new_spec)
1130 tree* s;
1132 for (s = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
1133 *s != NULL_TREE;
1134 s = &TREE_CHAIN (*s))
1135 if (TREE_VALUE (*s) == spec)
1137 if (!new_spec)
1138 *s = TREE_CHAIN (*s);
1139 else
1140 TREE_VALUE (*s) = new_spec;
1141 return 1;
1144 return 0;
1147 /* Compare an entry in the local specializations hash table P1 (which
1148 is really a pointer to a TREE_LIST) with P2 (which is really a
1149 DECL). */
1151 static int
1152 eq_local_specializations (const void *p1, const void *p2)
1154 return TREE_VALUE ((tree) p1) == (tree) p2;
1157 /* Hash P1, an entry in the local specializations table. */
1159 static hashval_t
1160 hash_local_specialization (const void* p1)
1162 return htab_hash_pointer (TREE_VALUE ((tree) p1));
1165 /* Like register_specialization, but for local declarations. We are
1166 registering SPEC, an instantiation of TMPL. */
1168 static void
1169 register_local_specialization (tree spec, tree tmpl)
1171 void **slot;
1173 slot = htab_find_slot_with_hash (local_specializations, tmpl,
1174 htab_hash_pointer (tmpl), INSERT);
1175 *slot = build_tree_list (spec, tmpl);
1178 /* Print the list of candidate FNS in an error message. */
1180 void
1181 print_candidates (tree fns)
1183 tree fn;
1185 const char *str = "candidates are:";
1187 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn))
1189 tree f;
1191 for (f = TREE_VALUE (fn); f; f = OVL_NEXT (f))
1192 cp_error_at ("%s %+#D", str, OVL_CURRENT (f));
1193 str = " ";
1197 /* Returns the template (one of the functions given by TEMPLATE_ID)
1198 which can be specialized to match the indicated DECL with the
1199 explicit template args given in TEMPLATE_ID. The DECL may be
1200 NULL_TREE if none is available. In that case, the functions in
1201 TEMPLATE_ID are non-members.
1203 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1204 specialization of a member template.
1206 The template args (those explicitly specified and those deduced)
1207 are output in a newly created vector *TARGS_OUT.
1209 If it is impossible to determine the result, an error message is
1210 issued. The error_mark_node is returned to indicate failure. */
1212 static tree
1213 determine_specialization (tree template_id,
1214 tree decl,
1215 tree* targs_out,
1216 int need_member_template)
1218 tree fns;
1219 tree targs;
1220 tree explicit_targs;
1221 tree candidates = NULL_TREE;
1222 tree templates = NULL_TREE;
1224 *targs_out = NULL_TREE;
1226 if (template_id == error_mark_node)
1227 return error_mark_node;
1229 fns = TREE_OPERAND (template_id, 0);
1230 explicit_targs = TREE_OPERAND (template_id, 1);
1232 if (fns == error_mark_node)
1233 return error_mark_node;
1235 /* Check for baselinks. */
1236 if (BASELINK_P (fns))
1237 fns = BASELINK_FUNCTIONS (fns);
1239 if (!is_overloaded_fn (fns))
1241 error ("`%D' is not a function template", fns);
1242 return error_mark_node;
1245 for (; fns; fns = OVL_NEXT (fns))
1247 tree fn = OVL_CURRENT (fns);
1249 if (TREE_CODE (fn) == TEMPLATE_DECL)
1251 tree decl_arg_types;
1252 tree fn_arg_types;
1254 /* DECL might be a specialization of FN. */
1256 /* Adjust the type of DECL in case FN is a static member. */
1257 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1258 if (DECL_STATIC_FUNCTION_P (fn)
1259 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1260 decl_arg_types = TREE_CHAIN (decl_arg_types);
1262 /* Check that the number of function parameters matches.
1263 For example,
1264 template <class T> void f(int i = 0);
1265 template <> void f<int>();
1266 The specialization f<int> is invalid but is not caught
1267 by get_bindings below. */
1269 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1270 if (list_length (fn_arg_types) != list_length (decl_arg_types))
1271 continue;
1273 /* For a non-static member function, we need to make sure that
1274 the const qualification is the same. This can be done by
1275 checking the 'this' in the argument list. */
1276 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1277 && !same_type_p (TREE_VALUE (fn_arg_types),
1278 TREE_VALUE (decl_arg_types)))
1279 continue;
1281 /* See whether this function might be a specialization of this
1282 template. */
1283 targs = get_bindings (fn, decl, explicit_targs);
1285 if (!targs)
1286 /* We cannot deduce template arguments that when used to
1287 specialize TMPL will produce DECL. */
1288 continue;
1290 /* Save this template, and the arguments deduced. */
1291 templates = tree_cons (targs, fn, templates);
1293 else if (need_member_template)
1294 /* FN is an ordinary member function, and we need a
1295 specialization of a member template. */
1297 else if (TREE_CODE (fn) != FUNCTION_DECL)
1298 /* We can get IDENTIFIER_NODEs here in certain erroneous
1299 cases. */
1301 else if (!DECL_FUNCTION_MEMBER_P (fn))
1302 /* This is just an ordinary non-member function. Nothing can
1303 be a specialization of that. */
1305 else if (DECL_ARTIFICIAL (fn))
1306 /* Cannot specialize functions that are created implicitly. */
1308 else
1310 tree decl_arg_types;
1312 /* This is an ordinary member function. However, since
1313 we're here, we can assume it's enclosing class is a
1314 template class. For example,
1316 template <typename T> struct S { void f(); };
1317 template <> void S<int>::f() {}
1319 Here, S<int>::f is a non-template, but S<int> is a
1320 template class. If FN has the same type as DECL, we
1321 might be in business. */
1323 if (!DECL_TEMPLATE_INFO (fn))
1324 /* Its enclosing class is an explicit specialization
1325 of a template class. This is not a candidate. */
1326 continue;
1328 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1329 TREE_TYPE (TREE_TYPE (fn))))
1330 /* The return types differ. */
1331 continue;
1333 /* Adjust the type of DECL in case FN is a static member. */
1334 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1335 if (DECL_STATIC_FUNCTION_P (fn)
1336 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1337 decl_arg_types = TREE_CHAIN (decl_arg_types);
1339 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1340 decl_arg_types))
1341 /* They match! */
1342 candidates = tree_cons (NULL_TREE, fn, candidates);
1346 if (templates && TREE_CHAIN (templates))
1348 /* We have:
1350 [temp.expl.spec]
1352 It is possible for a specialization with a given function
1353 signature to be instantiated from more than one function
1354 template. In such cases, explicit specification of the
1355 template arguments must be used to uniquely identify the
1356 function template specialization being specialized.
1358 Note that here, there's no suggestion that we're supposed to
1359 determine which of the candidate templates is most
1360 specialized. However, we, also have:
1362 [temp.func.order]
1364 Partial ordering of overloaded function template
1365 declarations is used in the following contexts to select
1366 the function template to which a function template
1367 specialization refers:
1369 -- when an explicit specialization refers to a function
1370 template.
1372 So, we do use the partial ordering rules, at least for now.
1373 This extension can only serve to make invalid programs valid,
1374 so it's safe. And, there is strong anecdotal evidence that
1375 the committee intended the partial ordering rules to apply;
1376 the EDG front-end has that behavior, and John Spicer claims
1377 that the committee simply forgot to delete the wording in
1378 [temp.expl.spec]. */
1379 tree tmpl = most_specialized (templates, decl, explicit_targs);
1380 if (tmpl && tmpl != error_mark_node)
1382 targs = get_bindings (tmpl, decl, explicit_targs);
1383 templates = tree_cons (targs, tmpl, NULL_TREE);
1387 if (templates == NULL_TREE && candidates == NULL_TREE)
1389 cp_error_at ("template-id `%D' for `%+D' does not match any template declaration",
1390 template_id, decl);
1391 return error_mark_node;
1393 else if ((templates && TREE_CHAIN (templates))
1394 || (candidates && TREE_CHAIN (candidates))
1395 || (templates && candidates))
1397 cp_error_at ("ambiguous template specialization `%D' for `%+D'",
1398 template_id, decl);
1399 chainon (candidates, templates);
1400 print_candidates (candidates);
1401 return error_mark_node;
1404 /* We have one, and exactly one, match. */
1405 if (candidates)
1407 /* It was a specialization of an ordinary member function in a
1408 template class. */
1409 *targs_out = copy_node (DECL_TI_ARGS (TREE_VALUE (candidates)));
1410 return DECL_TI_TEMPLATE (TREE_VALUE (candidates));
1413 /* It was a specialization of a template. */
1414 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
1415 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
1417 *targs_out = copy_node (targs);
1418 SET_TMPL_ARGS_LEVEL (*targs_out,
1419 TMPL_ARGS_DEPTH (*targs_out),
1420 TREE_PURPOSE (templates));
1422 else
1423 *targs_out = TREE_PURPOSE (templates);
1424 return TREE_VALUE (templates);
1427 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
1428 but with the default argument values filled in from those in the
1429 TMPL_TYPES. */
1431 static tree
1432 copy_default_args_to_explicit_spec_1 (tree spec_types,
1433 tree tmpl_types)
1435 tree new_spec_types;
1437 if (!spec_types)
1438 return NULL_TREE;
1440 if (spec_types == void_list_node)
1441 return void_list_node;
1443 /* Substitute into the rest of the list. */
1444 new_spec_types =
1445 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
1446 TREE_CHAIN (tmpl_types));
1448 /* Add the default argument for this parameter. */
1449 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
1450 TREE_VALUE (spec_types),
1451 new_spec_types);
1454 /* DECL is an explicit specialization. Replicate default arguments
1455 from the template it specializes. (That way, code like:
1457 template <class T> void f(T = 3);
1458 template <> void f(double);
1459 void g () { f (); }
1461 works, as required.) An alternative approach would be to look up
1462 the correct default arguments at the call-site, but this approach
1463 is consistent with how implicit instantiations are handled. */
1465 static void
1466 copy_default_args_to_explicit_spec (tree decl)
1468 tree tmpl;
1469 tree spec_types;
1470 tree tmpl_types;
1471 tree new_spec_types;
1472 tree old_type;
1473 tree new_type;
1474 tree t;
1475 tree object_type = NULL_TREE;
1476 tree in_charge = NULL_TREE;
1477 tree vtt = NULL_TREE;
1479 /* See if there's anything we need to do. */
1480 tmpl = DECL_TI_TEMPLATE (decl);
1481 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
1482 for (t = tmpl_types; t; t = TREE_CHAIN (t))
1483 if (TREE_PURPOSE (t))
1484 break;
1485 if (!t)
1486 return;
1488 old_type = TREE_TYPE (decl);
1489 spec_types = TYPE_ARG_TYPES (old_type);
1491 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1493 /* Remove the this pointer, but remember the object's type for
1494 CV quals. */
1495 object_type = TREE_TYPE (TREE_VALUE (spec_types));
1496 spec_types = TREE_CHAIN (spec_types);
1497 tmpl_types = TREE_CHAIN (tmpl_types);
1499 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
1501 /* DECL may contain more parameters than TMPL due to the extra
1502 in-charge parameter in constructors and destructors. */
1503 in_charge = spec_types;
1504 spec_types = TREE_CHAIN (spec_types);
1506 if (DECL_HAS_VTT_PARM_P (decl))
1508 vtt = spec_types;
1509 spec_types = TREE_CHAIN (spec_types);
1513 /* Compute the merged default arguments. */
1514 new_spec_types =
1515 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
1517 /* Compute the new FUNCTION_TYPE. */
1518 if (object_type)
1520 if (vtt)
1521 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
1522 TREE_VALUE (vtt),
1523 new_spec_types);
1525 if (in_charge)
1526 /* Put the in-charge parameter back. */
1527 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
1528 TREE_VALUE (in_charge),
1529 new_spec_types);
1531 new_type = build_method_type_directly (object_type,
1532 TREE_TYPE (old_type),
1533 new_spec_types);
1535 else
1536 new_type = build_function_type (TREE_TYPE (old_type),
1537 new_spec_types);
1538 new_type = cp_build_type_attribute_variant (new_type,
1539 TYPE_ATTRIBUTES (old_type));
1540 new_type = build_exception_variant (new_type,
1541 TYPE_RAISES_EXCEPTIONS (old_type));
1542 TREE_TYPE (decl) = new_type;
1545 /* Check to see if the function just declared, as indicated in
1546 DECLARATOR, and in DECL, is a specialization of a function
1547 template. We may also discover that the declaration is an explicit
1548 instantiation at this point.
1550 Returns DECL, or an equivalent declaration that should be used
1551 instead if all goes well. Issues an error message if something is
1552 amiss. Returns error_mark_node if the error is not easily
1553 recoverable.
1555 FLAGS is a bitmask consisting of the following flags:
1557 2: The function has a definition.
1558 4: The function is a friend.
1560 The TEMPLATE_COUNT is the number of references to qualifying
1561 template classes that appeared in the name of the function. For
1562 example, in
1564 template <class T> struct S { void f(); };
1565 void S<int>::f();
1567 the TEMPLATE_COUNT would be 1. However, explicitly specialized
1568 classes are not counted in the TEMPLATE_COUNT, so that in
1570 template <class T> struct S {};
1571 template <> struct S<int> { void f(); }
1572 template <> void S<int>::f();
1574 the TEMPLATE_COUNT would be 0. (Note that this declaration is
1575 invalid; there should be no template <>.)
1577 If the function is a specialization, it is marked as such via
1578 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
1579 is set up correctly, and it is added to the list of specializations
1580 for that template. */
1582 tree
1583 check_explicit_specialization (tree declarator,
1584 tree decl,
1585 int template_count,
1586 int flags)
1588 int have_def = flags & 2;
1589 int is_friend = flags & 4;
1590 int specialization = 0;
1591 int explicit_instantiation = 0;
1592 int member_specialization = 0;
1593 tree ctype = DECL_CLASS_CONTEXT (decl);
1594 tree dname = DECL_NAME (decl);
1595 tmpl_spec_kind tsk;
1597 tsk = current_tmpl_spec_kind (template_count);
1599 switch (tsk)
1601 case tsk_none:
1602 if (processing_specialization)
1604 specialization = 1;
1605 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1607 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1609 if (is_friend)
1610 /* This could be something like:
1612 template <class T> void f(T);
1613 class S { friend void f<>(int); } */
1614 specialization = 1;
1615 else
1617 /* This case handles bogus declarations like template <>
1618 template <class T> void f<int>(); */
1620 error ("template-id `%D' in declaration of primary template",
1621 declarator);
1622 return decl;
1625 break;
1627 case tsk_invalid_member_spec:
1628 /* The error has already been reported in
1629 check_specialization_scope. */
1630 return error_mark_node;
1632 case tsk_invalid_expl_inst:
1633 error ("template parameter list used in explicit instantiation");
1635 /* Fall through. */
1637 case tsk_expl_inst:
1638 if (have_def)
1639 error ("definition provided for explicit instantiation");
1641 explicit_instantiation = 1;
1642 break;
1644 case tsk_excessive_parms:
1645 error ("too many template parameter lists in declaration of `%D'",
1646 decl);
1647 return error_mark_node;
1649 /* Fall through. */
1650 case tsk_expl_spec:
1651 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1652 if (ctype)
1653 member_specialization = 1;
1654 else
1655 specialization = 1;
1656 break;
1658 case tsk_insufficient_parms:
1659 if (template_header_count)
1661 error("too few template parameter lists in declaration of `%D'",
1662 decl);
1663 return decl;
1665 else if (ctype != NULL_TREE
1666 && !TYPE_BEING_DEFINED (ctype)
1667 && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype)
1668 && !is_friend)
1670 /* For backwards compatibility, we accept:
1672 template <class T> struct S { void f(); };
1673 void S<int>::f() {} // Missing template <>
1675 That used to be valid C++. */
1676 if (pedantic)
1677 pedwarn
1678 ("explicit specialization not preceded by `template <>'");
1679 specialization = 1;
1680 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1682 break;
1684 case tsk_template:
1685 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1687 /* This case handles bogus declarations like template <>
1688 template <class T> void f<int>(); */
1690 if (uses_template_parms (declarator))
1691 error ("partial specialization `%D' of function template",
1692 declarator);
1693 else
1694 error ("template-id `%D' in declaration of primary template",
1695 declarator);
1696 return decl;
1699 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
1700 /* This is a specialization of a member template, without
1701 specialization the containing class. Something like:
1703 template <class T> struct S {
1704 template <class U> void f (U);
1706 template <> template <class U> void S<int>::f(U) {}
1708 That's a specialization -- but of the entire template. */
1709 specialization = 1;
1710 break;
1712 default:
1713 abort ();
1716 if (specialization || member_specialization)
1718 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
1719 for (; t; t = TREE_CHAIN (t))
1720 if (TREE_PURPOSE (t))
1722 pedwarn
1723 ("default argument specified in explicit specialization");
1724 break;
1726 if (current_lang_name == lang_name_c)
1727 error ("template specialization with C linkage");
1730 if (specialization || member_specialization || explicit_instantiation)
1732 tree tmpl = NULL_TREE;
1733 tree targs = NULL_TREE;
1735 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
1736 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
1738 tree fns;
1740 my_friendly_assert (TREE_CODE (declarator) == IDENTIFIER_NODE, 0);
1741 if (ctype)
1742 fns = dname;
1743 else
1745 /* If there is no class context, the explicit instantiation
1746 must be at namespace scope. */
1747 my_friendly_assert (DECL_NAMESPACE_SCOPE_P (decl), 20030625);
1749 /* Find the namespace binding, using the declaration
1750 context. */
1751 fns = namespace_binding (dname, CP_DECL_CONTEXT (decl));
1754 declarator = lookup_template_function (fns, NULL_TREE);
1757 if (declarator == error_mark_node)
1758 return error_mark_node;
1760 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
1762 if (!explicit_instantiation)
1763 /* A specialization in class scope. This is invalid,
1764 but the error will already have been flagged by
1765 check_specialization_scope. */
1766 return error_mark_node;
1767 else
1769 /* It's not valid to write an explicit instantiation in
1770 class scope, e.g.:
1772 class C { template void f(); }
1774 This case is caught by the parser. However, on
1775 something like:
1777 template class C { void f(); };
1779 (which is invalid) we can get here. The error will be
1780 issued later. */
1784 return decl;
1786 else if (ctype != NULL_TREE
1787 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
1788 IDENTIFIER_NODE))
1790 /* Find the list of functions in ctype that have the same
1791 name as the declared function. */
1792 tree name = TREE_OPERAND (declarator, 0);
1793 tree fns = NULL_TREE;
1794 int idx;
1796 if (constructor_name_p (name, ctype))
1798 int is_constructor = DECL_CONSTRUCTOR_P (decl);
1800 if (is_constructor ? !TYPE_HAS_CONSTRUCTOR (ctype)
1801 : !TYPE_HAS_DESTRUCTOR (ctype))
1803 /* From [temp.expl.spec]:
1805 If such an explicit specialization for the member
1806 of a class template names an implicitly-declared
1807 special member function (clause _special_), the
1808 program is ill-formed.
1810 Similar language is found in [temp.explicit]. */
1811 error ("specialization of implicitly-declared special member function");
1812 return error_mark_node;
1815 name = is_constructor ? ctor_identifier : dtor_identifier;
1818 if (!DECL_CONV_FN_P (decl))
1820 idx = lookup_fnfields_1 (ctype, name);
1821 if (idx >= 0)
1822 fns = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (ctype), idx);
1824 else
1826 tree methods;
1828 /* For a type-conversion operator, we cannot do a
1829 name-based lookup. We might be looking for `operator
1830 int' which will be a specialization of `operator T'.
1831 So, we find *all* the conversion operators, and then
1832 select from them. */
1833 fns = NULL_TREE;
1835 methods = CLASSTYPE_METHOD_VEC (ctype);
1836 if (methods)
1837 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
1838 idx < TREE_VEC_LENGTH (methods); ++idx)
1840 tree ovl = TREE_VEC_ELT (methods, idx);
1842 if (!ovl || !DECL_CONV_FN_P (OVL_CURRENT (ovl)))
1843 /* There are no more conversion functions. */
1844 break;
1846 /* Glue all these conversion functions together
1847 with those we already have. */
1848 for (; ovl; ovl = OVL_NEXT (ovl))
1849 fns = ovl_cons (OVL_CURRENT (ovl), fns);
1853 if (fns == NULL_TREE)
1855 error ("no member function `%D' declared in `%T'",
1856 name, ctype);
1857 return error_mark_node;
1859 else
1860 TREE_OPERAND (declarator, 0) = fns;
1863 /* Figure out what exactly is being specialized at this point.
1864 Note that for an explicit instantiation, even one for a
1865 member function, we cannot tell apriori whether the
1866 instantiation is for a member template, or just a member
1867 function of a template class. Even if a member template is
1868 being instantiated, the member template arguments may be
1869 elided if they can be deduced from the rest of the
1870 declaration. */
1871 tmpl = determine_specialization (declarator, decl,
1872 &targs,
1873 member_specialization);
1875 if (!tmpl || tmpl == error_mark_node)
1876 /* We couldn't figure out what this declaration was
1877 specializing. */
1878 return error_mark_node;
1879 else
1881 tree gen_tmpl = most_general_template (tmpl);
1883 if (explicit_instantiation)
1885 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
1886 is done by do_decl_instantiation later. */
1888 int arg_depth = TMPL_ARGS_DEPTH (targs);
1889 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
1891 if (arg_depth > parm_depth)
1893 /* If TMPL is not the most general template (for
1894 example, if TMPL is a friend template that is
1895 injected into namespace scope), then there will
1896 be too many levels of TARGS. Remove some of them
1897 here. */
1898 int i;
1899 tree new_targs;
1901 new_targs = make_tree_vec (parm_depth);
1902 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
1903 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
1904 = TREE_VEC_ELT (targs, i);
1905 targs = new_targs;
1908 return instantiate_template (tmpl, targs, tf_error);
1911 /* If we thought that the DECL was a member function, but it
1912 turns out to be specializing a static member function,
1913 make DECL a static member function as well. */
1914 if (DECL_STATIC_FUNCTION_P (tmpl)
1915 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1916 revert_static_member_fn (decl);
1918 /* If this is a specialization of a member template of a
1919 template class. In we want to return the TEMPLATE_DECL,
1920 not the specialization of it. */
1921 if (tsk == tsk_template)
1923 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
1924 DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl)) = NULL_TREE;
1925 if (have_def)
1927 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
1928 DECL_SOURCE_LOCATION (DECL_TEMPLATE_RESULT (tmpl))
1929 = DECL_SOURCE_LOCATION (decl);
1931 return tmpl;
1934 /* Set up the DECL_TEMPLATE_INFO for DECL. */
1935 DECL_TEMPLATE_INFO (decl) = tree_cons (tmpl, targs, NULL_TREE);
1937 /* Inherit default function arguments from the template
1938 DECL is specializing. */
1939 copy_default_args_to_explicit_spec (decl);
1941 /* This specialization has the same protection as the
1942 template it specializes. */
1943 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
1944 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
1946 if (is_friend && !have_def)
1947 /* This is not really a declaration of a specialization.
1948 It's just the name of an instantiation. But, it's not
1949 a request for an instantiation, either. */
1950 SET_DECL_IMPLICIT_INSTANTIATION (decl);
1951 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
1952 /* This is indeed a specialization. In case of constructors
1953 and destructors, we need in-charge and not-in-charge
1954 versions in V3 ABI. */
1955 clone_function_decl (decl, /*update_method_vec_p=*/0);
1957 /* Register this specialization so that we can find it
1958 again. */
1959 decl = register_specialization (decl, gen_tmpl, targs);
1963 return decl;
1966 /* TYPE is being declared. Verify that the use of template headers
1967 and such is reasonable. Issue error messages if not. */
1969 void
1970 maybe_check_template_type (tree type)
1972 if (template_header_count)
1974 /* We are in the scope of some `template <...>' header. */
1976 int context_depth
1977 = template_class_depth_real (TYPE_CONTEXT (type),
1978 /*count_specializations=*/1);
1980 if (template_header_count <= context_depth)
1981 /* This is OK; the template headers are for the context. We
1982 are actually too lenient here; like
1983 check_explicit_specialization we should consider the number
1984 of template types included in the actual declaration. For
1985 example,
1987 template <class T> struct S {
1988 template <class U> template <class V>
1989 struct I {};
1992 is invalid, but:
1994 template <class T> struct S {
1995 template <class U> struct I;
1998 template <class T> template <class U.
1999 struct S<T>::I {};
2001 is not. */
2003 else if (template_header_count > context_depth + 1)
2004 /* There are two many template parameter lists. */
2005 error ("too many template parameter lists in declaration of `%T'", type);
2009 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2010 parameters. These are represented in the same format used for
2011 DECL_TEMPLATE_PARMS. */
2013 int comp_template_parms (tree parms1, tree parms2)
2015 tree p1;
2016 tree p2;
2018 if (parms1 == parms2)
2019 return 1;
2021 for (p1 = parms1, p2 = parms2;
2022 p1 != NULL_TREE && p2 != NULL_TREE;
2023 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2025 tree t1 = TREE_VALUE (p1);
2026 tree t2 = TREE_VALUE (p2);
2027 int i;
2029 my_friendly_assert (TREE_CODE (t1) == TREE_VEC, 0);
2030 my_friendly_assert (TREE_CODE (t2) == TREE_VEC, 0);
2032 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2033 return 0;
2035 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2037 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2038 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2040 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2041 return 0;
2043 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM)
2044 continue;
2045 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2046 return 0;
2050 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2051 /* One set of parameters has more parameters lists than the
2052 other. */
2053 return 0;
2055 return 1;
2058 /* Complain if DECL shadows a template parameter.
2060 [temp.local]: A template-parameter shall not be redeclared within its
2061 scope (including nested scopes). */
2063 void
2064 check_template_shadow (tree decl)
2066 tree olddecl;
2068 /* If we're not in a template, we can't possibly shadow a template
2069 parameter. */
2070 if (!current_template_parms)
2071 return;
2073 /* Figure out what we're shadowing. */
2074 if (TREE_CODE (decl) == OVERLOAD)
2075 decl = OVL_CURRENT (decl);
2076 olddecl = IDENTIFIER_VALUE (DECL_NAME (decl));
2078 /* If there's no previous binding for this name, we're not shadowing
2079 anything, let alone a template parameter. */
2080 if (!olddecl)
2081 return;
2083 /* If we're not shadowing a template parameter, we're done. Note
2084 that OLDDECL might be an OVERLOAD (or perhaps even an
2085 ERROR_MARK), so we can't just blithely assume it to be a _DECL
2086 node. */
2087 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
2088 return;
2090 /* We check for decl != olddecl to avoid bogus errors for using a
2091 name inside a class. We check TPFI to avoid duplicate errors for
2092 inline member templates. */
2093 if (decl == olddecl
2094 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
2095 return;
2097 cp_error_at ("declaration of `%#D'", decl);
2098 cp_error_at (" shadows template parm `%#D'", olddecl);
2101 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
2102 ORIG_LEVEL, DECL, and TYPE. */
2104 static tree
2105 build_template_parm_index (int index,
2106 int level,
2107 int orig_level,
2108 tree decl,
2109 tree type)
2111 tree t = make_node (TEMPLATE_PARM_INDEX);
2112 TEMPLATE_PARM_IDX (t) = index;
2113 TEMPLATE_PARM_LEVEL (t) = level;
2114 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
2115 TEMPLATE_PARM_DECL (t) = decl;
2116 TREE_TYPE (t) = type;
2117 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
2118 TREE_READONLY (t) = TREE_READONLY (decl);
2120 return t;
2123 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
2124 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
2125 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
2126 new one is created. */
2128 static tree
2129 reduce_template_parm_level (tree index, tree type, int levels)
2131 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
2132 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
2133 != TEMPLATE_PARM_LEVEL (index) - levels))
2135 tree orig_decl = TEMPLATE_PARM_DECL (index);
2136 tree decl, t;
2138 decl = build_decl (TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
2139 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
2140 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
2141 DECL_ARTIFICIAL (decl) = 1;
2142 SET_DECL_TEMPLATE_PARM_P (decl);
2144 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
2145 TEMPLATE_PARM_LEVEL (index) - levels,
2146 TEMPLATE_PARM_ORIG_LEVEL (index),
2147 decl, type);
2148 TEMPLATE_PARM_DESCENDANTS (index) = t;
2150 /* Template template parameters need this. */
2151 DECL_TEMPLATE_PARMS (decl)
2152 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index));
2155 return TEMPLATE_PARM_DESCENDANTS (index);
2158 /* Process information from new template parameter NEXT and append it to the
2159 LIST being built. */
2161 tree
2162 process_template_parm (tree list, tree next)
2164 tree parm;
2165 tree decl = 0;
2166 tree defval;
2167 int is_type, idx;
2169 parm = next;
2170 my_friendly_assert (TREE_CODE (parm) == TREE_LIST, 259);
2171 defval = TREE_PURPOSE (parm);
2172 parm = TREE_VALUE (parm);
2173 is_type = TREE_PURPOSE (parm) == class_type_node;
2175 if (list)
2177 tree p = TREE_VALUE (tree_last (list));
2179 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
2180 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
2181 else
2182 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
2183 ++idx;
2185 else
2186 idx = 0;
2188 if (!is_type)
2190 my_friendly_assert (TREE_CODE (TREE_PURPOSE (parm)) == TREE_LIST, 260);
2191 /* is a const-param */
2192 parm = grokdeclarator (TREE_VALUE (parm), TREE_PURPOSE (parm),
2193 PARM, 0, NULL);
2194 SET_DECL_TEMPLATE_PARM_P (parm);
2196 /* [temp.param]
2198 The top-level cv-qualifiers on the template-parameter are
2199 ignored when determining its type. */
2200 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
2202 /* A template parameter is not modifiable. */
2203 TREE_READONLY (parm) = TREE_CONSTANT (parm) = 1;
2204 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
2205 TREE_TYPE (parm) = void_type_node;
2206 decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
2207 TREE_CONSTANT (decl) = TREE_READONLY (decl) = 1;
2208 DECL_INITIAL (parm) = DECL_INITIAL (decl)
2209 = build_template_parm_index (idx, processing_template_decl,
2210 processing_template_decl,
2211 decl, TREE_TYPE (parm));
2213 else
2215 tree t;
2216 parm = TREE_VALUE (parm);
2218 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
2220 t = make_aggr_type (TEMPLATE_TEMPLATE_PARM);
2221 /* This is for distinguishing between real templates and template
2222 template parameters */
2223 TREE_TYPE (parm) = t;
2224 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
2225 decl = parm;
2227 else
2229 t = make_aggr_type (TEMPLATE_TYPE_PARM);
2230 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
2231 decl = build_decl (TYPE_DECL, parm, t);
2234 TYPE_NAME (t) = decl;
2235 TYPE_STUB_DECL (t) = decl;
2236 parm = decl;
2237 TEMPLATE_TYPE_PARM_INDEX (t)
2238 = build_template_parm_index (idx, processing_template_decl,
2239 processing_template_decl,
2240 decl, TREE_TYPE (parm));
2242 DECL_ARTIFICIAL (decl) = 1;
2243 SET_DECL_TEMPLATE_PARM_P (decl);
2244 pushdecl (decl);
2245 parm = build_tree_list (defval, parm);
2246 return chainon (list, parm);
2249 /* The end of a template parameter list has been reached. Process the
2250 tree list into a parameter vector, converting each parameter into a more
2251 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
2252 as PARM_DECLs. */
2254 tree
2255 end_template_parm_list (tree parms)
2257 int nparms;
2258 tree parm, next;
2259 tree saved_parmlist = make_tree_vec (list_length (parms));
2261 current_template_parms
2262 = tree_cons (size_int (processing_template_decl),
2263 saved_parmlist, current_template_parms);
2265 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
2267 next = TREE_CHAIN (parm);
2268 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
2269 TREE_CHAIN (parm) = NULL_TREE;
2272 --processing_template_parmlist;
2274 return saved_parmlist;
2277 /* end_template_decl is called after a template declaration is seen. */
2279 void
2280 end_template_decl (void)
2282 reset_specialization ();
2284 if (! processing_template_decl)
2285 return;
2287 /* This matches the pushlevel in begin_template_parm_list. */
2288 finish_scope ();
2290 --processing_template_decl;
2291 current_template_parms = TREE_CHAIN (current_template_parms);
2294 /* Given a template argument vector containing the template PARMS.
2295 The innermost PARMS are given first. */
2297 tree
2298 current_template_args (void)
2300 tree header;
2301 tree args = NULL_TREE;
2302 int length = TMPL_PARMS_DEPTH (current_template_parms);
2303 int l = length;
2305 /* If there is only one level of template parameters, we do not
2306 create a TREE_VEC of TREE_VECs. Instead, we return a single
2307 TREE_VEC containing the arguments. */
2308 if (length > 1)
2309 args = make_tree_vec (length);
2311 for (header = current_template_parms; header; header = TREE_CHAIN (header))
2313 tree a = copy_node (TREE_VALUE (header));
2314 int i;
2316 TREE_TYPE (a) = NULL_TREE;
2317 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
2319 tree t = TREE_VEC_ELT (a, i);
2321 /* T will be a list if we are called from within a
2322 begin/end_template_parm_list pair, but a vector directly
2323 if within a begin/end_member_template_processing pair. */
2324 if (TREE_CODE (t) == TREE_LIST)
2326 t = TREE_VALUE (t);
2328 if (TREE_CODE (t) == TYPE_DECL
2329 || TREE_CODE (t) == TEMPLATE_DECL)
2330 t = TREE_TYPE (t);
2331 else
2332 t = DECL_INITIAL (t);
2333 TREE_VEC_ELT (a, i) = t;
2337 if (length > 1)
2338 TREE_VEC_ELT (args, --l) = a;
2339 else
2340 args = a;
2343 return args;
2346 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
2347 template PARMS. Used by push_template_decl below. */
2349 static tree
2350 build_template_decl (tree decl, tree parms)
2352 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
2353 DECL_TEMPLATE_PARMS (tmpl) = parms;
2354 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
2355 if (DECL_LANG_SPECIFIC (decl))
2357 DECL_STATIC_FUNCTION_P (tmpl) = DECL_STATIC_FUNCTION_P (decl);
2358 DECL_CONSTRUCTOR_P (tmpl) = DECL_CONSTRUCTOR_P (decl);
2359 DECL_DESTRUCTOR_P (tmpl) = DECL_DESTRUCTOR_P (decl);
2360 DECL_NONCONVERTING_P (tmpl) = DECL_NONCONVERTING_P (decl);
2361 DECL_ASSIGNMENT_OPERATOR_P (tmpl) = DECL_ASSIGNMENT_OPERATOR_P (decl);
2362 if (DECL_OVERLOADED_OPERATOR_P (decl))
2363 SET_OVERLOADED_OPERATOR_CODE (tmpl,
2364 DECL_OVERLOADED_OPERATOR_P (decl));
2367 return tmpl;
2370 struct template_parm_data
2372 /* The level of the template parameters we are currently
2373 processing. */
2374 int level;
2376 /* The index of the specialization argument we are currently
2377 processing. */
2378 int current_arg;
2380 /* An array whose size is the number of template parameters. The
2381 elements are nonzero if the parameter has been used in any one
2382 of the arguments processed so far. */
2383 int* parms;
2385 /* An array whose size is the number of template arguments. The
2386 elements are nonzero if the argument makes use of template
2387 parameters of this level. */
2388 int* arg_uses_template_parms;
2391 /* Subroutine of push_template_decl used to see if each template
2392 parameter in a partial specialization is used in the explicit
2393 argument list. If T is of the LEVEL given in DATA (which is
2394 treated as a template_parm_data*), then DATA->PARMS is marked
2395 appropriately. */
2397 static int
2398 mark_template_parm (tree t, void* data)
2400 int level;
2401 int idx;
2402 struct template_parm_data* tpd = (struct template_parm_data*) data;
2404 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2406 level = TEMPLATE_PARM_LEVEL (t);
2407 idx = TEMPLATE_PARM_IDX (t);
2409 else
2411 level = TEMPLATE_TYPE_LEVEL (t);
2412 idx = TEMPLATE_TYPE_IDX (t);
2415 if (level == tpd->level)
2417 tpd->parms[idx] = 1;
2418 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
2421 /* Return zero so that for_each_template_parm will continue the
2422 traversal of the tree; we want to mark *every* template parm. */
2423 return 0;
2426 /* Process the partial specialization DECL. */
2428 static tree
2429 process_partial_specialization (tree decl)
2431 tree type = TREE_TYPE (decl);
2432 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
2433 tree specargs = CLASSTYPE_TI_ARGS (type);
2434 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
2435 tree inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
2436 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
2437 int nargs = TREE_VEC_LENGTH (inner_args);
2438 int ntparms = TREE_VEC_LENGTH (inner_parms);
2439 int i;
2440 int did_error_intro = 0;
2441 struct template_parm_data tpd;
2442 struct template_parm_data tpd2;
2444 /* We check that each of the template parameters given in the
2445 partial specialization is used in the argument list to the
2446 specialization. For example:
2448 template <class T> struct S;
2449 template <class T> struct S<T*>;
2451 The second declaration is OK because `T*' uses the template
2452 parameter T, whereas
2454 template <class T> struct S<int>;
2456 is no good. Even trickier is:
2458 template <class T>
2459 struct S1
2461 template <class U>
2462 struct S2;
2463 template <class U>
2464 struct S2<T>;
2467 The S2<T> declaration is actually invalid; it is a
2468 full-specialization. Of course,
2470 template <class U>
2471 struct S2<T (*)(U)>;
2473 or some such would have been OK. */
2474 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
2475 tpd.parms = alloca (sizeof (int) * ntparms);
2476 memset (tpd.parms, 0, sizeof (int) * ntparms);
2478 tpd.arg_uses_template_parms = alloca (sizeof (int) * nargs);
2479 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
2480 for (i = 0; i < nargs; ++i)
2482 tpd.current_arg = i;
2483 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
2484 &mark_template_parm,
2485 &tpd,
2486 NULL);
2488 for (i = 0; i < ntparms; ++i)
2489 if (tpd.parms[i] == 0)
2491 /* One of the template parms was not used in the
2492 specialization. */
2493 if (!did_error_intro)
2495 error ("template parameters not used in partial specialization:");
2496 did_error_intro = 1;
2499 error (" `%D'",
2500 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
2503 /* [temp.class.spec]
2505 The argument list of the specialization shall not be identical to
2506 the implicit argument list of the primary template. */
2507 if (comp_template_args
2508 (inner_args,
2509 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
2510 (maintmpl)))))
2511 error ("partial specialization `%T' does not specialize any template arguments", type);
2513 /* [temp.class.spec]
2515 A partially specialized non-type argument expression shall not
2516 involve template parameters of the partial specialization except
2517 when the argument expression is a simple identifier.
2519 The type of a template parameter corresponding to a specialized
2520 non-type argument shall not be dependent on a parameter of the
2521 specialization. */
2522 my_friendly_assert (nargs == DECL_NTPARMS (maintmpl), 0);
2523 tpd2.parms = 0;
2524 for (i = 0; i < nargs; ++i)
2526 tree arg = TREE_VEC_ELT (inner_args, i);
2527 if (/* These first two lines are the `non-type' bit. */
2528 !TYPE_P (arg)
2529 && TREE_CODE (arg) != TEMPLATE_DECL
2530 /* This next line is the `argument expression is not just a
2531 simple identifier' condition and also the `specialized
2532 non-type argument' bit. */
2533 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
2535 if (tpd.arg_uses_template_parms[i])
2536 error ("template argument `%E' involves template parameter(s)", arg);
2537 else
2539 /* Look at the corresponding template parameter,
2540 marking which template parameters its type depends
2541 upon. */
2542 tree type =
2543 TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (main_inner_parms,
2544 i)));
2546 if (!tpd2.parms)
2548 /* We haven't yet initialized TPD2. Do so now. */
2549 tpd2.arg_uses_template_parms
2550 = alloca (sizeof (int) * nargs);
2551 /* The number of parameters here is the number in the
2552 main template, which, as checked in the assertion
2553 above, is NARGS. */
2554 tpd2.parms = alloca (sizeof (int) * nargs);
2555 tpd2.level =
2556 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
2559 /* Mark the template parameters. But this time, we're
2560 looking for the template parameters of the main
2561 template, not in the specialization. */
2562 tpd2.current_arg = i;
2563 tpd2.arg_uses_template_parms[i] = 0;
2564 memset (tpd2.parms, 0, sizeof (int) * nargs);
2565 for_each_template_parm (type,
2566 &mark_template_parm,
2567 &tpd2,
2568 NULL);
2570 if (tpd2.arg_uses_template_parms [i])
2572 /* The type depended on some template parameters.
2573 If they are fully specialized in the
2574 specialization, that's OK. */
2575 int j;
2576 for (j = 0; j < nargs; ++j)
2577 if (tpd2.parms[j] != 0
2578 && tpd.arg_uses_template_parms [j])
2580 error ("type `%T' of template argument `%E' depends on template parameter(s)",
2581 type,
2582 arg);
2583 break;
2590 if (retrieve_specialization (maintmpl, specargs))
2591 /* We've already got this specialization. */
2592 return decl;
2594 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
2595 = tree_cons (inner_args, inner_parms,
2596 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
2597 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
2598 return decl;
2601 /* Check that a template declaration's use of default arguments is not
2602 invalid. Here, PARMS are the template parameters. IS_PRIMARY is
2603 nonzero if DECL is the thing declared by a primary template.
2604 IS_PARTIAL is nonzero if DECL is a partial specialization. */
2606 static void
2607 check_default_tmpl_args (tree decl, tree parms, int is_primary, int is_partial)
2609 const char *msg;
2610 int last_level_to_check;
2611 tree parm_level;
2613 /* [temp.param]
2615 A default template-argument shall not be specified in a
2616 function template declaration or a function template definition, nor
2617 in the template-parameter-list of the definition of a member of a
2618 class template. */
2620 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
2621 /* You can't have a function template declaration in a local
2622 scope, nor you can you define a member of a class template in a
2623 local scope. */
2624 return;
2626 if (current_class_type
2627 && !TYPE_BEING_DEFINED (current_class_type)
2628 && DECL_LANG_SPECIFIC (decl)
2629 /* If this is either a friend defined in the scope of the class
2630 or a member function. */
2631 && (DECL_FUNCTION_MEMBER_P (decl)
2632 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
2633 : DECL_FRIEND_CONTEXT (decl)
2634 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
2635 : false)
2636 /* And, if it was a member function, it really was defined in
2637 the scope of the class. */
2638 && (!DECL_FUNCTION_MEMBER_P (decl)
2639 || DECL_INITIALIZED_IN_CLASS_P (decl)))
2640 /* We already checked these parameters when the template was
2641 declared, so there's no need to do it again now. This function
2642 was defined in class scope, but we're processing it's body now
2643 that the class is complete. */
2644 return;
2646 /* [temp.param]
2648 If a template-parameter has a default template-argument, all
2649 subsequent template-parameters shall have a default
2650 template-argument supplied. */
2651 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
2653 tree inner_parms = TREE_VALUE (parm_level);
2654 int ntparms = TREE_VEC_LENGTH (inner_parms);
2655 int seen_def_arg_p = 0;
2656 int i;
2658 for (i = 0; i < ntparms; ++i)
2660 tree parm = TREE_VEC_ELT (inner_parms, i);
2661 if (TREE_PURPOSE (parm))
2662 seen_def_arg_p = 1;
2663 else if (seen_def_arg_p)
2665 error ("no default argument for `%D'", TREE_VALUE (parm));
2666 /* For better subsequent error-recovery, we indicate that
2667 there should have been a default argument. */
2668 TREE_PURPOSE (parm) = error_mark_node;
2673 if (TREE_CODE (decl) != TYPE_DECL || is_partial || !is_primary)
2674 /* For an ordinary class template, default template arguments are
2675 allowed at the innermost level, e.g.:
2676 template <class T = int>
2677 struct S {};
2678 but, in a partial specialization, they're not allowed even
2679 there, as we have in [temp.class.spec]:
2681 The template parameter list of a specialization shall not
2682 contain default template argument values.
2684 So, for a partial specialization, or for a function template,
2685 we look at all of them. */
2687 else
2688 /* But, for a primary class template that is not a partial
2689 specialization we look at all template parameters except the
2690 innermost ones. */
2691 parms = TREE_CHAIN (parms);
2693 /* Figure out what error message to issue. */
2694 if (TREE_CODE (decl) == FUNCTION_DECL)
2695 msg = "default template arguments may not be used in function templates";
2696 else if (is_partial)
2697 msg = "default template arguments may not be used in partial specializations";
2698 else
2699 msg = "default argument for template parameter for class enclosing `%D'";
2701 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
2702 /* If we're inside a class definition, there's no need to
2703 examine the parameters to the class itself. On the one
2704 hand, they will be checked when the class is defined, and,
2705 on the other, default arguments are valid in things like:
2706 template <class T = double>
2707 struct S { template <class U> void f(U); };
2708 Here the default argument for `S' has no bearing on the
2709 declaration of `f'. */
2710 last_level_to_check = template_class_depth (current_class_type) + 1;
2711 else
2712 /* Check everything. */
2713 last_level_to_check = 0;
2715 for (parm_level = parms;
2716 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
2717 parm_level = TREE_CHAIN (parm_level))
2719 tree inner_parms = TREE_VALUE (parm_level);
2720 int i;
2721 int ntparms;
2723 ntparms = TREE_VEC_LENGTH (inner_parms);
2724 for (i = 0; i < ntparms; ++i)
2725 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
2727 if (msg)
2729 error (msg, decl);
2730 msg = 0;
2733 /* Clear out the default argument so that we are not
2734 confused later. */
2735 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
2738 /* At this point, if we're still interested in issuing messages,
2739 they must apply to classes surrounding the object declared. */
2740 if (msg)
2741 msg = "default argument for template parameter for class enclosing `%D'";
2745 /* Worker for push_template_decl_real, called via
2746 for_each_template_parm. DATA is really an int, indicating the
2747 level of the parameters we are interested in. If T is a template
2748 parameter of that level, return nonzero. */
2750 static int
2751 template_parm_this_level_p (tree t, void* data)
2753 int this_level = *(int *)data;
2754 int level;
2756 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2757 level = TEMPLATE_PARM_LEVEL (t);
2758 else
2759 level = TEMPLATE_TYPE_LEVEL (t);
2760 return level == this_level;
2763 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
2764 parameters given by current_template_args, or reuses a
2765 previously existing one, if appropriate. Returns the DECL, or an
2766 equivalent one, if it is replaced via a call to duplicate_decls.
2768 If IS_FRIEND is nonzero, DECL is a friend declaration. */
2770 tree
2771 push_template_decl_real (tree decl, int is_friend)
2773 tree tmpl;
2774 tree args;
2775 tree info;
2776 tree ctx;
2777 int primary;
2778 int is_partial;
2779 int new_template_p = 0;
2781 /* See if this is a partial specialization. */
2782 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
2783 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
2784 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
2786 is_friend |= (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl));
2788 if (is_friend)
2789 /* For a friend, we want the context of the friend function, not
2790 the type of which it is a friend. */
2791 ctx = DECL_CONTEXT (decl);
2792 else if (CP_DECL_CONTEXT (decl)
2793 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
2794 /* In the case of a virtual function, we want the class in which
2795 it is defined. */
2796 ctx = CP_DECL_CONTEXT (decl);
2797 else
2798 /* Otherwise, if we're currently defining some class, the DECL
2799 is assumed to be a member of the class. */
2800 ctx = current_scope ();
2802 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
2803 ctx = NULL_TREE;
2805 if (!DECL_CONTEXT (decl))
2806 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
2808 /* See if this is a primary template. */
2809 primary = template_parm_scope_p ();
2811 if (primary)
2813 if (current_lang_name == lang_name_c)
2814 error ("template with C linkage");
2815 else if (TREE_CODE (decl) == TYPE_DECL
2816 && ANON_AGGRNAME_P (DECL_NAME (decl)))
2817 error ("template class without a name");
2818 else if (TREE_CODE (decl) == FUNCTION_DECL
2819 && DECL_DESTRUCTOR_P (decl))
2821 /* [temp.mem]
2823 A destructor shall not be a member template. */
2824 error ("destructor `%D' declared as member template", decl);
2825 return error_mark_node;
2827 else if ((DECL_IMPLICIT_TYPEDEF_P (decl)
2828 && CLASS_TYPE_P (TREE_TYPE (decl)))
2829 || (TREE_CODE (decl) == VAR_DECL && ctx && CLASS_TYPE_P (ctx))
2830 || TREE_CODE (decl) == FUNCTION_DECL)
2831 /* OK */;
2832 else
2834 error ("template declaration of `%#D'", decl);
2835 return error_mark_node;
2839 /* Check to see that the rules regarding the use of default
2840 arguments are not being violated. */
2841 check_default_tmpl_args (decl, current_template_parms,
2842 primary, is_partial);
2844 if (is_partial)
2845 return process_partial_specialization (decl);
2847 args = current_template_args ();
2849 if (!ctx
2850 || TREE_CODE (ctx) == FUNCTION_DECL
2851 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
2852 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
2854 if (DECL_LANG_SPECIFIC (decl)
2855 && DECL_TEMPLATE_INFO (decl)
2856 && DECL_TI_TEMPLATE (decl))
2857 tmpl = DECL_TI_TEMPLATE (decl);
2858 /* If DECL is a TYPE_DECL for a class-template, then there won't
2859 be DECL_LANG_SPECIFIC. The information equivalent to
2860 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
2861 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
2862 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2863 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2865 /* Since a template declaration already existed for this
2866 class-type, we must be redeclaring it here. Make sure
2867 that the redeclaration is valid. */
2868 redeclare_class_template (TREE_TYPE (decl),
2869 current_template_parms);
2870 /* We don't need to create a new TEMPLATE_DECL; just use the
2871 one we already had. */
2872 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
2874 else
2876 tmpl = build_template_decl (decl, current_template_parms);
2877 new_template_p = 1;
2879 if (DECL_LANG_SPECIFIC (decl)
2880 && DECL_TEMPLATE_SPECIALIZATION (decl))
2882 /* A specialization of a member template of a template
2883 class. */
2884 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2885 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
2886 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
2890 else
2892 tree a, t, current, parms;
2893 int i;
2895 if (TREE_CODE (decl) == TYPE_DECL)
2897 if ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (decl)))
2898 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
2899 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2900 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2901 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
2902 else
2904 error ("`%D' does not declare a template type", decl);
2905 return decl;
2908 else if (!DECL_LANG_SPECIFIC (decl) || !DECL_TEMPLATE_INFO (decl))
2910 error ("template definition of non-template `%#D'", decl);
2911 return decl;
2913 else
2914 tmpl = DECL_TI_TEMPLATE (decl);
2916 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
2917 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
2918 && DECL_TEMPLATE_SPECIALIZATION (decl)
2919 && is_member_template (tmpl))
2921 tree new_tmpl;
2923 /* The declaration is a specialization of a member
2924 template, declared outside the class. Therefore, the
2925 innermost template arguments will be NULL, so we
2926 replace them with the arguments determined by the
2927 earlier call to check_explicit_specialization. */
2928 args = DECL_TI_ARGS (decl);
2930 new_tmpl
2931 = build_template_decl (decl, current_template_parms);
2932 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
2933 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
2934 DECL_TI_TEMPLATE (decl) = new_tmpl;
2935 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
2936 DECL_TEMPLATE_INFO (new_tmpl)
2937 = tree_cons (tmpl, args, NULL_TREE);
2939 register_specialization (new_tmpl,
2940 most_general_template (tmpl),
2941 args);
2942 return decl;
2945 /* Make sure the template headers we got make sense. */
2947 parms = DECL_TEMPLATE_PARMS (tmpl);
2948 i = TMPL_PARMS_DEPTH (parms);
2949 if (TMPL_ARGS_DEPTH (args) != i)
2951 error ("expected %d levels of template parms for `%#D', got %d",
2952 i, decl, TMPL_ARGS_DEPTH (args));
2954 else
2955 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
2957 a = TMPL_ARGS_LEVEL (args, i);
2958 t = INNERMOST_TEMPLATE_PARMS (parms);
2960 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
2962 if (current == decl)
2963 error ("got %d template parameters for `%#D'",
2964 TREE_VEC_LENGTH (a), decl);
2965 else
2966 error ("got %d template parameters for `%#T'",
2967 TREE_VEC_LENGTH (a), current);
2968 error (" but %d required", TREE_VEC_LENGTH (t));
2971 /* Perhaps we should also check that the parms are used in the
2972 appropriate qualifying scopes in the declarator? */
2974 if (current == decl)
2975 current = ctx;
2976 else
2977 current = TYPE_CONTEXT (current);
2981 DECL_TEMPLATE_RESULT (tmpl) = decl;
2982 TREE_TYPE (tmpl) = TREE_TYPE (decl);
2984 /* Push template declarations for global functions and types. Note
2985 that we do not try to push a global template friend declared in a
2986 template class; such a thing may well depend on the template
2987 parameters of the class. */
2988 if (new_template_p && !ctx
2989 && !(is_friend && template_class_depth (current_class_type) > 0))
2990 tmpl = pushdecl_namespace_level (tmpl);
2992 if (primary)
2994 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
2995 if (DECL_CONV_FN_P (tmpl))
2997 int depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2999 /* It is a conversion operator. See if the type converted to
3000 depends on innermost template operands. */
3002 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
3003 depth))
3004 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
3008 /* The DECL_TI_ARGS of DECL contains full set of arguments refering
3009 back to its most general template. If TMPL is a specialization,
3010 ARGS may only have the innermost set of arguments. Add the missing
3011 argument levels if necessary. */
3012 if (DECL_TEMPLATE_INFO (tmpl))
3013 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
3015 info = tree_cons (tmpl, args, NULL_TREE);
3017 if (DECL_IMPLICIT_TYPEDEF_P (decl))
3019 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
3020 if ((!ctx || TREE_CODE (ctx) != FUNCTION_DECL)
3021 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
3022 /* Don't change the name if we've already set it up. */
3023 && !IDENTIFIER_TEMPLATE (DECL_NAME (decl)))
3024 DECL_NAME (decl) = classtype_mangled_name (TREE_TYPE (decl));
3026 else if (DECL_LANG_SPECIFIC (decl))
3027 DECL_TEMPLATE_INFO (decl) = info;
3029 return DECL_TEMPLATE_RESULT (tmpl);
3032 tree
3033 push_template_decl (tree decl)
3035 return push_template_decl_real (decl, 0);
3038 /* Called when a class template TYPE is redeclared with the indicated
3039 template PARMS, e.g.:
3041 template <class T> struct S;
3042 template <class T> struct S {}; */
3044 void
3045 redeclare_class_template (tree type, tree parms)
3047 tree tmpl;
3048 tree tmpl_parms;
3049 int i;
3051 if (!TYPE_TEMPLATE_INFO (type))
3053 error ("`%T' is not a template type", type);
3054 return;
3057 tmpl = TYPE_TI_TEMPLATE (type);
3058 if (!PRIMARY_TEMPLATE_P (tmpl))
3059 /* The type is nested in some template class. Nothing to worry
3060 about here; there are no new template parameters for the nested
3061 type. */
3062 return;
3064 parms = INNERMOST_TEMPLATE_PARMS (parms);
3065 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
3067 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
3069 cp_error_at ("previous declaration `%D'", tmpl);
3070 error ("used %d template parameter%s instead of %d",
3071 TREE_VEC_LENGTH (tmpl_parms),
3072 TREE_VEC_LENGTH (tmpl_parms) == 1 ? "" : "s",
3073 TREE_VEC_LENGTH (parms));
3074 return;
3077 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
3079 tree tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
3080 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
3081 tree tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
3082 tree parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
3084 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm))
3086 cp_error_at ("template parameter `%#D'", tmpl_parm);
3087 error ("redeclared here as `%#D'", parm);
3088 return;
3091 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
3093 /* We have in [temp.param]:
3095 A template-parameter may not be given default arguments
3096 by two different declarations in the same scope. */
3097 error ("redefinition of default argument for `%#D'", parm);
3098 error ("%J original definition appeared here", tmpl_parm);
3099 return;
3102 if (parm_default != NULL_TREE)
3103 /* Update the previous template parameters (which are the ones
3104 that will really count) with the new default value. */
3105 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
3106 else if (tmpl_default != NULL_TREE)
3107 /* Update the new parameters, too; they'll be used as the
3108 parameters for any members. */
3109 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
3113 /* Simplify EXPR if it is a non-dependent expression. Returns the
3114 (possibly simplified) expression. */
3116 tree
3117 fold_non_dependent_expr (tree expr)
3119 /* If we're in a template, but EXPR isn't value dependent, simplify
3120 it. We're supposed to treat:
3122 template <typename T> void f(T[1 + 1]);
3123 template <typename T> void f(T[2]);
3125 as two declarations of the same function, for example. */
3126 if (processing_template_decl
3127 && !type_dependent_expression_p (expr)
3128 && !value_dependent_expression_p (expr))
3130 HOST_WIDE_INT saved_processing_template_decl;
3132 saved_processing_template_decl = processing_template_decl;
3133 processing_template_decl = 0;
3134 expr = tsubst_copy_and_build (expr,
3135 /*args=*/NULL_TREE,
3136 tf_error,
3137 /*in_decl=*/NULL_TREE,
3138 /*function_p=*/false);
3139 processing_template_decl = saved_processing_template_decl;
3141 return expr;
3144 /* Attempt to convert the non-type template parameter EXPR to the
3145 indicated TYPE. If the conversion is successful, return the
3146 converted value. If the conversion is unsuccessful, return
3147 NULL_TREE if we issued an error message, or error_mark_node if we
3148 did not. We issue error messages for out-and-out bad template
3149 parameters, but not simply because the conversion failed, since we
3150 might be just trying to do argument deduction. Both TYPE and EXPR
3151 must be non-dependent. */
3153 static tree
3154 convert_nontype_argument (tree type, tree expr)
3156 tree expr_type;
3158 /* If we are in a template, EXPR may be non-dependent, but still
3159 have a syntactic, rather than semantic, form. For example, EXPR
3160 might be a SCOPE_REF, rather than the VAR_DECL to which the
3161 SCOPE_REF refers. Preserving the qualifying scope is necessary
3162 so that access checking can be performed when the template is
3163 instantiated -- but here we need the resolved form so that we can
3164 convert the argument. */
3165 expr = fold_non_dependent_expr (expr);
3166 expr_type = TREE_TYPE (expr);
3168 /* A template-argument for a non-type, non-template
3169 template-parameter shall be one of:
3171 --an integral constant-expression of integral or enumeration
3172 type; or
3174 --the name of a non-type template-parameter; or
3176 --the name of an object or function with external linkage,
3177 including function templates and function template-ids but
3178 excluding non-static class members, expressed as id-expression;
3181 --the address of an object or function with external linkage,
3182 including function templates and function template-ids but
3183 excluding non-static class members, expressed as & id-expression
3184 where the & is optional if the name refers to a function or
3185 array; or
3187 --a pointer to member expressed as described in _expr.unary.op_. */
3189 /* An integral constant-expression can include const variables or
3190 . enumerators. Simplify things by folding them to their values,
3191 unless we're about to bind the declaration to a reference
3192 parameter. */
3193 if (INTEGRAL_TYPE_P (expr_type) && TREE_CODE (type) != REFERENCE_TYPE)
3194 while (true)
3196 tree const_expr = decl_constant_value (expr);
3197 /* In a template, the initializer for a VAR_DECL may not be
3198 marked as TREE_CONSTANT, in which case decl_constant_value
3199 will not return the initializer. Handle that special case
3200 here. */
3201 if (expr == const_expr
3202 && TREE_CODE (expr) == VAR_DECL
3203 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (expr)
3204 && CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (expr))
3205 /* DECL_INITIAL can be NULL if we are processing a
3206 variable initialized to an expression involving itself.
3207 We know it is initialized to a constant -- but not what
3208 constant, yet. */
3209 && DECL_INITIAL (expr))
3210 const_expr = DECL_INITIAL (expr);
3211 if (expr == const_expr)
3212 break;
3213 expr = fold_non_dependent_expr (const_expr);
3216 if (is_overloaded_fn (expr))
3217 /* OK for now. We'll check that it has external linkage later.
3218 Check this first since if expr_type is the unknown_type_node
3219 we would otherwise complain below. */
3221 else if (TYPE_PTR_TO_MEMBER_P (expr_type))
3223 if (TREE_CODE (expr) != PTRMEM_CST)
3224 goto bad_argument;
3226 else if (TYPE_PTR_P (expr_type)
3227 || TREE_CODE (expr_type) == ARRAY_TYPE
3228 || TREE_CODE (type) == REFERENCE_TYPE
3229 /* If expr is the address of an overloaded function, we
3230 will get the unknown_type_node at this point. */
3231 || expr_type == unknown_type_node)
3233 tree referent;
3234 tree e = expr;
3235 STRIP_NOPS (e);
3237 if (TREE_CODE (expr_type) == ARRAY_TYPE
3238 || (TREE_CODE (type) == REFERENCE_TYPE
3239 && TREE_CODE (e) != ADDR_EXPR))
3240 referent = e;
3241 else
3243 if (TREE_CODE (e) != ADDR_EXPR)
3245 bad_argument:
3246 error ("`%E' is not a valid template argument", expr);
3247 if (TYPE_PTR_P (expr_type))
3249 if (TREE_CODE (TREE_TYPE (expr_type)) == FUNCTION_TYPE)
3250 error ("it must be the address of a function with external linkage");
3251 else
3252 error ("it must be the address of an object with external linkage");
3254 else if (TYPE_PTR_TO_MEMBER_P (expr_type))
3255 error ("it must be a pointer-to-member of the form `&X::Y'");
3257 return NULL_TREE;
3260 referent = TREE_OPERAND (e, 0);
3261 STRIP_NOPS (referent);
3264 if (TREE_CODE (referent) == STRING_CST)
3266 error ("string literal %E is not a valid template argument because it is the address of an object with static linkage",
3267 referent);
3268 return NULL_TREE;
3271 if (TREE_CODE (referent) == SCOPE_REF)
3272 referent = TREE_OPERAND (referent, 1);
3274 if (is_overloaded_fn (referent))
3275 /* We'll check that it has external linkage later. */
3277 else if (TREE_CODE (referent) != VAR_DECL)
3278 goto bad_argument;
3279 else if (!DECL_EXTERNAL_LINKAGE_P (referent))
3281 error ("address of non-extern `%E' cannot be used as template argument", referent);
3282 return error_mark_node;
3285 else if (INTEGRAL_TYPE_P (expr_type) || TYPE_PTR_TO_MEMBER_P (expr_type))
3287 if (! TREE_CONSTANT (expr))
3289 non_constant:
3290 error ("non-constant `%E' cannot be used as template argument",
3291 expr);
3292 return NULL_TREE;
3295 else
3297 if (TYPE_P (expr))
3298 error ("type '%T' cannot be used as a value for a non-type "
3299 "template-parameter", expr);
3300 else if (DECL_P (expr))
3301 error ("invalid use of '%D' as a non-type template-argument", expr);
3302 else
3303 error ("invalid use of '%E' as a non-type template-argument", expr);
3305 return NULL_TREE;
3308 switch (TREE_CODE (type))
3310 case INTEGER_TYPE:
3311 case BOOLEAN_TYPE:
3312 case ENUMERAL_TYPE:
3313 /* For a non-type template-parameter of integral or enumeration
3314 type, integral promotions (_conv.prom_) and integral
3315 conversions (_conv.integral_) are applied. */
3316 if (!INTEGRAL_TYPE_P (expr_type))
3317 return error_mark_node;
3319 /* It's safe to call digest_init in this case; we know we're
3320 just converting one integral constant expression to another. */
3321 expr = digest_init (type, expr, (tree*) 0);
3323 if (TREE_CODE (expr) != INTEGER_CST)
3324 /* Curiously, some TREE_CONSTANT integral expressions do not
3325 simplify to integer constants. For example, `3 % 0',
3326 remains a TRUNC_MOD_EXPR. */
3327 goto non_constant;
3329 return expr;
3331 case OFFSET_TYPE:
3333 tree e;
3335 /* For a non-type template-parameter of type pointer to data
3336 member, qualification conversions (_conv.qual_) are
3337 applied. */
3338 e = perform_qualification_conversions (type, expr);
3339 if (TREE_CODE (e) == NOP_EXPR)
3340 /* The call to perform_qualification_conversions will
3341 insert a NOP_EXPR over EXPR to do express conversion,
3342 if necessary. But, that will confuse us if we use
3343 this (converted) template parameter to instantiate
3344 another template; then the thing will not look like a
3345 valid template argument. So, just make a new
3346 constant, of the appropriate type. */
3347 e = make_ptrmem_cst (type, PTRMEM_CST_MEMBER (expr));
3348 return e;
3351 case POINTER_TYPE:
3353 tree type_pointed_to = TREE_TYPE (type);
3355 if (TREE_CODE (type_pointed_to) == FUNCTION_TYPE)
3357 /* For a non-type template-parameter of type pointer to
3358 function, only the function-to-pointer conversion
3359 (_conv.func_) is applied. If the template-argument
3360 represents a set of overloaded functions (or a pointer to
3361 such), the matching function is selected from the set
3362 (_over.over_). */
3363 tree fns;
3364 tree fn;
3366 if (TREE_CODE (expr) == ADDR_EXPR)
3367 fns = TREE_OPERAND (expr, 0);
3368 else
3369 fns = expr;
3371 fn = instantiate_type (type_pointed_to, fns, tf_none);
3373 if (fn == error_mark_node)
3374 return error_mark_node;
3376 if (!DECL_EXTERNAL_LINKAGE_P (fn))
3378 if (really_overloaded_fn (fns))
3379 return error_mark_node;
3380 else
3381 goto bad_argument;
3384 expr = build_unary_op (ADDR_EXPR, fn, 0);
3386 my_friendly_assert (same_type_p (type, TREE_TYPE (expr)),
3388 return expr;
3390 else
3392 /* For a non-type template-parameter of type pointer to
3393 object, qualification conversions (_conv.qual_) and the
3394 array-to-pointer conversion (_conv.array_) are applied.
3395 [Note: In particular, neither the null pointer conversion
3396 (_conv.ptr_) nor the derived-to-base conversion
3397 (_conv.ptr_) are applied. Although 0 is a valid
3398 template-argument for a non-type template-parameter of
3399 integral type, it is not a valid template-argument for a
3400 non-type template-parameter of pointer type.]
3402 The call to decay_conversion performs the
3403 array-to-pointer conversion, if appropriate. */
3404 expr = decay_conversion (expr);
3406 if (expr == error_mark_node)
3407 return error_mark_node;
3408 else
3409 return perform_qualification_conversions (type, expr);
3412 break;
3414 case REFERENCE_TYPE:
3416 tree type_referred_to = TREE_TYPE (type);
3418 /* If this expression already has reference type, get the
3419 underlying object. */
3420 if (TREE_CODE (expr_type) == REFERENCE_TYPE)
3422 if (TREE_CODE (expr) == NOP_EXPR
3423 && TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR)
3424 STRIP_NOPS (expr);
3425 my_friendly_assert (TREE_CODE (expr) == ADDR_EXPR, 20000604);
3426 expr = TREE_OPERAND (expr, 0);
3427 expr_type = TREE_TYPE (expr);
3430 if (TREE_CODE (type_referred_to) == FUNCTION_TYPE)
3432 /* For a non-type template-parameter of type reference to
3433 function, no conversions apply. If the
3434 template-argument represents a set of overloaded
3435 functions, the matching function is selected from the
3436 set (_over.over_). */
3437 tree fn;
3439 fn = instantiate_type (type_referred_to, expr, tf_none);
3441 if (fn == error_mark_node)
3442 return error_mark_node;
3444 if (!DECL_EXTERNAL_LINKAGE_P (fn))
3446 if (really_overloaded_fn (expr))
3447 /* Don't issue an error here; we might get a different
3448 function if the overloading had worked out
3449 differently. */
3450 return error_mark_node;
3451 else
3452 goto bad_argument;
3455 my_friendly_assert (same_type_p (type_referred_to,
3456 TREE_TYPE (fn)),
3459 expr = fn;
3461 else
3463 /* For a non-type template-parameter of type reference to
3464 object, no conversions apply. The type referred to by the
3465 reference may be more cv-qualified than the (otherwise
3466 identical) type of the template-argument. The
3467 template-parameter is bound directly to the
3468 template-argument, which must be an lvalue. */
3469 if (!same_type_p (TYPE_MAIN_VARIANT (expr_type),
3470 TYPE_MAIN_VARIANT (type_referred_to))
3471 || !at_least_as_qualified_p (type_referred_to,
3472 expr_type)
3473 || !real_lvalue_p (expr))
3474 return error_mark_node;
3477 cxx_mark_addressable (expr);
3478 return build_nop (type, build_address (expr));
3480 break;
3482 case RECORD_TYPE:
3484 my_friendly_assert (TYPE_PTRMEMFUNC_P (type), 20010112);
3486 /* For a non-type template-parameter of type pointer to member
3487 function, no conversions apply. If the template-argument
3488 represents a set of overloaded member functions, the
3489 matching member function is selected from the set
3490 (_over.over_). */
3492 if (!TYPE_PTRMEMFUNC_P (expr_type) &&
3493 expr_type != unknown_type_node)
3494 return error_mark_node;
3496 if (TREE_CODE (expr) == PTRMEM_CST)
3498 /* A ptr-to-member constant. */
3499 if (!same_type_p (type, expr_type))
3500 return error_mark_node;
3501 else
3502 return expr;
3505 if (TREE_CODE (expr) != ADDR_EXPR)
3506 return error_mark_node;
3508 expr = instantiate_type (type, expr, tf_none);
3510 if (expr == error_mark_node)
3511 return error_mark_node;
3513 if (!same_type_p (type, TREE_TYPE (expr)))
3514 return error_mark_node;
3516 return expr;
3518 break;
3520 default:
3521 /* All non-type parameters must have one of these types. */
3522 abort ();
3523 break;
3526 return error_mark_node;
3529 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
3530 template template parameters. Both PARM_PARMS and ARG_PARMS are
3531 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
3532 or PARM_DECL.
3534 ARG_PARMS may contain more parameters than PARM_PARMS. If this is
3535 the case, then extra parameters must have default arguments.
3537 Consider the example:
3538 template <class T, class Allocator = allocator> class vector;
3539 template<template <class U> class TT> class C;
3541 C<vector> is a valid instantiation. PARM_PARMS for the above code
3542 contains a TYPE_DECL (for U), ARG_PARMS contains two TYPE_DECLs (for
3543 T and Allocator) and OUTER_ARGS contains the argument that is used to
3544 substitute the TT parameter. */
3546 static int
3547 coerce_template_template_parms (tree parm_parms,
3548 tree arg_parms,
3549 tsubst_flags_t complain,
3550 tree in_decl,
3551 tree outer_args)
3553 int nparms, nargs, i;
3554 tree parm, arg;
3556 my_friendly_assert (TREE_CODE (parm_parms) == TREE_VEC, 0);
3557 my_friendly_assert (TREE_CODE (arg_parms) == TREE_VEC, 0);
3559 nparms = TREE_VEC_LENGTH (parm_parms);
3560 nargs = TREE_VEC_LENGTH (arg_parms);
3562 /* The rule here is opposite of coerce_template_parms. */
3563 if (nargs < nparms
3564 || (nargs > nparms
3565 && TREE_PURPOSE (TREE_VEC_ELT (arg_parms, nparms)) == NULL_TREE))
3566 return 0;
3568 for (i = 0; i < nparms; ++i)
3570 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
3571 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
3573 if (arg == NULL_TREE || arg == error_mark_node
3574 || parm == NULL_TREE || parm == error_mark_node)
3575 return 0;
3577 if (TREE_CODE (arg) != TREE_CODE (parm))
3578 return 0;
3580 switch (TREE_CODE (parm))
3582 case TYPE_DECL:
3583 break;
3585 case TEMPLATE_DECL:
3586 /* We encounter instantiations of templates like
3587 template <template <template <class> class> class TT>
3588 class C; */
3590 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3591 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3593 if (!coerce_template_template_parms
3594 (parmparm, argparm, complain, in_decl, outer_args))
3595 return 0;
3597 break;
3599 case PARM_DECL:
3600 /* The tsubst call is used to handle cases such as
3601 template <class T, template <T> class TT> class D;
3602 i.e. the parameter list of TT depends on earlier parameters. */
3603 if (!same_type_p
3604 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
3605 TREE_TYPE (arg)))
3606 return 0;
3607 break;
3609 default:
3610 abort ();
3613 return 1;
3616 /* Convert the indicated template ARG as necessary to match the
3617 indicated template PARM. Returns the converted ARG, or
3618 error_mark_node if the conversion was unsuccessful. Error and
3619 warning messages are issued under control of COMPLAIN. This
3620 conversion is for the Ith parameter in the parameter list. ARGS is
3621 the full set of template arguments deduced so far. */
3623 static tree
3624 convert_template_argument (tree parm,
3625 tree arg,
3626 tree args,
3627 tsubst_flags_t complain,
3628 int i,
3629 tree in_decl)
3631 tree val;
3632 tree inner_args;
3633 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
3635 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3637 if (TREE_CODE (arg) == TREE_LIST
3638 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
3640 /* The template argument was the name of some
3641 member function. That's usually
3642 invalid, but static members are OK. In any
3643 case, grab the underlying fields/functions
3644 and issue an error later if required. */
3645 arg = TREE_VALUE (arg);
3646 TREE_TYPE (arg) = unknown_type_node;
3649 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
3650 requires_type = (TREE_CODE (parm) == TYPE_DECL
3651 || requires_tmpl_type);
3653 is_tmpl_type = ((TREE_CODE (arg) == TEMPLATE_DECL
3654 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
3655 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3656 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
3658 if (is_tmpl_type
3659 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3660 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
3661 arg = TYPE_STUB_DECL (arg);
3663 is_type = TYPE_P (arg) || is_tmpl_type;
3665 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
3666 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
3668 pedwarn ("to refer to a type member of a template parameter, use `typename %E'", arg);
3670 arg = make_typename_type (TREE_OPERAND (arg, 0),
3671 TREE_OPERAND (arg, 1),
3672 complain & tf_error);
3673 is_type = 1;
3675 if (is_type != requires_type)
3677 if (in_decl)
3679 if (complain & tf_error)
3681 error ("type/value mismatch at argument %d in template parameter list for `%D'",
3682 i + 1, in_decl);
3683 if (is_type)
3684 error (" expected a constant of type `%T', got `%T'",
3685 TREE_TYPE (parm),
3686 (is_tmpl_type ? DECL_NAME (arg) : arg));
3687 else if (requires_tmpl_type)
3688 error (" expected a class template, got `%E'", arg);
3689 else
3690 error (" expected a type, got `%E'", arg);
3693 return error_mark_node;
3695 if (is_tmpl_type ^ requires_tmpl_type)
3697 if (in_decl && (complain & tf_error))
3699 error ("type/value mismatch at argument %d in template parameter list for `%D'",
3700 i + 1, in_decl);
3701 if (is_tmpl_type)
3702 error (" expected a type, got `%T'", DECL_NAME (arg));
3703 else
3704 error (" expected a class template, got `%T'", arg);
3706 return error_mark_node;
3709 if (is_type)
3711 if (requires_tmpl_type)
3713 if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
3714 /* The number of argument required is not known yet.
3715 Just accept it for now. */
3716 val = TREE_TYPE (arg);
3717 else
3719 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3720 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3722 if (coerce_template_template_parms (parmparm, argparm,
3723 complain, in_decl,
3724 inner_args))
3726 val = arg;
3728 /* TEMPLATE_TEMPLATE_PARM node is preferred over
3729 TEMPLATE_DECL. */
3730 if (val != error_mark_node
3731 && DECL_TEMPLATE_TEMPLATE_PARM_P (val))
3732 val = TREE_TYPE (val);
3734 else
3736 if (in_decl && (complain & tf_error))
3738 error ("type/value mismatch at argument %d in template parameter list for `%D'",
3739 i + 1, in_decl);
3740 error (" expected a template of type `%D', got `%D'", parm, arg);
3743 val = error_mark_node;
3747 else
3748 val = groktypename (arg);
3750 else
3752 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
3754 if (invalid_nontype_parm_type_p (t, complain))
3755 return error_mark_node;
3757 if (!uses_template_parms (arg) && !uses_template_parms (t))
3758 /* We used to call digest_init here. However, digest_init
3759 will report errors, which we don't want when complain
3760 is zero. More importantly, digest_init will try too
3761 hard to convert things: for example, `0' should not be
3762 converted to pointer type at this point according to
3763 the standard. Accepting this is not merely an
3764 extension, since deciding whether or not these
3765 conversions can occur is part of determining which
3766 function template to call, or whether a given explicit
3767 argument specification is valid. */
3768 val = convert_nontype_argument (t, arg);
3769 else
3770 val = arg;
3772 if (val == NULL_TREE)
3773 val = error_mark_node;
3774 else if (val == error_mark_node && (complain & tf_error))
3775 error ("could not convert template argument `%E' to `%T'",
3776 arg, t);
3779 return val;
3782 /* Convert all template arguments to their appropriate types, and
3783 return a vector containing the innermost resulting template
3784 arguments. If any error occurs, return error_mark_node. Error and
3785 warning messages are issued under control of COMPLAIN.
3787 If REQUIRE_ALL_ARGUMENTS is nonzero, all arguments must be
3788 provided in ARGLIST, or else trailing parameters must have default
3789 values. If REQUIRE_ALL_ARGUMENTS is zero, we will attempt argument
3790 deduction for any unspecified trailing arguments. */
3792 static tree
3793 coerce_template_parms (tree parms,
3794 tree args,
3795 tree in_decl,
3796 tsubst_flags_t complain,
3797 int require_all_arguments)
3799 int nparms, nargs, i, lost = 0;
3800 tree inner_args;
3801 tree new_args;
3802 tree new_inner_args;
3804 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3805 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
3806 nparms = TREE_VEC_LENGTH (parms);
3808 if (nargs > nparms
3809 || (nargs < nparms
3810 && require_all_arguments
3811 && TREE_PURPOSE (TREE_VEC_ELT (parms, nargs)) == NULL_TREE))
3813 if (complain & tf_error)
3815 error ("wrong number of template arguments (%d, should be %d)",
3816 nargs, nparms);
3818 if (in_decl)
3819 cp_error_at ("provided for `%D'", in_decl);
3822 return error_mark_node;
3825 new_inner_args = make_tree_vec (nparms);
3826 new_args = add_outermost_template_args (args, new_inner_args);
3827 for (i = 0; i < nparms; i++)
3829 tree arg;
3830 tree parm;
3832 /* Get the Ith template parameter. */
3833 parm = TREE_VEC_ELT (parms, i);
3835 /* Calculate the Ith argument. */
3836 if (i < nargs)
3837 arg = TREE_VEC_ELT (inner_args, i);
3838 else if (require_all_arguments)
3839 /* There must be a default arg in this case. */
3840 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
3841 complain, in_decl);
3842 else
3843 break;
3845 my_friendly_assert (arg, 20030727);
3846 if (arg == error_mark_node)
3847 error ("template argument %d is invalid", i + 1);
3848 else
3849 arg = convert_template_argument (TREE_VALUE (parm),
3850 arg, new_args, complain, i,
3851 in_decl);
3853 if (arg == error_mark_node)
3854 lost++;
3855 TREE_VEC_ELT (new_inner_args, i) = arg;
3858 if (lost)
3859 return error_mark_node;
3861 return new_inner_args;
3864 /* Returns 1 if template args OT and NT are equivalent. */
3866 static int
3867 template_args_equal (tree ot, tree nt)
3869 if (nt == ot)
3870 return 1;
3872 if (TREE_CODE (nt) == TREE_VEC)
3873 /* For member templates */
3874 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
3875 else if (TYPE_P (nt))
3876 return TYPE_P (ot) && same_type_p (ot, nt);
3877 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
3878 return 0;
3879 else
3880 return cp_tree_equal (ot, nt);
3883 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
3884 of template arguments. Returns 0 otherwise. */
3887 comp_template_args (tree oldargs, tree newargs)
3889 int i;
3891 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
3892 return 0;
3894 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
3896 tree nt = TREE_VEC_ELT (newargs, i);
3897 tree ot = TREE_VEC_ELT (oldargs, i);
3899 if (! template_args_equal (ot, nt))
3900 return 0;
3902 return 1;
3905 /* Given class template name and parameter list, produce a user-friendly name
3906 for the instantiation. */
3908 static char *
3909 mangle_class_name_for_template (const char* name, tree parms, tree arglist)
3911 static struct obstack scratch_obstack;
3912 static char *scratch_firstobj;
3913 int i, nparms;
3915 if (!scratch_firstobj)
3916 gcc_obstack_init (&scratch_obstack);
3917 else
3918 obstack_free (&scratch_obstack, scratch_firstobj);
3919 scratch_firstobj = obstack_alloc (&scratch_obstack, 1);
3921 #define ccat(C) obstack_1grow (&scratch_obstack, (C));
3922 #define cat(S) obstack_grow (&scratch_obstack, (S), strlen (S))
3924 cat (name);
3925 ccat ('<');
3926 nparms = TREE_VEC_LENGTH (parms);
3927 arglist = INNERMOST_TEMPLATE_ARGS (arglist);
3928 my_friendly_assert (nparms == TREE_VEC_LENGTH (arglist), 268);
3929 for (i = 0; i < nparms; i++)
3931 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
3932 tree arg = TREE_VEC_ELT (arglist, i);
3934 if (i)
3935 ccat (',');
3937 if (TREE_CODE (parm) == TYPE_DECL)
3939 cat (type_as_string (arg, TFF_CHASE_TYPEDEF));
3940 continue;
3942 else if (TREE_CODE (parm) == TEMPLATE_DECL)
3944 if (TREE_CODE (arg) == TEMPLATE_DECL)
3946 /* Already substituted with real template. Just output
3947 the template name here */
3948 tree context = DECL_CONTEXT (arg);
3949 if (context)
3951 /* The template may be defined in a namespace, or
3952 may be a member template. */
3953 my_friendly_assert (TREE_CODE (context) == NAMESPACE_DECL
3954 || CLASS_TYPE_P (context),
3955 980422);
3956 cat(decl_as_string (DECL_CONTEXT (arg), TFF_PLAIN_IDENTIFIER));
3957 cat("::");
3959 cat (IDENTIFIER_POINTER (DECL_NAME (arg)));
3961 else
3962 /* Output the parameter declaration. */
3963 cat (type_as_string (arg, TFF_CHASE_TYPEDEF));
3964 continue;
3966 else
3967 my_friendly_assert (TREE_CODE (parm) == PARM_DECL, 269);
3969 /* No need to check arglist against parmlist here; we did that
3970 in coerce_template_parms, called from lookup_template_class. */
3971 cat (expr_as_string (arg, TFF_PLAIN_IDENTIFIER));
3974 char *bufp = obstack_next_free (&scratch_obstack);
3975 int offset = 0;
3976 while (bufp[offset - 1] == ' ')
3977 offset--;
3978 obstack_blank_fast (&scratch_obstack, offset);
3980 /* B<C<char> >, not B<C<char>> */
3981 if (bufp[offset - 1] == '>')
3982 ccat (' ');
3984 ccat ('>');
3985 ccat ('\0');
3986 return (char *) obstack_base (&scratch_obstack);
3989 static tree
3990 classtype_mangled_name (tree t)
3992 if (CLASSTYPE_TEMPLATE_INFO (t)
3993 /* Specializations have already had their names set up in
3994 lookup_template_class. */
3995 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
3997 tree tmpl = most_general_template (CLASSTYPE_TI_TEMPLATE (t));
3999 /* For non-primary templates, the template parameters are
4000 implicit from their surrounding context. */
4001 if (PRIMARY_TEMPLATE_P (tmpl))
4003 tree name = DECL_NAME (tmpl);
4004 char *mangled_name = mangle_class_name_for_template
4005 (IDENTIFIER_POINTER (name),
4006 DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
4007 CLASSTYPE_TI_ARGS (t));
4008 tree id = get_identifier (mangled_name);
4009 IDENTIFIER_TEMPLATE (id) = name;
4010 return id;
4014 return TYPE_IDENTIFIER (t);
4017 static void
4018 add_pending_template (tree d)
4020 tree ti = (TYPE_P (d)
4021 ? CLASSTYPE_TEMPLATE_INFO (d)
4022 : DECL_TEMPLATE_INFO (d));
4023 tree pt;
4024 int level;
4026 if (TI_PENDING_TEMPLATE_FLAG (ti))
4027 return;
4029 /* We are called both from instantiate_decl, where we've already had a
4030 tinst_level pushed, and instantiate_template, where we haven't.
4031 Compensate. */
4032 level = !(current_tinst_level && TINST_DECL (current_tinst_level) == d);
4034 if (level)
4035 push_tinst_level (d);
4037 pt = tree_cons (current_tinst_level, d, NULL_TREE);
4038 if (last_pending_template)
4039 TREE_CHAIN (last_pending_template) = pt;
4040 else
4041 pending_templates = pt;
4043 last_pending_template = pt;
4045 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
4047 if (level)
4048 pop_tinst_level ();
4052 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
4053 ARGLIST. Valid choices for FNS are given in the cp-tree.def
4054 documentation for TEMPLATE_ID_EXPR. */
4056 tree
4057 lookup_template_function (tree fns, tree arglist)
4059 tree type;
4061 if (fns == error_mark_node || arglist == error_mark_node)
4062 return error_mark_node;
4064 my_friendly_assert (!arglist || TREE_CODE (arglist) == TREE_VEC, 20030726);
4065 if (fns == NULL_TREE
4066 || TREE_CODE (fns) == FUNCTION_DECL)
4068 error ("non-template used as template");
4069 return error_mark_node;
4072 my_friendly_assert (TREE_CODE (fns) == TEMPLATE_DECL
4073 || TREE_CODE (fns) == OVERLOAD
4074 || BASELINK_P (fns)
4075 || TREE_CODE (fns) == IDENTIFIER_NODE,
4076 20020730);
4078 if (BASELINK_P (fns))
4080 BASELINK_FUNCTIONS (fns) = build (TEMPLATE_ID_EXPR,
4081 unknown_type_node,
4082 BASELINK_FUNCTIONS (fns),
4083 arglist);
4084 return fns;
4087 type = TREE_TYPE (fns);
4088 if (TREE_CODE (fns) == OVERLOAD || !type)
4089 type = unknown_type_node;
4091 return build (TEMPLATE_ID_EXPR, type, fns, arglist);
4094 /* Within the scope of a template class S<T>, the name S gets bound
4095 (in build_self_reference) to a TYPE_DECL for the class, not a
4096 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
4097 or one of its enclosing classes, and that type is a template,
4098 return the associated TEMPLATE_DECL. Otherwise, the original
4099 DECL is returned. */
4101 tree
4102 maybe_get_template_decl_from_type_decl (tree decl)
4104 return (decl != NULL_TREE
4105 && TREE_CODE (decl) == TYPE_DECL
4106 && DECL_ARTIFICIAL (decl)
4107 && CLASS_TYPE_P (TREE_TYPE (decl))
4108 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
4109 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
4112 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
4113 parameters, find the desired type.
4115 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
4117 IN_DECL, if non-NULL, is the template declaration we are trying to
4118 instantiate.
4120 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
4121 the class we are looking up.
4123 Issue error and warning messages under control of COMPLAIN.
4125 If the template class is really a local class in a template
4126 function, then the FUNCTION_CONTEXT is the function in which it is
4127 being instantiated. */
4129 tree
4130 lookup_template_class (tree d1,
4131 tree arglist,
4132 tree in_decl,
4133 tree context,
4134 int entering_scope,
4135 tsubst_flags_t complain)
4137 tree template = NULL_TREE, parmlist;
4138 tree t;
4140 timevar_push (TV_NAME_LOOKUP);
4142 if (TREE_CODE (d1) == IDENTIFIER_NODE)
4144 if (IDENTIFIER_VALUE (d1)
4145 && DECL_TEMPLATE_TEMPLATE_PARM_P (IDENTIFIER_VALUE (d1)))
4146 template = IDENTIFIER_VALUE (d1);
4147 else
4149 if (context)
4150 push_decl_namespace (context);
4151 template = lookup_name (d1, /*prefer_type=*/0);
4152 template = maybe_get_template_decl_from_type_decl (template);
4153 if (context)
4154 pop_decl_namespace ();
4156 if (template)
4157 context = DECL_CONTEXT (template);
4159 else if (TREE_CODE (d1) == TYPE_DECL && IS_AGGR_TYPE (TREE_TYPE (d1)))
4161 tree type = TREE_TYPE (d1);
4163 /* If we are declaring a constructor, say A<T>::A<T>, we will get
4164 an implicit typename for the second A. Deal with it. */
4165 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
4166 type = TREE_TYPE (type);
4168 if (CLASSTYPE_TEMPLATE_INFO (type))
4170 template = CLASSTYPE_TI_TEMPLATE (type);
4171 d1 = DECL_NAME (template);
4174 else if (TREE_CODE (d1) == ENUMERAL_TYPE
4175 || (TYPE_P (d1) && IS_AGGR_TYPE (d1)))
4177 template = TYPE_TI_TEMPLATE (d1);
4178 d1 = DECL_NAME (template);
4180 else if (TREE_CODE (d1) == TEMPLATE_DECL
4181 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
4183 template = d1;
4184 d1 = DECL_NAME (template);
4185 context = DECL_CONTEXT (template);
4188 /* With something like `template <class T> class X class X { ... };'
4189 we could end up with D1 having nothing but an IDENTIFIER_VALUE.
4190 We don't want to do that, but we have to deal with the situation,
4191 so let's give them some syntax errors to chew on instead of a
4192 crash. Alternatively D1 might not be a template type at all. */
4193 if (! template)
4195 if (complain & tf_error)
4196 error ("`%T' is not a template", d1);
4197 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4200 if (TREE_CODE (template) != TEMPLATE_DECL
4201 /* Make sure it's a user visible template, if it was named by
4202 the user. */
4203 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (template)
4204 && !PRIMARY_TEMPLATE_P (template)))
4206 if (complain & tf_error)
4208 error ("non-template type `%T' used as a template", d1);
4209 if (in_decl)
4210 cp_error_at ("for template declaration `%D'", in_decl);
4212 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4215 complain &= ~tf_user;
4217 if (DECL_TEMPLATE_TEMPLATE_PARM_P (template))
4219 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
4220 template arguments */
4222 tree parm;
4223 tree arglist2;
4225 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (template);
4227 /* Consider an example where a template template parameter declared as
4229 template <class T, class U = std::allocator<T> > class TT
4231 The template parameter level of T and U are one level larger than
4232 of TT. To proper process the default argument of U, say when an
4233 instantiation `TT<int>' is seen, we need to build the full
4234 arguments containing {int} as the innermost level. Outer levels,
4235 available when not appearing as default template argument, can be
4236 obtained from `current_template_args ()'.
4238 Suppose that TT is later substituted with std::vector. The above
4239 instantiation is `TT<int, std::allocator<T> >' with TT at
4240 level 1, and T at level 2, while the template arguments at level 1
4241 becomes {std::vector} and the inner level 2 is {int}. */
4243 if (current_template_parms)
4244 arglist = add_to_template_args (current_template_args (), arglist);
4246 arglist2 = coerce_template_parms (parmlist, arglist, template,
4247 complain, /*require_all_args=*/1);
4248 if (arglist2 == error_mark_node
4249 || (!uses_template_parms (arglist2)
4250 && check_instantiated_args (template, arglist2, complain)))
4251 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4253 parm = bind_template_template_parm (TREE_TYPE (template), arglist2);
4254 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, parm);
4256 else
4258 tree template_type = TREE_TYPE (template);
4259 tree gen_tmpl;
4260 tree type_decl;
4261 tree found = NULL_TREE;
4262 tree *tp;
4263 int arg_depth;
4264 int parm_depth;
4265 int is_partial_instantiation;
4267 gen_tmpl = most_general_template (template);
4268 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
4269 parm_depth = TMPL_PARMS_DEPTH (parmlist);
4270 arg_depth = TMPL_ARGS_DEPTH (arglist);
4272 if (arg_depth == 1 && parm_depth > 1)
4274 /* We've been given an incomplete set of template arguments.
4275 For example, given:
4277 template <class T> struct S1 {
4278 template <class U> struct S2 {};
4279 template <class U> struct S2<U*> {};
4282 we will be called with an ARGLIST of `U*', but the
4283 TEMPLATE will be `template <class T> template
4284 <class U> struct S1<T>::S2'. We must fill in the missing
4285 arguments. */
4286 arglist
4287 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (template)),
4288 arglist);
4289 arg_depth = TMPL_ARGS_DEPTH (arglist);
4292 /* Now we should have enough arguments. */
4293 my_friendly_assert (parm_depth == arg_depth, 0);
4295 /* From here on, we're only interested in the most general
4296 template. */
4297 template = gen_tmpl;
4299 /* Calculate the BOUND_ARGS. These will be the args that are
4300 actually tsubst'd into the definition to create the
4301 instantiation. */
4302 if (parm_depth > 1)
4304 /* We have multiple levels of arguments to coerce, at once. */
4305 int i;
4306 int saved_depth = TMPL_ARGS_DEPTH (arglist);
4308 tree bound_args = make_tree_vec (parm_depth);
4310 for (i = saved_depth,
4311 t = DECL_TEMPLATE_PARMS (template);
4312 i > 0 && t != NULL_TREE;
4313 --i, t = TREE_CHAIN (t))
4315 tree a = coerce_template_parms (TREE_VALUE (t),
4316 arglist, template,
4317 complain, /*require_all_args=*/1);
4319 /* Don't process further if one of the levels fails. */
4320 if (a == error_mark_node)
4322 /* Restore the ARGLIST to its full size. */
4323 TREE_VEC_LENGTH (arglist) = saved_depth;
4324 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4327 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
4329 /* We temporarily reduce the length of the ARGLIST so
4330 that coerce_template_parms will see only the arguments
4331 corresponding to the template parameters it is
4332 examining. */
4333 TREE_VEC_LENGTH (arglist)--;
4336 /* Restore the ARGLIST to its full size. */
4337 TREE_VEC_LENGTH (arglist) = saved_depth;
4339 arglist = bound_args;
4341 else
4342 arglist
4343 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
4344 INNERMOST_TEMPLATE_ARGS (arglist),
4345 template,
4346 complain, /*require_all_args=*/1);
4348 if (arglist == error_mark_node)
4349 /* We were unable to bind the arguments. */
4350 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4352 /* In the scope of a template class, explicit references to the
4353 template class refer to the type of the template, not any
4354 instantiation of it. For example, in:
4356 template <class T> class C { void f(C<T>); }
4358 the `C<T>' is just the same as `C'. Outside of the
4359 class, however, such a reference is an instantiation. */
4360 if (comp_template_args (TYPE_TI_ARGS (template_type),
4361 arglist))
4363 found = template_type;
4365 if (!entering_scope && PRIMARY_TEMPLATE_P (template))
4367 tree ctx;
4369 for (ctx = current_class_type;
4370 ctx && TREE_CODE (ctx) != NAMESPACE_DECL;
4371 ctx = (TYPE_P (ctx)
4372 ? TYPE_CONTEXT (ctx)
4373 : DECL_CONTEXT (ctx)))
4374 if (TYPE_P (ctx) && same_type_p (ctx, template_type))
4375 goto found_ctx;
4377 /* We're not in the scope of the class, so the
4378 TEMPLATE_TYPE is not the type we want after all. */
4379 found = NULL_TREE;
4380 found_ctx:;
4383 if (found)
4384 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
4386 for (tp = &DECL_TEMPLATE_INSTANTIATIONS (template);
4387 *tp;
4388 tp = &TREE_CHAIN (*tp))
4389 if (comp_template_args (TREE_PURPOSE (*tp), arglist))
4391 found = *tp;
4393 /* Use the move-to-front heuristic to speed up future
4394 searches. */
4395 *tp = TREE_CHAIN (*tp);
4396 TREE_CHAIN (found)
4397 = DECL_TEMPLATE_INSTANTIATIONS (template);
4398 DECL_TEMPLATE_INSTANTIATIONS (template) = found;
4400 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, TREE_VALUE (found));
4403 /* This type is a "partial instantiation" if any of the template
4404 arguments still involve template parameters. Note that we set
4405 IS_PARTIAL_INSTANTIATION for partial specializations as
4406 well. */
4407 is_partial_instantiation = uses_template_parms (arglist);
4409 /* If the deduced arguments are invalid, then the binding
4410 failed. */
4411 if (!is_partial_instantiation
4412 && check_instantiated_args (template,
4413 INNERMOST_TEMPLATE_ARGS (arglist),
4414 complain))
4415 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
4417 if (!is_partial_instantiation
4418 && !PRIMARY_TEMPLATE_P (template)
4419 && TREE_CODE (CP_DECL_CONTEXT (template)) == NAMESPACE_DECL)
4421 found = xref_tag_from_type (TREE_TYPE (template),
4422 DECL_NAME (template),
4423 /*globalize=*/1);
4424 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
4427 context = tsubst (DECL_CONTEXT (template), arglist,
4428 complain, in_decl);
4429 if (!context)
4430 context = global_namespace;
4432 /* Create the type. */
4433 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
4435 if (!is_partial_instantiation)
4437 set_current_access_from_decl (TYPE_NAME (template_type));
4438 t = start_enum (TYPE_IDENTIFIER (template_type));
4440 else
4441 /* We don't want to call start_enum for this type, since
4442 the values for the enumeration constants may involve
4443 template parameters. And, no one should be interested
4444 in the enumeration constants for such a type. */
4445 t = make_node (ENUMERAL_TYPE);
4447 else
4449 t = make_aggr_type (TREE_CODE (template_type));
4450 CLASSTYPE_DECLARED_CLASS (t)
4451 = CLASSTYPE_DECLARED_CLASS (template_type);
4452 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
4453 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
4455 /* A local class. Make sure the decl gets registered properly. */
4456 if (context == current_function_decl)
4457 pushtag (DECL_NAME (template), t, 0);
4460 /* If we called start_enum or pushtag above, this information
4461 will already be set up. */
4462 if (!TYPE_NAME (t))
4464 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
4466 type_decl = create_implicit_typedef (DECL_NAME (template), t);
4467 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
4468 TYPE_STUB_DECL (t) = type_decl;
4469 DECL_SOURCE_LOCATION (type_decl)
4470 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
4472 else
4473 type_decl = TYPE_NAME (t);
4475 TREE_PRIVATE (type_decl)
4476 = TREE_PRIVATE (TYPE_STUB_DECL (template_type));
4477 TREE_PROTECTED (type_decl)
4478 = TREE_PROTECTED (TYPE_STUB_DECL (template_type));
4480 /* Set up the template information. We have to figure out which
4481 template is the immediate parent if this is a full
4482 instantiation. */
4483 if (parm_depth == 1 || is_partial_instantiation
4484 || !PRIMARY_TEMPLATE_P (template))
4485 /* This case is easy; there are no member templates involved. */
4486 found = template;
4487 else
4489 /* This is a full instantiation of a member template. Look
4490 for a partial instantiation of which this is an instance. */
4492 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
4493 found; found = TREE_CHAIN (found))
4495 int success;
4496 tree tmpl = CLASSTYPE_TI_TEMPLATE (TREE_VALUE (found));
4498 /* We only want partial instantiations, here, not
4499 specializations or full instantiations. */
4500 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_VALUE (found))
4501 || !uses_template_parms (TREE_VALUE (found)))
4502 continue;
4504 /* Temporarily reduce by one the number of levels in the
4505 ARGLIST and in FOUND so as to avoid comparing the
4506 last set of arguments. */
4507 TREE_VEC_LENGTH (arglist)--;
4508 TREE_VEC_LENGTH (TREE_PURPOSE (found)) --;
4510 /* See if the arguments match. If they do, then TMPL is
4511 the partial instantiation we want. */
4512 success = comp_template_args (TREE_PURPOSE (found), arglist);
4514 /* Restore the argument vectors to their full size. */
4515 TREE_VEC_LENGTH (arglist)++;
4516 TREE_VEC_LENGTH (TREE_PURPOSE (found))++;
4518 if (success)
4520 found = tmpl;
4521 break;
4525 if (!found)
4527 /* There was no partial instantiation. This happens
4528 where C<T> is a member template of A<T> and it's used
4529 in something like
4531 template <typename T> struct B { A<T>::C<int> m; };
4532 B<float>;
4534 Create the partial instantiation.
4536 TREE_VEC_LENGTH (arglist)--;
4537 found = tsubst (template, arglist, complain, NULL_TREE);
4538 TREE_VEC_LENGTH (arglist)++;
4542 SET_TYPE_TEMPLATE_INFO (t, tree_cons (found, arglist, NULL_TREE));
4543 DECL_TEMPLATE_INSTANTIATIONS (template)
4544 = tree_cons (arglist, t,
4545 DECL_TEMPLATE_INSTANTIATIONS (template));
4547 if (TREE_CODE (t) == ENUMERAL_TYPE
4548 && !is_partial_instantiation)
4549 /* Now that the type has been registered on the instantiations
4550 list, we set up the enumerators. Because the enumeration
4551 constants may involve the enumeration type itself, we make
4552 sure to register the type first, and then create the
4553 constants. That way, doing tsubst_expr for the enumeration
4554 constants won't result in recursive calls here; we'll find
4555 the instantiation and exit above. */
4556 tsubst_enum (template_type, t, arglist);
4558 /* Reset the name of the type, now that CLASSTYPE_TEMPLATE_INFO
4559 is set up. */
4560 if (TREE_CODE (t) != ENUMERAL_TYPE)
4561 DECL_NAME (type_decl) = classtype_mangled_name (t);
4562 if (is_partial_instantiation)
4563 /* If the type makes use of template parameters, the
4564 code that generates debugging information will crash. */
4565 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
4567 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
4569 timevar_pop (TV_NAME_LOOKUP);
4572 struct pair_fn_data
4574 tree_fn_t fn;
4575 void *data;
4576 htab_t visited;
4579 /* Called from for_each_template_parm via walk_tree. */
4581 static tree
4582 for_each_template_parm_r (tree* tp, int* walk_subtrees, void* d)
4584 tree t = *tp;
4585 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
4586 tree_fn_t fn = pfd->fn;
4587 void *data = pfd->data;
4589 if (TYPE_P (t)
4590 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited))
4591 return error_mark_node;
4593 switch (TREE_CODE (t))
4595 case RECORD_TYPE:
4596 if (TYPE_PTRMEMFUNC_P (t))
4597 break;
4598 /* Fall through. */
4600 case UNION_TYPE:
4601 case ENUMERAL_TYPE:
4602 if (!TYPE_TEMPLATE_INFO (t))
4603 *walk_subtrees = 0;
4604 else if (for_each_template_parm (TREE_VALUE (TYPE_TEMPLATE_INFO (t)),
4605 fn, data, pfd->visited))
4606 return error_mark_node;
4607 break;
4609 case METHOD_TYPE:
4610 /* Since we're not going to walk subtrees, we have to do this
4611 explicitly here. */
4612 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
4613 pfd->visited))
4614 return error_mark_node;
4615 /* Fall through. */
4617 case FUNCTION_TYPE:
4618 /* Check the return type. */
4619 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited))
4620 return error_mark_node;
4622 /* Check the parameter types. Since default arguments are not
4623 instantiated until they are needed, the TYPE_ARG_TYPES may
4624 contain expressions that involve template parameters. But,
4625 no-one should be looking at them yet. And, once they're
4626 instantiated, they don't contain template parameters, so
4627 there's no point in looking at them then, either. */
4629 tree parm;
4631 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
4632 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
4633 pfd->visited))
4634 return error_mark_node;
4636 /* Since we've already handled the TYPE_ARG_TYPES, we don't
4637 want walk_tree walking into them itself. */
4638 *walk_subtrees = 0;
4640 break;
4642 case TYPEOF_TYPE:
4643 if (for_each_template_parm (TYPE_FIELDS (t), fn, data,
4644 pfd->visited))
4645 return error_mark_node;
4646 break;
4648 case FUNCTION_DECL:
4649 case VAR_DECL:
4650 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
4651 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
4652 pfd->visited))
4653 return error_mark_node;
4654 /* Fall through. */
4656 case PARM_DECL:
4657 case CONST_DECL:
4658 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
4659 && for_each_template_parm (DECL_INITIAL (t), fn, data,
4660 pfd->visited))
4661 return error_mark_node;
4662 if (DECL_CONTEXT (t)
4663 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
4664 pfd->visited))
4665 return error_mark_node;
4666 break;
4668 case BOUND_TEMPLATE_TEMPLATE_PARM:
4669 /* Record template parameters such as `T' inside `TT<T>'. */
4670 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited))
4671 return error_mark_node;
4672 /* Fall through. */
4674 case TEMPLATE_TEMPLATE_PARM:
4675 case TEMPLATE_TYPE_PARM:
4676 case TEMPLATE_PARM_INDEX:
4677 if (fn && (*fn)(t, data))
4678 return error_mark_node;
4679 else if (!fn)
4680 return error_mark_node;
4681 break;
4683 case TEMPLATE_DECL:
4684 /* A template template parameter is encountered. */
4685 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
4686 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited))
4687 return error_mark_node;
4689 /* Already substituted template template parameter */
4690 *walk_subtrees = 0;
4691 break;
4693 case TYPENAME_TYPE:
4694 if (!fn
4695 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
4696 data, pfd->visited))
4697 return error_mark_node;
4698 break;
4700 case CONSTRUCTOR:
4701 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
4702 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
4703 (TREE_TYPE (t)), fn, data,
4704 pfd->visited))
4705 return error_mark_node;
4706 break;
4708 case INDIRECT_REF:
4709 case COMPONENT_REF:
4710 /* If there's no type, then this thing must be some expression
4711 involving template parameters. */
4712 if (!fn && !TREE_TYPE (t))
4713 return error_mark_node;
4714 break;
4716 case MODOP_EXPR:
4717 case CAST_EXPR:
4718 case REINTERPRET_CAST_EXPR:
4719 case CONST_CAST_EXPR:
4720 case STATIC_CAST_EXPR:
4721 case DYNAMIC_CAST_EXPR:
4722 case ARROW_EXPR:
4723 case DOTSTAR_EXPR:
4724 case TYPEID_EXPR:
4725 case PSEUDO_DTOR_EXPR:
4726 if (!fn)
4727 return error_mark_node;
4728 break;
4730 case BASELINK:
4731 /* If we do not handle this case specially, we end up walking
4732 the BINFO hierarchy, which is circular, and therefore
4733 confuses walk_tree. */
4734 *walk_subtrees = 0;
4735 if (for_each_template_parm (BASELINK_FUNCTIONS (*tp), fn, data,
4736 pfd->visited))
4737 return error_mark_node;
4738 break;
4740 default:
4741 break;
4744 /* We didn't find any template parameters we liked. */
4745 return NULL_TREE;
4748 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
4749 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
4750 call FN with the parameter and the DATA.
4751 If FN returns nonzero, the iteration is terminated, and
4752 for_each_template_parm returns 1. Otherwise, the iteration
4753 continues. If FN never returns a nonzero value, the value
4754 returned by for_each_template_parm is 0. If FN is NULL, it is
4755 considered to be the function which always returns 1. */
4757 static int
4758 for_each_template_parm (tree t, tree_fn_t fn, void* data, htab_t visited)
4760 struct pair_fn_data pfd;
4761 int result;
4763 /* Set up. */
4764 pfd.fn = fn;
4765 pfd.data = data;
4767 /* Walk the tree. (Conceptually, we would like to walk without
4768 duplicates, but for_each_template_parm_r recursively calls
4769 for_each_template_parm, so we would need to reorganize a fair
4770 bit to use walk_tree_without_duplicates, so we keep our own
4771 visited list.) */
4772 if (visited)
4773 pfd.visited = visited;
4774 else
4775 pfd.visited = htab_create (37, htab_hash_pointer, htab_eq_pointer,
4776 NULL);
4777 result = walk_tree (&t,
4778 for_each_template_parm_r,
4779 &pfd,
4780 pfd.visited) != NULL_TREE;
4782 /* Clean up. */
4783 if (!visited)
4784 htab_delete (pfd.visited);
4786 return result;
4789 /* Returns true if T depends on any template parameter. */
4792 uses_template_parms (tree t)
4794 bool dependent_p;
4795 int saved_processing_template_decl;
4797 saved_processing_template_decl = processing_template_decl;
4798 if (!saved_processing_template_decl)
4799 processing_template_decl = 1;
4800 if (TYPE_P (t))
4801 dependent_p = dependent_type_p (t);
4802 else if (TREE_CODE (t) == TREE_VEC)
4803 dependent_p = any_dependent_template_arguments_p (t);
4804 else if (TREE_CODE (t) == TREE_LIST)
4805 dependent_p = (uses_template_parms (TREE_VALUE (t))
4806 || uses_template_parms (TREE_CHAIN (t)));
4807 else if (DECL_P (t)
4808 || EXPR_P (t)
4809 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
4810 || TREE_CODE (t) == OVERLOAD
4811 || TREE_CODE (t) == BASELINK
4812 || TREE_CODE_CLASS (TREE_CODE (t)) == 'c')
4813 dependent_p = (type_dependent_expression_p (t)
4814 || value_dependent_expression_p (t));
4815 else if (t == error_mark_node)
4816 dependent_p = false;
4817 else
4818 abort ();
4819 processing_template_decl = saved_processing_template_decl;
4821 return dependent_p;
4824 /* Returns true if T depends on any template parameter with level LEVEL. */
4827 uses_template_parms_level (tree t, int level)
4829 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL);
4832 static int tinst_depth;
4833 extern int max_tinst_depth;
4834 #ifdef GATHER_STATISTICS
4835 int depth_reached;
4836 #endif
4837 static int tinst_level_tick;
4838 static int last_template_error_tick;
4840 /* We're starting to instantiate D; record the template instantiation context
4841 for diagnostics and to restore it later. */
4844 push_tinst_level (tree d)
4846 tree new;
4848 if (tinst_depth >= max_tinst_depth)
4850 /* If the instantiation in question still has unbound template parms,
4851 we don't really care if we can't instantiate it, so just return.
4852 This happens with base instantiation for implicit `typename'. */
4853 if (uses_template_parms (d))
4854 return 0;
4856 last_template_error_tick = tinst_level_tick;
4857 error ("template instantiation depth exceeds maximum of %d (use -ftemplate-depth-NN to increase the maximum) instantiating `%D'",
4858 max_tinst_depth, d);
4860 print_instantiation_context ();
4862 return 0;
4865 new = build_expr_wfl (d, input_filename, input_line, 0);
4866 TREE_CHAIN (new) = current_tinst_level;
4867 current_tinst_level = new;
4869 ++tinst_depth;
4870 #ifdef GATHER_STATISTICS
4871 if (tinst_depth > depth_reached)
4872 depth_reached = tinst_depth;
4873 #endif
4875 ++tinst_level_tick;
4876 return 1;
4879 /* We're done instantiating this template; return to the instantiation
4880 context. */
4882 void
4883 pop_tinst_level (void)
4885 tree old = current_tinst_level;
4887 /* Restore the filename and line number stashed away when we started
4888 this instantiation. */
4889 input_line = TINST_LINE (old);
4890 input_filename = TINST_FILE (old);
4891 extract_interface_info ();
4893 current_tinst_level = TREE_CHAIN (old);
4894 --tinst_depth;
4895 ++tinst_level_tick;
4898 /* We're instantiating a deferred template; restore the template
4899 instantiation context in which the instantiation was requested, which
4900 is one step out from LEVEL. */
4902 static void
4903 reopen_tinst_level (tree level)
4905 tree t;
4907 tinst_depth = 0;
4908 for (t = level; t; t = TREE_CHAIN (t))
4909 ++tinst_depth;
4911 current_tinst_level = level;
4912 pop_tinst_level ();
4915 /* Return the outermost template instantiation context, for use with
4916 -falt-external-templates. */
4918 tree
4919 tinst_for_decl (void)
4921 tree p = current_tinst_level;
4923 if (p)
4924 for (; TREE_CHAIN (p) ; p = TREE_CHAIN (p))
4926 return p;
4929 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
4930 vector of template arguments, as for tsubst.
4932 Returns an appropriate tsubst'd friend declaration. */
4934 static tree
4935 tsubst_friend_function (tree decl, tree args)
4937 tree new_friend;
4938 location_t saved_loc = input_location;
4940 input_location = DECL_SOURCE_LOCATION (decl);
4942 if (TREE_CODE (decl) == FUNCTION_DECL
4943 && DECL_TEMPLATE_INSTANTIATION (decl)
4944 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
4945 /* This was a friend declared with an explicit template
4946 argument list, e.g.:
4948 friend void f<>(T);
4950 to indicate that f was a template instantiation, not a new
4951 function declaration. Now, we have to figure out what
4952 instantiation of what template. */
4954 tree template_id, arglist, fns;
4955 tree new_args;
4956 tree tmpl;
4957 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
4959 /* Friend functions are looked up in the containing namespace scope.
4960 We must enter that scope, to avoid finding member functions of the
4961 current cless with same name. */
4962 push_nested_namespace (ns);
4963 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
4964 tf_error | tf_warning, NULL_TREE);
4965 pop_nested_namespace (ns);
4966 arglist = tsubst (DECL_TI_ARGS (decl), args,
4967 tf_error | tf_warning, NULL_TREE);
4968 template_id = lookup_template_function (fns, arglist);
4970 new_friend = tsubst (decl, args, tf_error | tf_warning, NULL_TREE);
4971 tmpl = determine_specialization (template_id, new_friend,
4972 &new_args,
4973 /*need_member_template=*/0);
4974 new_friend = instantiate_template (tmpl, new_args, tf_error);
4975 goto done;
4978 new_friend = tsubst (decl, args, tf_error | tf_warning, NULL_TREE);
4980 /* The NEW_FRIEND will look like an instantiation, to the
4981 compiler, but is not an instantiation from the point of view of
4982 the language. For example, we might have had:
4984 template <class T> struct S {
4985 template <class U> friend void f(T, U);
4988 Then, in S<int>, template <class U> void f(int, U) is not an
4989 instantiation of anything. */
4990 if (new_friend == error_mark_node)
4991 return error_mark_node;
4993 DECL_USE_TEMPLATE (new_friend) = 0;
4994 if (TREE_CODE (decl) == TEMPLATE_DECL)
4996 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
4997 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
4998 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
5001 /* The mangled name for the NEW_FRIEND is incorrect. The function
5002 is not a template instantiation and should not be mangled like
5003 one. Therefore, we forget the mangling here; we'll recompute it
5004 later if we need it. */
5005 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
5007 SET_DECL_RTL (new_friend, NULL_RTX);
5008 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
5011 if (DECL_NAMESPACE_SCOPE_P (new_friend))
5013 tree old_decl;
5014 tree new_friend_template_info;
5015 tree new_friend_result_template_info;
5016 tree ns;
5017 int new_friend_is_defn;
5019 /* We must save some information from NEW_FRIEND before calling
5020 duplicate decls since that function will free NEW_FRIEND if
5021 possible. */
5022 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
5023 new_friend_is_defn =
5024 (DECL_INITIAL (DECL_TEMPLATE_RESULT
5025 (template_for_substitution (new_friend)))
5026 != NULL_TREE);
5027 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
5029 /* This declaration is a `primary' template. */
5030 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
5032 new_friend_result_template_info
5033 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
5035 else
5036 new_friend_result_template_info = NULL_TREE;
5038 /* Inside pushdecl_namespace_level, we will push into the
5039 current namespace. However, the friend function should go
5040 into the namespace of the template. */
5041 ns = decl_namespace_context (new_friend);
5042 push_nested_namespace (ns);
5043 old_decl = pushdecl_namespace_level (new_friend);
5044 pop_nested_namespace (ns);
5046 if (old_decl != new_friend)
5048 /* This new friend declaration matched an existing
5049 declaration. For example, given:
5051 template <class T> void f(T);
5052 template <class U> class C {
5053 template <class T> friend void f(T) {}
5056 the friend declaration actually provides the definition
5057 of `f', once C has been instantiated for some type. So,
5058 old_decl will be the out-of-class template declaration,
5059 while new_friend is the in-class definition.
5061 But, if `f' was called before this point, the
5062 instantiation of `f' will have DECL_TI_ARGS corresponding
5063 to `T' but not to `U', references to which might appear
5064 in the definition of `f'. Previously, the most general
5065 template for an instantiation of `f' was the out-of-class
5066 version; now it is the in-class version. Therefore, we
5067 run through all specialization of `f', adding to their
5068 DECL_TI_ARGS appropriately. In particular, they need a
5069 new set of outer arguments, corresponding to the
5070 arguments for this class instantiation.
5072 The same situation can arise with something like this:
5074 friend void f(int);
5075 template <class T> class C {
5076 friend void f(T) {}
5079 when `C<int>' is instantiated. Now, `f(int)' is defined
5080 in the class. */
5082 if (!new_friend_is_defn)
5083 /* On the other hand, if the in-class declaration does
5084 *not* provide a definition, then we don't want to alter
5085 existing definitions. We can just leave everything
5086 alone. */
5088 else
5090 /* Overwrite whatever template info was there before, if
5091 any, with the new template information pertaining to
5092 the declaration. */
5093 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
5095 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
5096 reregister_specialization (new_friend,
5097 most_general_template (old_decl),
5098 old_decl);
5099 else
5101 tree t;
5102 tree new_friend_args;
5104 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
5105 = new_friend_result_template_info;
5107 new_friend_args = TI_ARGS (new_friend_template_info);
5108 for (t = DECL_TEMPLATE_SPECIALIZATIONS (old_decl);
5109 t != NULL_TREE;
5110 t = TREE_CHAIN (t))
5112 tree spec = TREE_VALUE (t);
5114 DECL_TI_ARGS (spec)
5115 = add_outermost_template_args (new_friend_args,
5116 DECL_TI_ARGS (spec));
5119 /* Now, since specializations are always supposed to
5120 hang off of the most general template, we must move
5121 them. */
5122 t = most_general_template (old_decl);
5123 if (t != old_decl)
5125 DECL_TEMPLATE_SPECIALIZATIONS (t)
5126 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (t),
5127 DECL_TEMPLATE_SPECIALIZATIONS (old_decl));
5128 DECL_TEMPLATE_SPECIALIZATIONS (old_decl) = NULL_TREE;
5133 /* The information from NEW_FRIEND has been merged into OLD_DECL
5134 by duplicate_decls. */
5135 new_friend = old_decl;
5138 else if (COMPLETE_TYPE_P (DECL_CONTEXT (new_friend)))
5140 /* Check to see that the declaration is really present, and,
5141 possibly obtain an improved declaration. */
5142 tree fn = check_classfn (DECL_CONTEXT (new_friend),
5143 new_friend, false);
5145 if (fn)
5146 new_friend = fn;
5149 done:
5150 input_location = saved_loc;
5151 return new_friend;
5154 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
5155 template arguments, as for tsubst.
5157 Returns an appropriate tsubst'd friend type or error_mark_node on
5158 failure. */
5160 static tree
5161 tsubst_friend_class (tree friend_tmpl, tree args)
5163 tree friend_type;
5164 tree tmpl;
5165 tree context;
5167 context = DECL_CONTEXT (friend_tmpl);
5169 if (context)
5171 if (TREE_CODE (context) == NAMESPACE_DECL)
5172 push_nested_namespace (context);
5173 else
5174 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
5177 /* First, we look for a class template. */
5178 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/0);
5180 /* But, if we don't find one, it might be because we're in a
5181 situation like this:
5183 template <class T>
5184 struct S {
5185 template <class U>
5186 friend struct S;
5189 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
5190 for `S<int>', not the TEMPLATE_DECL. */
5191 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
5193 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/1);
5194 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
5197 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
5199 /* The friend template has already been declared. Just
5200 check to see that the declarations match, and install any new
5201 default parameters. We must tsubst the default parameters,
5202 of course. We only need the innermost template parameters
5203 because that is all that redeclare_class_template will look
5204 at. */
5205 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
5206 > TMPL_ARGS_DEPTH (args))
5208 tree parms;
5209 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
5210 args, tf_error | tf_warning);
5211 redeclare_class_template (TREE_TYPE (tmpl), parms);
5214 friend_type = TREE_TYPE (tmpl);
5216 else
5218 /* The friend template has not already been declared. In this
5219 case, the instantiation of the template class will cause the
5220 injection of this template into the global scope. */
5221 tmpl = tsubst (friend_tmpl, args, tf_error | tf_warning, NULL_TREE);
5223 /* The new TMPL is not an instantiation of anything, so we
5224 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
5225 the new type because that is supposed to be the corresponding
5226 template decl, i.e., TMPL. */
5227 DECL_USE_TEMPLATE (tmpl) = 0;
5228 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
5229 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
5230 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
5231 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
5233 /* Inject this template into the global scope. */
5234 friend_type = TREE_TYPE (pushdecl_top_level (tmpl));
5237 if (context)
5239 if (TREE_CODE (context) == NAMESPACE_DECL)
5240 pop_nested_namespace (context);
5241 else
5242 pop_nested_class ();
5245 return friend_type;
5248 /* Returns zero if TYPE cannot be completed later due to circularity.
5249 Otherwise returns one. */
5251 static int
5252 can_complete_type_without_circularity (tree type)
5254 if (type == NULL_TREE || type == error_mark_node)
5255 return 0;
5256 else if (COMPLETE_TYPE_P (type))
5257 return 1;
5258 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
5259 return can_complete_type_without_circularity (TREE_TYPE (type));
5260 else if (CLASS_TYPE_P (type)
5261 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
5262 return 0;
5263 else
5264 return 1;
5267 tree
5268 instantiate_class_template (tree type)
5270 tree template, args, pattern, t, member;
5271 tree typedecl;
5272 tree pbinfo;
5274 if (type == error_mark_node)
5275 return error_mark_node;
5277 if (TYPE_BEING_DEFINED (type)
5278 || COMPLETE_TYPE_P (type)
5279 || dependent_type_p (type))
5280 return type;
5282 /* Figure out which template is being instantiated. */
5283 template = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
5284 my_friendly_assert (TREE_CODE (template) == TEMPLATE_DECL, 279);
5286 /* Figure out which arguments are being used to do the
5287 instantiation. */
5288 args = CLASSTYPE_TI_ARGS (type);
5290 /* Determine what specialization of the original template to
5291 instantiate. */
5292 t = most_specialized_class (template, args);
5293 if (t == error_mark_node)
5295 const char *str = "candidates are:";
5296 error ("ambiguous class template instantiation for `%#T'", type);
5297 for (t = DECL_TEMPLATE_SPECIALIZATIONS (template); t;
5298 t = TREE_CHAIN (t))
5300 if (get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args))
5302 cp_error_at ("%s %+#T", str, TREE_TYPE (t));
5303 str = " ";
5306 TYPE_BEING_DEFINED (type) = 1;
5307 return error_mark_node;
5310 if (t)
5311 pattern = TREE_TYPE (t);
5312 else
5313 pattern = TREE_TYPE (template);
5315 /* If the template we're instantiating is incomplete, then clearly
5316 there's nothing we can do. */
5317 if (!COMPLETE_TYPE_P (pattern))
5318 return type;
5320 /* If we've recursively instantiated too many templates, stop. */
5321 if (! push_tinst_level (type))
5322 return type;
5324 /* Now we're really doing the instantiation. Mark the type as in
5325 the process of being defined. */
5326 TYPE_BEING_DEFINED (type) = 1;
5328 /* We may be in the middle of deferred access check. Disable
5329 it now. */
5330 push_deferring_access_checks (dk_no_deferred);
5332 push_to_top_level ();
5334 if (t)
5336 /* This TYPE is actually an instantiation of a partial
5337 specialization. We replace the innermost set of ARGS with
5338 the arguments appropriate for substitution. For example,
5339 given:
5341 template <class T> struct S {};
5342 template <class T> struct S<T*> {};
5344 and supposing that we are instantiating S<int*>, ARGS will
5345 present be {int*} but we need {int}. */
5346 tree inner_args
5347 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t),
5348 args);
5350 /* If there were multiple levels in ARGS, replacing the
5351 innermost level would alter CLASSTYPE_TI_ARGS, which we don't
5352 want, so we make a copy first. */
5353 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
5355 args = copy_node (args);
5356 SET_TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args), inner_args);
5358 else
5359 args = inner_args;
5362 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
5364 /* Set the input location to the template definition. This is needed
5365 if tsubsting causes an error. */
5366 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (pattern));
5368 TYPE_HAS_CONSTRUCTOR (type) = TYPE_HAS_CONSTRUCTOR (pattern);
5369 TYPE_HAS_DESTRUCTOR (type) = TYPE_HAS_DESTRUCTOR (pattern);
5370 TYPE_HAS_NEW_OPERATOR (type) = TYPE_HAS_NEW_OPERATOR (pattern);
5371 TYPE_HAS_ARRAY_NEW_OPERATOR (type) = TYPE_HAS_ARRAY_NEW_OPERATOR (pattern);
5372 TYPE_GETS_DELETE (type) = TYPE_GETS_DELETE (pattern);
5373 TYPE_HAS_ASSIGN_REF (type) = TYPE_HAS_ASSIGN_REF (pattern);
5374 TYPE_HAS_CONST_ASSIGN_REF (type) = TYPE_HAS_CONST_ASSIGN_REF (pattern);
5375 TYPE_HAS_ABSTRACT_ASSIGN_REF (type) = TYPE_HAS_ABSTRACT_ASSIGN_REF (pattern);
5376 TYPE_HAS_INIT_REF (type) = TYPE_HAS_INIT_REF (pattern);
5377 TYPE_HAS_CONST_INIT_REF (type) = TYPE_HAS_CONST_INIT_REF (pattern);
5378 TYPE_HAS_DEFAULT_CONSTRUCTOR (type) = TYPE_HAS_DEFAULT_CONSTRUCTOR (pattern);
5379 TYPE_HAS_CONVERSION (type) = TYPE_HAS_CONVERSION (pattern);
5380 TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type)
5381 = TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (pattern);
5382 TYPE_USES_MULTIPLE_INHERITANCE (type)
5383 = TYPE_USES_MULTIPLE_INHERITANCE (pattern);
5384 TYPE_USES_VIRTUAL_BASECLASSES (type)
5385 = TYPE_USES_VIRTUAL_BASECLASSES (pattern);
5386 TYPE_PACKED (type) = TYPE_PACKED (pattern);
5387 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
5388 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
5389 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
5390 if (ANON_AGGR_TYPE_P (pattern))
5391 SET_ANON_AGGR_TYPE_P (type);
5393 pbinfo = TYPE_BINFO (pattern);
5395 #ifdef ENABLE_CHECKING
5396 if (DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
5397 && ! COMPLETE_TYPE_P (TYPE_CONTEXT (type))
5398 && ! TYPE_BEING_DEFINED (TYPE_CONTEXT (type)))
5399 /* We should never instantiate a nested class before its enclosing
5400 class; we need to look up the nested class by name before we can
5401 instantiate it, and that lookup should instantiate the enclosing
5402 class. */
5403 abort ();
5404 #endif
5406 if (BINFO_BASETYPES (pbinfo))
5408 tree base_list = NULL_TREE;
5409 tree pbases = BINFO_BASETYPES (pbinfo);
5410 tree paccesses = BINFO_BASEACCESSES (pbinfo);
5411 tree context = TYPE_CONTEXT (type);
5412 bool pop_p;
5413 int i;
5415 /* We must enter the scope containing the type, as that is where
5416 the accessibility of types named in dependent bases are
5417 looked up from. */
5418 pop_p = push_scope (context ? context : global_namespace);
5420 /* Substitute into each of the bases to determine the actual
5421 basetypes. */
5422 for (i = 0; i < TREE_VEC_LENGTH (pbases); ++i)
5424 tree base;
5425 tree access;
5426 tree pbase;
5428 pbase = TREE_VEC_ELT (pbases, i);
5429 access = TREE_VEC_ELT (paccesses, i);
5431 /* Substitute to figure out the base class. */
5432 base = tsubst (BINFO_TYPE (pbase), args, tf_error, NULL_TREE);
5433 if (base == error_mark_node)
5434 continue;
5436 base_list = tree_cons (access, base, base_list);
5437 TREE_VIA_VIRTUAL (base_list) = TREE_VIA_VIRTUAL (pbase);
5440 /* The list is now in reverse order; correct that. */
5441 base_list = nreverse (base_list);
5443 /* Now call xref_basetypes to set up all the base-class
5444 information. */
5445 xref_basetypes (type, base_list);
5447 if (pop_p)
5448 pop_scope (context ? context : global_namespace);
5451 /* Now that our base classes are set up, enter the scope of the
5452 class, so that name lookups into base classes, etc. will work
5453 correctly. This is precisely analogous to what we do in
5454 begin_class_definition when defining an ordinary non-template
5455 class. */
5456 pushclass (type);
5458 /* Now members are processed in the order of declaration. */
5459 for (member = CLASSTYPE_DECL_LIST (pattern);
5460 member; member = TREE_CHAIN (member))
5462 tree t = TREE_VALUE (member);
5464 if (TREE_PURPOSE (member))
5466 if (TYPE_P (t))
5468 /* Build new CLASSTYPE_NESTED_UTDS. */
5470 tree tag = t;
5471 tree name = TYPE_IDENTIFIER (tag);
5472 tree newtag;
5474 newtag = tsubst (tag, args, tf_error, NULL_TREE);
5475 if (newtag == error_mark_node)
5476 continue;
5478 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
5480 if (TYPE_LANG_SPECIFIC (tag) && CLASSTYPE_IS_TEMPLATE (tag))
5481 /* Unfortunately, lookup_template_class sets
5482 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
5483 instantiation (i.e., for the type of a member
5484 template class nested within a template class.)
5485 This behavior is required for
5486 maybe_process_partial_specialization to work
5487 correctly, but is not accurate in this case;
5488 the TAG is not an instantiation of anything.
5489 (The corresponding TEMPLATE_DECL is an
5490 instantiation, but the TYPE is not.) */
5491 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
5493 /* Now, we call pushtag to put this NEWTAG into the scope of
5494 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
5495 pushtag calling push_template_decl. We don't have to do
5496 this for enums because it will already have been done in
5497 tsubst_enum. */
5498 if (name)
5499 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
5500 pushtag (name, newtag, /*globalize=*/0);
5503 else if (TREE_CODE (t) == FUNCTION_DECL
5504 || DECL_FUNCTION_TEMPLATE_P (t))
5506 /* Build new TYPE_METHODS. */
5507 tree r;
5509 if (TREE_CODE (t) == TEMPLATE_DECL)
5510 ++processing_template_decl;
5511 r = tsubst (t, args, tf_error, NULL_TREE);
5512 if (TREE_CODE (t) == TEMPLATE_DECL)
5513 --processing_template_decl;
5514 set_current_access_from_decl (r);
5515 grok_special_member_properties (r);
5516 finish_member_declaration (r);
5518 else
5520 /* Build new TYPE_FIELDS. */
5522 if (TREE_CODE (t) != CONST_DECL)
5524 tree r;
5526 /* The the file and line for this declaration, to
5527 assist in error message reporting. Since we
5528 called push_tinst_level above, we don't need to
5529 restore these. */
5530 input_location = DECL_SOURCE_LOCATION (t);
5532 if (TREE_CODE (t) == TEMPLATE_DECL)
5533 ++processing_template_decl;
5534 r = tsubst (t, args, tf_error | tf_warning, NULL_TREE);
5535 if (TREE_CODE (t) == TEMPLATE_DECL)
5536 --processing_template_decl;
5537 if (TREE_CODE (r) == VAR_DECL)
5539 tree init;
5541 if (DECL_INITIALIZED_IN_CLASS_P (r))
5542 init = tsubst_expr (DECL_INITIAL (t), args,
5543 tf_error | tf_warning, NULL_TREE);
5544 else
5545 init = NULL_TREE;
5547 finish_static_data_member_decl
5548 (r, init, /*asmspec_tree=*/NULL_TREE, /*flags=*/0);
5550 if (DECL_INITIALIZED_IN_CLASS_P (r))
5551 check_static_variable_definition (r, TREE_TYPE (r));
5553 else if (TREE_CODE (r) == FIELD_DECL)
5555 /* Determine whether R has a valid type and can be
5556 completed later. If R is invalid, then it is
5557 replaced by error_mark_node so that it will not be
5558 added to TYPE_FIELDS. */
5559 tree rtype = TREE_TYPE (r);
5560 if (can_complete_type_without_circularity (rtype))
5561 complete_type (rtype);
5563 if (!COMPLETE_TYPE_P (rtype))
5565 cxx_incomplete_type_error (r, rtype);
5566 r = error_mark_node;
5570 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
5571 such a thing will already have been added to the field
5572 list by tsubst_enum in finish_member_declaration in the
5573 CLASSTYPE_NESTED_UTDS case above. */
5574 if (!(TREE_CODE (r) == TYPE_DECL
5575 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
5576 && DECL_ARTIFICIAL (r)))
5578 set_current_access_from_decl (r);
5579 finish_member_declaration (r);
5584 else
5586 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t))
5588 /* Build new CLASSTYPE_FRIEND_CLASSES. */
5590 tree friend_type = t;
5591 tree new_friend_type;
5593 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5594 new_friend_type = tsubst_friend_class (friend_type, args);
5595 else if (uses_template_parms (friend_type))
5596 new_friend_type = tsubst (friend_type, args,
5597 tf_error | tf_warning, NULL_TREE);
5598 else if (CLASSTYPE_USE_TEMPLATE (friend_type))
5599 new_friend_type = friend_type;
5600 else
5602 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
5604 /* The call to xref_tag_from_type does injection for friend
5605 classes. */
5606 push_nested_namespace (ns);
5607 new_friend_type =
5608 xref_tag_from_type (friend_type, NULL_TREE, 1);
5609 pop_nested_namespace (ns);
5612 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5613 /* Trick make_friend_class into realizing that the friend
5614 we're adding is a template, not an ordinary class. It's
5615 important that we use make_friend_class since it will
5616 perform some error-checking and output cross-reference
5617 information. */
5618 ++processing_template_decl;
5620 if (new_friend_type != error_mark_node)
5621 make_friend_class (type, new_friend_type,
5622 /*complain=*/false);
5624 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5625 --processing_template_decl;
5627 else
5629 /* Build new DECL_FRIENDLIST. */
5630 tree r;
5632 if (TREE_CODE (t) == TEMPLATE_DECL)
5633 ++processing_template_decl;
5634 r = tsubst_friend_function (t, args);
5635 if (TREE_CODE (t) == TEMPLATE_DECL)
5636 --processing_template_decl;
5637 add_friend (type, r, /*complain=*/false);
5642 /* Set the file and line number information to whatever is given for
5643 the class itself. This puts error messages involving generated
5644 implicit functions at a predictable point, and the same point
5645 that would be used for non-template classes. */
5646 typedecl = TYPE_MAIN_DECL (type);
5647 input_location = DECL_SOURCE_LOCATION (typedecl);
5649 unreverse_member_declarations (type);
5650 finish_struct_1 (type);
5652 /* Clear this now so repo_template_used is happy. */
5653 TYPE_BEING_DEFINED (type) = 0;
5654 repo_template_used (type);
5656 /* Now that the class is complete, instantiate default arguments for
5657 any member functions. We don't do this earlier because the
5658 default arguments may reference members of the class. */
5659 if (!PRIMARY_TEMPLATE_P (template))
5660 for (t = TYPE_METHODS (type); t; t = TREE_CHAIN (t))
5661 if (TREE_CODE (t) == FUNCTION_DECL
5662 /* Implicitly generated member functions will not have template
5663 information; they are not instantiations, but instead are
5664 created "fresh" for each instantiation. */
5665 && DECL_TEMPLATE_INFO (t))
5666 tsubst_default_arguments (t);
5668 popclass ();
5669 pop_from_top_level ();
5670 pop_deferring_access_checks ();
5671 pop_tinst_level ();
5673 if (TYPE_CONTAINS_VPTR_P (type))
5674 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
5676 return type;
5679 static tree
5680 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
5682 tree r;
5684 if (!t)
5685 r = t;
5686 else if (TYPE_P (t))
5687 r = tsubst (t, args, complain, in_decl);
5688 else
5690 r = tsubst_expr (t, args, complain, in_decl);
5692 if (!uses_template_parms (r))
5694 /* Sometimes, one of the args was an expression involving a
5695 template constant parameter, like N - 1. Now that we've
5696 tsubst'd, we might have something like 2 - 1. This will
5697 confuse lookup_template_class, so we do constant folding
5698 here. We have to unset processing_template_decl, to fool
5699 tsubst_copy_and_build() into building an actual tree. */
5701 /* If the TREE_TYPE of ARG is not NULL_TREE, ARG is already
5702 as simple as it's going to get, and trying to reprocess
5703 the trees will break. Once tsubst_expr et al DTRT for
5704 non-dependent exprs, this code can go away, as the type
5705 will always be set. */
5706 if (!TREE_TYPE (r))
5708 int saved_processing_template_decl = processing_template_decl;
5709 processing_template_decl = 0;
5710 r = tsubst_copy_and_build (r, /*args=*/NULL_TREE,
5711 tf_error, /*in_decl=*/NULL_TREE,
5712 /*function_p=*/false);
5713 processing_template_decl = saved_processing_template_decl;
5715 r = fold (r);
5718 return r;
5721 /* Substitute ARGS into the vector or list of template arguments T. */
5723 static tree
5724 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
5726 int len = TREE_VEC_LENGTH (t);
5727 int need_new = 0, i;
5728 tree *elts = alloca (len * sizeof (tree));
5730 for (i = 0; i < len; i++)
5732 tree orig_arg = TREE_VEC_ELT (t, i);
5733 tree new_arg;
5735 if (TREE_CODE (orig_arg) == TREE_VEC)
5736 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
5737 else
5738 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
5740 if (new_arg == error_mark_node)
5741 return error_mark_node;
5743 elts[i] = new_arg;
5744 if (new_arg != orig_arg)
5745 need_new = 1;
5748 if (!need_new)
5749 return t;
5751 t = make_tree_vec (len);
5752 for (i = 0; i < len; i++)
5753 TREE_VEC_ELT (t, i) = elts[i];
5755 return t;
5758 /* Return the result of substituting ARGS into the template parameters
5759 given by PARMS. If there are m levels of ARGS and m + n levels of
5760 PARMS, then the result will contain n levels of PARMS. For
5761 example, if PARMS is `template <class T> template <class U>
5762 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
5763 result will be `template <int*, double, class V>'. */
5765 static tree
5766 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
5768 tree r = NULL_TREE;
5769 tree* new_parms;
5771 for (new_parms = &r;
5772 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
5773 new_parms = &(TREE_CHAIN (*new_parms)),
5774 parms = TREE_CHAIN (parms))
5776 tree new_vec =
5777 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
5778 int i;
5780 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
5782 tree tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
5783 tree default_value = TREE_PURPOSE (tuple);
5784 tree parm_decl = TREE_VALUE (tuple);
5786 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
5787 default_value = tsubst_template_arg (default_value, args,
5788 complain, NULL_TREE);
5790 tuple = build_tree_list (default_value, parm_decl);
5791 TREE_VEC_ELT (new_vec, i) = tuple;
5794 *new_parms =
5795 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
5796 - TMPL_ARGS_DEPTH (args)),
5797 new_vec, NULL_TREE);
5800 return r;
5803 /* Substitute the ARGS into the indicated aggregate (or enumeration)
5804 type T. If T is not an aggregate or enumeration type, it is
5805 handled as if by tsubst. IN_DECL is as for tsubst. If
5806 ENTERING_SCOPE is nonzero, T is the context for a template which
5807 we are presently tsubst'ing. Return the substituted value. */
5809 static tree
5810 tsubst_aggr_type (tree t,
5811 tree args,
5812 tsubst_flags_t complain,
5813 tree in_decl,
5814 int entering_scope)
5816 if (t == NULL_TREE)
5817 return NULL_TREE;
5819 switch (TREE_CODE (t))
5821 case RECORD_TYPE:
5822 if (TYPE_PTRMEMFUNC_P (t))
5823 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
5825 /* Else fall through. */
5826 case ENUMERAL_TYPE:
5827 case UNION_TYPE:
5828 if (TYPE_TEMPLATE_INFO (t))
5830 tree argvec;
5831 tree context;
5832 tree r;
5834 /* First, determine the context for the type we are looking
5835 up. */
5836 context = TYPE_CONTEXT (t);
5837 if (context)
5838 context = tsubst_aggr_type (context, args, complain,
5839 in_decl, /*entering_scope=*/1);
5841 /* Then, figure out what arguments are appropriate for the
5842 type we are trying to find. For example, given:
5844 template <class T> struct S;
5845 template <class T, class U> void f(T, U) { S<U> su; }
5847 and supposing that we are instantiating f<int, double>,
5848 then our ARGS will be {int, double}, but, when looking up
5849 S we only want {double}. */
5850 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
5851 complain, in_decl);
5852 if (argvec == error_mark_node)
5853 return error_mark_node;
5855 r = lookup_template_class (t, argvec, in_decl, context,
5856 entering_scope, complain);
5858 return cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
5860 else
5861 /* This is not a template type, so there's nothing to do. */
5862 return t;
5864 default:
5865 return tsubst (t, args, complain, in_decl);
5869 /* Substitute into the default argument ARG (a default argument for
5870 FN), which has the indicated TYPE. */
5872 tree
5873 tsubst_default_argument (tree fn, tree type, tree arg)
5875 /* This default argument came from a template. Instantiate the
5876 default argument here, not in tsubst. In the case of
5877 something like:
5879 template <class T>
5880 struct S {
5881 static T t();
5882 void f(T = t());
5885 we must be careful to do name lookup in the scope of S<T>,
5886 rather than in the current class.
5888 ??? current_class_type affects a lot more than name lookup. This is
5889 very fragile. Fortunately, it will go away when we do 2-phase name
5890 binding properly. */
5892 /* FN is already the desired FUNCTION_DECL. */
5893 push_access_scope (fn);
5894 /* The default argument expression should not be considered to be
5895 within the scope of FN. Since push_access_scope sets
5896 current_function_decl, we must explicitly clear it here. */
5897 current_function_decl = NULL_TREE;
5899 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
5900 tf_error | tf_warning, NULL_TREE);
5902 pop_access_scope (fn);
5904 /* Make sure the default argument is reasonable. */
5905 arg = check_default_argument (type, arg);
5907 return arg;
5910 /* Substitute into all the default arguments for FN. */
5912 static void
5913 tsubst_default_arguments (tree fn)
5915 tree arg;
5916 tree tmpl_args;
5918 tmpl_args = DECL_TI_ARGS (fn);
5920 /* If this function is not yet instantiated, we certainly don't need
5921 its default arguments. */
5922 if (uses_template_parms (tmpl_args))
5923 return;
5925 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
5926 arg;
5927 arg = TREE_CHAIN (arg))
5928 if (TREE_PURPOSE (arg))
5929 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
5930 TREE_VALUE (arg),
5931 TREE_PURPOSE (arg));
5934 /* Substitute the ARGS into the T, which is a _DECL. TYPE is the
5935 (already computed) substitution of ARGS into TREE_TYPE (T), if
5936 appropriate. Return the result of the substitution. Issue error
5937 and warning messages under control of COMPLAIN. */
5939 static tree
5940 tsubst_decl (tree t, tree args, tree type, tsubst_flags_t complain)
5942 location_t saved_loc;
5943 tree r = NULL_TREE;
5944 tree in_decl = t;
5946 /* Set the filename and linenumber to improve error-reporting. */
5947 saved_loc = input_location;
5948 input_location = DECL_SOURCE_LOCATION (t);
5950 switch (TREE_CODE (t))
5952 case TEMPLATE_DECL:
5954 /* We can get here when processing a member template function
5955 of a template class. */
5956 tree decl = DECL_TEMPLATE_RESULT (t);
5957 tree spec;
5958 int is_template_template_parm = DECL_TEMPLATE_TEMPLATE_PARM_P (t);
5960 if (!is_template_template_parm)
5962 /* We might already have an instance of this template.
5963 The ARGS are for the surrounding class type, so the
5964 full args contain the tsubst'd args for the context,
5965 plus the innermost args from the template decl. */
5966 tree tmpl_args = DECL_CLASS_TEMPLATE_P (t)
5967 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
5968 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
5969 tree full_args;
5971 full_args = tsubst_template_args (tmpl_args, args,
5972 complain, in_decl);
5974 /* tsubst_template_args doesn't copy the vector if
5975 nothing changed. But, *something* should have
5976 changed. */
5977 my_friendly_assert (full_args != tmpl_args, 0);
5979 spec = retrieve_specialization (t, full_args);
5980 if (spec != NULL_TREE)
5982 r = spec;
5983 break;
5987 /* Make a new template decl. It will be similar to the
5988 original, but will record the current template arguments.
5989 We also create a new function declaration, which is just
5990 like the old one, but points to this new template, rather
5991 than the old one. */
5992 r = copy_decl (t);
5993 my_friendly_assert (DECL_LANG_SPECIFIC (r) != 0, 0);
5994 TREE_CHAIN (r) = NULL_TREE;
5996 if (is_template_template_parm)
5998 tree new_decl = tsubst (decl, args, complain, in_decl);
5999 DECL_TEMPLATE_RESULT (r) = new_decl;
6000 TREE_TYPE (r) = TREE_TYPE (new_decl);
6001 break;
6004 DECL_CONTEXT (r)
6005 = tsubst_aggr_type (DECL_CONTEXT (t), args,
6006 complain, in_decl,
6007 /*entering_scope=*/1);
6008 DECL_TEMPLATE_INFO (r) = build_tree_list (t, args);
6010 if (TREE_CODE (decl) == TYPE_DECL)
6012 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6013 if (new_type == error_mark_node)
6014 return error_mark_node;
6016 TREE_TYPE (r) = new_type;
6017 CLASSTYPE_TI_TEMPLATE (new_type) = r;
6018 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
6019 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
6021 else
6023 tree new_decl = tsubst (decl, args, complain, in_decl);
6024 if (new_decl == error_mark_node)
6025 return error_mark_node;
6027 DECL_TEMPLATE_RESULT (r) = new_decl;
6028 DECL_TI_TEMPLATE (new_decl) = r;
6029 TREE_TYPE (r) = TREE_TYPE (new_decl);
6030 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
6033 SET_DECL_IMPLICIT_INSTANTIATION (r);
6034 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
6035 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
6037 /* The template parameters for this new template are all the
6038 template parameters for the old template, except the
6039 outermost level of parameters. */
6040 DECL_TEMPLATE_PARMS (r)
6041 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
6042 complain);
6044 if (PRIMARY_TEMPLATE_P (t))
6045 DECL_PRIMARY_TEMPLATE (r) = r;
6047 if (TREE_CODE (decl) != TYPE_DECL)
6048 /* Record this non-type partial instantiation. */
6049 register_specialization (r, t,
6050 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)));
6052 break;
6054 case FUNCTION_DECL:
6056 tree ctx;
6057 tree argvec = NULL_TREE;
6058 tree *friends;
6059 tree gen_tmpl;
6060 int member;
6061 int args_depth;
6062 int parms_depth;
6064 /* Nobody should be tsubst'ing into non-template functions. */
6065 my_friendly_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE, 0);
6067 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
6069 tree spec;
6070 bool dependent_p;
6072 /* If T is not dependent, just return it. We have to
6073 increment PROCESSING_TEMPLATE_DECL because
6074 value_dependent_expression_p assumes that nothing is
6075 dependent when PROCESSING_TEMPLATE_DECL is zero. */
6076 ++processing_template_decl;
6077 dependent_p = value_dependent_expression_p (t);
6078 --processing_template_decl;
6079 if (!dependent_p)
6080 return t;
6082 /* Calculate the most general template of which R is a
6083 specialization, and the complete set of arguments used to
6084 specialize R. */
6085 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
6086 argvec = tsubst_template_args (DECL_TI_ARGS
6087 (DECL_TEMPLATE_RESULT (gen_tmpl)),
6088 args, complain, in_decl);
6090 /* Check to see if we already have this specialization. */
6091 spec = retrieve_specialization (gen_tmpl, argvec);
6093 if (spec)
6095 r = spec;
6096 break;
6099 /* We can see more levels of arguments than parameters if
6100 there was a specialization of a member template, like
6101 this:
6103 template <class T> struct S { template <class U> void f(); }
6104 template <> template <class U> void S<int>::f(U);
6106 Here, we'll be substituting into the specialization,
6107 because that's where we can find the code we actually
6108 want to generate, but we'll have enough arguments for
6109 the most general template.
6111 We also deal with the peculiar case:
6113 template <class T> struct S {
6114 template <class U> friend void f();
6116 template <class U> void f() {}
6117 template S<int>;
6118 template void f<double>();
6120 Here, the ARGS for the instantiation of will be {int,
6121 double}. But, we only need as many ARGS as there are
6122 levels of template parameters in CODE_PATTERN. We are
6123 careful not to get fooled into reducing the ARGS in
6124 situations like:
6126 template <class T> struct S { template <class U> void f(U); }
6127 template <class T> template <> void S<T>::f(int) {}
6129 which we can spot because the pattern will be a
6130 specialization in this case. */
6131 args_depth = TMPL_ARGS_DEPTH (args);
6132 parms_depth =
6133 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
6134 if (args_depth > parms_depth
6135 && !DECL_TEMPLATE_SPECIALIZATION (t))
6136 args = get_innermost_template_args (args, parms_depth);
6138 else
6140 /* This special case arises when we have something like this:
6142 template <class T> struct S {
6143 friend void f<int>(int, double);
6146 Here, the DECL_TI_TEMPLATE for the friend declaration
6147 will be an IDENTIFIER_NODE. We are being called from
6148 tsubst_friend_function, and we want only to create a
6149 new decl (R) with appropriate types so that we can call
6150 determine_specialization. */
6151 gen_tmpl = NULL_TREE;
6154 if (DECL_CLASS_SCOPE_P (t))
6156 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
6157 member = 2;
6158 else
6159 member = 1;
6160 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
6161 complain, t, /*entering_scope=*/1);
6163 else
6165 member = 0;
6166 ctx = DECL_CONTEXT (t);
6168 type = tsubst (type, args, complain, in_decl);
6169 if (type == error_mark_node)
6170 return error_mark_node;
6172 /* We do NOT check for matching decls pushed separately at this
6173 point, as they may not represent instantiations of this
6174 template, and in any case are considered separate under the
6175 discrete model. */
6176 r = copy_decl (t);
6177 DECL_USE_TEMPLATE (r) = 0;
6178 TREE_TYPE (r) = type;
6179 /* Clear out the mangled name and RTL for the instantiation. */
6180 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
6181 SET_DECL_RTL (r, NULL_RTX);
6182 DECL_INITIAL (r) = NULL_TREE;
6183 DECL_CONTEXT (r) = ctx;
6185 if (member && DECL_CONV_FN_P (r))
6186 /* Type-conversion operator. Reconstruct the name, in
6187 case it's the name of one of the template's parameters. */
6188 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
6190 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
6191 complain, t);
6192 DECL_RESULT (r) = NULL_TREE;
6194 TREE_STATIC (r) = 0;
6195 TREE_PUBLIC (r) = TREE_PUBLIC (t);
6196 DECL_EXTERNAL (r) = 1;
6197 DECL_INTERFACE_KNOWN (r) = 0;
6198 DECL_DEFER_OUTPUT (r) = 0;
6199 TREE_CHAIN (r) = NULL_TREE;
6200 DECL_PENDING_INLINE_INFO (r) = 0;
6201 DECL_PENDING_INLINE_P (r) = 0;
6202 DECL_SAVED_TREE (r) = NULL_TREE;
6203 TREE_USED (r) = 0;
6204 if (DECL_CLONED_FUNCTION (r))
6206 DECL_CLONED_FUNCTION (r) = tsubst (DECL_CLONED_FUNCTION (t),
6207 args, complain, t);
6208 TREE_CHAIN (r) = TREE_CHAIN (DECL_CLONED_FUNCTION (r));
6209 TREE_CHAIN (DECL_CLONED_FUNCTION (r)) = r;
6212 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
6213 this in the special friend case mentioned above where
6214 GEN_TMPL is NULL. */
6215 if (gen_tmpl)
6217 DECL_TEMPLATE_INFO (r)
6218 = tree_cons (gen_tmpl, argvec, NULL_TREE);
6219 SET_DECL_IMPLICIT_INSTANTIATION (r);
6220 register_specialization (r, gen_tmpl, argvec);
6222 /* We're not supposed to instantiate default arguments
6223 until they are called, for a template. But, for a
6224 declaration like:
6226 template <class T> void f ()
6227 { extern void g(int i = T()); }
6229 we should do the substitution when the template is
6230 instantiated. We handle the member function case in
6231 instantiate_class_template since the default arguments
6232 might refer to other members of the class. */
6233 if (!member
6234 && !PRIMARY_TEMPLATE_P (gen_tmpl)
6235 && !uses_template_parms (argvec))
6236 tsubst_default_arguments (r);
6239 /* Copy the list of befriending classes. */
6240 for (friends = &DECL_BEFRIENDING_CLASSES (r);
6241 *friends;
6242 friends = &TREE_CHAIN (*friends))
6244 *friends = copy_node (*friends);
6245 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
6246 args, complain,
6247 in_decl);
6250 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
6252 maybe_retrofit_in_chrg (r);
6253 if (DECL_CONSTRUCTOR_P (r))
6254 grok_ctor_properties (ctx, r);
6255 /* If this is an instantiation of a member template, clone it.
6256 If it isn't, that'll be handled by
6257 clone_constructors_and_destructors. */
6258 if (PRIMARY_TEMPLATE_P (gen_tmpl))
6259 clone_function_decl (r, /*update_method_vec_p=*/0);
6261 else if (IDENTIFIER_OPNAME_P (DECL_NAME (r)))
6262 grok_op_properties (r, DECL_FRIEND_P (r),
6263 (complain & tf_error) != 0);
6265 break;
6267 case PARM_DECL:
6269 r = copy_node (t);
6270 if (DECL_TEMPLATE_PARM_P (t))
6271 SET_DECL_TEMPLATE_PARM_P (r);
6273 TREE_TYPE (r) = type;
6274 c_apply_type_quals_to_decl (cp_type_quals (type), r);
6276 if (DECL_INITIAL (r))
6278 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
6279 DECL_INITIAL (r) = TREE_TYPE (r);
6280 else
6281 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
6282 complain, in_decl);
6285 DECL_CONTEXT (r) = NULL_TREE;
6287 if (!DECL_TEMPLATE_PARM_P (r))
6288 DECL_ARG_TYPE (r) = type_passed_as (type);
6289 if (TREE_CHAIN (t))
6290 TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args,
6291 complain, TREE_CHAIN (t));
6293 break;
6295 case FIELD_DECL:
6297 r = copy_decl (t);
6298 TREE_TYPE (r) = type;
6299 c_apply_type_quals_to_decl (cp_type_quals (type), r);
6301 /* We don't have to set DECL_CONTEXT here; it is set by
6302 finish_member_declaration. */
6303 DECL_INITIAL (r) = tsubst_expr (DECL_INITIAL (t), args,
6304 complain, in_decl);
6305 TREE_CHAIN (r) = NULL_TREE;
6306 if (VOID_TYPE_P (type))
6307 cp_error_at ("instantiation of `%D' as type `%T'", r, type);
6309 break;
6311 case USING_DECL:
6313 r = copy_node (t);
6314 /* It is not a dependent using decl any more. */
6315 TREE_TYPE (r) = void_type_node;
6316 DECL_INITIAL (r)
6317 = tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
6318 DECL_NAME (r)
6319 = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
6320 TREE_CHAIN (r) = NULL_TREE;
6322 break;
6324 case TYPE_DECL:
6325 if (TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM
6326 || t == TYPE_MAIN_DECL (TREE_TYPE (t)))
6328 /* If this is the canonical decl, we don't have to mess with
6329 instantiations, and often we can't (for typename, template
6330 type parms and such). Note that TYPE_NAME is not correct for
6331 the above test if we've copied the type for a typedef. */
6332 r = TYPE_NAME (type);
6333 break;
6336 /* Fall through. */
6338 case VAR_DECL:
6340 tree argvec = NULL_TREE;
6341 tree gen_tmpl = NULL_TREE;
6342 tree spec;
6343 tree tmpl = NULL_TREE;
6344 tree ctx;
6345 int local_p;
6347 /* Assume this is a non-local variable. */
6348 local_p = 0;
6350 if (TYPE_P (CP_DECL_CONTEXT (t)))
6351 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
6352 complain,
6353 in_decl, /*entering_scope=*/1);
6354 else if (DECL_NAMESPACE_SCOPE_P (t))
6355 ctx = DECL_CONTEXT (t);
6356 else
6358 /* Subsequent calls to pushdecl will fill this in. */
6359 ctx = NULL_TREE;
6360 local_p = 1;
6363 /* Check to see if we already have this specialization. */
6364 if (!local_p)
6366 tmpl = DECL_TI_TEMPLATE (t);
6367 gen_tmpl = most_general_template (tmpl);
6368 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
6369 spec = retrieve_specialization (gen_tmpl, argvec);
6371 else
6372 spec = retrieve_local_specialization (t);
6374 if (spec)
6376 r = spec;
6377 break;
6380 r = copy_decl (t);
6381 if (TREE_CODE (r) == VAR_DECL)
6383 type = complete_type (type);
6384 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
6385 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (t);
6387 else if (DECL_SELF_REFERENCE_P (t))
6388 SET_DECL_SELF_REFERENCE_P (r);
6389 TREE_TYPE (r) = type;
6390 c_apply_type_quals_to_decl (cp_type_quals (type), r);
6391 DECL_CONTEXT (r) = ctx;
6392 /* Clear out the mangled name and RTL for the instantiation. */
6393 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
6394 SET_DECL_RTL (r, NULL_RTX);
6396 /* Don't try to expand the initializer until someone tries to use
6397 this variable; otherwise we run into circular dependencies. */
6398 DECL_INITIAL (r) = NULL_TREE;
6399 SET_DECL_RTL (r, NULL_RTX);
6400 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
6402 /* Even if the original location is out of scope, the newly
6403 substituted one is not. */
6404 if (TREE_CODE (r) == VAR_DECL)
6406 DECL_DEAD_FOR_LOCAL (r) = 0;
6407 DECL_INITIALIZED_P (r) = 0;
6410 if (!local_p)
6412 /* A static data member declaration is always marked
6413 external when it is declared in-class, even if an
6414 initializer is present. We mimic the non-template
6415 processing here. */
6416 DECL_EXTERNAL (r) = 1;
6418 register_specialization (r, gen_tmpl, argvec);
6419 DECL_TEMPLATE_INFO (r) = tree_cons (tmpl, argvec, NULL_TREE);
6420 SET_DECL_IMPLICIT_INSTANTIATION (r);
6422 else
6423 register_local_specialization (r, t);
6425 TREE_CHAIN (r) = NULL_TREE;
6426 if (TREE_CODE (r) == VAR_DECL && VOID_TYPE_P (type))
6427 cp_error_at ("instantiation of `%D' as type `%T'", r, type);
6428 /* Compute the size, alignment, etc. of R. */
6429 layout_decl (r, 0);
6431 break;
6433 default:
6434 abort ();
6437 /* Restore the file and line information. */
6438 input_location = saved_loc;
6440 return r;
6443 /* Substitute into the ARG_TYPES of a function type. */
6445 static tree
6446 tsubst_arg_types (tree arg_types,
6447 tree args,
6448 tsubst_flags_t complain,
6449 tree in_decl)
6451 tree remaining_arg_types;
6452 tree type;
6454 if (!arg_types || arg_types == void_list_node)
6455 return arg_types;
6457 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
6458 args, complain, in_decl);
6459 if (remaining_arg_types == error_mark_node)
6460 return error_mark_node;
6462 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
6463 if (type == error_mark_node)
6464 return error_mark_node;
6465 if (VOID_TYPE_P (type))
6467 if (complain & tf_error)
6469 error ("invalid parameter type `%T'", type);
6470 if (in_decl)
6471 cp_error_at ("in declaration `%D'", in_decl);
6473 return error_mark_node;
6476 /* Do array-to-pointer, function-to-pointer conversion, and ignore
6477 top-level qualifiers as required. */
6478 type = TYPE_MAIN_VARIANT (type_decays_to (type));
6480 /* Note that we do not substitute into default arguments here. The
6481 standard mandates that they be instantiated only when needed,
6482 which is done in build_over_call. */
6483 return hash_tree_cons (TREE_PURPOSE (arg_types), type,
6484 remaining_arg_types);
6488 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
6489 *not* handle the exception-specification for FNTYPE, because the
6490 initial substitution of explicitly provided template parameters
6491 during argument deduction forbids substitution into the
6492 exception-specification:
6494 [temp.deduct]
6496 All references in the function type of the function template to the
6497 corresponding template parameters are replaced by the specified tem-
6498 plate argument values. If a substitution in a template parameter or
6499 in the function type of the function template results in an invalid
6500 type, type deduction fails. [Note: The equivalent substitution in
6501 exception specifications is done only when the function is instanti-
6502 ated, at which point a program is ill-formed if the substitution
6503 results in an invalid type.] */
6505 static tree
6506 tsubst_function_type (tree t,
6507 tree args,
6508 tsubst_flags_t complain,
6509 tree in_decl)
6511 tree return_type;
6512 tree arg_types;
6513 tree fntype;
6515 /* The TYPE_CONTEXT is not used for function/method types. */
6516 my_friendly_assert (TYPE_CONTEXT (t) == NULL_TREE, 0);
6518 /* Substitute the return type. */
6519 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6520 if (return_type == error_mark_node)
6521 return error_mark_node;
6523 /* Substitute the argument types. */
6524 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
6525 complain, in_decl);
6526 if (arg_types == error_mark_node)
6527 return error_mark_node;
6529 /* Construct a new type node and return it. */
6530 if (TREE_CODE (t) == FUNCTION_TYPE)
6531 fntype = build_function_type (return_type, arg_types);
6532 else
6534 tree r = TREE_TYPE (TREE_VALUE (arg_types));
6535 if (! IS_AGGR_TYPE (r))
6537 /* [temp.deduct]
6539 Type deduction may fail for any of the following
6540 reasons:
6542 -- Attempting to create "pointer to member of T" when T
6543 is not a class type. */
6544 if (complain & tf_error)
6545 error ("creating pointer to member function of non-class type `%T'",
6547 return error_mark_node;
6550 fntype = build_method_type_directly (r, return_type,
6551 TREE_CHAIN (arg_types));
6553 fntype = cp_build_qualified_type_real (fntype, TYPE_QUALS (t), complain);
6554 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
6556 return fntype;
6559 /* Substitute into the PARMS of a call-declarator. */
6561 static tree
6562 tsubst_call_declarator_parms (tree parms,
6563 tree args,
6564 tsubst_flags_t complain,
6565 tree in_decl)
6567 tree new_parms;
6568 tree type;
6569 tree defarg;
6571 if (!parms || parms == void_list_node)
6572 return parms;
6574 new_parms = tsubst_call_declarator_parms (TREE_CHAIN (parms),
6575 args, complain, in_decl);
6577 /* Figure out the type of this parameter. */
6578 type = tsubst (TREE_VALUE (parms), args, complain, in_decl);
6580 /* Figure out the default argument as well. Note that we use
6581 tsubst_expr since the default argument is really an expression. */
6582 defarg = tsubst_expr (TREE_PURPOSE (parms), args, complain, in_decl);
6584 /* Chain this parameter on to the front of those we have already
6585 processed. We don't use hash_tree_cons because that function
6586 doesn't check TREE_PARMLIST. */
6587 new_parms = tree_cons (defarg, type, new_parms);
6589 /* And note that these are parameters. */
6590 TREE_PARMLIST (new_parms) = 1;
6592 return new_parms;
6595 /* Take the tree structure T and replace template parameters used
6596 therein with the argument vector ARGS. IN_DECL is an associated
6597 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
6598 Issue error and warning messages under control of COMPLAIN. Note
6599 that we must be relatively non-tolerant of extensions here, in
6600 order to preserve conformance; if we allow substitutions that
6601 should not be allowed, we may allow argument deductions that should
6602 not succeed, and therefore report ambiguous overload situations
6603 where there are none. In theory, we could allow the substitution,
6604 but indicate that it should have failed, and allow our caller to
6605 make sure that the right thing happens, but we don't try to do this
6606 yet.
6608 This function is used for dealing with types, decls and the like;
6609 for expressions, use tsubst_expr or tsubst_copy. */
6611 static tree
6612 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
6614 tree type, r;
6616 if (t == NULL_TREE || t == error_mark_node
6617 || t == integer_type_node
6618 || t == void_type_node
6619 || t == char_type_node
6620 || TREE_CODE (t) == NAMESPACE_DECL)
6621 return t;
6623 if (TREE_CODE (t) == IDENTIFIER_NODE)
6624 type = IDENTIFIER_TYPE_VALUE (t);
6625 else
6626 type = TREE_TYPE (t);
6628 my_friendly_assert (type != unknown_type_node, 20030716);
6630 if (type && TREE_CODE (t) != FUNCTION_DECL
6631 && TREE_CODE (t) != TYPENAME_TYPE
6632 && TREE_CODE (t) != TEMPLATE_DECL
6633 && TREE_CODE (t) != IDENTIFIER_NODE
6634 && TREE_CODE (t) != FUNCTION_TYPE
6635 && TREE_CODE (t) != METHOD_TYPE)
6636 type = tsubst (type, args, complain, in_decl);
6637 if (type == error_mark_node)
6638 return error_mark_node;
6640 if (DECL_P (t))
6641 return tsubst_decl (t, args, type, complain);
6643 switch (TREE_CODE (t))
6645 case RECORD_TYPE:
6646 case UNION_TYPE:
6647 case ENUMERAL_TYPE:
6648 return tsubst_aggr_type (t, args, complain, in_decl,
6649 /*entering_scope=*/0);
6651 case ERROR_MARK:
6652 case IDENTIFIER_NODE:
6653 case VOID_TYPE:
6654 case REAL_TYPE:
6655 case COMPLEX_TYPE:
6656 case VECTOR_TYPE:
6657 case BOOLEAN_TYPE:
6658 case INTEGER_CST:
6659 case REAL_CST:
6660 case STRING_CST:
6661 return t;
6663 case INTEGER_TYPE:
6664 if (t == integer_type_node)
6665 return t;
6667 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
6668 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
6669 return t;
6672 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
6674 /* The array dimension behaves like a non-type template arg,
6675 in that we want to fold it as much as possible. */
6676 max = tsubst_template_arg (omax, args, complain, in_decl);
6677 if (!processing_template_decl)
6678 max = decl_constant_value (max);
6680 if (integer_zerop (omax))
6682 /* Still allow an explicit array of size zero. */
6683 if (pedantic)
6684 pedwarn ("creating array with size zero");
6686 else if (integer_zerop (max)
6687 || (TREE_CODE (max) == INTEGER_CST
6688 && INT_CST_LT (max, integer_zero_node)))
6690 /* [temp.deduct]
6692 Type deduction may fail for any of the following
6693 reasons:
6695 Attempting to create an array with a size that is
6696 zero or negative. */
6697 if (complain & tf_error)
6698 error ("creating array with size zero (`%E')", max);
6700 return error_mark_node;
6703 return compute_array_index_type (NULL_TREE, max);
6706 case TEMPLATE_TYPE_PARM:
6707 case TEMPLATE_TEMPLATE_PARM:
6708 case BOUND_TEMPLATE_TEMPLATE_PARM:
6709 case TEMPLATE_PARM_INDEX:
6711 int idx;
6712 int level;
6713 int levels;
6715 r = NULL_TREE;
6717 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
6718 || TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
6719 || TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6721 idx = TEMPLATE_TYPE_IDX (t);
6722 level = TEMPLATE_TYPE_LEVEL (t);
6724 else
6726 idx = TEMPLATE_PARM_IDX (t);
6727 level = TEMPLATE_PARM_LEVEL (t);
6730 if (TREE_VEC_LENGTH (args) > 0)
6732 tree arg = NULL_TREE;
6734 levels = TMPL_ARGS_DEPTH (args);
6735 if (level <= levels)
6736 arg = TMPL_ARG (args, level, idx);
6738 if (arg == error_mark_node)
6739 return error_mark_node;
6740 else if (arg != NULL_TREE)
6742 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
6744 my_friendly_assert (TYPE_P (arg), 0);
6745 return cp_build_qualified_type_real
6746 (arg, cp_type_quals (arg) | cp_type_quals (t),
6747 complain | tf_ignore_bad_quals);
6749 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6751 /* We are processing a type constructed from
6752 a template template parameter. */
6753 tree argvec = tsubst (TYPE_TI_ARGS (t),
6754 args, complain, in_decl);
6755 if (argvec == error_mark_node)
6756 return error_mark_node;
6758 /* We can get a TEMPLATE_TEMPLATE_PARM here when
6759 we are resolving nested-types in the signature of
6760 a member function templates.
6761 Otherwise ARG is a TEMPLATE_DECL and is the real
6762 template to be instantiated. */
6763 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
6764 arg = TYPE_NAME (arg);
6766 r = lookup_template_class (arg,
6767 argvec, in_decl,
6768 DECL_CONTEXT (arg),
6769 /*entering_scope=*/0,
6770 complain);
6771 return cp_build_qualified_type_real
6772 (r, TYPE_QUALS (t), complain);
6774 else
6775 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
6776 return arg;
6779 else
6780 abort ();
6782 if (level == 1)
6783 /* This can happen during the attempted tsubst'ing in
6784 unify. This means that we don't yet have any information
6785 about the template parameter in question. */
6786 return t;
6788 /* If we get here, we must have been looking at a parm for a
6789 more deeply nested template. Make a new version of this
6790 template parameter, but with a lower level. */
6791 switch (TREE_CODE (t))
6793 case TEMPLATE_TYPE_PARM:
6794 case TEMPLATE_TEMPLATE_PARM:
6795 case BOUND_TEMPLATE_TEMPLATE_PARM:
6796 if (cp_type_quals (t))
6798 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
6799 r = cp_build_qualified_type_real
6800 (r, cp_type_quals (t),
6801 complain | (TREE_CODE (t) == TEMPLATE_TYPE_PARM
6802 ? tf_ignore_bad_quals : 0));
6804 else
6806 r = copy_type (t);
6807 TEMPLATE_TYPE_PARM_INDEX (r)
6808 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
6809 r, levels);
6810 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
6811 TYPE_MAIN_VARIANT (r) = r;
6812 TYPE_POINTER_TO (r) = NULL_TREE;
6813 TYPE_REFERENCE_TO (r) = NULL_TREE;
6815 if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6817 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
6818 complain, in_decl);
6819 if (argvec == error_mark_node)
6820 return error_mark_node;
6822 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
6823 = tree_cons (TYPE_TI_TEMPLATE (t), argvec, NULL_TREE);
6826 break;
6828 case TEMPLATE_PARM_INDEX:
6829 r = reduce_template_parm_level (t, type, levels);
6830 break;
6832 default:
6833 abort ();
6836 return r;
6839 case TREE_LIST:
6841 tree purpose, value, chain, result;
6843 if (t == void_list_node)
6844 return t;
6846 purpose = TREE_PURPOSE (t);
6847 if (purpose)
6849 purpose = tsubst (purpose, args, complain, in_decl);
6850 if (purpose == error_mark_node)
6851 return error_mark_node;
6853 value = TREE_VALUE (t);
6854 if (value)
6856 value = tsubst (value, args, complain, in_decl);
6857 if (value == error_mark_node)
6858 return error_mark_node;
6860 chain = TREE_CHAIN (t);
6861 if (chain && chain != void_type_node)
6863 chain = tsubst (chain, args, complain, in_decl);
6864 if (chain == error_mark_node)
6865 return error_mark_node;
6867 if (purpose == TREE_PURPOSE (t)
6868 && value == TREE_VALUE (t)
6869 && chain == TREE_CHAIN (t))
6870 return t;
6871 if (TREE_PARMLIST (t))
6873 result = tree_cons (purpose, value, chain);
6874 TREE_PARMLIST (result) = 1;
6876 else
6877 result = hash_tree_cons (purpose, value, chain);
6878 return result;
6880 case TREE_VEC:
6881 if (type != NULL_TREE)
6883 /* A binfo node. We always need to make a copy, of the node
6884 itself and of its BINFO_BASETYPES. */
6886 t = copy_node (t);
6888 /* Make sure type isn't a typedef copy. */
6889 type = BINFO_TYPE (TYPE_BINFO (type));
6891 TREE_TYPE (t) = complete_type (type);
6892 if (IS_AGGR_TYPE (type))
6894 BINFO_VTABLE (t) = TYPE_BINFO_VTABLE (type);
6895 BINFO_VIRTUALS (t) = TYPE_BINFO_VIRTUALS (type);
6896 if (TYPE_BINFO_BASETYPES (type) != NULL_TREE)
6897 BINFO_BASETYPES (t) = copy_node (TYPE_BINFO_BASETYPES (type));
6899 return t;
6902 /* Otherwise, a vector of template arguments. */
6903 return tsubst_template_args (t, args, complain, in_decl);
6905 case POINTER_TYPE:
6906 case REFERENCE_TYPE:
6908 enum tree_code code;
6910 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
6911 return t;
6913 code = TREE_CODE (t);
6916 /* [temp.deduct]
6918 Type deduction may fail for any of the following
6919 reasons:
6921 -- Attempting to create a pointer to reference type.
6922 -- Attempting to create a reference to a reference type or
6923 a reference to void. */
6924 if (TREE_CODE (type) == REFERENCE_TYPE
6925 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
6927 static location_t last_loc;
6929 /* We keep track of the last time we issued this error
6930 message to avoid spewing a ton of messages during a
6931 single bad template instantiation. */
6932 if (complain & tf_error
6933 && (last_loc.line != input_line
6934 || last_loc.file != input_filename))
6936 if (TREE_CODE (type) == VOID_TYPE)
6937 error ("forming reference to void");
6938 else
6939 error ("forming %s to reference type `%T'",
6940 (code == POINTER_TYPE) ? "pointer" : "reference",
6941 type);
6942 last_loc = input_location;
6945 return error_mark_node;
6947 else if (code == POINTER_TYPE)
6949 r = build_pointer_type (type);
6950 if (TREE_CODE (type) == METHOD_TYPE)
6951 r = build_ptrmemfunc_type (r);
6953 else
6954 r = build_reference_type (type);
6955 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
6957 if (r != error_mark_node)
6958 /* Will this ever be needed for TYPE_..._TO values? */
6959 layout_type (r);
6961 return r;
6963 case OFFSET_TYPE:
6965 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
6966 if (r == error_mark_node || !IS_AGGR_TYPE (r))
6968 /* [temp.deduct]
6970 Type deduction may fail for any of the following
6971 reasons:
6973 -- Attempting to create "pointer to member of T" when T
6974 is not a class type. */
6975 if (complain & tf_error)
6976 error ("creating pointer to member of non-class type `%T'", r);
6977 return error_mark_node;
6979 if (TREE_CODE (type) == REFERENCE_TYPE)
6981 if (complain & tf_error)
6982 error ("creating pointer to member reference type `%T'", type);
6984 return error_mark_node;
6986 my_friendly_assert (TREE_CODE (type) != METHOD_TYPE, 20011231);
6987 if (TREE_CODE (type) == FUNCTION_TYPE)
6989 /* This is really a method type. The cv qualifiers of the
6990 this pointer should _not_ be determined by the cv
6991 qualifiers of the class type. They should be held
6992 somewhere in the FUNCTION_TYPE, but we don't do that at
6993 the moment. Consider
6994 typedef void (Func) () const;
6996 template <typename T1> void Foo (Func T1::*);
6999 tree method_type;
7001 method_type = build_method_type_directly (TYPE_MAIN_VARIANT (r),
7002 TREE_TYPE (type),
7003 TYPE_ARG_TYPES (type));
7004 return build_ptrmemfunc_type (build_pointer_type (method_type));
7006 else
7007 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
7008 TYPE_QUALS (t),
7009 complain);
7011 case FUNCTION_TYPE:
7012 case METHOD_TYPE:
7014 tree fntype;
7015 tree raises;
7017 fntype = tsubst_function_type (t, args, complain, in_decl);
7018 if (fntype == error_mark_node)
7019 return error_mark_node;
7021 /* Substitute the exception specification. */
7022 raises = TYPE_RAISES_EXCEPTIONS (t);
7023 if (raises)
7025 tree list = NULL_TREE;
7027 if (! TREE_VALUE (raises))
7028 list = raises;
7029 else
7030 for (; raises != NULL_TREE; raises = TREE_CHAIN (raises))
7032 tree spec = TREE_VALUE (raises);
7034 spec = tsubst (spec, args, complain, in_decl);
7035 if (spec == error_mark_node)
7036 return spec;
7037 list = add_exception_specifier (list, spec, complain);
7039 fntype = build_exception_variant (fntype, list);
7041 return fntype;
7043 case ARRAY_TYPE:
7045 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
7046 if (domain == error_mark_node)
7047 return error_mark_node;
7049 /* As an optimization, we avoid regenerating the array type if
7050 it will obviously be the same as T. */
7051 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
7052 return t;
7054 /* These checks should match the ones in grokdeclarator.
7056 [temp.deduct]
7058 The deduction may fail for any of the following reasons:
7060 -- Attempting to create an array with an element type that
7061 is void, a function type, or a reference type, or [DR337]
7062 an abstract class type. */
7063 if (TREE_CODE (type) == VOID_TYPE
7064 || TREE_CODE (type) == FUNCTION_TYPE
7065 || TREE_CODE (type) == REFERENCE_TYPE)
7067 if (complain & tf_error)
7068 error ("creating array of `%T'", type);
7069 return error_mark_node;
7071 if (CLASS_TYPE_P (type) && CLASSTYPE_PURE_VIRTUALS (type))
7073 if (complain & tf_error)
7074 error ("creating array of `%T', which is an abstract class type",
7075 type);
7076 return error_mark_node;
7079 r = build_cplus_array_type (type, domain);
7080 return r;
7083 case PLUS_EXPR:
7084 case MINUS_EXPR:
7086 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7087 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
7089 if (e1 == error_mark_node || e2 == error_mark_node)
7090 return error_mark_node;
7092 return fold (build (TREE_CODE (t), TREE_TYPE (t), e1, e2));
7095 case NEGATE_EXPR:
7096 case NOP_EXPR:
7098 tree e = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7099 if (e == error_mark_node)
7100 return error_mark_node;
7102 return fold (build (TREE_CODE (t), TREE_TYPE (t), e));
7105 case TYPENAME_TYPE:
7107 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
7108 in_decl, /*entering_scope=*/1);
7109 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
7110 complain, in_decl);
7112 if (ctx == error_mark_node || f == error_mark_node)
7113 return error_mark_node;
7115 if (!IS_AGGR_TYPE (ctx))
7117 if (complain & tf_error)
7118 error ("`%T' is not a class, struct, or union type",
7119 ctx);
7120 return error_mark_node;
7122 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
7124 /* Normally, make_typename_type does not require that the CTX
7125 have complete type in order to allow things like:
7127 template <class T> struct S { typename S<T>::X Y; };
7129 But, such constructs have already been resolved by this
7130 point, so here CTX really should have complete type, unless
7131 it's a partial instantiation. */
7132 ctx = complete_type (ctx);
7133 if (!COMPLETE_TYPE_P (ctx))
7135 if (complain & tf_error)
7136 cxx_incomplete_type_error (NULL_TREE, ctx);
7137 return error_mark_node;
7141 f = make_typename_type (ctx, f,
7142 (complain & tf_error) | tf_keep_type_decl);
7143 if (f == error_mark_node)
7144 return f;
7145 if (TREE_CODE (f) == TYPE_DECL)
7147 complain |= tf_ignore_bad_quals;
7148 f = TREE_TYPE (f);
7151 return cp_build_qualified_type_real
7152 (f, cp_type_quals (f) | cp_type_quals (t), complain);
7155 case UNBOUND_CLASS_TEMPLATE:
7157 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
7158 in_decl, /*entering_scope=*/1);
7159 tree name = TYPE_IDENTIFIER (t);
7161 if (ctx == error_mark_node || name == error_mark_node)
7162 return error_mark_node;
7164 return make_unbound_class_template (ctx, name, complain);
7167 case INDIRECT_REF:
7169 tree e = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7170 if (e == error_mark_node)
7171 return error_mark_node;
7172 return make_pointer_declarator (type, e);
7175 case ADDR_EXPR:
7177 tree e = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7178 if (e == error_mark_node)
7179 return error_mark_node;
7180 return make_reference_declarator (type, e);
7183 case ARRAY_REF:
7185 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7186 tree e2 = tsubst_expr (TREE_OPERAND (t, 1), args, complain, in_decl);
7187 if (e1 == error_mark_node || e2 == error_mark_node)
7188 return error_mark_node;
7190 return build_nt (ARRAY_REF, e1, e2);
7193 case CALL_EXPR:
7195 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7196 tree e2 = (tsubst_call_declarator_parms
7197 (CALL_DECLARATOR_PARMS (t), args, complain, in_decl));
7198 tree e3 = tsubst (CALL_DECLARATOR_EXCEPTION_SPEC (t), args,
7199 complain, in_decl);
7201 if (e1 == error_mark_node || e2 == error_mark_node
7202 || e3 == error_mark_node)
7203 return error_mark_node;
7205 return make_call_declarator (e1, e2, CALL_DECLARATOR_QUALS (t), e3);
7208 case SCOPE_REF:
7210 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
7211 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
7212 if (e1 == error_mark_node || e2 == error_mark_node)
7213 return error_mark_node;
7215 return build_nt (TREE_CODE (t), e1, e2);
7218 case TYPEOF_TYPE:
7220 tree type;
7222 type = finish_typeof (tsubst_expr (TYPE_FIELDS (t), args, complain,
7223 in_decl));
7224 return cp_build_qualified_type_real (type,
7225 cp_type_quals (t)
7226 | cp_type_quals (type),
7227 complain);
7230 default:
7231 sorry ("use of `%s' in template",
7232 tree_code_name [(int) TREE_CODE (t)]);
7233 return error_mark_node;
7237 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
7238 type of the expression on the left-hand side of the "." or "->"
7239 operator. */
7241 static tree
7242 tsubst_baselink (tree baselink, tree object_type,
7243 tree args, tsubst_flags_t complain, tree in_decl)
7245 tree name;
7246 tree qualifying_scope;
7247 tree fns;
7248 tree template_args = 0;
7249 bool template_id_p = false;
7251 /* A baselink indicates a function from a base class. The
7252 BASELINK_ACCESS_BINFO and BASELINK_BINFO are going to have
7253 non-dependent types; otherwise, the lookup could not have
7254 succeeded. However, they may indicate bases of the template
7255 class, rather than the instantiated class.
7257 In addition, lookups that were not ambiguous before may be
7258 ambiguous now. Therefore, we perform the lookup again. */
7259 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
7260 fns = BASELINK_FUNCTIONS (baselink);
7261 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
7263 template_id_p = true;
7264 template_args = TREE_OPERAND (fns, 1);
7265 fns = TREE_OPERAND (fns, 0);
7266 if (template_args)
7267 template_args = tsubst_template_args (template_args, args,
7268 complain, in_decl);
7270 name = DECL_NAME (get_first_fn (fns));
7271 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
7272 if (BASELINK_P (baselink) && template_id_p)
7273 BASELINK_FUNCTIONS (baselink)
7274 = build_nt (TEMPLATE_ID_EXPR,
7275 BASELINK_FUNCTIONS (baselink),
7276 template_args);
7277 if (!object_type)
7278 object_type = current_class_type;
7279 return adjust_result_of_qualified_name_lookup (baselink,
7280 qualifying_scope,
7281 object_type);
7284 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
7285 true if the qualified-id will be a postfix-expression in-and-of
7286 itself; false if more of the postfix-expression follows the
7287 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
7288 of "&". */
7290 static tree
7291 tsubst_qualified_id (tree qualified_id, tree args,
7292 tsubst_flags_t complain, tree in_decl,
7293 bool done, bool address_p)
7295 tree expr;
7296 tree scope;
7297 tree name;
7298 bool is_template;
7299 tree template_args;
7301 my_friendly_assert (TREE_CODE (qualified_id) == SCOPE_REF, 20030706);
7303 /* Figure out what name to look up. */
7304 name = TREE_OPERAND (qualified_id, 1);
7305 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
7307 is_template = true;
7308 template_args = TREE_OPERAND (name, 1);
7309 if (template_args)
7310 template_args = tsubst_template_args (template_args, args,
7311 complain, in_decl);
7312 name = TREE_OPERAND (name, 0);
7314 else
7316 is_template = false;
7317 template_args = NULL_TREE;
7320 /* Substitute into the qualifying scope. When there are no ARGS, we
7321 are just trying to simplify a non-dependent expression. In that
7322 case the qualifying scope may be dependent, and, in any case,
7323 substituting will not help. */
7324 scope = TREE_OPERAND (qualified_id, 0);
7325 if (args)
7327 scope = tsubst (scope, args, complain, in_decl);
7328 expr = tsubst_copy (name, args, complain, in_decl);
7330 else
7331 expr = name;
7333 if (dependent_type_p (scope))
7334 return build_nt (SCOPE_REF, scope, expr);
7336 if (!BASELINK_P (name) && !DECL_P (expr))
7338 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
7339 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
7340 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
7342 if (complain & tf_error)
7344 error ("dependent-name `%E' is parsed as a non-type, but "
7345 "instantiation yields a type", qualified_id);
7346 inform ("say `typename %E' if a type is meant", qualified_id);
7348 return error_mark_node;
7352 if (DECL_P (expr))
7353 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
7354 scope);
7356 /* Remember that there was a reference to this entity. */
7357 if (DECL_P (expr))
7358 mark_used (expr);
7360 if (is_template)
7361 expr = lookup_template_function (expr, template_args);
7363 if (expr == error_mark_node && complain & tf_error)
7364 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1));
7365 else if (TYPE_P (scope))
7367 expr = (adjust_result_of_qualified_name_lookup
7368 (expr, scope, current_class_type));
7369 expr = finish_qualified_id_expr (scope, expr, done, address_p);
7372 return expr;
7375 /* Like tsubst, but deals with expressions. This function just replaces
7376 template parms; to finish processing the resultant expression, use
7377 tsubst_expr. */
7379 static tree
7380 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
7382 enum tree_code code;
7383 tree r;
7385 if (t == NULL_TREE || t == error_mark_node)
7386 return t;
7388 code = TREE_CODE (t);
7390 switch (code)
7392 case PARM_DECL:
7393 r = retrieve_local_specialization (t);
7394 my_friendly_assert (r != NULL, 20020903);
7395 mark_used (r);
7396 return r;
7398 case CONST_DECL:
7400 tree enum_type;
7401 tree v;
7403 if (DECL_TEMPLATE_PARM_P (t))
7404 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
7405 /* There is no need to substitute into namespace-scope
7406 enumerators. */
7407 if (DECL_NAMESPACE_SCOPE_P (t))
7408 return t;
7410 /* Unfortunately, we cannot just call lookup_name here.
7411 Consider:
7413 template <int I> int f() {
7414 enum E { a = I };
7415 struct S { void g() { E e = a; } };
7418 When we instantiate f<7>::S::g(), say, lookup_name is not
7419 clever enough to find f<7>::a. */
7420 enum_type
7421 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
7422 /*entering_scope=*/0);
7424 for (v = TYPE_VALUES (enum_type);
7425 v != NULL_TREE;
7426 v = TREE_CHAIN (v))
7427 if (TREE_PURPOSE (v) == DECL_NAME (t))
7428 return TREE_VALUE (v);
7430 /* We didn't find the name. That should never happen; if
7431 name-lookup found it during preliminary parsing, we
7432 should find it again here during instantiation. */
7433 abort ();
7435 return t;
7437 case FIELD_DECL:
7438 if (DECL_CONTEXT (t))
7440 tree ctx;
7442 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
7443 /*entering_scope=*/1);
7444 if (ctx != DECL_CONTEXT (t))
7445 return lookup_field (ctx, DECL_NAME (t), 0, false);
7447 return t;
7449 case VAR_DECL:
7450 case FUNCTION_DECL:
7451 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
7452 || local_variable_p (t))
7453 t = tsubst (t, args, complain, in_decl);
7454 mark_used (t);
7455 return t;
7457 case BASELINK:
7458 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
7460 case TEMPLATE_DECL:
7461 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
7462 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
7463 args, complain, in_decl);
7464 else if (is_member_template (t))
7465 return tsubst (t, args, complain, in_decl);
7466 else if (DECL_CLASS_SCOPE_P (t)
7467 && uses_template_parms (DECL_CONTEXT (t)))
7469 /* Template template argument like the following example need
7470 special treatment:
7472 template <template <class> class TT> struct C {};
7473 template <class T> struct D {
7474 template <class U> struct E {};
7475 C<E> c; // #1
7477 D<int> d; // #2
7479 We are processing the template argument `E' in #1 for
7480 the template instantiation #2. Originally, `E' is a
7481 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
7482 have to substitute this with one having context `D<int>'. */
7484 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
7485 return lookup_field (context, DECL_NAME(t), 0, false);
7487 else
7488 /* Ordinary template template argument. */
7489 return t;
7491 case CAST_EXPR:
7492 case REINTERPRET_CAST_EXPR:
7493 case CONST_CAST_EXPR:
7494 case STATIC_CAST_EXPR:
7495 case DYNAMIC_CAST_EXPR:
7496 case NOP_EXPR:
7497 return build1
7498 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
7499 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
7501 case INDIRECT_REF:
7502 case NEGATE_EXPR:
7503 case TRUTH_NOT_EXPR:
7504 case BIT_NOT_EXPR:
7505 case ADDR_EXPR:
7506 case CONVERT_EXPR: /* Unary + */
7507 case SIZEOF_EXPR:
7508 case ALIGNOF_EXPR:
7509 case ARROW_EXPR:
7510 case THROW_EXPR:
7511 case TYPEID_EXPR:
7512 case REALPART_EXPR:
7513 case IMAGPART_EXPR:
7514 return build1
7515 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
7516 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
7518 case COMPONENT_REF:
7520 tree object;
7521 tree name;
7523 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
7524 name = TREE_OPERAND (t, 1);
7525 if (TREE_CODE (name) == BIT_NOT_EXPR)
7527 name = tsubst_copy (TREE_OPERAND (name, 0), args,
7528 complain, in_decl);
7529 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
7531 else if (TREE_CODE (name) == SCOPE_REF
7532 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
7534 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
7535 complain, in_decl);
7536 name = TREE_OPERAND (name, 1);
7537 name = tsubst_copy (TREE_OPERAND (name, 0), args,
7538 complain, in_decl);
7539 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
7540 name = build_nt (SCOPE_REF, base, name);
7542 else if (TREE_CODE (name) == BASELINK)
7543 name = tsubst_baselink (name,
7544 non_reference (TREE_TYPE (object)),
7545 args, complain,
7546 in_decl);
7547 else
7548 name = tsubst_copy (name, args, complain, in_decl);
7549 return build_nt (COMPONENT_REF, object, name);
7552 case PLUS_EXPR:
7553 case MINUS_EXPR:
7554 case MULT_EXPR:
7555 case TRUNC_DIV_EXPR:
7556 case CEIL_DIV_EXPR:
7557 case FLOOR_DIV_EXPR:
7558 case ROUND_DIV_EXPR:
7559 case EXACT_DIV_EXPR:
7560 case BIT_AND_EXPR:
7561 case BIT_IOR_EXPR:
7562 case BIT_XOR_EXPR:
7563 case TRUNC_MOD_EXPR:
7564 case FLOOR_MOD_EXPR:
7565 case TRUTH_ANDIF_EXPR:
7566 case TRUTH_ORIF_EXPR:
7567 case TRUTH_AND_EXPR:
7568 case TRUTH_OR_EXPR:
7569 case RSHIFT_EXPR:
7570 case LSHIFT_EXPR:
7571 case RROTATE_EXPR:
7572 case LROTATE_EXPR:
7573 case EQ_EXPR:
7574 case NE_EXPR:
7575 case MAX_EXPR:
7576 case MIN_EXPR:
7577 case LE_EXPR:
7578 case GE_EXPR:
7579 case LT_EXPR:
7580 case GT_EXPR:
7581 case ARRAY_REF:
7582 case COMPOUND_EXPR:
7583 case SCOPE_REF:
7584 case DOTSTAR_EXPR:
7585 case MEMBER_REF:
7586 case PREDECREMENT_EXPR:
7587 case PREINCREMENT_EXPR:
7588 case POSTDECREMENT_EXPR:
7589 case POSTINCREMENT_EXPR:
7590 return build_nt
7591 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7592 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
7594 case CALL_EXPR:
7595 return build_nt (code,
7596 tsubst_copy (TREE_OPERAND (t, 0), args,
7597 complain, in_decl),
7598 tsubst_copy (TREE_OPERAND (t, 1), args, complain,
7599 in_decl),
7600 NULL_TREE);
7602 case STMT_EXPR:
7603 /* This processing should really occur in tsubst_expr. However,
7604 tsubst_expr does not recurse into expressions, since it
7605 assumes that there aren't any statements inside them. So, we
7606 need to expand the STMT_EXPR here. */
7607 if (!processing_template_decl)
7609 tree stmt_expr = begin_stmt_expr ();
7611 tsubst_expr (STMT_EXPR_STMT (t), args,
7612 complain | tf_stmt_expr_cmpd, in_decl);
7613 return finish_stmt_expr (stmt_expr, false);
7616 return t;
7618 case COND_EXPR:
7619 case MODOP_EXPR:
7620 case PSEUDO_DTOR_EXPR:
7622 r = build_nt
7623 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7624 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7625 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
7626 return r;
7629 case NEW_EXPR:
7631 r = build_nt
7632 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7633 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7634 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
7635 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
7636 return r;
7639 case DELETE_EXPR:
7641 r = build_nt
7642 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7643 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
7644 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
7645 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
7646 return r;
7649 case TEMPLATE_ID_EXPR:
7651 /* Substituted template arguments */
7652 tree fn = TREE_OPERAND (t, 0);
7653 tree targs = TREE_OPERAND (t, 1);
7655 fn = tsubst_copy (fn, args, complain, in_decl);
7656 if (targs)
7657 targs = tsubst_template_args (targs, args, complain, in_decl);
7659 return lookup_template_function (fn, targs);
7662 case TREE_LIST:
7664 tree purpose, value, chain;
7666 if (t == void_list_node)
7667 return t;
7669 purpose = TREE_PURPOSE (t);
7670 if (purpose)
7671 purpose = tsubst_copy (purpose, args, complain, in_decl);
7672 value = TREE_VALUE (t);
7673 if (value)
7674 value = tsubst_copy (value, args, complain, in_decl);
7675 chain = TREE_CHAIN (t);
7676 if (chain && chain != void_type_node)
7677 chain = tsubst_copy (chain, args, complain, in_decl);
7678 if (purpose == TREE_PURPOSE (t)
7679 && value == TREE_VALUE (t)
7680 && chain == TREE_CHAIN (t))
7681 return t;
7682 return tree_cons (purpose, value, chain);
7685 case RECORD_TYPE:
7686 case UNION_TYPE:
7687 case ENUMERAL_TYPE:
7688 case INTEGER_TYPE:
7689 case TEMPLATE_TYPE_PARM:
7690 case TEMPLATE_TEMPLATE_PARM:
7691 case BOUND_TEMPLATE_TEMPLATE_PARM:
7692 case TEMPLATE_PARM_INDEX:
7693 case POINTER_TYPE:
7694 case REFERENCE_TYPE:
7695 case OFFSET_TYPE:
7696 case FUNCTION_TYPE:
7697 case METHOD_TYPE:
7698 case ARRAY_TYPE:
7699 case TYPENAME_TYPE:
7700 case UNBOUND_CLASS_TEMPLATE:
7701 case TYPEOF_TYPE:
7702 case TYPE_DECL:
7703 return tsubst (t, args, complain, in_decl);
7705 case IDENTIFIER_NODE:
7706 if (IDENTIFIER_TYPENAME_P (t))
7708 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
7709 return mangle_conv_op_name_for_type (new_type);
7711 else
7712 return t;
7714 case CONSTRUCTOR:
7716 r = build_constructor
7717 (tsubst (TREE_TYPE (t), args, complain, in_decl),
7718 tsubst_copy (CONSTRUCTOR_ELTS (t), args, complain, in_decl));
7719 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
7720 return r;
7723 case VA_ARG_EXPR:
7724 return build_x_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
7725 in_decl),
7726 tsubst (TREE_TYPE (t), args, complain, in_decl));
7728 default:
7729 return t;
7733 /* Like tsubst_copy for expressions, etc. but also does semantic
7734 processing. */
7736 static tree
7737 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
7739 tree stmt, tmp;
7740 tsubst_flags_t stmt_expr
7741 = complain & (tf_stmt_expr_cmpd | tf_stmt_expr_body);
7743 complain ^= stmt_expr;
7744 if (t == NULL_TREE || t == error_mark_node)
7745 return t;
7747 if (!STATEMENT_CODE_P (TREE_CODE (t)))
7748 return tsubst_copy_and_build (t, args, complain, in_decl,
7749 /*function_p=*/false);
7751 switch (TREE_CODE (t))
7753 case CTOR_INITIALIZER:
7754 prep_stmt (t);
7755 finish_mem_initializers (tsubst_initializer_list
7756 (TREE_OPERAND (t, 0), args));
7757 break;
7759 case RETURN_STMT:
7760 prep_stmt (t);
7761 finish_return_stmt (tsubst_expr (RETURN_STMT_EXPR (t),
7762 args, complain, in_decl));
7763 break;
7765 case EXPR_STMT:
7767 tree r;
7769 prep_stmt (t);
7771 r = tsubst_expr (EXPR_STMT_EXPR (t), args, complain, in_decl);
7772 if (stmt_expr & tf_stmt_expr_body && !TREE_CHAIN (t))
7773 finish_stmt_expr_expr (r);
7774 else
7775 finish_expr_stmt (r);
7776 break;
7779 case USING_STMT:
7780 prep_stmt (t);
7781 do_using_directive (tsubst_expr (USING_STMT_NAMESPACE (t),
7782 args, complain, in_decl));
7783 break;
7785 case DECL_STMT:
7787 tree decl;
7788 tree init;
7790 prep_stmt (t);
7791 decl = DECL_STMT_DECL (t);
7792 if (TREE_CODE (decl) == LABEL_DECL)
7793 finish_label_decl (DECL_NAME (decl));
7794 else if (TREE_CODE (decl) == USING_DECL)
7796 tree scope = DECL_INITIAL (decl);
7797 tree name = DECL_NAME (decl);
7798 tree decl;
7800 scope = tsubst_expr (scope, args, complain, in_decl);
7801 decl = lookup_qualified_name (scope, name,
7802 /*is_type_p=*/false,
7803 /*complain=*/false);
7804 if (decl == error_mark_node)
7805 qualified_name_lookup_error (scope, name);
7806 else
7807 do_local_using_decl (decl, scope, name);
7809 else
7811 init = DECL_INITIAL (decl);
7812 decl = tsubst (decl, args, complain, in_decl);
7813 if (decl != error_mark_node)
7815 if (init)
7816 DECL_INITIAL (decl) = error_mark_node;
7817 /* By marking the declaration as instantiated, we avoid
7818 trying to instantiate it. Since instantiate_decl can't
7819 handle local variables, and since we've already done
7820 all that needs to be done, that's the right thing to
7821 do. */
7822 if (TREE_CODE (decl) == VAR_DECL)
7823 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
7824 if (TREE_CODE (decl) == VAR_DECL
7825 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
7826 /* Anonymous aggregates are a special case. */
7827 finish_anon_union (decl);
7828 else
7830 maybe_push_decl (decl);
7831 if (TREE_CODE (decl) == VAR_DECL
7832 && DECL_PRETTY_FUNCTION_P (decl))
7834 /* For __PRETTY_FUNCTION__ we have to adjust the
7835 initializer. */
7836 const char *const name
7837 = cxx_printable_name (current_function_decl, 2);
7838 init = cp_fname_init (name, &TREE_TYPE (decl));
7840 else
7841 init = tsubst_expr (init, args, complain, in_decl);
7842 cp_finish_decl (decl, init, NULL_TREE, 0);
7847 /* A DECL_STMT can also be used as an expression, in the condition
7848 clause of an if/for/while construct. If we aren't followed by
7849 another statement, return our decl. */
7850 if (TREE_CHAIN (t) == NULL_TREE)
7851 return decl;
7853 break;
7855 case FOR_STMT:
7857 prep_stmt (t);
7859 stmt = begin_for_stmt ();
7860 tsubst_expr (FOR_INIT_STMT (t), args, complain, in_decl);
7861 finish_for_init_stmt (stmt);
7862 finish_for_cond (tsubst_expr (FOR_COND (t),
7863 args, complain, in_decl),
7864 stmt);
7865 tmp = tsubst_expr (FOR_EXPR (t), args, complain, in_decl);
7866 finish_for_expr (tmp, stmt);
7867 tsubst_expr (FOR_BODY (t), args, complain, in_decl);
7868 finish_for_stmt (stmt);
7870 break;
7872 case WHILE_STMT:
7874 prep_stmt (t);
7875 stmt = begin_while_stmt ();
7876 finish_while_stmt_cond (tsubst_expr (WHILE_COND (t),
7877 args, complain, in_decl),
7878 stmt);
7879 tsubst_expr (WHILE_BODY (t), args, complain, in_decl);
7880 finish_while_stmt (stmt);
7882 break;
7884 case DO_STMT:
7886 prep_stmt (t);
7887 stmt = begin_do_stmt ();
7888 tsubst_expr (DO_BODY (t), args, complain, in_decl);
7889 finish_do_body (stmt);
7890 finish_do_stmt (tsubst_expr (DO_COND (t),
7891 args, complain, in_decl),
7892 stmt);
7894 break;
7896 case IF_STMT:
7898 prep_stmt (t);
7899 stmt = begin_if_stmt ();
7900 finish_if_stmt_cond (tsubst_expr (IF_COND (t),
7901 args, complain, in_decl),
7902 stmt);
7904 if (tmp = THEN_CLAUSE (t), tmp)
7906 tsubst_expr (tmp, args, complain, in_decl);
7907 finish_then_clause (stmt);
7910 if (tmp = ELSE_CLAUSE (t), tmp)
7912 begin_else_clause ();
7913 tsubst_expr (tmp, args, complain, in_decl);
7914 finish_else_clause (stmt);
7917 finish_if_stmt ();
7919 break;
7921 case COMPOUND_STMT:
7923 prep_stmt (t);
7924 if (COMPOUND_STMT_BODY_BLOCK (t))
7925 stmt = begin_function_body ();
7926 else
7927 stmt = begin_compound_stmt (COMPOUND_STMT_NO_SCOPE (t));
7929 tsubst_expr (COMPOUND_BODY (t), args,
7930 complain | ((stmt_expr & tf_stmt_expr_cmpd) << 1),
7931 in_decl);
7933 if (COMPOUND_STMT_BODY_BLOCK (t))
7934 finish_function_body (stmt);
7935 else
7936 finish_compound_stmt (stmt);
7938 break;
7940 case BREAK_STMT:
7941 prep_stmt (t);
7942 finish_break_stmt ();
7943 break;
7945 case CONTINUE_STMT:
7946 prep_stmt (t);
7947 finish_continue_stmt ();
7948 break;
7950 case SWITCH_STMT:
7952 tree val;
7954 prep_stmt (t);
7955 stmt = begin_switch_stmt ();
7956 val = tsubst_expr (SWITCH_COND (t), args, complain, in_decl);
7957 finish_switch_cond (val, stmt);
7958 tsubst_expr (SWITCH_BODY (t), args, complain, in_decl);
7959 finish_switch_stmt (stmt);
7961 break;
7963 case CASE_LABEL:
7964 prep_stmt (t);
7965 finish_case_label (tsubst_expr (CASE_LOW (t), args, complain, in_decl),
7966 tsubst_expr (CASE_HIGH (t), args, complain,
7967 in_decl));
7968 break;
7970 case LABEL_STMT:
7971 input_line = STMT_LINENO (t);
7972 finish_label_stmt (DECL_NAME (LABEL_STMT_LABEL (t)));
7973 break;
7975 case FILE_STMT:
7976 input_filename = FILE_STMT_FILENAME (t);
7977 add_stmt (build_nt (FILE_STMT, FILE_STMT_FILENAME_NODE (t)));
7978 break;
7980 case GOTO_STMT:
7981 prep_stmt (t);
7982 tmp = GOTO_DESTINATION (t);
7983 if (TREE_CODE (tmp) != LABEL_DECL)
7984 /* Computed goto's must be tsubst'd into. On the other hand,
7985 non-computed gotos must not be; the identifier in question
7986 will have no binding. */
7987 tmp = tsubst_expr (tmp, args, complain, in_decl);
7988 else
7989 tmp = DECL_NAME (tmp);
7990 finish_goto_stmt (tmp);
7991 break;
7993 case ASM_STMT:
7994 prep_stmt (t);
7995 tmp = finish_asm_stmt
7996 (ASM_CV_QUAL (t),
7997 tsubst_expr (ASM_STRING (t), args, complain, in_decl),
7998 tsubst_expr (ASM_OUTPUTS (t), args, complain, in_decl),
7999 tsubst_expr (ASM_INPUTS (t), args, complain, in_decl),
8000 tsubst_expr (ASM_CLOBBERS (t), args, complain, in_decl));
8001 ASM_INPUT_P (tmp) = ASM_INPUT_P (t);
8002 break;
8004 case TRY_BLOCK:
8005 prep_stmt (t);
8006 if (CLEANUP_P (t))
8008 stmt = begin_try_block ();
8009 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
8010 finish_cleanup_try_block (stmt);
8011 finish_cleanup (tsubst_expr (TRY_HANDLERS (t), args,
8012 complain, in_decl),
8013 stmt);
8015 else
8017 if (FN_TRY_BLOCK_P (t))
8018 stmt = begin_function_try_block ();
8019 else
8020 stmt = begin_try_block ();
8022 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
8024 if (FN_TRY_BLOCK_P (t))
8025 finish_function_try_block (stmt);
8026 else
8027 finish_try_block (stmt);
8029 tsubst_expr (TRY_HANDLERS (t), args, complain, in_decl);
8030 if (FN_TRY_BLOCK_P (t))
8031 finish_function_handler_sequence (stmt);
8032 else
8033 finish_handler_sequence (stmt);
8035 break;
8037 case HANDLER:
8039 tree decl;
8041 prep_stmt (t);
8042 stmt = begin_handler ();
8043 if (HANDLER_PARMS (t))
8045 decl = DECL_STMT_DECL (HANDLER_PARMS (t));
8046 decl = tsubst (decl, args, complain, in_decl);
8047 /* Prevent instantiate_decl from trying to instantiate
8048 this variable. We've already done all that needs to be
8049 done. */
8050 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
8052 else
8053 decl = NULL_TREE;
8054 finish_handler_parms (decl, stmt);
8055 tsubst_expr (HANDLER_BODY (t), args, complain, in_decl);
8056 finish_handler (stmt);
8058 break;
8060 case TAG_DEFN:
8061 prep_stmt (t);
8062 tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
8063 break;
8065 default:
8066 abort ();
8069 return tsubst_expr (TREE_CHAIN (t), args, complain | stmt_expr, in_decl);
8072 /* T is a postfix-expression that is not being used in a function
8073 call. Return the substituted version of T. */
8075 static tree
8076 tsubst_non_call_postfix_expression (tree t, tree args,
8077 tsubst_flags_t complain,
8078 tree in_decl)
8080 if (TREE_CODE (t) == SCOPE_REF)
8081 t = tsubst_qualified_id (t, args, complain, in_decl,
8082 /*done=*/false, /*address_p=*/false);
8083 else
8084 t = tsubst_copy_and_build (t, args, complain, in_decl,
8085 /*function_p=*/false);
8087 return t;
8090 /* Like tsubst but deals with expressions and performs semantic
8091 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
8093 tree
8094 tsubst_copy_and_build (tree t,
8095 tree args,
8096 tsubst_flags_t complain,
8097 tree in_decl,
8098 bool function_p)
8100 #define RECUR(NODE) \
8101 tsubst_copy_and_build (NODE, args, complain, in_decl, /*function_p=*/false)
8103 tree op1;
8105 if (t == NULL_TREE || t == error_mark_node)
8106 return t;
8108 switch (TREE_CODE (t))
8110 case USING_DECL:
8111 t = DECL_NAME (t);
8112 /* Fallthrough. */
8113 case IDENTIFIER_NODE:
8115 tree decl;
8116 cp_id_kind idk;
8117 tree qualifying_class;
8118 bool non_integral_constant_expression_p;
8119 const char *error_msg;
8121 if (IDENTIFIER_TYPENAME_P (t))
8123 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8124 t = mangle_conv_op_name_for_type (new_type);
8127 /* Look up the name. */
8128 decl = lookup_name (t, 0);
8130 /* By convention, expressions use ERROR_MARK_NODE to indicate
8131 failure, not NULL_TREE. */
8132 if (decl == NULL_TREE)
8133 decl = error_mark_node;
8135 decl = finish_id_expression (t, decl, NULL_TREE,
8136 &idk,
8137 &qualifying_class,
8138 /*integral_constant_expression_p=*/false,
8139 /*allow_non_integral_constant_expression_p=*/false,
8140 &non_integral_constant_expression_p,
8141 &error_msg);
8142 if (error_msg)
8143 error (error_msg);
8144 if (!function_p && TREE_CODE (decl) == IDENTIFIER_NODE)
8145 decl = unqualified_name_lookup_error (decl);
8146 return decl;
8149 case TEMPLATE_ID_EXPR:
8151 tree object;
8152 tree template = RECUR (TREE_OPERAND (t, 0));
8153 tree targs = TREE_OPERAND (t, 1);
8155 if (targs)
8156 targs = tsubst_template_args (targs, args, complain, in_decl);
8158 if (TREE_CODE (template) == COMPONENT_REF)
8160 object = TREE_OPERAND (template, 0);
8161 template = TREE_OPERAND (template, 1);
8163 else
8164 object = NULL_TREE;
8165 template = lookup_template_function (template, targs);
8167 if (object)
8168 return build (COMPONENT_REF, TREE_TYPE (template),
8169 object, template);
8170 else
8171 return template;
8174 case INDIRECT_REF:
8175 return build_x_indirect_ref (RECUR (TREE_OPERAND (t, 0)), "unary *");
8177 case NOP_EXPR:
8178 return build_nop
8179 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8180 RECUR (TREE_OPERAND (t, 0)));
8182 case CAST_EXPR:
8183 return build_functional_cast
8184 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8185 RECUR (TREE_OPERAND (t, 0)));
8187 case REINTERPRET_CAST_EXPR:
8188 return build_reinterpret_cast
8189 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8190 RECUR (TREE_OPERAND (t, 0)));
8192 case CONST_CAST_EXPR:
8193 return build_const_cast
8194 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8195 RECUR (TREE_OPERAND (t, 0)));
8197 case DYNAMIC_CAST_EXPR:
8198 return build_dynamic_cast
8199 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8200 RECUR (TREE_OPERAND (t, 0)));
8202 case STATIC_CAST_EXPR:
8203 return build_static_cast
8204 (tsubst (TREE_TYPE (t), args, complain, in_decl),
8205 RECUR (TREE_OPERAND (t, 0)));
8207 case POSTDECREMENT_EXPR:
8208 case POSTINCREMENT_EXPR:
8209 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8210 args, complain, in_decl);
8211 return build_x_unary_op (TREE_CODE (t), op1);
8213 case PREDECREMENT_EXPR:
8214 case PREINCREMENT_EXPR:
8215 case NEGATE_EXPR:
8216 case BIT_NOT_EXPR:
8217 case ABS_EXPR:
8218 case TRUTH_NOT_EXPR:
8219 case CONVERT_EXPR: /* Unary + */
8220 case REALPART_EXPR:
8221 case IMAGPART_EXPR:
8222 return build_x_unary_op (TREE_CODE (t), RECUR (TREE_OPERAND (t, 0)));
8224 case ADDR_EXPR:
8225 op1 = TREE_OPERAND (t, 0);
8226 if (TREE_CODE (op1) == SCOPE_REF)
8227 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
8228 /*done=*/true, /*address_p=*/true);
8229 else
8230 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
8231 in_decl);
8232 if (TREE_CODE (op1) == LABEL_DECL)
8233 return finish_label_address_expr (DECL_NAME (op1));
8234 return build_x_unary_op (ADDR_EXPR, op1);
8236 case PLUS_EXPR:
8237 case MINUS_EXPR:
8238 case MULT_EXPR:
8239 case TRUNC_DIV_EXPR:
8240 case CEIL_DIV_EXPR:
8241 case FLOOR_DIV_EXPR:
8242 case ROUND_DIV_EXPR:
8243 case EXACT_DIV_EXPR:
8244 case BIT_AND_EXPR:
8245 case BIT_IOR_EXPR:
8246 case BIT_XOR_EXPR:
8247 case TRUNC_MOD_EXPR:
8248 case FLOOR_MOD_EXPR:
8249 case TRUTH_ANDIF_EXPR:
8250 case TRUTH_ORIF_EXPR:
8251 case TRUTH_AND_EXPR:
8252 case TRUTH_OR_EXPR:
8253 case RSHIFT_EXPR:
8254 case LSHIFT_EXPR:
8255 case RROTATE_EXPR:
8256 case LROTATE_EXPR:
8257 case EQ_EXPR:
8258 case NE_EXPR:
8259 case MAX_EXPR:
8260 case MIN_EXPR:
8261 case LE_EXPR:
8262 case GE_EXPR:
8263 case LT_EXPR:
8264 case GT_EXPR:
8265 case MEMBER_REF:
8266 case DOTSTAR_EXPR:
8267 return build_x_binary_op
8268 (TREE_CODE (t),
8269 RECUR (TREE_OPERAND (t, 0)),
8270 RECUR (TREE_OPERAND (t, 1)),
8271 /*overloaded_p=*/NULL);
8273 case SCOPE_REF:
8274 return tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
8275 /*address_p=*/false);
8277 case ARRAY_REF:
8278 if (tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl)
8279 == NULL_TREE)
8280 /* new-type-id */
8281 return build_nt (ARRAY_REF, NULL_TREE, RECUR (TREE_OPERAND (t, 1)));
8283 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8284 args, complain, in_decl);
8285 /* Remember that there was a reference to this entity. */
8286 if (DECL_P (op1))
8287 mark_used (op1);
8288 return grok_array_decl (op1, RECUR (TREE_OPERAND (t, 1)));
8290 case SIZEOF_EXPR:
8291 case ALIGNOF_EXPR:
8292 op1 = TREE_OPERAND (t, 0);
8293 if (!args)
8295 /* When there are no ARGS, we are trying to evaluate a
8296 non-dependent expression from the parser. Trying to do
8297 the substitutions may not work. */
8298 if (!TYPE_P (op1))
8299 op1 = TREE_TYPE (op1);
8301 else
8303 ++skip_evaluation;
8304 op1 = RECUR (op1);
8305 --skip_evaluation;
8307 if (TYPE_P (op1))
8308 return cxx_sizeof_or_alignof_type (op1, TREE_CODE (t), true);
8309 else
8310 return cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t));
8312 case MODOP_EXPR:
8313 return build_x_modify_expr
8314 (RECUR (TREE_OPERAND (t, 0)),
8315 TREE_CODE (TREE_OPERAND (t, 1)),
8316 RECUR (TREE_OPERAND (t, 2)));
8318 case ARROW_EXPR:
8319 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8320 args, complain, in_decl);
8321 /* Remember that there was a reference to this entity. */
8322 if (DECL_P (op1))
8323 mark_used (op1);
8324 return build_x_arrow (op1);
8326 case NEW_EXPR:
8327 return build_new
8328 (RECUR (TREE_OPERAND (t, 0)),
8329 RECUR (TREE_OPERAND (t, 1)),
8330 RECUR (TREE_OPERAND (t, 2)),
8331 NEW_EXPR_USE_GLOBAL (t));
8333 case DELETE_EXPR:
8334 return delete_sanity
8335 (RECUR (TREE_OPERAND (t, 0)),
8336 RECUR (TREE_OPERAND (t, 1)),
8337 DELETE_EXPR_USE_VEC (t),
8338 DELETE_EXPR_USE_GLOBAL (t));
8340 case COMPOUND_EXPR:
8341 return build_x_compound_expr (RECUR (TREE_OPERAND (t, 0)),
8342 RECUR (TREE_OPERAND (t, 1)));
8344 case CALL_EXPR:
8346 tree function;
8347 tree call_args;
8348 bool qualified_p;
8349 bool koenig_p;
8351 function = TREE_OPERAND (t, 0);
8352 /* When we parsed the expression, we determined whether or
8353 not Koenig lookup should be performed. */
8354 koenig_p = KOENIG_LOOKUP_P (t);
8355 if (TREE_CODE (function) == SCOPE_REF)
8357 qualified_p = true;
8358 function = tsubst_qualified_id (function, args, complain, in_decl,
8359 /*done=*/false,
8360 /*address_p=*/false);
8362 else
8364 qualified_p = (TREE_CODE (function) == COMPONENT_REF
8365 && (TREE_CODE (TREE_OPERAND (function, 1))
8366 == SCOPE_REF));
8367 function = tsubst_copy_and_build (function, args, complain,
8368 in_decl,
8369 !qualified_p);
8370 if (BASELINK_P (function))
8371 qualified_p = true;
8374 call_args = RECUR (TREE_OPERAND (t, 1));
8376 /* We do not perform argument-dependent lookup if normal
8377 lookup finds a non-function, in accordance with the
8378 expected resolution of DR 218. */
8379 if (koenig_p
8380 && (is_overloaded_fn (function)
8381 || TREE_CODE (function) == IDENTIFIER_NODE))
8382 function = perform_koenig_lookup (function, call_args);
8384 if (TREE_CODE (function) == IDENTIFIER_NODE)
8386 unqualified_name_lookup_error (function);
8387 return error_mark_node;
8390 /* Remember that there was a reference to this entity. */
8391 if (DECL_P (function))
8392 mark_used (function);
8394 function = convert_from_reference (function);
8396 if (TREE_CODE (function) == OFFSET_REF)
8397 return build_offset_ref_call_from_tree (function, call_args);
8398 if (TREE_CODE (function) == COMPONENT_REF)
8400 if (!BASELINK_P (TREE_OPERAND (function, 1)))
8401 return finish_call_expr (function, call_args,
8402 /*disallow_virtual=*/false,
8403 /*koenig_p=*/false);
8404 else
8405 return (build_new_method_call
8406 (TREE_OPERAND (function, 0),
8407 TREE_OPERAND (function, 1),
8408 call_args, NULL_TREE,
8409 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL));
8411 return finish_call_expr (function, call_args,
8412 /*disallow_virtual=*/qualified_p,
8413 koenig_p);
8416 case COND_EXPR:
8417 return build_x_conditional_expr
8418 (RECUR (TREE_OPERAND (t, 0)),
8419 RECUR (TREE_OPERAND (t, 1)),
8420 RECUR (TREE_OPERAND (t, 2)));
8422 case PSEUDO_DTOR_EXPR:
8423 return finish_pseudo_destructor_expr
8424 (RECUR (TREE_OPERAND (t, 0)),
8425 RECUR (TREE_OPERAND (t, 1)),
8426 RECUR (TREE_OPERAND (t, 2)));
8428 case TREE_LIST:
8430 tree purpose, value, chain;
8432 if (t == void_list_node)
8433 return t;
8435 purpose = TREE_PURPOSE (t);
8436 if (purpose)
8437 purpose = RECUR (purpose);
8438 value = TREE_VALUE (t);
8439 if (value)
8440 value = RECUR (value);
8441 chain = TREE_CHAIN (t);
8442 if (chain && chain != void_type_node)
8443 chain = RECUR (chain);
8444 if (purpose == TREE_PURPOSE (t)
8445 && value == TREE_VALUE (t)
8446 && chain == TREE_CHAIN (t))
8447 return t;
8448 return tree_cons (purpose, value, chain);
8451 case COMPONENT_REF:
8453 tree object;
8454 tree member;
8456 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
8457 args, complain, in_decl);
8458 /* Remember that there was a reference to this entity. */
8459 if (DECL_P (object))
8460 mark_used (object);
8462 member = TREE_OPERAND (t, 1);
8463 if (BASELINK_P (member))
8464 member = tsubst_baselink (member,
8465 non_reference (TREE_TYPE (object)),
8466 args, complain, in_decl);
8467 else
8468 member = tsubst_copy (member, args, complain, in_decl);
8470 if (!CLASS_TYPE_P (TREE_TYPE (object)))
8472 if (TREE_CODE (member) == BIT_NOT_EXPR)
8473 return finish_pseudo_destructor_expr (object,
8474 NULL_TREE,
8475 TREE_TYPE (object));
8476 else if (TREE_CODE (member) == SCOPE_REF
8477 && (TREE_CODE (TREE_OPERAND (member, 1)) == BIT_NOT_EXPR))
8478 return finish_pseudo_destructor_expr (object,
8479 object,
8480 TREE_TYPE (object));
8482 else if (TREE_CODE (member) == SCOPE_REF
8483 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
8485 tree tmpl;
8486 tree args;
8488 /* Lookup the template functions now that we know what the
8489 scope is. */
8490 tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
8491 args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
8492 member = lookup_qualified_name (TREE_OPERAND (member, 0), tmpl,
8493 /*is_type_p=*/false,
8494 /*complain=*/false);
8495 if (BASELINK_P (member))
8496 BASELINK_FUNCTIONS (member)
8497 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
8498 args);
8499 else
8501 qualified_name_lookup_error (TREE_TYPE (object), tmpl);
8502 return error_mark_node;
8505 else if (TREE_CODE (member) == FIELD_DECL)
8506 return finish_non_static_data_member (member, object, NULL_TREE);
8508 return finish_class_member_access_expr (object, member);
8511 case THROW_EXPR:
8512 return build_throw
8513 (RECUR (TREE_OPERAND (t, 0)));
8515 case CONSTRUCTOR:
8517 tree r;
8518 tree elts;
8519 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8520 bool purpose_p;
8522 /* digest_init will do the wrong thing if we let it. */
8523 if (type && TYPE_PTRMEMFUNC_P (type))
8524 return t;
8526 r = NULL_TREE;
8527 /* We do not want to process the purpose of aggregate
8528 initializers as they are identifier nodes which will be
8529 looked up by digest_init. */
8530 purpose_p = !(type && IS_AGGR_TYPE (type));
8531 for (elts = CONSTRUCTOR_ELTS (t);
8532 elts;
8533 elts = TREE_CHAIN (elts))
8535 tree purpose = TREE_PURPOSE (elts);
8536 tree value = TREE_VALUE (elts);
8538 if (purpose && purpose_p)
8539 purpose = RECUR (purpose);
8540 value = RECUR (value);
8541 r = tree_cons (purpose, value, r);
8544 r = build_constructor (NULL_TREE, nreverse (r));
8545 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
8547 if (type)
8548 return digest_init (type, r, 0);
8549 return r;
8552 case TYPEID_EXPR:
8554 tree operand_0 = RECUR (TREE_OPERAND (t, 0));
8555 if (TYPE_P (operand_0))
8556 return get_typeid (operand_0);
8557 return build_typeid (operand_0);
8560 case PARM_DECL:
8561 return convert_from_reference (tsubst_copy (t, args, complain, in_decl));
8563 case VAR_DECL:
8564 if (args)
8565 t = tsubst_copy (t, args, complain, in_decl);
8566 return convert_from_reference (t);
8568 case VA_ARG_EXPR:
8569 return build_x_va_arg (RECUR (TREE_OPERAND (t, 0)),
8570 tsubst_copy (TREE_TYPE (t), args, complain,
8571 in_decl));
8573 default:
8574 return tsubst_copy (t, args, complain, in_decl);
8577 #undef RECUR
8580 /* Verify that the instantiated ARGS are valid. For type arguments,
8581 make sure that the type's linkage is ok. For non-type arguments,
8582 make sure they are constants if they are integral or enumerations.
8583 Emit an error under control of COMPLAIN, and return TRUE on error. */
8585 static bool
8586 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
8588 int ix, len = DECL_NTPARMS (tmpl);
8589 bool result = false;
8591 for (ix = 0; ix != len; ix++)
8593 tree t = TREE_VEC_ELT (args, ix);
8595 if (TYPE_P (t))
8597 /* [basic.link]: A name with no linkage (notably, the name
8598 of a class or enumeration declared in a local scope)
8599 shall not be used to declare an entity with linkage.
8600 This implies that names with no linkage cannot be used as
8601 template arguments. */
8602 tree nt = no_linkage_check (t);
8604 if (nt)
8606 if (!(complain & tf_error))
8607 /*OK*/;
8608 else if (TYPE_ANONYMOUS_P (nt))
8609 error ("`%T' uses anonymous type", t);
8610 else
8611 error ("`%T' uses local type `%T'", t, nt);
8612 result = true;
8614 /* In order to avoid all sorts of complications, we do not
8615 allow variably-modified types as template arguments. */
8616 else if (variably_modified_type_p (t))
8618 if (complain & tf_error)
8619 error ("`%T' is a variably modified type", t);
8620 result = true;
8623 /* A non-type argument of integral or enumerated type must be a
8624 constant. */
8625 else if (TREE_TYPE (t)
8626 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
8627 && !TREE_CONSTANT (t))
8629 if (complain & tf_error)
8630 error ("integral expression `%E' is not constant", t);
8631 result = true;
8634 if (result && complain & tf_error)
8635 error (" trying to instantiate `%D'", tmpl);
8636 return result;
8639 /* Instantiate the indicated variable or function template TMPL with
8640 the template arguments in TARG_PTR. */
8642 tree
8643 instantiate_template (tree tmpl, tree targ_ptr, tsubst_flags_t complain)
8645 tree fndecl;
8646 tree gen_tmpl;
8647 tree spec;
8649 if (tmpl == error_mark_node)
8650 return error_mark_node;
8652 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 283);
8654 /* If this function is a clone, handle it specially. */
8655 if (DECL_CLONED_FUNCTION_P (tmpl))
8657 tree spec = instantiate_template (DECL_CLONED_FUNCTION (tmpl), targ_ptr,
8658 complain);
8659 tree clone;
8661 /* Look for the clone. */
8662 for (clone = TREE_CHAIN (spec);
8663 clone && DECL_CLONED_FUNCTION_P (clone);
8664 clone = TREE_CHAIN (clone))
8665 if (DECL_NAME (clone) == DECL_NAME (tmpl))
8666 return clone;
8667 /* We should always have found the clone by now. */
8668 abort ();
8669 return NULL_TREE;
8672 /* Check to see if we already have this specialization. */
8673 spec = retrieve_specialization (tmpl, targ_ptr);
8674 if (spec != NULL_TREE)
8675 return spec;
8677 gen_tmpl = most_general_template (tmpl);
8678 if (tmpl != gen_tmpl)
8680 /* The TMPL is a partial instantiation. To get a full set of
8681 arguments we must add the arguments used to perform the
8682 partial instantiation. */
8683 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
8684 targ_ptr);
8686 /* Check to see if we already have this specialization. */
8687 spec = retrieve_specialization (gen_tmpl, targ_ptr);
8688 if (spec != NULL_TREE)
8689 return spec;
8692 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
8693 complain))
8694 return error_mark_node;
8696 /* We are building a FUNCTION_DECL, during which the access of its
8697 parameters and return types have to be checked. However this
8698 FUNCTION_DECL which is the desired context for access checking
8699 is not built yet. We solve this chicken-and-egg problem by
8700 deferring all checks until we have the FUNCTION_DECL. */
8701 push_deferring_access_checks (dk_deferred);
8703 /* Substitute template parameters. */
8704 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
8705 targ_ptr, complain, gen_tmpl);
8707 /* Now we know the specialization, compute access previously
8708 deferred. */
8709 push_access_scope (fndecl);
8710 perform_deferred_access_checks ();
8711 pop_access_scope (fndecl);
8712 pop_deferring_access_checks ();
8714 /* The DECL_TI_TEMPLATE should always be the immediate parent
8715 template, not the most general template. */
8716 DECL_TI_TEMPLATE (fndecl) = tmpl;
8718 /* If we've just instantiated the main entry point for a function,
8719 instantiate all the alternate entry points as well. We do this
8720 by cloning the instantiation of the main entry point, not by
8721 instantiating the template clones. */
8722 if (TREE_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (TREE_CHAIN (gen_tmpl)))
8723 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
8725 return fndecl;
8728 /* The FN is a TEMPLATE_DECL for a function. The ARGS are the
8729 arguments that are being used when calling it. TARGS is a vector
8730 into which the deduced template arguments are placed.
8732 Return zero for success, 2 for an incomplete match that doesn't resolve
8733 all the types, and 1 for complete failure. An error message will be
8734 printed only for an incomplete match.
8736 If FN is a conversion operator, or we are trying to produce a specific
8737 specialization, RETURN_TYPE is the return type desired.
8739 The EXPLICIT_TARGS are explicit template arguments provided via a
8740 template-id.
8742 The parameter STRICT is one of:
8744 DEDUCE_CALL:
8745 We are deducing arguments for a function call, as in
8746 [temp.deduct.call].
8748 DEDUCE_CONV:
8749 We are deducing arguments for a conversion function, as in
8750 [temp.deduct.conv].
8752 DEDUCE_EXACT:
8753 We are deducing arguments when doing an explicit instantiation
8754 as in [temp.explicit], when determining an explicit specialization
8755 as in [temp.expl.spec], or when taking the address of a function
8756 template, as in [temp.deduct.funcaddr].
8758 DEDUCE_ORDER:
8759 We are deducing arguments when calculating the partial
8760 ordering between specializations of function or class
8761 templates, as in [temp.func.order] and [temp.class.order].
8763 LEN is the number of parms to consider before returning success, or -1
8764 for all. This is used in partial ordering to avoid comparing parms for
8765 which no actual argument was passed, since they are not considered in
8766 overload resolution (and are explicitly excluded from consideration in
8767 partial ordering in [temp.func.order]/6). */
8770 fn_type_unification (tree fn,
8771 tree explicit_targs,
8772 tree targs,
8773 tree args,
8774 tree return_type,
8775 unification_kind_t strict,
8776 int len)
8778 tree parms;
8779 tree fntype;
8780 int result;
8782 my_friendly_assert (TREE_CODE (fn) == TEMPLATE_DECL, 0);
8784 fntype = TREE_TYPE (fn);
8785 if (explicit_targs)
8787 /* [temp.deduct]
8789 The specified template arguments must match the template
8790 parameters in kind (i.e., type, nontype, template), and there
8791 must not be more arguments than there are parameters;
8792 otherwise type deduction fails.
8794 Nontype arguments must match the types of the corresponding
8795 nontype template parameters, or must be convertible to the
8796 types of the corresponding nontype parameters as specified in
8797 _temp.arg.nontype_, otherwise type deduction fails.
8799 All references in the function type of the function template
8800 to the corresponding template parameters are replaced by the
8801 specified template argument values. If a substitution in a
8802 template parameter or in the function type of the function
8803 template results in an invalid type, type deduction fails. */
8804 int i;
8805 tree converted_args;
8806 bool incomplete;
8808 converted_args
8809 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
8810 explicit_targs, NULL_TREE, tf_none,
8811 /*require_all_arguments=*/0));
8812 if (converted_args == error_mark_node)
8813 return 1;
8815 /* Substitute the explicit args into the function type. This is
8816 necessary so that, for instance, explicitly declared function
8817 arguments can match null pointed constants. If we were given
8818 an incomplete set of explicit args, we must not do semantic
8819 processing during substitution as we could create partial
8820 instantiations. */
8821 incomplete = NUM_TMPL_ARGS (explicit_targs) != NUM_TMPL_ARGS (targs);
8822 processing_template_decl += incomplete;
8823 fntype = tsubst (fntype, converted_args, tf_none, NULL_TREE);
8824 processing_template_decl -= incomplete;
8826 if (fntype == error_mark_node)
8827 return 1;
8829 /* Place the explicitly specified arguments in TARGS. */
8830 for (i = NUM_TMPL_ARGS (converted_args); i--;)
8831 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
8834 parms = TYPE_ARG_TYPES (fntype);
8835 /* Never do unification on the 'this' parameter. */
8836 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
8837 parms = TREE_CHAIN (parms);
8839 if (return_type)
8841 /* We've been given a return type to match, prepend it. */
8842 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
8843 args = tree_cons (NULL_TREE, return_type, args);
8844 if (len >= 0)
8845 ++len;
8848 /* We allow incomplete unification without an error message here
8849 because the standard doesn't seem to explicitly prohibit it. Our
8850 callers must be ready to deal with unification failures in any
8851 event. */
8852 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
8853 targs, parms, args, /*subr=*/0,
8854 strict, /*allow_incomplete*/1, len);
8856 if (result == 0)
8857 /* All is well so far. Now, check:
8859 [temp.deduct]
8861 When all template arguments have been deduced, all uses of
8862 template parameters in nondeduced contexts are replaced with
8863 the corresponding deduced argument values. If the
8864 substitution results in an invalid type, as described above,
8865 type deduction fails. */
8866 if (tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE)
8867 == error_mark_node)
8868 return 1;
8870 return result;
8873 /* Adjust types before performing type deduction, as described in
8874 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
8875 sections are symmetric. PARM is the type of a function parameter
8876 or the return type of the conversion function. ARG is the type of
8877 the argument passed to the call, or the type of the value
8878 initialized with the result of the conversion function. */
8880 static int
8881 maybe_adjust_types_for_deduction (unification_kind_t strict,
8882 tree* parm,
8883 tree* arg)
8885 int result = 0;
8887 switch (strict)
8889 case DEDUCE_CALL:
8890 break;
8892 case DEDUCE_CONV:
8894 /* Swap PARM and ARG throughout the remainder of this
8895 function; the handling is precisely symmetric since PARM
8896 will initialize ARG rather than vice versa. */
8897 tree* temp = parm;
8898 parm = arg;
8899 arg = temp;
8900 break;
8903 case DEDUCE_EXACT:
8904 /* There is nothing to do in this case. */
8905 return 0;
8907 case DEDUCE_ORDER:
8908 /* DR 214. [temp.func.order] is underspecified, and leads to no
8909 ordering between things like `T *' and `T const &' for `U *'.
8910 The former has T=U and the latter T=U*. The former looks more
8911 specialized and John Spicer considers it well-formed (the EDG
8912 compiler accepts it).
8914 John also confirms that deduction should proceed as in a function
8915 call. Which implies the usual ARG and PARM conversions as DEDUCE_CALL.
8916 However, in ordering, ARG can have REFERENCE_TYPE, but no argument
8917 to an actual call can have such a type.
8919 If both ARG and PARM are REFERENCE_TYPE, we change neither.
8920 If only ARG is a REFERENCE_TYPE, we look through that and then
8921 proceed as with DEDUCE_CALL (which could further convert it). */
8922 if (TREE_CODE (*arg) == REFERENCE_TYPE)
8924 if (TREE_CODE (*parm) == REFERENCE_TYPE)
8925 return 0;
8926 *arg = TREE_TYPE (*arg);
8928 break;
8929 default:
8930 abort ();
8933 if (TREE_CODE (*parm) != REFERENCE_TYPE)
8935 /* [temp.deduct.call]
8937 If P is not a reference type:
8939 --If A is an array type, the pointer type produced by the
8940 array-to-pointer standard conversion (_conv.array_) is
8941 used in place of A for type deduction; otherwise,
8943 --If A is a function type, the pointer type produced by
8944 the function-to-pointer standard conversion
8945 (_conv.func_) is used in place of A for type deduction;
8946 otherwise,
8948 --If A is a cv-qualified type, the top level
8949 cv-qualifiers of A's type are ignored for type
8950 deduction. */
8951 if (TREE_CODE (*arg) == ARRAY_TYPE)
8952 *arg = build_pointer_type (TREE_TYPE (*arg));
8953 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
8954 *arg = build_pointer_type (*arg);
8955 else
8956 *arg = TYPE_MAIN_VARIANT (*arg);
8959 /* [temp.deduct.call]
8961 If P is a cv-qualified type, the top level cv-qualifiers
8962 of P's type are ignored for type deduction. If P is a
8963 reference type, the type referred to by P is used for
8964 type deduction. */
8965 *parm = TYPE_MAIN_VARIANT (*parm);
8966 if (TREE_CODE (*parm) == REFERENCE_TYPE)
8968 *parm = TREE_TYPE (*parm);
8969 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
8972 /* DR 322. For conversion deduction, remove a reference type on parm
8973 too (which has been swapped into ARG). */
8974 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
8975 *arg = TREE_TYPE (*arg);
8977 return result;
8980 /* Most parms like fn_type_unification.
8982 If SUBR is 1, we're being called recursively (to unify the
8983 arguments of a function or method parameter of a function
8984 template). */
8986 static int
8987 type_unification_real (tree tparms,
8988 tree targs,
8989 tree xparms,
8990 tree xargs,
8991 int subr,
8992 unification_kind_t strict,
8993 int allow_incomplete,
8994 int xlen)
8996 tree parm, arg;
8997 int i;
8998 int ntparms = TREE_VEC_LENGTH (tparms);
8999 int sub_strict;
9000 int saw_undeduced = 0;
9001 tree parms, args;
9002 int len;
9004 my_friendly_assert (TREE_CODE (tparms) == TREE_VEC, 289);
9005 my_friendly_assert (xparms == NULL_TREE
9006 || TREE_CODE (xparms) == TREE_LIST, 290);
9007 my_friendly_assert (!xargs || TREE_CODE (xargs) == TREE_LIST, 291);
9008 my_friendly_assert (ntparms > 0, 292);
9010 switch (strict)
9012 case DEDUCE_CALL:
9013 sub_strict = (UNIFY_ALLOW_OUTER_LEVEL | UNIFY_ALLOW_MORE_CV_QUAL
9014 | UNIFY_ALLOW_DERIVED);
9015 break;
9017 case DEDUCE_CONV:
9018 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
9019 break;
9021 case DEDUCE_EXACT:
9022 sub_strict = UNIFY_ALLOW_NONE;
9023 break;
9025 case DEDUCE_ORDER:
9026 sub_strict = UNIFY_ALLOW_NONE;
9027 break;
9029 default:
9030 abort ();
9033 if (xlen == 0)
9034 return 0;
9036 again:
9037 parms = xparms;
9038 args = xargs;
9039 len = xlen;
9041 while (parms
9042 && parms != void_list_node
9043 && args
9044 && args != void_list_node)
9046 parm = TREE_VALUE (parms);
9047 parms = TREE_CHAIN (parms);
9048 arg = TREE_VALUE (args);
9049 args = TREE_CHAIN (args);
9051 if (arg == error_mark_node)
9052 return 1;
9053 if (arg == unknown_type_node)
9054 /* We can't deduce anything from this, but we might get all the
9055 template args from other function args. */
9056 continue;
9058 /* Conversions will be performed on a function argument that
9059 corresponds with a function parameter that contains only
9060 non-deducible template parameters and explicitly specified
9061 template parameters. */
9062 if (!uses_template_parms (parm))
9064 tree type;
9066 if (!TYPE_P (arg))
9067 type = TREE_TYPE (arg);
9068 else
9069 type = arg;
9071 if (strict == DEDUCE_EXACT || strict == DEDUCE_ORDER)
9073 if (same_type_p (parm, type))
9074 continue;
9076 else
9077 /* It might work; we shouldn't check now, because we might
9078 get into infinite recursion. Overload resolution will
9079 handle it. */
9080 continue;
9082 return 1;
9085 if (!TYPE_P (arg))
9087 my_friendly_assert (TREE_TYPE (arg) != NULL_TREE, 293);
9088 if (type_unknown_p (arg))
9090 /* [temp.deduct.type] A template-argument can be deduced from
9091 a pointer to function or pointer to member function
9092 argument if the set of overloaded functions does not
9093 contain function templates and at most one of a set of
9094 overloaded functions provides a unique match. */
9096 if (resolve_overloaded_unification
9097 (tparms, targs, parm, arg, strict, sub_strict)
9098 != 0)
9099 return 1;
9100 continue;
9102 arg = TREE_TYPE (arg);
9103 if (arg == error_mark_node)
9104 return 1;
9108 int arg_strict = sub_strict;
9110 if (!subr)
9111 arg_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg);
9113 if (unify (tparms, targs, parm, arg, arg_strict))
9114 return 1;
9117 /* Are we done with the interesting parms? */
9118 if (--len == 0)
9119 goto done;
9121 /* Fail if we've reached the end of the parm list, and more args
9122 are present, and the parm list isn't variadic. */
9123 if (args && args != void_list_node && parms == void_list_node)
9124 return 1;
9125 /* Fail if parms are left and they don't have default values. */
9126 if (parms
9127 && parms != void_list_node
9128 && TREE_PURPOSE (parms) == NULL_TREE)
9129 return 1;
9131 done:
9132 if (!subr)
9133 for (i = 0; i < ntparms; i++)
9134 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
9136 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
9138 /* If this is an undeduced nontype parameter that depends on
9139 a type parameter, try another pass; its type may have been
9140 deduced from a later argument than the one from which
9141 this parameter can be deduced. */
9142 if (TREE_CODE (tparm) == PARM_DECL
9143 && uses_template_parms (TREE_TYPE (tparm))
9144 && !saw_undeduced++)
9145 goto again;
9147 if (!allow_incomplete)
9148 error ("incomplete type unification");
9149 return 2;
9151 return 0;
9154 /* Subroutine of type_unification_real. Args are like the variables at the
9155 call site. ARG is an overloaded function (or template-id); we try
9156 deducing template args from each of the overloads, and if only one
9157 succeeds, we go with that. Modifies TARGS and returns 0 on success. */
9159 static int
9160 resolve_overloaded_unification (tree tparms,
9161 tree targs,
9162 tree parm,
9163 tree arg,
9164 unification_kind_t strict,
9165 int sub_strict)
9167 tree tempargs = copy_node (targs);
9168 int good = 0;
9169 bool addr_p;
9171 if (TREE_CODE (arg) == ADDR_EXPR)
9173 arg = TREE_OPERAND (arg, 0);
9174 addr_p = true;
9176 else
9177 addr_p = false;
9179 if (TREE_CODE (arg) == COMPONENT_REF)
9180 /* Handle `&x' where `x' is some static or non-static member
9181 function name. */
9182 arg = TREE_OPERAND (arg, 1);
9184 if (TREE_CODE (arg) == OFFSET_REF)
9185 arg = TREE_OPERAND (arg, 1);
9187 /* Strip baselink information. */
9188 if (BASELINK_P (arg))
9189 arg = BASELINK_FUNCTIONS (arg);
9191 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
9193 /* If we got some explicit template args, we need to plug them into
9194 the affected templates before we try to unify, in case the
9195 explicit args will completely resolve the templates in question. */
9197 tree expl_subargs = TREE_OPERAND (arg, 1);
9198 arg = TREE_OPERAND (arg, 0);
9200 for (; arg; arg = OVL_NEXT (arg))
9202 tree fn = OVL_CURRENT (arg);
9203 tree subargs, elem;
9205 if (TREE_CODE (fn) != TEMPLATE_DECL)
9206 continue;
9208 subargs = get_bindings_overload (fn, DECL_TEMPLATE_RESULT (fn),
9209 expl_subargs);
9210 if (subargs)
9212 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
9213 good += try_one_overload (tparms, targs, tempargs, parm,
9214 elem, strict, sub_strict, addr_p);
9218 else if (TREE_CODE (arg) == OVERLOAD
9219 || TREE_CODE (arg) == FUNCTION_DECL)
9221 for (; arg; arg = OVL_NEXT (arg))
9222 good += try_one_overload (tparms, targs, tempargs, parm,
9223 TREE_TYPE (OVL_CURRENT (arg)),
9224 strict, sub_strict, addr_p);
9226 else
9227 abort ();
9229 /* [temp.deduct.type] A template-argument can be deduced from a pointer
9230 to function or pointer to member function argument if the set of
9231 overloaded functions does not contain function templates and at most
9232 one of a set of overloaded functions provides a unique match.
9234 So if we found multiple possibilities, we return success but don't
9235 deduce anything. */
9237 if (good == 1)
9239 int i = TREE_VEC_LENGTH (targs);
9240 for (; i--; )
9241 if (TREE_VEC_ELT (tempargs, i))
9242 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
9244 if (good)
9245 return 0;
9247 return 1;
9250 /* Subroutine of resolve_overloaded_unification; does deduction for a single
9251 overload. Fills TARGS with any deduced arguments, or error_mark_node if
9252 different overloads deduce different arguments for a given parm.
9253 ADDR_P is true if the expression for which deduction is being
9254 performed was of the form "& fn" rather than simply "fn".
9256 Returns 1 on success. */
9258 static int
9259 try_one_overload (tree tparms,
9260 tree orig_targs,
9261 tree targs,
9262 tree parm,
9263 tree arg,
9264 unification_kind_t strict,
9265 int sub_strict,
9266 bool addr_p)
9268 int nargs;
9269 tree tempargs;
9270 int i;
9272 /* [temp.deduct.type] A template-argument can be deduced from a pointer
9273 to function or pointer to member function argument if the set of
9274 overloaded functions does not contain function templates and at most
9275 one of a set of overloaded functions provides a unique match.
9277 So if this is a template, just return success. */
9279 if (uses_template_parms (arg))
9280 return 1;
9282 if (TREE_CODE (arg) == METHOD_TYPE)
9283 arg = build_ptrmemfunc_type (build_pointer_type (arg));
9284 else if (addr_p)
9285 arg = build_pointer_type (arg);
9287 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg);
9289 /* We don't copy orig_targs for this because if we have already deduced
9290 some template args from previous args, unify would complain when we
9291 try to deduce a template parameter for the same argument, even though
9292 there isn't really a conflict. */
9293 nargs = TREE_VEC_LENGTH (targs);
9294 tempargs = make_tree_vec (nargs);
9296 if (unify (tparms, tempargs, parm, arg, sub_strict) != 0)
9297 return 0;
9299 /* First make sure we didn't deduce anything that conflicts with
9300 explicitly specified args. */
9301 for (i = nargs; i--; )
9303 tree elt = TREE_VEC_ELT (tempargs, i);
9304 tree oldelt = TREE_VEC_ELT (orig_targs, i);
9306 if (elt == NULL_TREE)
9307 continue;
9308 else if (uses_template_parms (elt))
9310 /* Since we're unifying against ourselves, we will fill in template
9311 args used in the function parm list with our own template parms.
9312 Discard them. */
9313 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
9314 continue;
9316 else if (oldelt && ! template_args_equal (oldelt, elt))
9317 return 0;
9320 for (i = nargs; i--; )
9322 tree elt = TREE_VEC_ELT (tempargs, i);
9324 if (elt)
9325 TREE_VEC_ELT (targs, i) = elt;
9328 return 1;
9331 /* Verify that nondeduce template argument agrees with the type
9332 obtained from argument deduction. Return nonzero if the
9333 verification fails.
9335 For example:
9337 struct A { typedef int X; };
9338 template <class T, class U> struct C {};
9339 template <class T> struct C<T, typename T::X> {};
9341 Then with the instantiation `C<A, int>', we can deduce that
9342 `T' is `A' but unify () does not check whether `typename T::X'
9343 is `int'. This function ensure that they agree.
9345 TARGS, PARMS are the same as the arguments of unify.
9346 ARGS contains template arguments from all levels. */
9348 static int
9349 verify_class_unification (tree targs, tree parms, tree args)
9351 parms = tsubst (parms, add_outermost_template_args (args, targs),
9352 tf_none, NULL_TREE);
9353 if (parms == error_mark_node)
9354 return 1;
9356 return !comp_template_args (parms, INNERMOST_TEMPLATE_ARGS (args));
9359 /* PARM is a template class (perhaps with unbound template
9360 parameters). ARG is a fully instantiated type. If ARG can be
9361 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
9362 TARGS are as for unify. */
9364 static tree
9365 try_class_unification (tree tparms, tree targs, tree parm, tree arg)
9367 tree copy_of_targs;
9369 if (!CLASSTYPE_TEMPLATE_INFO (arg)
9370 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
9371 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
9372 return NULL_TREE;
9374 /* We need to make a new template argument vector for the call to
9375 unify. If we used TARGS, we'd clutter it up with the result of
9376 the attempted unification, even if this class didn't work out.
9377 We also don't want to commit ourselves to all the unifications
9378 we've already done, since unification is supposed to be done on
9379 an argument-by-argument basis. In other words, consider the
9380 following pathological case:
9382 template <int I, int J, int K>
9383 struct S {};
9385 template <int I, int J>
9386 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
9388 template <int I, int J, int K>
9389 void f(S<I, J, K>, S<I, I, I>);
9391 void g() {
9392 S<0, 0, 0> s0;
9393 S<0, 1, 2> s2;
9395 f(s0, s2);
9398 Now, by the time we consider the unification involving `s2', we
9399 already know that we must have `f<0, 0, 0>'. But, even though
9400 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
9401 because there are two ways to unify base classes of S<0, 1, 2>
9402 with S<I, I, I>. If we kept the already deduced knowledge, we
9403 would reject the possibility I=1. */
9404 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
9406 /* If unification failed, we're done. */
9407 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
9408 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE))
9409 return NULL_TREE;
9411 return arg;
9414 /* Subroutine of get_template_base. RVAL, if non-NULL, is a base we
9415 have already discovered to be satisfactory. ARG_BINFO is the binfo
9416 for the base class of ARG that we are currently examining. */
9418 static tree
9419 get_template_base_recursive (tree tparms,
9420 tree targs,
9421 tree parm,
9422 tree arg_binfo,
9423 tree rval,
9424 int flags)
9426 tree binfos;
9427 int i, n_baselinks;
9428 tree arg = BINFO_TYPE (arg_binfo);
9430 if (!(flags & GTB_IGNORE_TYPE))
9432 tree r = try_class_unification (tparms, targs,
9433 parm, arg);
9435 /* If there is more than one satisfactory baseclass, then:
9437 [temp.deduct.call]
9439 If they yield more than one possible deduced A, the type
9440 deduction fails.
9442 applies. */
9443 if (r && rval && !same_type_p (r, rval))
9444 return error_mark_node;
9445 else if (r)
9446 rval = r;
9449 binfos = BINFO_BASETYPES (arg_binfo);
9450 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
9452 /* Process base types. */
9453 for (i = 0; i < n_baselinks; i++)
9455 tree base_binfo = TREE_VEC_ELT (binfos, i);
9456 int this_virtual;
9458 /* Skip this base, if we've already seen it. */
9459 if (BINFO_MARKED (base_binfo))
9460 continue;
9462 this_virtual =
9463 (flags & GTB_VIA_VIRTUAL) || TREE_VIA_VIRTUAL (base_binfo);
9465 /* When searching for a non-virtual, we cannot mark virtually
9466 found binfos. */
9467 if (! this_virtual)
9468 BINFO_MARKED (base_binfo) = 1;
9470 rval = get_template_base_recursive (tparms, targs,
9471 parm,
9472 base_binfo,
9473 rval,
9474 GTB_VIA_VIRTUAL * this_virtual);
9476 /* If we discovered more than one matching base class, we can
9477 stop now. */
9478 if (rval == error_mark_node)
9479 return error_mark_node;
9482 return rval;
9485 /* Given a template type PARM and a class type ARG, find the unique
9486 base type in ARG that is an instance of PARM. We do not examine
9487 ARG itself; only its base-classes. If there is no appropriate base
9488 class, return NULL_TREE. If there is more than one, return
9489 error_mark_node. PARM may be the type of a partial specialization,
9490 as well as a plain template type. Used by unify. */
9492 static tree
9493 get_template_base (tree tparms, tree targs, tree parm, tree arg)
9495 tree rval;
9496 tree arg_binfo;
9498 my_friendly_assert (IS_AGGR_TYPE_CODE (TREE_CODE (arg)), 92);
9500 arg_binfo = TYPE_BINFO (complete_type (arg));
9501 rval = get_template_base_recursive (tparms, targs,
9502 parm, arg_binfo,
9503 NULL_TREE,
9504 GTB_IGNORE_TYPE);
9506 /* Since get_template_base_recursive marks the bases classes, we
9507 must unmark them here. */
9508 dfs_walk (arg_binfo, dfs_unmark, markedp, 0);
9510 return rval;
9513 /* Returns the level of DECL, which declares a template parameter. */
9515 static int
9516 template_decl_level (tree decl)
9518 switch (TREE_CODE (decl))
9520 case TYPE_DECL:
9521 case TEMPLATE_DECL:
9522 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
9524 case PARM_DECL:
9525 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
9527 default:
9528 abort ();
9529 return 0;
9533 /* Decide whether ARG can be unified with PARM, considering only the
9534 cv-qualifiers of each type, given STRICT as documented for unify.
9535 Returns nonzero iff the unification is OK on that basis.*/
9537 static int
9538 check_cv_quals_for_unify (int strict, tree arg, tree parm)
9540 int arg_quals = cp_type_quals (arg);
9541 int parm_quals = cp_type_quals (parm);
9543 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM)
9545 /* If the cvr quals of parm will not unify with ARG, they'll be
9546 ignored in instantiation, so we have to do the same here. */
9547 if (TREE_CODE (arg) == REFERENCE_TYPE)
9548 parm_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
9549 if (!POINTER_TYPE_P (arg) &&
9550 TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
9551 parm_quals &= ~TYPE_QUAL_RESTRICT;
9554 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
9555 && (arg_quals & parm_quals) != parm_quals)
9556 return 0;
9558 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
9559 && (parm_quals & arg_quals) != arg_quals)
9560 return 0;
9562 return 1;
9565 /* Takes parameters as for type_unification. Returns 0 if the
9566 type deduction succeeds, 1 otherwise. The parameter STRICT is a
9567 bitwise or of the following flags:
9569 UNIFY_ALLOW_NONE:
9570 Require an exact match between PARM and ARG.
9571 UNIFY_ALLOW_MORE_CV_QUAL:
9572 Allow the deduced ARG to be more cv-qualified (by qualification
9573 conversion) than ARG.
9574 UNIFY_ALLOW_LESS_CV_QUAL:
9575 Allow the deduced ARG to be less cv-qualified than ARG.
9576 UNIFY_ALLOW_DERIVED:
9577 Allow the deduced ARG to be a template base class of ARG,
9578 or a pointer to a template base class of the type pointed to by
9579 ARG.
9580 UNIFY_ALLOW_INTEGER:
9581 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
9582 case for more information.
9583 UNIFY_ALLOW_OUTER_LEVEL:
9584 This is the outermost level of a deduction. Used to determine validity
9585 of qualification conversions. A valid qualification conversion must
9586 have const qualified pointers leading up to the inner type which
9587 requires additional CV quals, except at the outer level, where const
9588 is not required [conv.qual]. It would be normal to set this flag in
9589 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
9590 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
9591 This is the outermost level of a deduction, and PARM can be more CV
9592 qualified at this point.
9593 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
9594 This is the outermost level of a deduction, and PARM can be less CV
9595 qualified at this point.
9596 UNIFY_ALLOW_MAX_CORRECTION:
9597 This is an INTEGER_TYPE's maximum value. Used if the range may
9598 have been derived from a size specification, such as an array size.
9599 If the size was given by a nontype template parameter N, the maximum
9600 value will have the form N-1. The flag says that we can (and indeed
9601 must) unify N with (ARG + 1), an exception to the normal rules on
9602 folding PARM. */
9604 static int
9605 unify (tree tparms, tree targs, tree parm, tree arg, int strict)
9607 int idx;
9608 tree targ;
9609 tree tparm;
9610 int strict_in = strict;
9612 /* I don't think this will do the right thing with respect to types.
9613 But the only case I've seen it in so far has been array bounds, where
9614 signedness is the only information lost, and I think that will be
9615 okay. */
9616 while (TREE_CODE (parm) == NOP_EXPR)
9617 parm = TREE_OPERAND (parm, 0);
9619 if (arg == error_mark_node)
9620 return 1;
9621 if (arg == unknown_type_node)
9622 /* We can't deduce anything from this, but we might get all the
9623 template args from other function args. */
9624 return 0;
9626 /* If PARM uses template parameters, then we can't bail out here,
9627 even if ARG == PARM, since we won't record unifications for the
9628 template parameters. We might need them if we're trying to
9629 figure out which of two things is more specialized. */
9630 if (arg == parm && !uses_template_parms (parm))
9631 return 0;
9633 /* Immediately reject some pairs that won't unify because of
9634 cv-qualification mismatches. */
9635 if (TREE_CODE (arg) == TREE_CODE (parm)
9636 && TYPE_P (arg)
9637 /* It is the elements of the array which hold the cv quals of an array
9638 type, and the elements might be template type parms. We'll check
9639 when we recurse. */
9640 && TREE_CODE (arg) != ARRAY_TYPE
9641 /* We check the cv-qualifiers when unifying with template type
9642 parameters below. We want to allow ARG `const T' to unify with
9643 PARM `T' for example, when computing which of two templates
9644 is more specialized, for example. */
9645 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
9646 && !check_cv_quals_for_unify (strict_in, arg, parm))
9647 return 1;
9649 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
9650 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
9651 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
9652 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
9653 strict &= ~UNIFY_ALLOW_DERIVED;
9654 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
9655 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
9656 strict &= ~UNIFY_ALLOW_MAX_CORRECTION;
9658 switch (TREE_CODE (parm))
9660 case TYPENAME_TYPE:
9661 case SCOPE_REF:
9662 case UNBOUND_CLASS_TEMPLATE:
9663 /* In a type which contains a nested-name-specifier, template
9664 argument values cannot be deduced for template parameters used
9665 within the nested-name-specifier. */
9666 return 0;
9668 case TEMPLATE_TYPE_PARM:
9669 case TEMPLATE_TEMPLATE_PARM:
9670 case BOUND_TEMPLATE_TEMPLATE_PARM:
9671 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
9673 if (TEMPLATE_TYPE_LEVEL (parm)
9674 != template_decl_level (tparm))
9675 /* The PARM is not one we're trying to unify. Just check
9676 to see if it matches ARG. */
9677 return (TREE_CODE (arg) == TREE_CODE (parm)
9678 && same_type_p (parm, arg)) ? 0 : 1;
9679 idx = TEMPLATE_TYPE_IDX (parm);
9680 targ = TREE_VEC_ELT (targs, idx);
9681 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
9683 /* Check for mixed types and values. */
9684 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
9685 && TREE_CODE (tparm) != TYPE_DECL)
9686 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
9687 && TREE_CODE (tparm) != TEMPLATE_DECL))
9688 return 1;
9690 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
9692 /* ARG must be constructed from a template class or a template
9693 template parameter. */
9694 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
9695 && (TREE_CODE (arg) != RECORD_TYPE || !CLASSTYPE_TEMPLATE_INFO (arg)))
9696 return 1;
9699 tree parmtmpl = TYPE_TI_TEMPLATE (parm);
9700 tree parmvec = TYPE_TI_ARGS (parm);
9701 tree argvec = TYPE_TI_ARGS (arg);
9702 tree argtmplvec
9703 = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_TI_TEMPLATE (arg));
9704 int i;
9706 /* The parameter and argument roles have to be switched here
9707 in order to handle default arguments properly. For example,
9708 template<template <class> class TT> void f(TT<int>)
9709 should be able to accept vector<int> which comes from
9710 template <class T, class Allocator = allocator>
9711 class vector. */
9713 if (coerce_template_parms (argtmplvec, parmvec, parmtmpl, 0, 1)
9714 == error_mark_node)
9715 return 1;
9717 /* Deduce arguments T, i from TT<T> or TT<i>.
9718 We check each element of PARMVEC and ARGVEC individually
9719 rather than the whole TREE_VEC since they can have
9720 different number of elements. */
9722 for (i = 0; i < TREE_VEC_LENGTH (parmvec); ++i)
9724 tree t = TREE_VEC_ELT (parmvec, i);
9726 if (unify (tparms, targs, t,
9727 TREE_VEC_ELT (argvec, i),
9728 UNIFY_ALLOW_NONE))
9729 return 1;
9732 arg = TYPE_TI_TEMPLATE (arg);
9734 /* Fall through to deduce template name. */
9737 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
9738 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
9740 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
9742 /* Simple cases: Value already set, does match or doesn't. */
9743 if (targ != NULL_TREE && template_args_equal (targ, arg))
9744 return 0;
9745 else if (targ)
9746 return 1;
9748 else
9750 /* If PARM is `const T' and ARG is only `int', we don't have
9751 a match unless we are allowing additional qualification.
9752 If ARG is `const int' and PARM is just `T' that's OK;
9753 that binds `const int' to `T'. */
9754 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
9755 arg, parm))
9756 return 1;
9758 /* Consider the case where ARG is `const volatile int' and
9759 PARM is `const T'. Then, T should be `volatile int'. */
9760 arg = cp_build_qualified_type_real
9761 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
9762 if (arg == error_mark_node)
9763 return 1;
9765 /* Simple cases: Value already set, does match or doesn't. */
9766 if (targ != NULL_TREE && same_type_p (targ, arg))
9767 return 0;
9768 else if (targ)
9769 return 1;
9771 /* Make sure that ARG is not a variable-sized array. (Note
9772 that were talking about variable-sized arrays (like
9773 `int[n]'), rather than arrays of unknown size (like
9774 `int[]').) We'll get very confused by such a type since
9775 the bound of the array will not be computable in an
9776 instantiation. Besides, such types are not allowed in
9777 ISO C++, so we can do as we please here. */
9778 if (variably_modified_type_p (arg))
9779 return 1;
9782 TREE_VEC_ELT (targs, idx) = arg;
9783 return 0;
9785 case TEMPLATE_PARM_INDEX:
9786 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
9788 if (TEMPLATE_PARM_LEVEL (parm)
9789 != template_decl_level (tparm))
9790 /* The PARM is not one we're trying to unify. Just check
9791 to see if it matches ARG. */
9792 return !(TREE_CODE (arg) == TREE_CODE (parm)
9793 && cp_tree_equal (parm, arg));
9795 idx = TEMPLATE_PARM_IDX (parm);
9796 targ = TREE_VEC_ELT (targs, idx);
9798 if (targ)
9799 return !cp_tree_equal (targ, arg);
9801 /* [temp.deduct.type] If, in the declaration of a function template
9802 with a non-type template-parameter, the non-type
9803 template-parameter is used in an expression in the function
9804 parameter-list and, if the corresponding template-argument is
9805 deduced, the template-argument type shall match the type of the
9806 template-parameter exactly, except that a template-argument
9807 deduced from an array bound may be of any integral type.
9808 The non-type parameter might use already deduced type parameters. */
9809 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
9810 if (!TREE_TYPE (arg))
9811 /* Template-parameter dependent expression. Just accept it for now.
9812 It will later be processed in convert_template_argument. */
9814 else if (same_type_p (TREE_TYPE (arg), tparm))
9815 /* OK */;
9816 else if ((strict & UNIFY_ALLOW_INTEGER)
9817 && (TREE_CODE (tparm) == INTEGER_TYPE
9818 || TREE_CODE (tparm) == BOOLEAN_TYPE))
9819 /* OK */;
9820 else if (uses_template_parms (tparm))
9821 /* We haven't deduced the type of this parameter yet. Try again
9822 later. */
9823 return 0;
9824 else
9825 return 1;
9827 TREE_VEC_ELT (targs, idx) = arg;
9828 return 0;
9830 case PTRMEM_CST:
9832 /* A pointer-to-member constant can be unified only with
9833 another constant. */
9834 if (TREE_CODE (arg) != PTRMEM_CST)
9835 return 1;
9837 /* Just unify the class member. It would be useless (and possibly
9838 wrong, depending on the strict flags) to unify also
9839 PTRMEM_CST_CLASS, because we want to be sure that both parm and
9840 arg refer to the same variable, even if through different
9841 classes. For instance:
9843 struct A { int x; };
9844 struct B : A { };
9846 Unification of &A::x and &B::x must succeed. */
9847 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
9848 PTRMEM_CST_MEMBER (arg), strict);
9851 case POINTER_TYPE:
9853 if (TREE_CODE (arg) != POINTER_TYPE)
9854 return 1;
9856 /* [temp.deduct.call]
9858 A can be another pointer or pointer to member type that can
9859 be converted to the deduced A via a qualification
9860 conversion (_conv.qual_).
9862 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
9863 This will allow for additional cv-qualification of the
9864 pointed-to types if appropriate. */
9866 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
9867 /* The derived-to-base conversion only persists through one
9868 level of pointers. */
9869 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
9871 return unify (tparms, targs, TREE_TYPE (parm),
9872 TREE_TYPE (arg), strict);
9875 case REFERENCE_TYPE:
9876 if (TREE_CODE (arg) != REFERENCE_TYPE)
9877 return 1;
9878 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
9879 strict & UNIFY_ALLOW_MORE_CV_QUAL);
9881 case ARRAY_TYPE:
9882 if (TREE_CODE (arg) != ARRAY_TYPE)
9883 return 1;
9884 if ((TYPE_DOMAIN (parm) == NULL_TREE)
9885 != (TYPE_DOMAIN (arg) == NULL_TREE))
9886 return 1;
9887 if (TYPE_DOMAIN (parm) != NULL_TREE
9888 && unify (tparms, targs, TYPE_DOMAIN (parm),
9889 TYPE_DOMAIN (arg), UNIFY_ALLOW_NONE) != 0)
9890 return 1;
9891 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
9892 strict & UNIFY_ALLOW_MORE_CV_QUAL);
9894 case REAL_TYPE:
9895 case COMPLEX_TYPE:
9896 case VECTOR_TYPE:
9897 case INTEGER_TYPE:
9898 case BOOLEAN_TYPE:
9899 case VOID_TYPE:
9900 if (TREE_CODE (arg) != TREE_CODE (parm))
9901 return 1;
9903 if (TREE_CODE (parm) == INTEGER_TYPE
9904 && TREE_CODE (TYPE_MAX_VALUE (parm)) != INTEGER_CST)
9906 if (TYPE_MIN_VALUE (parm) && TYPE_MIN_VALUE (arg)
9907 && unify (tparms, targs, TYPE_MIN_VALUE (parm),
9908 TYPE_MIN_VALUE (arg), UNIFY_ALLOW_INTEGER))
9909 return 1;
9910 if (TYPE_MAX_VALUE (parm) && TYPE_MAX_VALUE (arg)
9911 && unify (tparms, targs, TYPE_MAX_VALUE (parm),
9912 TYPE_MAX_VALUE (arg),
9913 UNIFY_ALLOW_INTEGER | UNIFY_ALLOW_MAX_CORRECTION))
9914 return 1;
9916 /* We have already checked cv-qualification at the top of the
9917 function. */
9918 else if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
9919 return 1;
9921 /* As far as unification is concerned, this wins. Later checks
9922 will invalidate it if necessary. */
9923 return 0;
9925 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
9926 /* Type INTEGER_CST can come from ordinary constant template args. */
9927 case INTEGER_CST:
9928 while (TREE_CODE (arg) == NOP_EXPR)
9929 arg = TREE_OPERAND (arg, 0);
9931 if (TREE_CODE (arg) != INTEGER_CST)
9932 return 1;
9933 return !tree_int_cst_equal (parm, arg);
9935 case TREE_VEC:
9937 int i;
9938 if (TREE_CODE (arg) != TREE_VEC)
9939 return 1;
9940 if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
9941 return 1;
9942 for (i = 0; i < TREE_VEC_LENGTH (parm); ++i)
9943 if (unify (tparms, targs,
9944 TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
9945 UNIFY_ALLOW_NONE))
9946 return 1;
9947 return 0;
9950 case RECORD_TYPE:
9951 case UNION_TYPE:
9952 if (TREE_CODE (arg) != TREE_CODE (parm))
9953 return 1;
9955 if (TYPE_PTRMEMFUNC_P (parm))
9957 if (!TYPE_PTRMEMFUNC_P (arg))
9958 return 1;
9960 return unify (tparms, targs,
9961 TYPE_PTRMEMFUNC_FN_TYPE (parm),
9962 TYPE_PTRMEMFUNC_FN_TYPE (arg),
9963 strict);
9966 if (CLASSTYPE_TEMPLATE_INFO (parm))
9968 tree t = NULL_TREE;
9970 if (strict_in & UNIFY_ALLOW_DERIVED)
9972 /* First, we try to unify the PARM and ARG directly. */
9973 t = try_class_unification (tparms, targs,
9974 parm, arg);
9976 if (!t)
9978 /* Fallback to the special case allowed in
9979 [temp.deduct.call]:
9981 If P is a class, and P has the form
9982 template-id, then A can be a derived class of
9983 the deduced A. Likewise, if P is a pointer to
9984 a class of the form template-id, A can be a
9985 pointer to a derived class pointed to by the
9986 deduced A. */
9987 t = get_template_base (tparms, targs,
9988 parm, arg);
9990 if (! t || t == error_mark_node)
9991 return 1;
9994 else if (CLASSTYPE_TEMPLATE_INFO (arg)
9995 && (CLASSTYPE_TI_TEMPLATE (parm)
9996 == CLASSTYPE_TI_TEMPLATE (arg)))
9997 /* Perhaps PARM is something like S<U> and ARG is S<int>.
9998 Then, we should unify `int' and `U'. */
9999 t = arg;
10000 else
10001 /* There's no chance of unification succeeding. */
10002 return 1;
10004 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
10005 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE);
10007 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
10008 return 1;
10009 return 0;
10011 case METHOD_TYPE:
10012 case FUNCTION_TYPE:
10013 if (TREE_CODE (arg) != TREE_CODE (parm))
10014 return 1;
10016 if (unify (tparms, targs, TREE_TYPE (parm),
10017 TREE_TYPE (arg), UNIFY_ALLOW_NONE))
10018 return 1;
10019 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
10020 TYPE_ARG_TYPES (arg), 1,
10021 DEDUCE_EXACT, 0, -1);
10023 case OFFSET_TYPE:
10024 if (TREE_CODE (arg) != OFFSET_TYPE)
10025 return 1;
10026 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
10027 TYPE_OFFSET_BASETYPE (arg), UNIFY_ALLOW_NONE))
10028 return 1;
10029 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
10030 strict);
10032 case CONST_DECL:
10033 if (DECL_TEMPLATE_PARM_P (parm))
10034 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict);
10035 if (arg != decl_constant_value (parm))
10036 return 1;
10037 return 0;
10039 case FIELD_DECL:
10040 case TEMPLATE_DECL:
10041 /* Matched cases are handled by the ARG == PARM test above. */
10042 return 1;
10044 case MINUS_EXPR:
10045 if (tree_int_cst_equal (TREE_OPERAND (parm, 1), integer_one_node)
10046 && (strict_in & UNIFY_ALLOW_MAX_CORRECTION))
10048 /* We handle this case specially, since it comes up with
10049 arrays. In particular, something like:
10051 template <int N> void f(int (&x)[N]);
10053 Here, we are trying to unify the range type, which
10054 looks like [0 ... (N - 1)]. */
10055 tree t, t1, t2;
10056 t1 = TREE_OPERAND (parm, 0);
10057 t2 = TREE_OPERAND (parm, 1);
10059 t = fold (build (PLUS_EXPR, integer_type_node, arg, t2));
10061 return unify (tparms, targs, t1, t, strict);
10063 /* Else fall through. */
10065 default:
10066 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (parm))))
10069 /* We're looking at an expression. This can happen with
10070 something like:
10072 template <int I>
10073 void foo(S<I>, S<I + 2>);
10075 This is a "nondeduced context":
10077 [deduct.type]
10079 The nondeduced contexts are:
10081 --A type that is a template-id in which one or more of
10082 the template-arguments is an expression that references
10083 a template-parameter.
10085 In these cases, we assume deduction succeeded, but don't
10086 actually infer any unifications. */
10088 if (!uses_template_parms (parm)
10089 && !template_args_equal (parm, arg))
10090 return 1;
10091 else
10092 return 0;
10094 else
10095 sorry ("use of `%s' in template type unification",
10096 tree_code_name [(int) TREE_CODE (parm)]);
10098 return 1;
10102 /* Called if RESULT is explicitly instantiated, or is a member of an
10103 explicitly instantiated class, or if using -frepo and the
10104 instantiation of RESULT has been assigned to this file. */
10106 void
10107 mark_decl_instantiated (tree result, int extern_p)
10109 /* We used to set this unconditionally; we moved that to
10110 do_decl_instantiation so it wouldn't get set on members of
10111 explicit class template instantiations. But we still need to set
10112 it here for the 'extern template' case in order to suppress
10113 implicit instantiations. */
10114 if (extern_p)
10115 SET_DECL_EXPLICIT_INSTANTIATION (result);
10117 /* If this entity has already been written out, it's too late to
10118 make any modifications. */
10119 if (TREE_ASM_WRITTEN (result))
10120 return;
10122 if (TREE_CODE (result) != FUNCTION_DECL)
10123 /* The TREE_PUBLIC flag for function declarations will have been
10124 set correctly by tsubst. */
10125 TREE_PUBLIC (result) = 1;
10127 /* This might have been set by an earlier implicit instantiation. */
10128 DECL_COMDAT (result) = 0;
10130 if (! extern_p)
10132 DECL_INTERFACE_KNOWN (result) = 1;
10133 DECL_NOT_REALLY_EXTERN (result) = 1;
10135 /* Always make artificials weak. */
10136 if (DECL_ARTIFICIAL (result) && flag_weak)
10137 comdat_linkage (result);
10138 /* For WIN32 we also want to put explicit instantiations in
10139 linkonce sections. */
10140 else if (TREE_PUBLIC (result))
10141 maybe_make_one_only (result);
10144 if (TREE_CODE (result) == FUNCTION_DECL)
10145 defer_fn (result);
10148 /* Given two function templates PAT1 and PAT2, return:
10150 DEDUCE should be DEDUCE_EXACT or DEDUCE_ORDER.
10152 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
10153 -1 if PAT2 is more specialized than PAT1.
10154 0 if neither is more specialized.
10156 LEN is passed through to fn_type_unification. */
10159 more_specialized (tree pat1, tree pat2, int deduce, int len)
10161 tree targs;
10162 int winner = 0;
10164 /* If template argument deduction succeeds, we substitute the
10165 resulting arguments into non-deduced contexts. While doing that,
10166 we must be aware that we may encounter dependent types. */
10167 ++processing_template_decl;
10168 targs = get_bindings_real (pat1, DECL_TEMPLATE_RESULT (pat2),
10169 NULL_TREE, 0, deduce, len);
10170 if (targs)
10171 --winner;
10173 targs = get_bindings_real (pat2, DECL_TEMPLATE_RESULT (pat1),
10174 NULL_TREE, 0, deduce, len);
10175 if (targs)
10176 ++winner;
10177 --processing_template_decl;
10179 return winner;
10182 /* Given two class template specialization list nodes PAT1 and PAT2, return:
10184 1 if PAT1 is more specialized than PAT2 as described in [temp.class.order].
10185 -1 if PAT2 is more specialized than PAT1.
10186 0 if neither is more specialized.
10188 FULL_ARGS is the full set of template arguments that triggers this
10189 partial ordering. */
10192 more_specialized_class (tree pat1, tree pat2, tree full_args)
10194 tree targs;
10195 int winner = 0;
10197 /* Just like what happens for functions, if we are ordering between
10198 different class template specializations, we may encounter dependent
10199 types in the arguments, and we need our dependency check functions
10200 to behave correctly. */
10201 ++processing_template_decl;
10202 targs = get_class_bindings (TREE_VALUE (pat1), TREE_PURPOSE (pat1),
10203 add_outermost_template_args (full_args, TREE_PURPOSE (pat2)));
10204 if (targs)
10205 --winner;
10207 targs = get_class_bindings (TREE_VALUE (pat2), TREE_PURPOSE (pat2),
10208 add_outermost_template_args (full_args, TREE_PURPOSE (pat1)));
10209 if (targs)
10210 ++winner;
10211 --processing_template_decl;
10213 return winner;
10216 /* Return the template arguments that will produce the function signature
10217 DECL from the function template FN, with the explicit template
10218 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is 1, the return type must
10219 also match. Return NULL_TREE if no satisfactory arguments could be
10220 found. DEDUCE and LEN are passed through to fn_type_unification. */
10222 static tree
10223 get_bindings_real (tree fn,
10224 tree decl,
10225 tree explicit_args,
10226 int check_rettype,
10227 int deduce,
10228 int len)
10230 int ntparms = DECL_NTPARMS (fn);
10231 tree targs = make_tree_vec (ntparms);
10232 tree decl_type;
10233 tree decl_arg_types;
10234 int i;
10236 /* Substitute the explicit template arguments into the type of DECL.
10237 The call to fn_type_unification will handle substitution into the
10238 FN. */
10239 decl_type = TREE_TYPE (decl);
10240 if (explicit_args && uses_template_parms (decl_type))
10242 tree tmpl;
10243 tree converted_args;
10245 if (DECL_TEMPLATE_INFO (decl))
10246 tmpl = DECL_TI_TEMPLATE (decl);
10247 else
10248 /* We can get here for some invalid specializations. */
10249 return NULL_TREE;
10251 converted_args
10252 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
10253 explicit_args, NULL_TREE,
10254 tf_none, /*require_all_arguments=*/0));
10255 if (converted_args == error_mark_node)
10256 return NULL_TREE;
10258 decl_type = tsubst (decl_type, converted_args, tf_none, NULL_TREE);
10259 if (decl_type == error_mark_node)
10260 return NULL_TREE;
10263 decl_arg_types = TYPE_ARG_TYPES (decl_type);
10264 /* Never do unification on the 'this' parameter. */
10265 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
10266 decl_arg_types = TREE_CHAIN (decl_arg_types);
10268 i = fn_type_unification (fn, explicit_args, targs,
10269 decl_arg_types,
10270 (check_rettype || DECL_CONV_FN_P (fn)
10271 ? TREE_TYPE (decl_type) : NULL_TREE),
10272 deduce, len);
10274 if (i != 0)
10275 return NULL_TREE;
10277 return targs;
10280 /* For most uses, we want to check the return type. */
10282 static tree
10283 get_bindings (tree fn, tree decl, tree explicit_args)
10285 return get_bindings_real (fn, decl, explicit_args, 1, DEDUCE_EXACT, -1);
10288 /* But for resolve_overloaded_unification, we only care about the parameter
10289 types. */
10291 static tree
10292 get_bindings_overload (tree fn, tree decl, tree explicit_args)
10294 return get_bindings_real (fn, decl, explicit_args, 0, DEDUCE_EXACT, -1);
10297 /* Return the innermost template arguments that, when applied to a
10298 template specialization whose innermost template parameters are
10299 TPARMS, and whose specialization arguments are PARMS, yield the
10300 ARGS.
10302 For example, suppose we have:
10304 template <class T, class U> struct S {};
10305 template <class T> struct S<T*, int> {};
10307 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
10308 {T}, the PARMS will be {T*, int} and the ARGS will be {double*,
10309 int}. The resulting vector will be {double}, indicating that `T'
10310 is bound to `double'. */
10312 static tree
10313 get_class_bindings (tree tparms, tree parms, tree args)
10315 int i, ntparms = TREE_VEC_LENGTH (tparms);
10316 tree vec = make_tree_vec (ntparms);
10318 if (unify (tparms, vec, parms, INNERMOST_TEMPLATE_ARGS (args),
10319 UNIFY_ALLOW_NONE))
10320 return NULL_TREE;
10322 for (i = 0; i < ntparms; ++i)
10323 if (! TREE_VEC_ELT (vec, i))
10324 return NULL_TREE;
10326 if (verify_class_unification (vec, parms, args))
10327 return NULL_TREE;
10329 return vec;
10332 /* In INSTANTIATIONS is a list of <INSTANTIATION, TEMPLATE> pairs.
10333 Pick the most specialized template, and return the corresponding
10334 instantiation, or if there is no corresponding instantiation, the
10335 template itself. If there is no most specialized template,
10336 error_mark_node is returned. If there are no templates at all,
10337 NULL_TREE is returned. */
10339 tree
10340 most_specialized_instantiation (tree instantiations)
10342 tree fn, champ;
10343 int fate;
10345 if (!instantiations)
10346 return NULL_TREE;
10348 champ = instantiations;
10349 for (fn = TREE_CHAIN (instantiations); fn; fn = TREE_CHAIN (fn))
10351 fate = more_specialized (TREE_VALUE (champ), TREE_VALUE (fn),
10352 DEDUCE_EXACT, -1);
10353 if (fate == 1)
10355 else
10357 if (fate == 0)
10359 fn = TREE_CHAIN (fn);
10360 if (! fn)
10361 return error_mark_node;
10363 champ = fn;
10367 for (fn = instantiations; fn && fn != champ; fn = TREE_CHAIN (fn))
10369 fate = more_specialized (TREE_VALUE (champ), TREE_VALUE (fn),
10370 DEDUCE_EXACT, -1);
10371 if (fate != 1)
10372 return error_mark_node;
10375 return TREE_PURPOSE (champ) ? TREE_PURPOSE (champ) : TREE_VALUE (champ);
10378 /* Return the most specialized of the list of templates in FNS that can
10379 produce an instantiation matching DECL, given the explicit template
10380 arguments EXPLICIT_ARGS. */
10382 static tree
10383 most_specialized (tree fns, tree decl, tree explicit_args)
10385 tree candidates = NULL_TREE;
10386 tree fn, args;
10388 for (fn = fns; fn; fn = TREE_CHAIN (fn))
10390 tree candidate = TREE_VALUE (fn);
10392 args = get_bindings (candidate, decl, explicit_args);
10393 if (args)
10394 candidates = tree_cons (NULL_TREE, candidate, candidates);
10397 return most_specialized_instantiation (candidates);
10400 /* If DECL is a specialization of some template, return the most
10401 general such template. Otherwise, returns NULL_TREE.
10403 For example, given:
10405 template <class T> struct S { template <class U> void f(U); };
10407 if TMPL is `template <class U> void S<int>::f(U)' this will return
10408 the full template. This function will not trace past partial
10409 specializations, however. For example, given in addition:
10411 template <class T> struct S<T*> { template <class U> void f(U); };
10413 if TMPL is `template <class U> void S<int*>::f(U)' this will return
10414 `template <class T> template <class U> S<T*>::f(U)'. */
10416 tree
10417 most_general_template (tree decl)
10419 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
10420 an immediate specialization. */
10421 if (TREE_CODE (decl) == FUNCTION_DECL)
10423 if (DECL_TEMPLATE_INFO (decl)) {
10424 decl = DECL_TI_TEMPLATE (decl);
10426 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
10427 template friend. */
10428 if (TREE_CODE (decl) != TEMPLATE_DECL)
10429 return NULL_TREE;
10430 } else
10431 return NULL_TREE;
10434 /* Look for more and more general templates. */
10435 while (DECL_TEMPLATE_INFO (decl))
10437 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
10438 (See cp-tree.h for details.) */
10439 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
10440 break;
10442 if (CLASS_TYPE_P (TREE_TYPE (decl))
10443 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
10444 break;
10446 /* Stop if we run into an explicitly specialized class template. */
10447 if (!DECL_NAMESPACE_SCOPE_P (decl)
10448 && DECL_CONTEXT (decl)
10449 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
10450 break;
10452 decl = DECL_TI_TEMPLATE (decl);
10455 return decl;
10458 /* Return the most specialized of the class template specializations
10459 of TMPL which can produce an instantiation matching ARGS, or
10460 error_mark_node if the choice is ambiguous. */
10462 static tree
10463 most_specialized_class (tree tmpl, tree args)
10465 tree list = NULL_TREE;
10466 tree t;
10467 tree champ;
10468 int fate;
10470 tmpl = most_general_template (tmpl);
10471 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
10473 tree spec_args
10474 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args);
10475 if (spec_args)
10477 list = tree_cons (TREE_PURPOSE (t), TREE_VALUE (t), list);
10478 TREE_TYPE (list) = TREE_TYPE (t);
10482 if (! list)
10483 return NULL_TREE;
10485 t = list;
10486 champ = t;
10487 t = TREE_CHAIN (t);
10488 for (; t; t = TREE_CHAIN (t))
10490 fate = more_specialized_class (champ, t, args);
10491 if (fate == 1)
10493 else
10495 if (fate == 0)
10497 t = TREE_CHAIN (t);
10498 if (! t)
10499 return error_mark_node;
10501 champ = t;
10505 for (t = list; t && t != champ; t = TREE_CHAIN (t))
10507 fate = more_specialized_class (champ, t, args);
10508 if (fate != 1)
10509 return error_mark_node;
10512 return champ;
10515 /* Explicitly instantiate DECL. */
10517 void
10518 do_decl_instantiation (tree decl, tree storage)
10520 tree result = NULL_TREE;
10521 int extern_p = 0;
10523 if (!decl)
10524 /* An error occurred, for which grokdeclarator has already issued
10525 an appropriate message. */
10526 return;
10527 else if (! DECL_LANG_SPECIFIC (decl))
10529 error ("explicit instantiation of non-template `%#D'", decl);
10530 return;
10532 else if (TREE_CODE (decl) == VAR_DECL)
10534 /* There is an asymmetry here in the way VAR_DECLs and
10535 FUNCTION_DECLs are handled by grokdeclarator. In the case of
10536 the latter, the DECL we get back will be marked as a
10537 template instantiation, and the appropriate
10538 DECL_TEMPLATE_INFO will be set up. This does not happen for
10539 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
10540 should handle VAR_DECLs as it currently handles
10541 FUNCTION_DECLs. */
10542 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
10543 if (!result || TREE_CODE (result) != VAR_DECL)
10545 error ("no matching template for `%D' found", decl);
10546 return;
10549 else if (TREE_CODE (decl) != FUNCTION_DECL)
10551 error ("explicit instantiation of `%#D'", decl);
10552 return;
10554 else
10555 result = decl;
10557 /* Check for various error cases. Note that if the explicit
10558 instantiation is valid the RESULT will currently be marked as an
10559 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
10560 until we get here. */
10562 if (DECL_TEMPLATE_SPECIALIZATION (result))
10564 /* DR 259 [temp.spec].
10566 Both an explicit instantiation and a declaration of an explicit
10567 specialization shall not appear in a program unless the explicit
10568 instantiation follows a declaration of the explicit specialization.
10570 For a given set of template parameters, if an explicit
10571 instantiation of a template appears after a declaration of an
10572 explicit specialization for that template, the explicit
10573 instantiation has no effect. */
10574 return;
10576 else if (DECL_EXPLICIT_INSTANTIATION (result))
10578 /* [temp.spec]
10580 No program shall explicitly instantiate any template more
10581 than once.
10583 We check DECL_INTERFACE_KNOWN so as not to complain when the first
10584 instantiation was `extern' and the second is not, and EXTERN_P for
10585 the opposite case. If -frepo, chances are we already got marked
10586 as an explicit instantiation because of the repo file. */
10587 if (DECL_INTERFACE_KNOWN (result) && !extern_p && !flag_use_repository)
10588 pedwarn ("duplicate explicit instantiation of `%#D'", result);
10590 /* If we've already instantiated the template, just return now. */
10591 if (DECL_INTERFACE_KNOWN (result))
10592 return;
10594 else if (!DECL_IMPLICIT_INSTANTIATION (result))
10596 error ("no matching template for `%D' found", result);
10597 return;
10599 else if (!DECL_TEMPLATE_INFO (result))
10601 pedwarn ("explicit instantiation of non-template `%#D'", result);
10602 return;
10605 if (storage == NULL_TREE)
10607 else if (storage == ridpointers[(int) RID_EXTERN])
10609 if (pedantic && !in_system_header)
10610 pedwarn ("ISO C++ forbids the use of `extern' on explicit instantiations");
10611 extern_p = 1;
10613 else
10614 error ("storage class `%D' applied to template instantiation",
10615 storage);
10617 SET_DECL_EXPLICIT_INSTANTIATION (result);
10618 mark_decl_instantiated (result, extern_p);
10619 repo_template_instantiated (result, extern_p);
10620 if (! extern_p)
10621 instantiate_decl (result, /*defer_ok=*/1);
10624 void
10625 mark_class_instantiated (tree t, int extern_p)
10627 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
10628 SET_CLASSTYPE_INTERFACE_KNOWN (t);
10629 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
10630 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
10631 if (! extern_p)
10633 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
10634 rest_of_type_compilation (t, 1);
10638 /* Called from do_type_instantiation through binding_table_foreach to
10639 do recursive instantiation for the type bound in ENTRY. */
10640 static void
10641 bt_instantiate_type_proc (binding_entry entry, void *data)
10643 tree storage = *(tree *) data;
10645 if (IS_AGGR_TYPE (entry->type)
10646 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
10647 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
10650 /* Perform an explicit instantiation of template class T. STORAGE, if
10651 non-null, is the RID for extern, inline or static. COMPLAIN is
10652 nonzero if this is called from the parser, zero if called recursively,
10653 since the standard is unclear (as detailed below). */
10655 void
10656 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
10658 int extern_p = 0;
10659 int nomem_p = 0;
10660 int static_p = 0;
10662 if (TREE_CODE (t) == TYPE_DECL)
10663 t = TREE_TYPE (t);
10665 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
10667 error ("explicit instantiation of non-template type `%T'", t);
10668 return;
10671 complete_type (t);
10673 if (!COMPLETE_TYPE_P (t))
10675 if (complain & tf_error)
10676 error ("explicit instantiation of `%#T' before definition of template",
10678 return;
10681 if (storage != NULL_TREE)
10683 if (pedantic && !in_system_header)
10684 pedwarn("ISO C++ forbids the use of `%s' on explicit instantiations",
10685 IDENTIFIER_POINTER (storage));
10687 if (storage == ridpointers[(int) RID_INLINE])
10688 nomem_p = 1;
10689 else if (storage == ridpointers[(int) RID_EXTERN])
10690 extern_p = 1;
10691 else if (storage == ridpointers[(int) RID_STATIC])
10692 static_p = 1;
10693 else
10695 error ("storage class `%D' applied to template instantiation",
10696 storage);
10697 extern_p = 0;
10701 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
10703 /* DR 259 [temp.spec].
10705 Both an explicit instantiation and a declaration of an explicit
10706 specialization shall not appear in a program unless the explicit
10707 instantiation follows a declaration of the explicit specialization.
10709 For a given set of template parameters, if an explicit
10710 instantiation of a template appears after a declaration of an
10711 explicit specialization for that template, the explicit
10712 instantiation has no effect. */
10713 return;
10715 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
10717 /* [temp.spec]
10719 No program shall explicitly instantiate any template more
10720 than once.
10722 If CLASSTYPE_INTERFACE_ONLY, then the first explicit instantiation
10723 was `extern'. If EXTERN_P then the second is. If -frepo, chances
10724 are we already got marked as an explicit instantiation because of the
10725 repo file. All these cases are OK. */
10726 if (!CLASSTYPE_INTERFACE_ONLY (t) && !extern_p && !flag_use_repository
10727 && (complain & tf_error))
10728 pedwarn ("duplicate explicit instantiation of `%#T'", t);
10730 /* If we've already instantiated the template, just return now. */
10731 if (!CLASSTYPE_INTERFACE_ONLY (t))
10732 return;
10735 mark_class_instantiated (t, extern_p);
10736 repo_template_instantiated (t, extern_p);
10738 if (nomem_p)
10739 return;
10742 tree tmp;
10744 /* In contrast to implicit instantiation, where only the
10745 declarations, and not the definitions, of members are
10746 instantiated, we have here:
10748 [temp.explicit]
10750 The explicit instantiation of a class template specialization
10751 implies the instantiation of all of its members not
10752 previously explicitly specialized in the translation unit
10753 containing the explicit instantiation.
10755 Of course, we can't instantiate member template classes, since
10756 we don't have any arguments for them. Note that the standard
10757 is unclear on whether the instantiation of the members are
10758 *explicit* instantiations or not. We choose to be generous,
10759 and not set DECL_EXPLICIT_INSTANTIATION. Therefore, we allow
10760 the explicit instantiation of a class where some of the members
10761 have no definition in the current translation unit. */
10763 if (! static_p)
10764 for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
10765 if (TREE_CODE (tmp) == FUNCTION_DECL
10766 && DECL_TEMPLATE_INSTANTIATION (tmp))
10768 mark_decl_instantiated (tmp, extern_p);
10769 repo_template_instantiated (tmp, extern_p);
10770 if (! extern_p)
10771 instantiate_decl (tmp, /*defer_ok=*/1);
10774 for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
10775 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
10777 mark_decl_instantiated (tmp, extern_p);
10778 repo_template_instantiated (tmp, extern_p);
10779 if (! extern_p)
10780 instantiate_decl (tmp, /*defer_ok=*/1);
10783 if (CLASSTYPE_NESTED_UTDS (t))
10784 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
10785 bt_instantiate_type_proc, &storage);
10789 /* Given a function DECL, which is a specialization of TMPL, modify
10790 DECL to be a re-instantiation of TMPL with the same template
10791 arguments. TMPL should be the template into which tsubst'ing
10792 should occur for DECL, not the most general template.
10794 One reason for doing this is a scenario like this:
10796 template <class T>
10797 void f(const T&, int i);
10799 void g() { f(3, 7); }
10801 template <class T>
10802 void f(const T& t, const int i) { }
10804 Note that when the template is first instantiated, with
10805 instantiate_template, the resulting DECL will have no name for the
10806 first parameter, and the wrong type for the second. So, when we go
10807 to instantiate the DECL, we regenerate it. */
10809 static void
10810 regenerate_decl_from_template (tree decl, tree tmpl)
10812 /* The most general version of TMPL. */
10813 tree gen_tmpl;
10814 /* The arguments used to instantiate DECL, from the most general
10815 template. */
10816 tree args;
10817 tree code_pattern;
10818 tree new_decl;
10819 bool unregistered;
10821 args = DECL_TI_ARGS (decl);
10822 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
10824 /* Unregister the specialization so that when we tsubst we will not
10825 just return DECL. We don't have to unregister DECL from TMPL
10826 because if would only be registered there if it were a partial
10827 instantiation of a specialization, which it isn't: it's a full
10828 instantiation. */
10829 gen_tmpl = most_general_template (tmpl);
10830 unregistered = reregister_specialization (decl, gen_tmpl,
10831 /*new_spec=*/NULL_TREE);
10833 /* If the DECL was not unregistered then something peculiar is
10834 happening: we created a specialization but did not call
10835 register_specialization for it. */
10836 my_friendly_assert (unregistered, 0);
10838 /* Make sure that we can see identifiers, and compute access
10839 correctly. */
10840 push_access_scope (decl);
10842 /* Do the substitution to get the new declaration. */
10843 new_decl = tsubst (code_pattern, args, tf_error, NULL_TREE);
10845 if (TREE_CODE (decl) == VAR_DECL)
10847 /* Set up DECL_INITIAL, since tsubst doesn't. */
10848 if (!DECL_INITIALIZED_IN_CLASS_P (decl))
10849 DECL_INITIAL (new_decl) =
10850 tsubst_expr (DECL_INITIAL (code_pattern), args,
10851 tf_error, DECL_TI_TEMPLATE (decl));
10853 else if (TREE_CODE (decl) == FUNCTION_DECL)
10855 /* Convince duplicate_decls to use the DECL_ARGUMENTS from the
10856 new decl. */
10857 DECL_INITIAL (new_decl) = error_mark_node;
10858 /* And don't complain about a duplicate definition. */
10859 DECL_INITIAL (decl) = NULL_TREE;
10862 pop_access_scope (decl);
10864 /* The immediate parent of the new template is still whatever it was
10865 before, even though tsubst sets DECL_TI_TEMPLATE up as the most
10866 general template. We also reset the DECL_ASSEMBLER_NAME since
10867 tsubst always calculates the name as if the function in question
10868 were really a template instance, and sometimes, with friend
10869 functions, this is not so. See tsubst_friend_function for
10870 details. */
10871 DECL_TI_TEMPLATE (new_decl) = DECL_TI_TEMPLATE (decl);
10872 COPY_DECL_ASSEMBLER_NAME (decl, new_decl);
10873 COPY_DECL_RTL (decl, new_decl);
10874 DECL_USE_TEMPLATE (new_decl) = DECL_USE_TEMPLATE (decl);
10876 /* Call duplicate decls to merge the old and new declarations. */
10877 duplicate_decls (new_decl, decl);
10879 /* Now, re-register the specialization. */
10880 register_specialization (decl, gen_tmpl, args);
10883 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
10884 substituted to get DECL. */
10886 tree
10887 template_for_substitution (tree decl)
10889 tree tmpl = DECL_TI_TEMPLATE (decl);
10891 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
10892 for the instantiation. This is not always the most general
10893 template. Consider, for example:
10895 template <class T>
10896 struct S { template <class U> void f();
10897 template <> void f<int>(); };
10899 and an instantiation of S<double>::f<int>. We want TD to be the
10900 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
10901 while (/* An instantiation cannot have a definition, so we need a
10902 more general template. */
10903 DECL_TEMPLATE_INSTANTIATION (tmpl)
10904 /* We must also deal with friend templates. Given:
10906 template <class T> struct S {
10907 template <class U> friend void f() {};
10910 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
10911 so far as the language is concerned, but that's still
10912 where we get the pattern for the instantiation from. On
10913 other hand, if the definition comes outside the class, say:
10915 template <class T> struct S {
10916 template <class U> friend void f();
10918 template <class U> friend void f() {}
10920 we don't need to look any further. That's what the check for
10921 DECL_INITIAL is for. */
10922 || (TREE_CODE (decl) == FUNCTION_DECL
10923 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
10924 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
10926 /* The present template, TD, should not be a definition. If it
10927 were a definition, we should be using it! Note that we
10928 cannot restructure the loop to just keep going until we find
10929 a template with a definition, since that might go too far if
10930 a specialization was declared, but not defined. */
10931 my_friendly_assert (!(TREE_CODE (decl) == VAR_DECL
10932 && !DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl))),
10933 0);
10935 /* Fetch the more general template. */
10936 tmpl = DECL_TI_TEMPLATE (tmpl);
10939 return tmpl;
10942 /* Produce the definition of D, a _DECL generated from a template. If
10943 DEFER_OK is nonzero, then we don't have to actually do the
10944 instantiation now; we just have to do it sometime. */
10946 tree
10947 instantiate_decl (tree d, int defer_ok)
10949 tree tmpl = DECL_TI_TEMPLATE (d);
10950 tree gen_args;
10951 tree args;
10952 tree td;
10953 tree code_pattern;
10954 tree spec;
10955 tree gen_tmpl;
10956 int pattern_defined;
10957 int need_push;
10958 location_t saved_loc = input_location;
10960 /* This function should only be used to instantiate templates for
10961 functions and static member variables. */
10962 my_friendly_assert (TREE_CODE (d) == FUNCTION_DECL
10963 || TREE_CODE (d) == VAR_DECL, 0);
10965 /* Variables are never deferred; if instantiation is required, they
10966 are instantiated right away. That allows for better code in the
10967 case that an expression refers to the value of the variable --
10968 if the variable has a constant value the referring expression can
10969 take advantage of that fact. */
10970 if (TREE_CODE (d) == VAR_DECL)
10971 defer_ok = 0;
10973 /* Don't instantiate cloned functions. Instead, instantiate the
10974 functions they cloned. */
10975 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
10976 d = DECL_CLONED_FUNCTION (d);
10978 if (DECL_TEMPLATE_INSTANTIATED (d))
10979 /* D has already been instantiated. It might seem reasonable to
10980 check whether or not D is an explicit instantiation, and, if so,
10981 stop here. But when an explicit instantiation is deferred
10982 until the end of the compilation, DECL_EXPLICIT_INSTANTIATION
10983 is set, even though we still need to do the instantiation. */
10984 return d;
10986 /* If we already have a specialization of this declaration, then
10987 there's no reason to instantiate it. Note that
10988 retrieve_specialization gives us both instantiations and
10989 specializations, so we must explicitly check
10990 DECL_TEMPLATE_SPECIALIZATION. */
10991 gen_tmpl = most_general_template (tmpl);
10992 gen_args = DECL_TI_ARGS (d);
10993 spec = retrieve_specialization (gen_tmpl, gen_args);
10994 if (spec != NULL_TREE && DECL_TEMPLATE_SPECIALIZATION (spec))
10995 return spec;
10997 /* This needs to happen before any tsubsting. */
10998 if (! push_tinst_level (d))
10999 return d;
11001 timevar_push (TV_PARSE);
11003 /* We may be in the middle of deferred access check. Disable it now. */
11004 push_deferring_access_checks (dk_no_deferred);
11006 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
11007 for the instantiation. */
11008 td = template_for_substitution (d);
11009 code_pattern = DECL_TEMPLATE_RESULT (td);
11011 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
11012 || DECL_TEMPLATE_SPECIALIZATION (td))
11013 /* In the case of a friend template whose definition is provided
11014 outside the class, we may have too many arguments. Drop the
11015 ones we don't need. The same is true for specializations. */
11016 args = get_innermost_template_args
11017 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
11018 else
11019 args = gen_args;
11021 if (TREE_CODE (d) == FUNCTION_DECL)
11022 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE);
11023 else
11024 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
11026 input_location = DECL_SOURCE_LOCATION (d);
11028 if (pattern_defined)
11030 /* Let the repository code that this template definition is
11031 available.
11033 The repository doesn't need to know about cloned functions
11034 because they never actually show up in the object file. It
11035 does need to know about the clones; those are the symbols
11036 that the linker will be emitting error messages about. */
11037 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (d)
11038 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (d))
11040 tree t;
11042 for (t = TREE_CHAIN (d);
11043 t && DECL_CLONED_FUNCTION_P (t);
11044 t = TREE_CHAIN (t))
11045 repo_template_used (t);
11047 else
11048 repo_template_used (d);
11050 if (at_eof)
11051 import_export_decl (d);
11054 if (!defer_ok)
11056 /* Recheck the substitutions to obtain any warning messages
11057 about ignoring cv qualifiers. */
11058 tree gen = DECL_TEMPLATE_RESULT (gen_tmpl);
11059 tree type = TREE_TYPE (gen);
11061 /* Make sure that we can see identifiers, and compute access
11062 correctly. D is already the target FUNCTION_DECL with the
11063 right context. */
11064 push_access_scope (d);
11066 if (TREE_CODE (gen) == FUNCTION_DECL)
11068 tsubst (DECL_ARGUMENTS (gen), gen_args, tf_error | tf_warning, d);
11069 tsubst (TYPE_RAISES_EXCEPTIONS (type), gen_args,
11070 tf_error | tf_warning, d);
11071 /* Don't simply tsubst the function type, as that will give
11072 duplicate warnings about poor parameter qualifications.
11073 The function arguments are the same as the decl_arguments
11074 without the top level cv qualifiers. */
11075 type = TREE_TYPE (type);
11077 tsubst (type, gen_args, tf_error | tf_warning, d);
11079 pop_access_scope (d);
11082 if (TREE_CODE (d) == VAR_DECL && DECL_INITIALIZED_IN_CLASS_P (d)
11083 && DECL_INITIAL (d) == NULL_TREE)
11084 /* We should have set up DECL_INITIAL in instantiate_class_template. */
11085 abort ();
11086 /* Reject all external templates except inline functions. */
11087 else if (DECL_INTERFACE_KNOWN (d)
11088 && ! DECL_NOT_REALLY_EXTERN (d)
11089 && ! (TREE_CODE (d) == FUNCTION_DECL
11090 && DECL_INLINE (d)))
11091 goto out;
11092 /* Defer all other templates, unless we have been explicitly
11093 forbidden from doing so. We restore the source position here
11094 because it's used by add_pending_template. */
11095 else if (! pattern_defined || defer_ok)
11097 input_location = saved_loc;
11099 if (at_eof && !pattern_defined
11100 && DECL_EXPLICIT_INSTANTIATION (d))
11101 /* [temp.explicit]
11103 The definition of a non-exported function template, a
11104 non-exported member function template, or a non-exported
11105 member function or static data member of a class template
11106 shall be present in every translation unit in which it is
11107 explicitly instantiated. */
11108 pedwarn
11109 ("explicit instantiation of `%D' but no definition available", d);
11111 add_pending_template (d);
11112 goto out;
11115 need_push = !global_bindings_p ();
11116 if (need_push)
11117 push_to_top_level ();
11119 /* Mark D as instantiated so that recursive calls to
11120 instantiate_decl do not try to instantiate it again. */
11121 DECL_TEMPLATE_INSTANTIATED (d) = 1;
11123 /* Regenerate the declaration in case the template has been modified
11124 by a subsequent redeclaration. */
11125 regenerate_decl_from_template (d, td);
11127 /* We already set the file and line above. Reset them now in case
11128 they changed as a result of calling
11129 regenerate_decl_from_template. */
11130 input_location = DECL_SOURCE_LOCATION (d);
11132 if (TREE_CODE (d) == VAR_DECL)
11134 /* Clear out DECL_RTL; whatever was there before may not be right
11135 since we've reset the type of the declaration. */
11136 SET_DECL_RTL (d, NULL_RTX);
11138 DECL_IN_AGGR_P (d) = 0;
11139 import_export_decl (d);
11140 DECL_EXTERNAL (d) = ! DECL_NOT_REALLY_EXTERN (d);
11142 if (DECL_EXTERNAL (d))
11144 /* The fact that this code is executing indicates that:
11146 (1) D is a template static data member, for which a
11147 definition is available.
11149 (2) An implicit or explicit instantiation has occurred.
11151 (3) We are not going to emit a definition of the static
11152 data member at this time.
11154 This situation is peculiar, but it occurs on platforms
11155 without weak symbols when performing an implicit
11156 instantiation. There, we cannot implicitly instantiate a
11157 defined static data member in more than one translation
11158 unit, so import_export_decl marks the declaration as
11159 external; we must rely on explicit instantiation.
11161 Reset instantiated marker to make sure that later
11162 explicit instantiation will be processed. */
11163 DECL_TEMPLATE_INSTANTIATED (d) = 0;
11165 else
11167 /* This is done in analogous to `start_decl'. It is
11168 required for correct access checking. */
11169 push_nested_class (DECL_CONTEXT (d));
11170 cp_finish_decl (d,
11171 (!DECL_INITIALIZED_IN_CLASS_P (d)
11172 ? DECL_INITIAL (d) : NULL_TREE),
11173 NULL_TREE, 0);
11174 /* Normally, pop_nested_class is called by cp_finish_decl
11175 above. But when instantiate_decl is triggered during
11176 instantiate_class_template processing, its DECL_CONTEXT
11177 is still not completed yet, and pop_nested_class isn't
11178 called. */
11179 if (!COMPLETE_TYPE_P (DECL_CONTEXT (d)))
11180 pop_nested_class ();
11183 else if (TREE_CODE (d) == FUNCTION_DECL)
11185 htab_t saved_local_specializations;
11186 tree subst_decl;
11187 tree tmpl_parm;
11188 tree spec_parm;
11190 /* Mark D as instantiated so that recursive calls to
11191 instantiate_decl do not try to instantiate it again. */
11192 DECL_TEMPLATE_INSTANTIATED (d) = 1;
11194 /* Save away the current list, in case we are instantiating one
11195 template from within the body of another. */
11196 saved_local_specializations = local_specializations;
11198 /* Set up the list of local specializations. */
11199 local_specializations = htab_create (37,
11200 hash_local_specialization,
11201 eq_local_specializations,
11202 NULL);
11204 /* Set up context. */
11205 import_export_decl (d);
11206 start_function (NULL_TREE, d, NULL_TREE, SF_PRE_PARSED);
11208 /* Create substitution entries for the parameters. */
11209 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
11210 tmpl_parm = DECL_ARGUMENTS (subst_decl);
11211 spec_parm = DECL_ARGUMENTS (d);
11212 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
11214 register_local_specialization (spec_parm, tmpl_parm);
11215 spec_parm = skip_artificial_parms_for (d, spec_parm);
11216 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
11218 while (tmpl_parm)
11220 register_local_specialization (spec_parm, tmpl_parm);
11221 tmpl_parm = TREE_CHAIN (tmpl_parm);
11222 spec_parm = TREE_CHAIN (spec_parm);
11224 my_friendly_assert (!spec_parm, 20020813);
11226 /* Substitute into the body of the function. */
11227 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
11228 tf_error | tf_warning, tmpl);
11230 /* We don't need the local specializations any more. */
11231 htab_delete (local_specializations);
11232 local_specializations = saved_local_specializations;
11234 /* Finish the function. */
11235 d = finish_function (0);
11236 expand_or_defer_fn (d);
11239 /* We're not deferring instantiation any more. */
11240 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
11242 if (need_push)
11243 pop_from_top_level ();
11245 out:
11246 input_location = saved_loc;
11247 pop_deferring_access_checks ();
11248 pop_tinst_level ();
11250 timevar_pop (TV_PARSE);
11252 return d;
11255 /* Run through the list of templates that we wish we could
11256 instantiate, and instantiate any we can. */
11259 instantiate_pending_templates (void)
11261 tree *t;
11262 tree last = NULL_TREE;
11263 int instantiated_something = 0;
11264 int reconsider;
11265 location_t saved_loc = input_location;
11269 reconsider = 0;
11271 t = &pending_templates;
11272 while (*t)
11274 tree instantiation = TREE_VALUE (*t);
11276 reopen_tinst_level (TREE_PURPOSE (*t));
11278 if (TYPE_P (instantiation))
11280 tree fn;
11282 if (!COMPLETE_TYPE_P (instantiation))
11284 instantiate_class_template (instantiation);
11285 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
11286 for (fn = TYPE_METHODS (instantiation);
11288 fn = TREE_CHAIN (fn))
11289 if (! DECL_ARTIFICIAL (fn))
11290 instantiate_decl (fn, /*defer_ok=*/0);
11291 if (COMPLETE_TYPE_P (instantiation))
11293 instantiated_something = 1;
11294 reconsider = 1;
11298 if (COMPLETE_TYPE_P (instantiation))
11299 /* If INSTANTIATION has been instantiated, then we don't
11300 need to consider it again in the future. */
11301 *t = TREE_CHAIN (*t);
11302 else
11304 last = *t;
11305 t = &TREE_CHAIN (*t);
11308 else
11310 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
11311 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
11313 instantiation = instantiate_decl (instantiation,
11314 /*defer_ok=*/0);
11315 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
11317 instantiated_something = 1;
11318 reconsider = 1;
11322 if (DECL_TEMPLATE_SPECIALIZATION (instantiation)
11323 || DECL_TEMPLATE_INSTANTIATED (instantiation))
11324 /* If INSTANTIATION has been instantiated, then we don't
11325 need to consider it again in the future. */
11326 *t = TREE_CHAIN (*t);
11327 else
11329 last = *t;
11330 t = &TREE_CHAIN (*t);
11333 tinst_depth = 0;
11334 current_tinst_level = NULL_TREE;
11336 last_pending_template = last;
11338 while (reconsider);
11340 input_location = saved_loc;
11341 return instantiated_something;
11344 /* Substitute ARGVEC into T, which is a list of initializers for
11345 either base class or a non-static data member. The TREE_PURPOSEs
11346 are DECLs, and the TREE_VALUEs are the initializer values. Used by
11347 instantiate_decl. */
11349 static tree
11350 tsubst_initializer_list (tree t, tree argvec)
11352 tree inits = NULL_TREE;
11354 for (; t; t = TREE_CHAIN (t))
11356 tree decl;
11357 tree init;
11358 tree val;
11360 decl = tsubst_copy (TREE_PURPOSE (t), argvec, tf_error | tf_warning,
11361 NULL_TREE);
11362 decl = expand_member_init (decl);
11363 if (decl && !DECL_P (decl))
11364 in_base_initializer = 1;
11366 init = tsubst_expr (TREE_VALUE (t), argvec, tf_error | tf_warning,
11367 NULL_TREE);
11368 if (!init)
11370 else if (TREE_CODE (init) == TREE_LIST)
11371 for (val = init; val; val = TREE_CHAIN (val))
11372 TREE_VALUE (val) = convert_from_reference (TREE_VALUE (val));
11373 else if (init != void_type_node)
11374 init = convert_from_reference (init);
11376 in_base_initializer = 0;
11378 if (decl)
11380 init = build_tree_list (decl, init);
11381 TREE_CHAIN (init) = inits;
11382 inits = init;
11385 return inits;
11388 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
11390 static void
11391 set_current_access_from_decl (tree decl)
11393 if (TREE_PRIVATE (decl))
11394 current_access_specifier = access_private_node;
11395 else if (TREE_PROTECTED (decl))
11396 current_access_specifier = access_protected_node;
11397 else
11398 current_access_specifier = access_public_node;
11401 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
11402 is the instantiation (which should have been created with
11403 start_enum) and ARGS are the template arguments to use. */
11405 static void
11406 tsubst_enum (tree tag, tree newtag, tree args)
11408 tree e;
11410 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
11412 tree value;
11413 tree decl;
11415 decl = TREE_VALUE (e);
11416 /* Note that in a template enum, the TREE_VALUE is the
11417 CONST_DECL, not the corresponding INTEGER_CST. */
11418 value = tsubst_expr (DECL_INITIAL (decl),
11419 args, tf_error | tf_warning,
11420 NULL_TREE);
11422 /* Give this enumeration constant the correct access. */
11423 set_current_access_from_decl (decl);
11425 /* Actually build the enumerator itself. */
11426 build_enumerator (DECL_NAME (decl), value, newtag);
11429 finish_enum (newtag);
11430 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
11431 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
11434 /* DECL is a FUNCTION_DECL that is a template specialization. Return
11435 its type -- but without substituting the innermost set of template
11436 arguments. So, innermost set of template parameters will appear in
11437 the type. */
11439 tree
11440 get_mostly_instantiated_function_type (tree decl)
11442 tree fn_type;
11443 tree tmpl;
11444 tree targs;
11445 tree tparms;
11446 int parm_depth;
11448 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11449 targs = DECL_TI_ARGS (decl);
11450 tparms = DECL_TEMPLATE_PARMS (tmpl);
11451 parm_depth = TMPL_PARMS_DEPTH (tparms);
11453 /* There should be as many levels of arguments as there are levels
11454 of parameters. */
11455 my_friendly_assert (parm_depth == TMPL_ARGS_DEPTH (targs), 0);
11457 fn_type = TREE_TYPE (tmpl);
11459 if (parm_depth == 1)
11460 /* No substitution is necessary. */
11462 else
11464 int i;
11465 tree partial_args;
11467 /* Replace the innermost level of the TARGS with NULL_TREEs to
11468 let tsubst know not to substitute for those parameters. */
11469 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
11470 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
11471 SET_TMPL_ARGS_LEVEL (partial_args, i,
11472 TMPL_ARGS_LEVEL (targs, i));
11473 SET_TMPL_ARGS_LEVEL (partial_args,
11474 TMPL_ARGS_DEPTH (targs),
11475 make_tree_vec (DECL_NTPARMS (tmpl)));
11477 /* Make sure that we can see identifiers, and compute access
11478 correctly. We can just use the context of DECL for the
11479 partial substitution here. It depends only on outer template
11480 parameters, regardless of whether the innermost level is
11481 specialized or not. */
11482 push_access_scope (decl);
11484 ++processing_template_decl;
11485 /* Now, do the (partial) substitution to figure out the
11486 appropriate function type. */
11487 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
11488 --processing_template_decl;
11490 /* Substitute into the template parameters to obtain the real
11491 innermost set of parameters. This step is important if the
11492 innermost set of template parameters contains value
11493 parameters whose types depend on outer template parameters. */
11494 TREE_VEC_LENGTH (partial_args)--;
11495 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
11497 pop_access_scope (decl);
11500 return fn_type;
11503 /* Return truthvalue if we're processing a template different from
11504 the last one involved in diagnostics. */
11506 problematic_instantiation_changed (void)
11508 return last_template_error_tick != tinst_level_tick;
11511 /* Remember current template involved in diagnostics. */
11512 void
11513 record_last_problematic_instantiation (void)
11515 last_template_error_tick = tinst_level_tick;
11518 tree
11519 current_instantiation (void)
11521 return current_tinst_level;
11524 /* [temp.param] Check that template non-type parm TYPE is of an allowable
11525 type. Return zero for ok, nonzero for disallowed. Issue error and
11526 warning messages under control of COMPLAIN. */
11528 static int
11529 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
11531 if (INTEGRAL_TYPE_P (type))
11532 return 0;
11533 else if (POINTER_TYPE_P (type))
11534 return 0;
11535 else if (TYPE_PTR_TO_MEMBER_P (type))
11536 return 0;
11537 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
11538 return 0;
11539 else if (TREE_CODE (type) == TYPENAME_TYPE)
11540 return 0;
11542 if (complain & tf_error)
11543 error ("`%#T' is not a valid type for a template constant parameter",
11544 type);
11545 return 1;
11548 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
11549 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
11551 static bool
11552 dependent_type_p_r (tree type)
11554 tree scope;
11556 /* [temp.dep.type]
11558 A type is dependent if it is:
11560 -- a template parameter. Template template parameters are
11561 types for us (since TYPE_P holds true for them) so we
11562 handle them here. */
11563 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
11564 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
11565 return true;
11566 /* -- a qualified-id with a nested-name-specifier which contains a
11567 class-name that names a dependent type or whose unqualified-id
11568 names a dependent type. */
11569 if (TREE_CODE (type) == TYPENAME_TYPE)
11570 return true;
11571 /* -- a cv-qualified type where the cv-unqualified type is
11572 dependent. */
11573 type = TYPE_MAIN_VARIANT (type);
11574 /* -- a compound type constructed from any dependent type. */
11575 if (TYPE_PTR_TO_MEMBER_P (type))
11576 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
11577 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
11578 (type)));
11579 else if (TREE_CODE (type) == POINTER_TYPE
11580 || TREE_CODE (type) == REFERENCE_TYPE)
11581 return dependent_type_p (TREE_TYPE (type));
11582 else if (TREE_CODE (type) == FUNCTION_TYPE
11583 || TREE_CODE (type) == METHOD_TYPE)
11585 tree arg_type;
11587 if (dependent_type_p (TREE_TYPE (type)))
11588 return true;
11589 for (arg_type = TYPE_ARG_TYPES (type);
11590 arg_type;
11591 arg_type = TREE_CHAIN (arg_type))
11592 if (dependent_type_p (TREE_VALUE (arg_type)))
11593 return true;
11594 return false;
11596 /* -- an array type constructed from any dependent type or whose
11597 size is specified by a constant expression that is
11598 value-dependent. */
11599 if (TREE_CODE (type) == ARRAY_TYPE)
11601 if (TYPE_DOMAIN (type)
11602 && ((value_dependent_expression_p
11603 (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
11604 || (type_dependent_expression_p
11605 (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))))
11606 return true;
11607 return dependent_type_p (TREE_TYPE (type));
11610 /* -- a template-id in which either the template name is a template
11611 parameter ... */
11612 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
11613 return true;
11614 /* ... or any of the template arguments is a dependent type or
11615 an expression that is type-dependent or value-dependent. */
11616 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
11617 && (any_dependent_template_arguments_p
11618 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
11619 return true;
11621 /* All TYPEOF_TYPEs are dependent; if the argument of the `typeof'
11622 expression is not type-dependent, then it should already been
11623 have resolved. */
11624 if (TREE_CODE (type) == TYPEOF_TYPE)
11625 return true;
11627 /* The standard does not specifically mention types that are local
11628 to template functions or local classes, but they should be
11629 considered dependent too. For example:
11631 template <int I> void f() {
11632 enum E { a = I };
11633 S<sizeof (E)> s;
11636 The size of `E' cannot be known until the value of `I' has been
11637 determined. Therefore, `E' must be considered dependent. */
11638 scope = TYPE_CONTEXT (type);
11639 if (scope && TYPE_P (scope))
11640 return dependent_type_p (scope);
11641 else if (scope && TREE_CODE (scope) == FUNCTION_DECL)
11642 return type_dependent_expression_p (scope);
11644 /* Other types are non-dependent. */
11645 return false;
11648 /* Returns TRUE if TYPE is dependent, in the sense of
11649 [temp.dep.type]. */
11651 bool
11652 dependent_type_p (tree type)
11654 /* If there are no template parameters in scope, then there can't be
11655 any dependent types. */
11656 if (!processing_template_decl)
11657 return false;
11659 /* If the type is NULL, we have not computed a type for the entity
11660 in question; in that case, the type is dependent. */
11661 if (!type)
11662 return true;
11664 /* Erroneous types can be considered non-dependent. */
11665 if (type == error_mark_node)
11666 return false;
11668 /* If we have not already computed the appropriate value for TYPE,
11669 do so now. */
11670 if (!TYPE_DEPENDENT_P_VALID (type))
11672 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
11673 TYPE_DEPENDENT_P_VALID (type) = 1;
11676 return TYPE_DEPENDENT_P (type);
11679 /* Returns TRUE if EXPRESSION is dependent, according to CRITERION. */
11681 static bool
11682 dependent_scope_ref_p (tree expression, bool criterion (tree))
11684 tree scope;
11685 tree name;
11687 my_friendly_assert (TREE_CODE (expression) == SCOPE_REF, 20030714);
11689 if (!TYPE_P (TREE_OPERAND (expression, 0)))
11690 return true;
11692 scope = TREE_OPERAND (expression, 0);
11693 name = TREE_OPERAND (expression, 1);
11695 /* [temp.dep.expr]
11697 An id-expression is type-dependent if it contains a
11698 nested-name-specifier that contains a class-name that names a
11699 dependent type. */
11700 /* The suggested resolution to Core Issue 2 implies that if the
11701 qualifying type is the current class, then we must peek
11702 inside it. */
11703 if (DECL_P (name)
11704 && currently_open_class (scope)
11705 && !criterion (name))
11706 return false;
11707 if (dependent_type_p (scope))
11708 return true;
11710 return false;
11713 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
11714 [temp.dep.constexpr] */
11716 bool
11717 value_dependent_expression_p (tree expression)
11719 if (!processing_template_decl)
11720 return false;
11722 /* A name declared with a dependent type. */
11723 if (TREE_CODE (expression) == IDENTIFIER_NODE
11724 || (DECL_P (expression)
11725 && type_dependent_expression_p (expression)))
11726 return true;
11727 /* A non-type template parameter. */
11728 if ((TREE_CODE (expression) == CONST_DECL
11729 && DECL_TEMPLATE_PARM_P (expression))
11730 || TREE_CODE (expression) == TEMPLATE_PARM_INDEX)
11731 return true;
11732 /* A constant with integral or enumeration type and is initialized
11733 with an expression that is value-dependent. */
11734 if (TREE_CODE (expression) == VAR_DECL
11735 && DECL_INITIAL (expression)
11736 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (expression))
11737 && value_dependent_expression_p (DECL_INITIAL (expression)))
11738 return true;
11739 /* These expressions are value-dependent if the type to which the
11740 cast occurs is dependent or the expression being casted is
11741 value-dependent. */
11742 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
11743 || TREE_CODE (expression) == STATIC_CAST_EXPR
11744 || TREE_CODE (expression) == CONST_CAST_EXPR
11745 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
11746 || TREE_CODE (expression) == CAST_EXPR)
11748 tree type = TREE_TYPE (expression);
11749 if (dependent_type_p (type))
11750 return true;
11751 /* A functional cast has a list of operands. */
11752 expression = TREE_OPERAND (expression, 0);
11753 if (!expression)
11755 /* If there are no operands, it must be an expression such
11756 as "int()". This should not happen for aggregate types
11757 because it would form non-constant expressions. */
11758 my_friendly_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type),
11759 20040318);
11761 return false;
11763 if (TREE_CODE (expression) == TREE_LIST)
11767 if (value_dependent_expression_p (TREE_VALUE (expression)))
11768 return true;
11769 expression = TREE_CHAIN (expression);
11771 while (expression);
11772 return false;
11774 else
11775 return value_dependent_expression_p (expression);
11777 /* A `sizeof' expression is value-dependent if the operand is
11778 type-dependent. */
11779 if (TREE_CODE (expression) == SIZEOF_EXPR
11780 || TREE_CODE (expression) == ALIGNOF_EXPR)
11782 expression = TREE_OPERAND (expression, 0);
11783 if (TYPE_P (expression))
11784 return dependent_type_p (expression);
11785 return type_dependent_expression_p (expression);
11787 if (TREE_CODE (expression) == SCOPE_REF)
11788 return dependent_scope_ref_p (expression, value_dependent_expression_p);
11789 if (TREE_CODE (expression) == COMPONENT_REF)
11790 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
11791 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
11792 /* A constant expression is value-dependent if any subexpression is
11793 value-dependent. */
11794 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (expression))))
11796 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
11798 case '1':
11799 return (value_dependent_expression_p
11800 (TREE_OPERAND (expression, 0)));
11801 case '<':
11802 case '2':
11803 return ((value_dependent_expression_p
11804 (TREE_OPERAND (expression, 0)))
11805 || (value_dependent_expression_p
11806 (TREE_OPERAND (expression, 1))));
11807 case 'e':
11809 int i;
11810 for (i = 0; i < first_rtl_op (TREE_CODE (expression)); ++i)
11811 /* In some cases, some of the operands may be missing.
11812 (For example, in the case of PREDECREMENT_EXPR, the
11813 amount to increment by may be missing.) That doesn't
11814 make the expression dependent. */
11815 if (TREE_OPERAND (expression, i)
11816 && (value_dependent_expression_p
11817 (TREE_OPERAND (expression, i))))
11818 return true;
11819 return false;
11824 /* The expression is not value-dependent. */
11825 return false;
11828 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
11829 [temp.dep.expr]. */
11831 bool
11832 type_dependent_expression_p (tree expression)
11834 if (!processing_template_decl)
11835 return false;
11837 if (expression == error_mark_node)
11838 return false;
11840 /* An unresolved name is always dependent. */
11841 if (TREE_CODE (expression) == IDENTIFIER_NODE)
11842 return true;
11844 /* Some expression forms are never type-dependent. */
11845 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
11846 || TREE_CODE (expression) == SIZEOF_EXPR
11847 || TREE_CODE (expression) == ALIGNOF_EXPR
11848 || TREE_CODE (expression) == TYPEID_EXPR
11849 || TREE_CODE (expression) == DELETE_EXPR
11850 || TREE_CODE (expression) == VEC_DELETE_EXPR
11851 || TREE_CODE (expression) == THROW_EXPR)
11852 return false;
11854 /* The types of these expressions depends only on the type to which
11855 the cast occurs. */
11856 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
11857 || TREE_CODE (expression) == STATIC_CAST_EXPR
11858 || TREE_CODE (expression) == CONST_CAST_EXPR
11859 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
11860 || TREE_CODE (expression) == CAST_EXPR)
11861 return dependent_type_p (TREE_TYPE (expression));
11863 /* The types of these expressions depends only on the type created
11864 by the expression. */
11865 if (TREE_CODE (expression) == NEW_EXPR
11866 || TREE_CODE (expression) == VEC_NEW_EXPR)
11868 /* For NEW_EXPR tree nodes created inside a template, either
11869 the object type itself or a TREE_LIST may appear as the
11870 operand 1. */
11871 tree type = TREE_OPERAND (expression, 1);
11872 if (TREE_CODE (type) == TREE_LIST)
11873 /* This is an array type. We need to check array dimensions
11874 as well. */
11875 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
11876 || value_dependent_expression_p
11877 (TREE_OPERAND (TREE_VALUE (type), 1));
11878 else
11879 return dependent_type_p (type);
11882 if (TREE_CODE (expression) == SCOPE_REF
11883 && dependent_scope_ref_p (expression,
11884 type_dependent_expression_p))
11885 return true;
11887 if (TREE_CODE (expression) == FUNCTION_DECL
11888 && DECL_LANG_SPECIFIC (expression)
11889 && DECL_TEMPLATE_INFO (expression)
11890 && (any_dependent_template_arguments_p
11891 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
11892 return true;
11894 if (TREE_CODE (expression) == TEMPLATE_DECL
11895 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
11896 return false;
11898 if (TREE_TYPE (expression) == unknown_type_node)
11900 if (TREE_CODE (expression) == ADDR_EXPR)
11901 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
11902 if (TREE_CODE (expression) == COMPONENT_REF
11903 || TREE_CODE (expression) == OFFSET_REF)
11905 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
11906 return true;
11907 expression = TREE_OPERAND (expression, 1);
11908 if (TREE_CODE (expression) == IDENTIFIER_NODE)
11909 return false;
11912 if (TREE_CODE (expression) == BASELINK)
11913 expression = BASELINK_FUNCTIONS (expression);
11914 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
11916 if (any_dependent_template_arguments_p
11917 (TREE_OPERAND (expression, 1)))
11918 return true;
11919 expression = TREE_OPERAND (expression, 0);
11921 if (TREE_CODE (expression) == OVERLOAD)
11923 while (expression)
11925 if (type_dependent_expression_p (OVL_CURRENT (expression)))
11926 return true;
11927 expression = OVL_NEXT (expression);
11929 return false;
11931 abort ();
11934 return (dependent_type_p (TREE_TYPE (expression)));
11937 /* Returns TRUE if ARGS (a TREE_LIST of arguments to a function call)
11938 contains a type-dependent expression. */
11940 bool
11941 any_type_dependent_arguments_p (tree args)
11943 while (args)
11945 tree arg = TREE_VALUE (args);
11947 if (type_dependent_expression_p (arg))
11948 return true;
11949 args = TREE_CHAIN (args);
11951 return false;
11954 /* Returns TRUE if the ARG (a template argument) is dependent. */
11956 static bool
11957 dependent_template_arg_p (tree arg)
11959 if (!processing_template_decl)
11960 return false;
11962 if (TREE_CODE (arg) == TEMPLATE_DECL
11963 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11964 return dependent_template_p (arg);
11965 else if (TYPE_P (arg))
11966 return dependent_type_p (arg);
11967 else
11968 return (type_dependent_expression_p (arg)
11969 || value_dependent_expression_p (arg));
11972 /* Returns true if ARGS (a collection of template arguments) contains
11973 any dependent arguments. */
11975 bool
11976 any_dependent_template_arguments_p (tree args)
11978 int i;
11979 int j;
11981 if (!args)
11982 return false;
11984 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
11986 tree level = TMPL_ARGS_LEVEL (args, i + 1);
11987 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
11988 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
11989 return true;
11992 return false;
11995 /* Returns TRUE if the template TMPL is dependent. */
11997 bool
11998 dependent_template_p (tree tmpl)
12000 if (TREE_CODE (tmpl) == OVERLOAD)
12002 while (tmpl)
12004 if (dependent_template_p (OVL_FUNCTION (tmpl)))
12005 return true;
12006 tmpl = OVL_CHAIN (tmpl);
12008 return false;
12011 /* Template template parameters are dependent. */
12012 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
12013 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
12014 return true;
12015 /* So are qualified names that have not been looked up. */
12016 if (TREE_CODE (tmpl) == SCOPE_REF)
12017 return true;
12018 /* So are member templates of dependent classes. */
12019 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
12020 return dependent_type_p (DECL_CONTEXT (tmpl));
12021 return false;
12024 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
12026 bool
12027 dependent_template_id_p (tree tmpl, tree args)
12029 return (dependent_template_p (tmpl)
12030 || any_dependent_template_arguments_p (args));
12033 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
12034 TYPENAME_TYPE corresponds. Returns ERROR_MARK_NODE if no such TYPE
12035 can be found. Note that this function peers inside uninstantiated
12036 templates and therefore should be used only in extremely limited
12037 situations. */
12039 tree
12040 resolve_typename_type (tree type, bool only_current_p)
12042 tree scope;
12043 tree name;
12044 tree decl;
12045 int quals;
12046 bool pop_p;
12048 my_friendly_assert (TREE_CODE (type) == TYPENAME_TYPE,
12049 20010702);
12051 scope = TYPE_CONTEXT (type);
12052 name = TYPE_IDENTIFIER (type);
12054 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
12055 it first before we can figure out what NAME refers to. */
12056 if (TREE_CODE (scope) == TYPENAME_TYPE)
12057 scope = resolve_typename_type (scope, only_current_p);
12058 /* If we don't know what SCOPE refers to, then we cannot resolve the
12059 TYPENAME_TYPE. */
12060 if (scope == error_mark_node || TREE_CODE (scope) == TYPENAME_TYPE)
12061 return error_mark_node;
12062 /* If the SCOPE is a template type parameter, we have no way of
12063 resolving the name. */
12064 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
12065 return type;
12066 /* If the SCOPE is not the current instantiation, there's no reason
12067 to look inside it. */
12068 if (only_current_p && !currently_open_class (scope))
12069 return error_mark_node;
12070 /* If SCOPE is a partial instantiation, it will not have a valid
12071 TYPE_FIELDS list, so use the original template. */
12072 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
12073 /* Enter the SCOPE so that name lookup will be resolved as if we
12074 were in the class definition. In particular, SCOPE will no
12075 longer be considered a dependent type. */
12076 pop_p = push_scope (scope);
12077 /* Look up the declaration. */
12078 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true);
12079 /* Obtain the set of qualifiers applied to the TYPE. */
12080 quals = cp_type_quals (type);
12081 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
12082 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
12083 if (!decl)
12084 type = error_mark_node;
12085 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == IDENTIFIER_NODE
12086 && TREE_CODE (decl) == TYPE_DECL)
12087 type = TREE_TYPE (decl);
12088 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
12089 && DECL_CLASS_TEMPLATE_P (decl))
12091 tree tmpl;
12092 tree args;
12093 /* Obtain the template and the arguments. */
12094 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
12095 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
12096 /* Instantiate the template. */
12097 type = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
12098 /*entering_scope=*/0, tf_error | tf_user);
12100 else
12101 type = error_mark_node;
12102 /* Qualify the resulting type. */
12103 if (type != error_mark_node && quals)
12104 type = cp_build_qualified_type (type, quals);
12105 /* Leave the SCOPE. */
12106 if (pop_p)
12107 pop_scope (scope);
12109 return type;
12112 /* EXPR is an expression which is not type-dependent. Return a proxy
12113 for EXPR that can be used to compute the types of larger
12114 expressions containing EXPR. */
12116 tree
12117 build_non_dependent_expr (tree expr)
12119 /* Preserve null pointer constants so that the type of things like
12120 "p == 0" where "p" is a pointer can be determined. */
12121 if (null_ptr_cst_p (expr))
12122 return expr;
12123 /* Preserve OVERLOADs; the functions must be available to resolve
12124 types. */
12125 if (TREE_CODE (expr) == OVERLOAD
12126 || TREE_CODE (expr) == FUNCTION_DECL
12127 || TREE_CODE (expr) == TEMPLATE_DECL)
12128 return expr;
12129 /* Preserve string constants; conversions from string constants to
12130 "char *" are allowed, even though normally a "const char *"
12131 cannot be used to initialize a "char *". */
12132 if (TREE_CODE (expr) == STRING_CST)
12133 return expr;
12134 /* Preserve arithmetic constants, as an optimization -- there is no
12135 reason to create a new node. */
12136 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
12137 return expr;
12138 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
12139 There is at least one place where we want to know that a
12140 particular expression is a throw-expression: when checking a ?:
12141 expression, there are special rules if the second or third
12142 argument is a throw-expresion. */
12143 if (TREE_CODE (expr) == THROW_EXPR)
12144 return expr;
12146 if (TREE_CODE (expr) == COND_EXPR)
12147 return build (COND_EXPR,
12148 TREE_TYPE (expr),
12149 TREE_OPERAND (expr, 0),
12150 (TREE_OPERAND (expr, 1)
12151 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
12152 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
12153 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
12154 if (TREE_CODE (expr) == COMPOUND_EXPR
12155 && !COMPOUND_EXPR_OVERLOADED (expr))
12156 return build (COMPOUND_EXPR,
12157 TREE_TYPE (expr),
12158 TREE_OPERAND (expr, 0),
12159 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
12161 /* Otherwise, build a NON_DEPENDENT_EXPR.
12163 REFERENCE_TYPEs are not stripped for expressions in templates
12164 because doing so would play havoc with mangling. Consider, for
12165 example:
12167 template <typename T> void f<T& g>() { g(); }
12169 In the body of "f", the expression for "g" will have
12170 REFERENCE_TYPE, even though the standard says that it should
12171 not. The reason is that we must preserve the syntactic form of
12172 the expression so that mangling (say) "f<g>" inside the body of
12173 "f" works out correctly. Therefore, the REFERENCE_TYPE is
12174 stripped here. */
12175 return build1 (NON_DEPENDENT_EXPR, non_reference (TREE_TYPE (expr)), expr);
12178 /* ARGS is a TREE_LIST of expressions as arguments to a function call.
12179 Return a new TREE_LIST with the various arguments replaced with
12180 equivalent non-dependent expressions. */
12182 tree
12183 build_non_dependent_args (tree args)
12185 tree a;
12186 tree new_args;
12188 new_args = NULL_TREE;
12189 for (a = args; a; a = TREE_CHAIN (a))
12190 new_args = tree_cons (NULL_TREE,
12191 build_non_dependent_expr (TREE_VALUE (a)),
12192 new_args);
12193 return nreverse (new_args);
12196 #include "gt-cp-pt.h"