* configure.in: Arrange to include defaults.h in [ht]config.h/tm.h.
[official-gcc.git] / gcc / cp / pt.c
blobc66eaccc6be28fa671232c93994ef660178ce3d7
1 /* Handle parameterized types (templates) for GNU C++.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001 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 GNU CC.
9 GNU CC 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 GNU CC 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 GNU CC; 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 "obstack.h"
33 #include "tree.h"
34 #include "flags.h"
35 #include "cp-tree.h"
36 #include "decl.h"
37 #include "parse.h"
38 #include "lex.h"
39 #include "output.h"
40 #include "except.h"
41 #include "toplev.h"
42 #include "rtl.h"
43 #include "ggc.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) PARAMS ((tree, void*));
50 extern struct obstack permanent_obstack;
52 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
53 instantiations have been deferred, either because their definitions
54 were not yet available, or because we were putting off doing the
55 work. The TREE_PURPOSE of each entry is a SRCLOC indicating where
56 the instantiate request occurred; the TREE_VALUE is a either a DECL
57 (for a function or static data member), or a TYPE (for a class)
58 indicating what we are hoping to instantiate. */
59 static tree pending_templates;
60 static tree *template_tail = &pending_templates;
62 static tree maybe_templates;
63 static tree *maybe_template_tail = &maybe_templates;
65 int processing_template_parmlist;
66 static int template_header_count;
68 static tree saved_trees;
69 static varray_type inline_parm_levels;
70 static size_t inline_parm_levels_used;
72 static tree current_tinst_level;
74 /* A map from local variable declarations in the body of the template
75 presently being instantiated to the corresponding instantiated
76 local variables. */
77 static htab_t local_specializations;
79 #define obstack_chunk_alloc xmalloc
80 #define obstack_chunk_free free
82 #define UNIFY_ALLOW_NONE 0
83 #define UNIFY_ALLOW_MORE_CV_QUAL 1
84 #define UNIFY_ALLOW_LESS_CV_QUAL 2
85 #define UNIFY_ALLOW_DERIVED 4
86 #define UNIFY_ALLOW_INTEGER 8
87 #define UNIFY_ALLOW_OUTER_LEVEL 16
88 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
89 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
91 #define GTB_VIA_VIRTUAL 1 /* The base class we are examining is
92 virtual, or a base class of a virtual
93 base. */
94 #define GTB_IGNORE_TYPE 2 /* We don't need to try to unify the current
95 type with the desired type. */
97 static int resolve_overloaded_unification PARAMS ((tree, tree, tree, tree,
98 unification_kind_t, int));
99 static int try_one_overload PARAMS ((tree, tree, tree, tree, tree,
100 unification_kind_t, int));
101 static int unify PARAMS ((tree, tree, tree, tree, int));
102 static void add_pending_template PARAMS ((tree));
103 static int push_tinst_level PARAMS ((tree));
104 static void reopen_tinst_level PARAMS ((tree));
105 static tree classtype_mangled_name PARAMS ((tree));
106 static char *mangle_class_name_for_template PARAMS ((const char *, tree, tree));
107 static tree tsubst_initializer_list PARAMS ((tree, tree));
108 static int list_eq PARAMS ((tree, tree));
109 static tree get_class_bindings PARAMS ((tree, tree, tree));
110 static tree coerce_template_parms PARAMS ((tree, tree, tree, int, int));
111 static void tsubst_enum PARAMS ((tree, tree, tree));
112 static tree add_to_template_args PARAMS ((tree, tree));
113 static tree add_outermost_template_args PARAMS ((tree, tree));
114 static int maybe_adjust_types_for_deduction PARAMS ((unification_kind_t, tree*,
115 tree*));
116 static int type_unification_real PARAMS ((tree, tree, tree, tree,
117 int, unification_kind_t, int, int));
118 static void note_template_header PARAMS ((int));
119 static tree maybe_fold_nontype_arg PARAMS ((tree));
120 static tree convert_nontype_argument PARAMS ((tree, tree));
121 static tree convert_template_argument PARAMS ((tree, tree, tree, int,
122 int , tree));
123 static tree get_bindings_overload PARAMS ((tree, tree, tree));
124 static int for_each_template_parm PARAMS ((tree, tree_fn_t, void*));
125 static tree build_template_parm_index PARAMS ((int, int, int, tree, tree));
126 static int inline_needs_template_parms PARAMS ((tree));
127 static void push_inline_template_parms_recursive PARAMS ((tree, int));
128 static tree retrieve_specialization PARAMS ((tree, tree));
129 static tree retrieve_local_specialization PARAMS ((tree));
130 static tree register_specialization PARAMS ((tree, tree, tree));
131 static void register_local_specialization PARAMS ((tree, tree));
132 static int unregister_specialization PARAMS ((tree, tree));
133 static tree reduce_template_parm_level PARAMS ((tree, tree, int));
134 static tree build_template_decl PARAMS ((tree, tree));
135 static int mark_template_parm PARAMS ((tree, void *));
136 static tree tsubst_friend_function PARAMS ((tree, tree));
137 static tree tsubst_friend_class PARAMS ((tree, tree));
138 static tree get_bindings_real PARAMS ((tree, tree, tree, int, int, int));
139 static int template_decl_level PARAMS ((tree));
140 static tree maybe_get_template_decl_from_type_decl PARAMS ((tree));
141 static int check_cv_quals_for_unify PARAMS ((int, tree, tree));
142 static tree tsubst_template_arg_vector PARAMS ((tree, tree, int));
143 static tree tsubst_template_parms PARAMS ((tree, tree, int));
144 static void regenerate_decl_from_template PARAMS ((tree, tree));
145 static tree most_specialized PARAMS ((tree, tree, tree));
146 static tree most_specialized_class PARAMS ((tree, tree));
147 static void set_mangled_name_for_template_decl PARAMS ((tree));
148 static int template_class_depth_real PARAMS ((tree, int));
149 static tree tsubst_aggr_type PARAMS ((tree, tree, int, tree, int));
150 static tree tsubst_decl PARAMS ((tree, tree, tree));
151 static tree tsubst_arg_types PARAMS ((tree, tree, int, tree));
152 static tree tsubst_function_type PARAMS ((tree, tree, int, tree));
153 static void check_specialization_scope PARAMS ((void));
154 static tree process_partial_specialization PARAMS ((tree));
155 static void set_current_access_from_decl PARAMS ((tree));
156 static void check_default_tmpl_args PARAMS ((tree, tree, int, int));
157 static tree tsubst_call_declarator_parms PARAMS ((tree, tree, int, tree));
158 static tree get_template_base_recursive PARAMS ((tree, tree,
159 tree, tree, tree, int));
160 static tree get_template_base PARAMS ((tree, tree, tree, tree));
161 static int verify_class_unification PARAMS ((tree, tree, tree));
162 static tree try_class_unification PARAMS ((tree, tree, tree, tree));
163 static int coerce_template_template_parms PARAMS ((tree, tree, int,
164 tree, tree));
165 static tree determine_specialization PARAMS ((tree, tree, tree *, int));
166 static int template_args_equal PARAMS ((tree, tree));
167 static void tsubst_default_arguments PARAMS ((tree));
168 static tree for_each_template_parm_r PARAMS ((tree *, int *, void *));
169 static tree instantiate_clone PARAMS ((tree, tree));
170 static tree copy_default_args_to_explicit_spec_1 PARAMS ((tree, tree));
171 static void copy_default_args_to_explicit_spec PARAMS ((tree));
172 static int invalid_nontype_parm_type_p PARAMS ((tree, int));
174 /* Called once to initialize pt.c. */
176 void
177 init_pt ()
179 ggc_add_tree_root (&pending_templates, 1);
180 ggc_add_tree_root (&maybe_templates, 1);
181 ggc_add_tree_root (&saved_trees, 1);
182 ggc_add_tree_root (&current_tinst_level, 1);
185 /* Do any processing required when DECL (a member template declaration
186 using TEMPLATE_PARAMETERS as its innermost parameter list) is
187 finished. Returns the TEMPLATE_DECL corresponding to DECL, unless
188 it is a specialization, in which case the DECL itself is returned. */
190 tree
191 finish_member_template_decl (decl)
192 tree decl;
194 if (decl == NULL_TREE || decl == void_type_node)
195 return NULL_TREE;
196 else if (decl == error_mark_node)
197 /* By returning NULL_TREE, the parser will just ignore this
198 declaration. We have already issued the error. */
199 return NULL_TREE;
200 else if (TREE_CODE (decl) == TREE_LIST)
202 /* Assume that the class is the only declspec. */
203 decl = TREE_VALUE (decl);
204 if (IS_AGGR_TYPE (decl) && CLASSTYPE_TEMPLATE_INFO (decl)
205 && ! CLASSTYPE_TEMPLATE_SPECIALIZATION (decl))
207 tree tmpl = CLASSTYPE_TI_TEMPLATE (decl);
208 check_member_template (tmpl);
209 return tmpl;
211 return NULL_TREE;
213 else if (TREE_CODE (decl) == FIELD_DECL)
214 cp_error ("data member `%D' cannot be a member template", decl);
215 else if (DECL_TEMPLATE_INFO (decl))
217 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
219 check_member_template (DECL_TI_TEMPLATE (decl));
220 return DECL_TI_TEMPLATE (decl);
222 else
223 return decl;
225 else
226 cp_error ("invalid member template declaration `%D'", decl);
228 return error_mark_node;
231 /* Returns the template nesting level of the indicated class TYPE.
233 For example, in:
234 template <class T>
235 struct A
237 template <class U>
238 struct B {};
241 A<T>::B<U> has depth two, while A<T> has depth one.
242 Both A<T>::B<int> and A<int>::B<U> have depth one, if
243 COUNT_SPECIALIZATIONS is 0 or if they are instantiations, not
244 specializations.
246 This function is guaranteed to return 0 if passed NULL_TREE so
247 that, for example, `template_class_depth (current_class_type)' is
248 always safe. */
250 static int
251 template_class_depth_real (type, count_specializations)
252 tree type;
253 int count_specializations;
255 int depth;
257 for (depth = 0;
258 type && TREE_CODE (type) != NAMESPACE_DECL;
259 type = (TREE_CODE (type) == FUNCTION_DECL)
260 ? CP_DECL_CONTEXT (type) : TYPE_CONTEXT (type))
262 if (TREE_CODE (type) != FUNCTION_DECL)
264 if (CLASSTYPE_TEMPLATE_INFO (type)
265 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
266 && ((count_specializations
267 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
268 || uses_template_parms (CLASSTYPE_TI_ARGS (type))))
269 ++depth;
271 else
273 if (DECL_TEMPLATE_INFO (type)
274 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (type))
275 && ((count_specializations
276 && DECL_TEMPLATE_SPECIALIZATION (type))
277 || uses_template_parms (DECL_TI_ARGS (type))))
278 ++depth;
282 return depth;
285 /* Returns the template nesting level of the indicated class TYPE.
286 Like template_class_depth_real, but instantiations do not count in
287 the depth. */
289 int
290 template_class_depth (type)
291 tree type;
293 return template_class_depth_real (type, /*count_specializations=*/0);
296 /* Returns 1 if processing DECL as part of do_pending_inlines
297 needs us to push template parms. */
299 static int
300 inline_needs_template_parms (decl)
301 tree decl;
303 if (! DECL_TEMPLATE_INFO (decl))
304 return 0;
306 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
307 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
310 /* Subroutine of maybe_begin_member_template_processing.
311 Push the template parms in PARMS, starting from LEVELS steps into the
312 chain, and ending at the beginning, since template parms are listed
313 innermost first. */
315 static void
316 push_inline_template_parms_recursive (parmlist, levels)
317 tree parmlist;
318 int levels;
320 tree parms = TREE_VALUE (parmlist);
321 int i;
323 if (levels > 1)
324 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
326 ++processing_template_decl;
327 current_template_parms
328 = tree_cons (size_int (processing_template_decl),
329 parms, current_template_parms);
330 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
332 pushlevel (0);
333 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
335 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
336 my_friendly_assert (DECL_P (parm), 0);
338 switch (TREE_CODE (parm))
340 case TYPE_DECL:
341 case TEMPLATE_DECL:
342 pushdecl (parm);
343 break;
345 case PARM_DECL:
347 /* Make a CONST_DECL as is done in process_template_parm.
348 It is ugly that we recreate this here; the original
349 version built in process_template_parm is no longer
350 available. */
351 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
352 TREE_TYPE (parm));
353 DECL_ARTIFICIAL (decl) = 1;
354 DECL_INITIAL (decl) = DECL_INITIAL (parm);
355 SET_DECL_TEMPLATE_PARM_P (decl);
356 pushdecl (decl);
358 break;
360 default:
361 my_friendly_abort (0);
366 /* Restore the template parameter context for a member template or
367 a friend template defined in a class definition. */
369 void
370 maybe_begin_member_template_processing (decl)
371 tree decl;
373 tree parms;
374 int levels = 0;
376 if (inline_needs_template_parms (decl))
378 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
379 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
381 if (DECL_TEMPLATE_SPECIALIZATION (decl))
383 --levels;
384 parms = TREE_CHAIN (parms);
387 push_inline_template_parms_recursive (parms, levels);
390 /* Remember how many levels of template parameters we pushed so that
391 we can pop them later. */
392 if (!inline_parm_levels)
393 VARRAY_INT_INIT (inline_parm_levels, 4, "inline_parm_levels");
394 if (inline_parm_levels_used == inline_parm_levels->num_elements)
395 VARRAY_GROW (inline_parm_levels, 2 * inline_parm_levels_used);
396 VARRAY_INT (inline_parm_levels, inline_parm_levels_used) = levels;
397 ++inline_parm_levels_used;
400 /* Undo the effects of begin_member_template_processing. */
402 void
403 maybe_end_member_template_processing ()
405 int i;
407 if (!inline_parm_levels_used)
408 return;
410 --inline_parm_levels_used;
411 for (i = 0;
412 i < VARRAY_INT (inline_parm_levels, inline_parm_levels_used);
413 ++i)
415 --processing_template_decl;
416 current_template_parms = TREE_CHAIN (current_template_parms);
417 poplevel (0, 0, 0);
421 /* Returns non-zero iff T is a member template function. We must be
422 careful as in
424 template <class T> class C { void f(); }
426 Here, f is a template function, and a member, but not a member
427 template. This function does not concern itself with the origin of
428 T, only its present state. So if we have
430 template <class T> class C { template <class U> void f(U); }
432 then neither C<int>::f<char> nor C<T>::f<double> is considered
433 to be a member template. But, `template <class U> void
434 C<int>::f(U)' is considered a member template. */
437 is_member_template (t)
438 tree t;
440 if (!DECL_FUNCTION_TEMPLATE_P (t))
441 /* Anything that isn't a function or a template function is
442 certainly not a member template. */
443 return 0;
445 /* A local class can't have member templates. */
446 if (decl_function_context (t))
447 return 0;
449 return (DECL_FUNCTION_MEMBER_P (DECL_TEMPLATE_RESULT (t))
450 /* If there are more levels of template parameters than
451 there are template classes surrounding the declaration,
452 then we have a member template. */
453 && (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
454 template_class_depth (DECL_CONTEXT (t))));
457 #if 0 /* UNUSED */
458 /* Returns non-zero iff T is a member template class. See
459 is_member_template for a description of what precisely constitutes
460 a member template. */
463 is_member_template_class (t)
464 tree t;
466 if (!DECL_CLASS_TEMPLATE_P (t))
467 /* Anything that isn't a class template, is certainly not a member
468 template. */
469 return 0;
471 if (!DECL_CLASS_SCOPE_P (t))
472 /* Anything whose context isn't a class type is surely not a
473 member template. */
474 return 0;
476 /* If there are more levels of template parameters than there are
477 template classes surrounding the declaration, then we have a
478 member template. */
479 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
480 template_class_depth (DECL_CONTEXT (t)));
482 #endif
484 /* Return a new template argument vector which contains all of ARGS,
485 but has as its innermost set of arguments the EXTRA_ARGS. */
487 static tree
488 add_to_template_args (args, extra_args)
489 tree args;
490 tree extra_args;
492 tree new_args;
493 int extra_depth;
494 int i;
495 int j;
497 extra_depth = TMPL_ARGS_DEPTH (extra_args);
498 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
500 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
501 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
503 for (j = 1; j <= extra_depth; ++j, ++i)
504 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
506 return new_args;
509 /* Like add_to_template_args, but only the outermost ARGS are added to
510 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
511 (EXTRA_ARGS) levels are added. This function is used to combine
512 the template arguments from a partial instantiation with the
513 template arguments used to attain the full instantiation from the
514 partial instantiation. */
516 static tree
517 add_outermost_template_args (args, extra_args)
518 tree args;
519 tree extra_args;
521 tree new_args;
523 /* If there are more levels of EXTRA_ARGS than there are ARGS,
524 something very fishy is going on. */
525 my_friendly_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args),
528 /* If *all* the new arguments will be the EXTRA_ARGS, just return
529 them. */
530 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
531 return extra_args;
533 /* For the moment, we make ARGS look like it contains fewer levels. */
534 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
536 new_args = add_to_template_args (args, extra_args);
538 /* Now, we restore ARGS to its full dimensions. */
539 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
541 return new_args;
544 /* Return the N levels of innermost template arguments from the ARGS. */
546 tree
547 get_innermost_template_args (args, n)
548 tree args;
549 int n;
551 tree new_args;
552 int extra_levels;
553 int i;
555 my_friendly_assert (n >= 0, 20000603);
557 /* If N is 1, just return the innermost set of template arguments. */
558 if (n == 1)
559 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
561 /* If we're not removing anything, just return the arguments we were
562 given. */
563 extra_levels = TMPL_ARGS_DEPTH (args) - n;
564 my_friendly_assert (extra_levels >= 0, 20000603);
565 if (extra_levels == 0)
566 return args;
568 /* Make a new set of arguments, not containing the outer arguments. */
569 new_args = make_tree_vec (n);
570 for (i = 1; i <= n; ++i)
571 SET_TMPL_ARGS_LEVEL (new_args, i,
572 TMPL_ARGS_LEVEL (args, i + extra_levels));
574 return new_args;
577 /* We've got a template header coming up; push to a new level for storing
578 the parms. */
580 void
581 begin_template_parm_list ()
583 /* We use a non-tag-transparent scope here, which causes pushtag to
584 put tags in this scope, rather than in the enclosing class or
585 namespace scope. This is the right thing, since we want
586 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
587 global template class, push_template_decl handles putting the
588 TEMPLATE_DECL into top-level scope. For a nested template class,
589 e.g.:
591 template <class T> struct S1 {
592 template <class T> struct S2 {};
595 pushtag contains special code to call pushdecl_with_scope on the
596 TEMPLATE_DECL for S2. */
597 begin_scope (sk_template_parms);
598 ++processing_template_decl;
599 ++processing_template_parmlist;
600 note_template_header (0);
603 /* This routine is called when a specialization is declared. If it is
604 illegal to declare a specialization here, an error is reported. */
606 static void
607 check_specialization_scope ()
609 tree scope = current_scope ();
611 /* [temp.expl.spec]
613 An explicit specialization shall be declared in the namespace of
614 which the template is a member, or, for member templates, in the
615 namespace of which the enclosing class or enclosing class
616 template is a member. An explicit specialization of a member
617 function, member class or static data member of a class template
618 shall be declared in the namespace of which the class template
619 is a member. */
620 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
621 cp_error ("explicit specialization in non-namespace scope `%D'",
622 scope);
624 /* [temp.expl.spec]
626 In an explicit specialization declaration for a member of a class
627 template or a member template that appears in namespace scope,
628 the member template and some of its enclosing class templates may
629 remain unspecialized, except that the declaration shall not
630 explicitly specialize a class member template if its enclosing
631 class templates are not explicitly specialized as well. */
632 if (current_template_parms)
633 cp_error ("enclosing class templates are not explicitly specialized");
636 /* We've just seen template <>. */
638 void
639 begin_specialization ()
641 begin_scope (sk_template_spec);
642 note_template_header (1);
643 check_specialization_scope ();
646 /* Called at then end of processing a declaration preceded by
647 template<>. */
649 void
650 end_specialization ()
652 finish_scope ();
653 reset_specialization ();
656 /* Any template <>'s that we have seen thus far are not referring to a
657 function specialization. */
659 void
660 reset_specialization ()
662 processing_specialization = 0;
663 template_header_count = 0;
666 /* We've just seen a template header. If SPECIALIZATION is non-zero,
667 it was of the form template <>. */
669 static void
670 note_template_header (specialization)
671 int specialization;
673 processing_specialization = specialization;
674 template_header_count++;
677 /* We're beginning an explicit instantiation. */
679 void
680 begin_explicit_instantiation ()
682 ++processing_explicit_instantiation;
686 void
687 end_explicit_instantiation ()
689 my_friendly_assert(processing_explicit_instantiation > 0, 0);
690 --processing_explicit_instantiation;
693 /* The TYPE is being declared. If it is a template type, that means it
694 is a partial specialization. Do appropriate error-checking. */
696 void
697 maybe_process_partial_specialization (type)
698 tree type;
700 if (IS_AGGR_TYPE (type) && CLASSTYPE_USE_TEMPLATE (type))
702 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
703 && !COMPLETE_TYPE_P (type))
705 if (current_namespace
706 != decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type)))
708 cp_pedwarn ("specializing `%#T' in different namespace", type);
709 cp_pedwarn_at (" from definition of `%#D'",
710 CLASSTYPE_TI_TEMPLATE (type));
712 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
713 if (processing_template_decl)
714 push_template_decl (TYPE_MAIN_DECL (type));
716 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
717 cp_error ("specialization of `%T' after instantiation", type);
719 else if (processing_specialization)
720 cp_error ("explicit specialization of non-template `%T'", type);
723 /* Retrieve the specialization (in the sense of [temp.spec] - a
724 specialization is either an instantiation or an explicit
725 specialization) of TMPL for the given template ARGS. If there is
726 no such specialization, return NULL_TREE. The ARGS are a vector of
727 arguments, or a vector of vectors of arguments, in the case of
728 templates with more than one level of parameters. */
730 static tree
731 retrieve_specialization (tmpl, args)
732 tree tmpl;
733 tree args;
735 tree s;
737 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
739 /* There should be as many levels of arguments as there are
740 levels of parameters. */
741 my_friendly_assert (TMPL_ARGS_DEPTH (args)
742 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)),
745 for (s = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
746 s != NULL_TREE;
747 s = TREE_CHAIN (s))
748 if (comp_template_args (TREE_PURPOSE (s), args))
749 return TREE_VALUE (s);
751 return NULL_TREE;
754 /* Like retrieve_specialization, but for local declarations. */
756 static tree
757 retrieve_local_specialization (tmpl)
758 tree tmpl;
760 return (tree) htab_find (local_specializations, tmpl);
763 /* Returns non-zero iff DECL is a specialization of TMPL. */
766 is_specialization_of (decl, tmpl)
767 tree decl;
768 tree tmpl;
770 tree t;
772 if (TREE_CODE (decl) == FUNCTION_DECL)
774 for (t = decl;
775 t != NULL_TREE;
776 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
777 if (t == tmpl)
778 return 1;
780 else
782 my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 0);
784 for (t = TREE_TYPE (decl);
785 t != NULL_TREE;
786 t = CLASSTYPE_USE_TEMPLATE (t)
787 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
788 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
789 return 1;
792 return 0;
795 /* Register the specialization SPEC as a specialization of TMPL with
796 the indicated ARGS. Returns SPEC, or an equivalent prior
797 declaration, if available. */
799 static tree
800 register_specialization (spec, tmpl, args)
801 tree spec;
802 tree tmpl;
803 tree args;
805 tree s;
807 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
809 if (TREE_CODE (spec) == FUNCTION_DECL
810 && uses_template_parms (DECL_TI_ARGS (spec)))
811 /* This is the FUNCTION_DECL for a partial instantiation. Don't
812 register it; we want the corresponding TEMPLATE_DECL instead.
813 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
814 the more obvious `uses_template_parms (spec)' to avoid problems
815 with default function arguments. In particular, given
816 something like this:
818 template <class T> void f(T t1, T t = T())
820 the default argument expression is not substituted for in an
821 instantiation unless and until it is actually needed. */
822 return spec;
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))
834 tree fn = TREE_VALUE (s);
836 /* We can sometimes try to re-register a specialization that we've
837 already got. In particular, regenerate_decl_from_template
838 calls duplicate_decls which will update the specialization
839 list. But, we'll still get called again here anyhow. It's
840 more convenient to simply allow this than to try to prevent it. */
841 if (fn == spec)
842 return spec;
843 else if (comp_template_args (TREE_PURPOSE (s), args))
845 if (DECL_TEMPLATE_SPECIALIZATION (spec))
847 if (DECL_TEMPLATE_INSTANTIATION (fn))
849 if (TREE_USED (fn)
850 || DECL_EXPLICIT_INSTANTIATION (fn))
852 cp_error ("specialization of %D after instantiation",
853 fn);
854 return spec;
856 else
858 /* This situation should occur only if the first
859 specialization is an implicit instantiation,
860 the second is an explicit specialization, and
861 the implicit instantiation has not yet been
862 used. That situation can occur if we have
863 implicitly instantiated a member function and
864 then specialized it later.
866 We can also wind up here if a friend
867 declaration that looked like an instantiation
868 turns out to be a specialization:
870 template <class T> void foo(T);
871 class S { friend void foo<>(int) };
872 template <> void foo(int);
874 We transform the existing DECL in place so that
875 any pointers to it become pointers to the
876 updated declaration.
878 If there was a definition for the template, but
879 not for the specialization, we want this to
880 look as if there is no definition, and vice
881 versa. */
882 DECL_INITIAL (fn) = NULL_TREE;
883 duplicate_decls (spec, fn);
885 return fn;
888 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
890 duplicate_decls (spec, fn);
891 return fn;
897 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
898 = tree_cons (args, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
900 return spec;
903 /* Unregister the specialization SPEC as a specialization of TMPL.
904 Returns nonzero if the SPEC was listed as a specialization of
905 TMPL. */
907 static int
908 unregister_specialization (spec, tmpl)
909 tree spec;
910 tree tmpl;
912 tree* s;
914 for (s = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
915 *s != NULL_TREE;
916 s = &TREE_CHAIN (*s))
917 if (TREE_VALUE (*s) == spec)
919 *s = TREE_CHAIN (*s);
920 return 1;
923 return 0;
926 /* Like register_specialization, but for local declarations. We are
927 registering SPEC, an instantiation of TMPL. */
929 static void
930 register_local_specialization (spec, tmpl)
931 tree spec;
932 tree tmpl;
934 void **slot;
936 slot = htab_find_slot (local_specializations, tmpl, INSERT);
937 *slot = spec;
940 /* Print the list of candidate FNS in an error message. */
942 void
943 print_candidates (fns)
944 tree fns;
946 tree fn;
948 const char *str = "candidates are:";
950 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn))
952 tree f;
954 for (f = TREE_VALUE (fn); f; f = OVL_NEXT (f))
955 cp_error_at ("%s %+#D", str, OVL_CURRENT (f));
956 str = " ";
960 /* Returns the template (one of the functions given by TEMPLATE_ID)
961 which can be specialized to match the indicated DECL with the
962 explicit template args given in TEMPLATE_ID. The DECL may be
963 NULL_TREE if none is available. In that case, the functions in
964 TEMPLATE_ID are non-members.
966 If NEED_MEMBER_TEMPLATE is non-zero the function is known to be a
967 specialization of a member template.
969 The template args (those explicitly specified and those deduced)
970 are output in a newly created vector *TARGS_OUT.
972 If it is impossible to determine the result, an error message is
973 issued. The error_mark_node is returned to indicate failure. */
975 static tree
976 determine_specialization (template_id, decl, targs_out,
977 need_member_template)
978 tree template_id;
979 tree decl;
980 tree* targs_out;
981 int need_member_template;
983 tree fns;
984 tree targs;
985 tree explicit_targs;
986 tree candidates = NULL_TREE;
987 tree templates = NULL_TREE;
989 *targs_out = NULL_TREE;
991 if (template_id == error_mark_node)
992 return error_mark_node;
994 fns = TREE_OPERAND (template_id, 0);
995 explicit_targs = TREE_OPERAND (template_id, 1);
997 if (fns == error_mark_node)
998 return error_mark_node;
1000 /* Check for baselinks. */
1001 if (BASELINK_P (fns))
1002 fns = TREE_VALUE (fns);
1004 if (!is_overloaded_fn (fns))
1006 cp_error ("`%D' is not a function template", fns);
1007 return error_mark_node;
1010 for (; fns; fns = OVL_NEXT (fns))
1012 tree tmpl;
1014 tree fn = OVL_CURRENT (fns);
1016 if (TREE_CODE (fn) == TEMPLATE_DECL)
1017 /* DECL might be a specialization of FN. */
1018 tmpl = fn;
1019 else if (need_member_template)
1020 /* FN is an ordinary member function, and we need a
1021 specialization of a member template. */
1022 continue;
1023 else if (TREE_CODE (fn) != FUNCTION_DECL)
1024 /* We can get IDENTIFIER_NODEs here in certain erroneous
1025 cases. */
1026 continue;
1027 else if (!DECL_FUNCTION_MEMBER_P (fn))
1028 /* This is just an ordinary non-member function. Nothing can
1029 be a specialization of that. */
1030 continue;
1031 else
1033 tree decl_arg_types;
1035 /* This is an ordinary member function. However, since
1036 we're here, we can assume it's enclosing class is a
1037 template class. For example,
1039 template <typename T> struct S { void f(); };
1040 template <> void S<int>::f() {}
1042 Here, S<int>::f is a non-template, but S<int> is a
1043 template class. If FN has the same type as DECL, we
1044 might be in business. */
1045 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1046 TREE_TYPE (TREE_TYPE (fn))))
1047 /* The return types differ. */
1048 continue;
1050 /* Adjust the type of DECL in case FN is a static member. */
1051 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1052 if (DECL_STATIC_FUNCTION_P (fn)
1053 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1054 decl_arg_types = TREE_CHAIN (decl_arg_types);
1056 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1057 decl_arg_types))
1058 /* They match! */
1059 candidates = tree_cons (NULL_TREE, fn, candidates);
1061 continue;
1064 /* See whether this function might be a specialization of this
1065 template. */
1066 targs = get_bindings (tmpl, decl, explicit_targs);
1068 if (!targs)
1069 /* We cannot deduce template arguments that when used to
1070 specialize TMPL will produce DECL. */
1071 continue;
1073 /* Save this template, and the arguments deduced. */
1074 templates = tree_cons (targs, tmpl, templates);
1077 if (templates && TREE_CHAIN (templates))
1079 /* We have:
1081 [temp.expl.spec]
1083 It is possible for a specialization with a given function
1084 signature to be instantiated from more than one function
1085 template. In such cases, explicit specification of the
1086 template arguments must be used to uniquely identify the
1087 function template specialization being specialized.
1089 Note that here, there's no suggestion that we're supposed to
1090 determine which of the candidate templates is most
1091 specialized. However, we, also have:
1093 [temp.func.order]
1095 Partial ordering of overloaded function template
1096 declarations is used in the following contexts to select
1097 the function template to which a function template
1098 specialization refers:
1100 -- when an explicit specialization refers to a function
1101 template.
1103 So, we do use the partial ordering rules, at least for now.
1104 This extension can only serve to make illegal programs legal,
1105 so it's safe. And, there is strong anecdotal evidence that
1106 the committee intended the partial ordering rules to apply;
1107 the EDG front-end has that behavior, and John Spicer claims
1108 that the committee simply forgot to delete the wording in
1109 [temp.expl.spec]. */
1110 tree tmpl = most_specialized (templates, decl, explicit_targs);
1111 if (tmpl && tmpl != error_mark_node)
1113 targs = get_bindings (tmpl, decl, explicit_targs);
1114 templates = tree_cons (targs, tmpl, NULL_TREE);
1118 if (templates == NULL_TREE && candidates == NULL_TREE)
1120 cp_error_at ("template-id `%D' for `%+D' does not match any template declaration",
1121 template_id, decl);
1122 return error_mark_node;
1124 else if ((templates && TREE_CHAIN (templates))
1125 || (candidates && TREE_CHAIN (candidates))
1126 || (templates && candidates))
1128 cp_error_at ("ambiguous template specialization `%D' for `%+D'",
1129 template_id, decl);
1130 chainon (candidates, templates);
1131 print_candidates (candidates);
1132 return error_mark_node;
1135 /* We have one, and exactly one, match. */
1136 if (candidates)
1138 /* It was a specialization of an ordinary member function in a
1139 template class. */
1140 *targs_out = copy_node (DECL_TI_ARGS (TREE_VALUE (candidates)));
1141 return DECL_TI_TEMPLATE (TREE_VALUE (candidates));
1144 /* It was a specialization of a template. */
1145 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
1146 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
1148 *targs_out = copy_node (targs);
1149 SET_TMPL_ARGS_LEVEL (*targs_out,
1150 TMPL_ARGS_DEPTH (*targs_out),
1151 TREE_PURPOSE (templates));
1153 else
1154 *targs_out = TREE_PURPOSE (templates);
1155 return TREE_VALUE (templates);
1158 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
1159 but with the default argument values filled in from those in the
1160 TMPL_TYPES. */
1162 static tree
1163 copy_default_args_to_explicit_spec_1 (spec_types,
1164 tmpl_types)
1165 tree spec_types;
1166 tree tmpl_types;
1168 tree new_spec_types;
1170 if (!spec_types)
1171 return NULL_TREE;
1173 if (spec_types == void_list_node)
1174 return void_list_node;
1176 /* Substitute into the rest of the list. */
1177 new_spec_types =
1178 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
1179 TREE_CHAIN (tmpl_types));
1181 /* Add the default argument for this parameter. */
1182 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
1183 TREE_VALUE (spec_types),
1184 new_spec_types);
1187 /* DECL is an explicit specialization. Replicate default arguments
1188 from the template it specializes. (That way, code like:
1190 template <class T> void f(T = 3);
1191 template <> void f(double);
1192 void g () { f (); }
1194 works, as required.) An alternative approach would be to look up
1195 the correct default arguments at the call-site, but this approach
1196 is consistent with how implicit instantiations are handled. */
1198 static void
1199 copy_default_args_to_explicit_spec (decl)
1200 tree decl;
1202 tree tmpl;
1203 tree spec_types;
1204 tree tmpl_types;
1205 tree new_spec_types;
1206 tree old_type;
1207 tree new_type;
1208 tree t;
1209 tree object_type = NULL_TREE;
1210 tree in_charge = NULL_TREE;
1212 /* See if there's anything we need to do. */
1213 tmpl = DECL_TI_TEMPLATE (decl);
1214 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
1215 for (t = tmpl_types; t; t = TREE_CHAIN (t))
1216 if (TREE_PURPOSE (t))
1217 break;
1218 if (!t)
1219 return;
1221 old_type = TREE_TYPE (decl);
1222 spec_types = TYPE_ARG_TYPES (old_type);
1224 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1226 /* Remove the this pointer, but remember the object's type for
1227 CV quals. */
1228 object_type = TREE_TYPE (TREE_VALUE (spec_types));
1229 spec_types = TREE_CHAIN (spec_types);
1230 tmpl_types = TREE_CHAIN (tmpl_types);
1232 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
1234 /* DECL may contain more parameters than TMPL due to the extra
1235 in-charge parameter in constructors and destructors. */
1236 in_charge = spec_types;
1237 spec_types = TREE_CHAIN (spec_types);
1241 /* Compute the merged default arguments. */
1242 new_spec_types =
1243 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
1245 /* Compute the new FUNCTION_TYPE. */
1246 if (object_type)
1248 if (in_charge)
1249 /* Put the in-charge parameter back. */
1250 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
1251 TREE_VALUE (in_charge),
1252 new_spec_types);
1254 new_type = build_cplus_method_type (object_type,
1255 TREE_TYPE (old_type),
1256 new_spec_types);
1258 else
1259 new_type = build_function_type (TREE_TYPE (old_type),
1260 new_spec_types);
1261 new_type = build_type_attribute_variant (new_type,
1262 TYPE_ATTRIBUTES (old_type));
1263 new_type = build_exception_variant (new_type,
1264 TYPE_RAISES_EXCEPTIONS (old_type));
1265 TREE_TYPE (decl) = new_type;
1268 /* Check to see if the function just declared, as indicated in
1269 DECLARATOR, and in DECL, is a specialization of a function
1270 template. We may also discover that the declaration is an explicit
1271 instantiation at this point.
1273 Returns DECL, or an equivalent declaration that should be used
1274 instead if all goes well. Issues an error message if something is
1275 amiss. Returns error_mark_node if the error is not easily
1276 recoverable.
1278 FLAGS is a bitmask consisting of the following flags:
1280 2: The function has a definition.
1281 4: The function is a friend.
1283 The TEMPLATE_COUNT is the number of references to qualifying
1284 template classes that appeared in the name of the function. For
1285 example, in
1287 template <class T> struct S { void f(); };
1288 void S<int>::f();
1290 the TEMPLATE_COUNT would be 1. However, explicitly specialized
1291 classes are not counted in the TEMPLATE_COUNT, so that in
1293 template <class T> struct S {};
1294 template <> struct S<int> { void f(); }
1295 template <> void S<int>::f();
1297 the TEMPLATE_COUNT would be 0. (Note that this declaration is
1298 illegal; there should be no template <>.)
1300 If the function is a specialization, it is marked as such via
1301 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
1302 is set up correctly, and it is added to the list of specializations
1303 for that template. */
1305 tree
1306 check_explicit_specialization (declarator, decl, template_count, flags)
1307 tree declarator;
1308 tree decl;
1309 int template_count;
1310 int flags;
1312 int have_def = flags & 2;
1313 int is_friend = flags & 4;
1314 int specialization = 0;
1315 int explicit_instantiation = 0;
1316 int member_specialization = 0;
1317 tree ctype = DECL_CLASS_CONTEXT (decl);
1318 tree dname = DECL_NAME (decl);
1319 tmpl_spec_kind tsk;
1321 tsk = current_tmpl_spec_kind (template_count);
1323 switch (tsk)
1325 case tsk_none:
1326 if (processing_specialization)
1328 specialization = 1;
1329 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1331 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1333 if (is_friend)
1334 /* This could be something like:
1336 template <class T> void f(T);
1337 class S { friend void f<>(int); } */
1338 specialization = 1;
1339 else
1341 /* This case handles bogus declarations like template <>
1342 template <class T> void f<int>(); */
1344 cp_error ("template-id `%D' in declaration of primary template",
1345 declarator);
1346 return decl;
1349 break;
1351 case tsk_invalid_member_spec:
1352 /* The error has already been reported in
1353 check_specialization_scope. */
1354 return error_mark_node;
1356 case tsk_invalid_expl_inst:
1357 cp_error ("template parameter list used in explicit instantiation");
1359 /* Fall through. */
1361 case tsk_expl_inst:
1362 if (have_def)
1363 cp_error ("definition provided for explicit instantiation");
1365 explicit_instantiation = 1;
1366 break;
1368 case tsk_excessive_parms:
1369 cp_error ("too many template parameter lists in declaration of `%D'",
1370 decl);
1371 return error_mark_node;
1373 /* Fall through. */
1374 case tsk_expl_spec:
1375 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1376 if (ctype)
1377 member_specialization = 1;
1378 else
1379 specialization = 1;
1380 break;
1382 case tsk_insufficient_parms:
1383 if (template_header_count)
1385 cp_error("too few template parameter lists in declaration of `%D'",
1386 decl);
1387 return decl;
1389 else if (ctype != NULL_TREE
1390 && !TYPE_BEING_DEFINED (ctype)
1391 && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype)
1392 && !is_friend)
1394 /* For backwards compatibility, we accept:
1396 template <class T> struct S { void f(); };
1397 void S<int>::f() {} // Missing template <>
1399 That used to be legal C++. */
1400 if (pedantic)
1401 cp_pedwarn
1402 ("explicit specialization not preceded by `template <>'");
1403 specialization = 1;
1404 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1406 break;
1408 case tsk_template:
1409 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1411 /* This case handles bogus declarations like template <>
1412 template <class T> void f<int>(); */
1414 if (uses_template_parms (declarator))
1415 cp_error ("partial specialization `%D' of function template",
1416 declarator);
1417 else
1418 cp_error ("template-id `%D' in declaration of primary template",
1419 declarator);
1420 return decl;
1423 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
1424 /* This is a specialization of a member template, without
1425 specialization the containing class. Something like:
1427 template <class T> struct S {
1428 template <class U> void f (U);
1430 template <> template <class U> void S<int>::f(U) {}
1432 That's a specialization -- but of the entire template. */
1433 specialization = 1;
1434 break;
1436 default:
1437 my_friendly_abort (20000309);
1440 if (specialization || member_specialization)
1442 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
1443 for (; t; t = TREE_CHAIN (t))
1444 if (TREE_PURPOSE (t))
1446 cp_pedwarn
1447 ("default argument specified in explicit specialization");
1448 break;
1450 if (current_lang_name == lang_name_c)
1451 cp_error ("template specialization with C linkage");
1454 if (specialization || member_specialization || explicit_instantiation)
1456 tree tmpl = NULL_TREE;
1457 tree targs = NULL_TREE;
1459 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
1460 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
1462 tree fns;
1464 my_friendly_assert (TREE_CODE (declarator) == IDENTIFIER_NODE,
1466 if (!ctype)
1467 fns = IDENTIFIER_NAMESPACE_VALUE (dname);
1468 else
1469 fns = dname;
1471 declarator =
1472 lookup_template_function (fns, NULL_TREE);
1475 if (declarator == error_mark_node)
1476 return error_mark_node;
1478 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
1480 if (!explicit_instantiation)
1481 /* A specialization in class scope. This is illegal,
1482 but the error will already have been flagged by
1483 check_specialization_scope. */
1484 return error_mark_node;
1485 else
1487 /* It's not legal to write an explicit instantiation in
1488 class scope, e.g.:
1490 class C { template void f(); }
1492 This case is caught by the parser. However, on
1493 something like:
1495 template class C { void f(); };
1497 (which is illegal) we can get here. The error will be
1498 issued later. */
1502 return decl;
1504 else if (TREE_CODE (TREE_OPERAND (declarator, 0)) == LOOKUP_EXPR)
1506 /* A friend declaration. We can't do much, because we don't
1507 know what this resolves to, yet. */
1508 my_friendly_assert (is_friend != 0, 0);
1509 my_friendly_assert (!explicit_instantiation, 0);
1510 SET_DECL_IMPLICIT_INSTANTIATION (decl);
1511 return decl;
1513 else if (ctype != NULL_TREE
1514 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
1515 IDENTIFIER_NODE))
1517 /* Find the list of functions in ctype that have the same
1518 name as the declared function. */
1519 tree name = TREE_OPERAND (declarator, 0);
1520 tree fns = NULL_TREE;
1521 int idx;
1523 if (name == constructor_name (ctype)
1524 || name == constructor_name_full (ctype))
1526 int is_constructor = DECL_CONSTRUCTOR_P (decl);
1528 if (is_constructor ? !TYPE_HAS_CONSTRUCTOR (ctype)
1529 : !TYPE_HAS_DESTRUCTOR (ctype))
1531 /* From [temp.expl.spec]:
1533 If such an explicit specialization for the member
1534 of a class template names an implicitly-declared
1535 special member function (clause _special_), the
1536 program is ill-formed.
1538 Similar language is found in [temp.explicit]. */
1539 cp_error ("specialization of implicitly-declared special member function");
1540 return error_mark_node;
1543 name = is_constructor ? ctor_identifier : dtor_identifier;
1546 if (!DECL_CONV_FN_P (decl))
1548 idx = lookup_fnfields_1 (ctype, name);
1549 if (idx >= 0)
1550 fns = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (ctype), idx);
1552 else
1554 tree methods;
1556 /* For a type-conversion operator, we cannot do a
1557 name-based lookup. We might be looking for `operator
1558 int' which will be a specialization of `operator T'.
1559 So, we find *all* the conversion operators, and then
1560 select from them. */
1561 fns = NULL_TREE;
1563 methods = CLASSTYPE_METHOD_VEC (ctype);
1564 if (methods)
1565 for (idx = 2; idx < TREE_VEC_LENGTH (methods); ++idx)
1567 tree ovl = TREE_VEC_ELT (methods, idx);
1569 if (!ovl || !DECL_CONV_FN_P (OVL_CURRENT (ovl)))
1570 /* There are no more conversion functions. */
1571 break;
1573 /* Glue all these conversion functions together
1574 with those we already have. */
1575 for (; ovl; ovl = OVL_NEXT (ovl))
1576 fns = ovl_cons (OVL_CURRENT (ovl), fns);
1580 if (fns == NULL_TREE)
1582 cp_error ("no member function `%D' declared in `%T'",
1583 name, ctype);
1584 return error_mark_node;
1586 else
1587 TREE_OPERAND (declarator, 0) = fns;
1590 /* Figure out what exactly is being specialized at this point.
1591 Note that for an explicit instantiation, even one for a
1592 member function, we cannot tell apriori whether the
1593 instantiation is for a member template, or just a member
1594 function of a template class. Even if a member template is
1595 being instantiated, the member template arguments may be
1596 elided if they can be deduced from the rest of the
1597 declaration. */
1598 tmpl = determine_specialization (declarator, decl,
1599 &targs,
1600 member_specialization);
1602 if (!tmpl || tmpl == error_mark_node)
1603 /* We couldn't figure out what this declaration was
1604 specializing. */
1605 return error_mark_node;
1606 else
1608 tree gen_tmpl = most_general_template (tmpl);
1610 if (explicit_instantiation)
1612 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
1613 is done by do_decl_instantiation later. */
1615 int arg_depth = TMPL_ARGS_DEPTH (targs);
1616 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
1618 if (arg_depth > parm_depth)
1620 /* If TMPL is not the most general template (for
1621 example, if TMPL is a friend template that is
1622 injected into namespace scope), then there will
1623 be too many levels of TARGS. Remove some of them
1624 here. */
1625 int i;
1626 tree new_targs;
1628 new_targs = make_tree_vec (parm_depth);
1629 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
1630 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
1631 = TREE_VEC_ELT (targs, i);
1632 targs = new_targs;
1635 return instantiate_template (tmpl, targs);
1638 /* If this is a specialization of a member template of a
1639 template class. In we want to return the TEMPLATE_DECL,
1640 not the specialization of it. */
1641 if (tsk == tsk_template)
1643 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
1644 DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl)) = NULL_TREE;
1645 return tmpl;
1648 /* If we thought that the DECL was a member function, but it
1649 turns out to be specializing a static member function,
1650 make DECL a static member function as well. */
1651 if (DECL_STATIC_FUNCTION_P (tmpl)
1652 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1654 revert_static_member_fn (decl);
1655 last_function_parms = TREE_CHAIN (last_function_parms);
1658 /* Set up the DECL_TEMPLATE_INFO for DECL. */
1659 DECL_TEMPLATE_INFO (decl) = tree_cons (tmpl, targs, NULL_TREE);
1661 /* Inherit default function arguments from the template
1662 DECL is specializing. */
1663 copy_default_args_to_explicit_spec (decl);
1665 /* Mangle the function name appropriately. Note that we do
1666 not mangle specializations of non-template member
1667 functions of template classes, e.g. with
1669 template <class T> struct S { void f(); }
1671 and given the specialization
1673 template <> void S<int>::f() {}
1675 we do not mangle S<int>::f() here. That's because it's
1676 just an ordinary member function and doesn't need special
1677 treatment. We do this here so that the ordinary,
1678 non-template, name-mangling algorithm will not be used
1679 later. */
1680 if ((is_member_template (tmpl) || ctype == NULL_TREE)
1681 && name_mangling_version >= 1)
1682 set_mangled_name_for_template_decl (decl);
1684 if (is_friend && !have_def)
1685 /* This is not really a declaration of a specialization.
1686 It's just the name of an instantiation. But, it's not
1687 a request for an instantiation, either. */
1688 SET_DECL_IMPLICIT_INSTANTIATION (decl);
1689 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
1690 /* This is indeed a specialization. In case of constructors
1691 and destructors, we need in-charge and not-in-charge
1692 versions in V3 ABI. */
1693 clone_function_decl (decl, /*update_method_vec_p=*/0);
1695 /* Register this specialization so that we can find it
1696 again. */
1697 decl = register_specialization (decl, gen_tmpl, targs);
1701 return decl;
1704 /* TYPE is being declared. Verify that the use of template headers
1705 and such is reasonable. Issue error messages if not. */
1707 void
1708 maybe_check_template_type (type)
1709 tree type;
1711 if (template_header_count)
1713 /* We are in the scope of some `template <...>' header. */
1715 int context_depth
1716 = template_class_depth_real (TYPE_CONTEXT (type),
1717 /*count_specializations=*/1);
1719 if (template_header_count <= context_depth)
1720 /* This is OK; the template headers are for the context. We
1721 are actually too lenient here; like
1722 check_explicit_specialization we should consider the number
1723 of template types included in the actual declaration. For
1724 example,
1726 template <class T> struct S {
1727 template <class U> template <class V>
1728 struct I {};
1731 is illegal, but:
1733 template <class T> struct S {
1734 template <class U> struct I;
1737 template <class T> template <class U.
1738 struct S<T>::I {};
1740 is not. */
1742 else if (template_header_count > context_depth + 1)
1743 /* There are two many template parameter lists. */
1744 cp_error ("too many template parameter lists in declaration of `%T'", type);
1748 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
1749 parameters. These are represented in the same format used for
1750 DECL_TEMPLATE_PARMS. */
1752 int comp_template_parms (parms1, parms2)
1753 tree parms1;
1754 tree parms2;
1756 tree p1;
1757 tree p2;
1759 if (parms1 == parms2)
1760 return 1;
1762 for (p1 = parms1, p2 = parms2;
1763 p1 != NULL_TREE && p2 != NULL_TREE;
1764 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
1766 tree t1 = TREE_VALUE (p1);
1767 tree t2 = TREE_VALUE (p2);
1768 int i;
1770 my_friendly_assert (TREE_CODE (t1) == TREE_VEC, 0);
1771 my_friendly_assert (TREE_CODE (t2) == TREE_VEC, 0);
1773 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
1774 return 0;
1776 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
1778 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
1779 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
1781 if (TREE_CODE (parm1) != TREE_CODE (parm2))
1782 return 0;
1784 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM)
1785 continue;
1786 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
1787 return 0;
1791 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
1792 /* One set of parameters has more parameters lists than the
1793 other. */
1794 return 0;
1796 return 1;
1799 /* Complain if DECL shadows a template parameter.
1801 [temp.local]: A template-parameter shall not be redeclared within its
1802 scope (including nested scopes). */
1804 void
1805 check_template_shadow (decl)
1806 tree decl;
1808 tree olddecl;
1810 /* If we're not in a template, we can't possibly shadow a template
1811 parameter. */
1812 if (!current_template_parms)
1813 return;
1815 /* Figure out what we're shadowing. */
1816 if (TREE_CODE (decl) == OVERLOAD)
1817 decl = OVL_CURRENT (decl);
1818 olddecl = IDENTIFIER_VALUE (DECL_NAME (decl));
1820 /* If there's no previous binding for this name, we're not shadowing
1821 anything, let alone a template parameter. */
1822 if (!olddecl)
1823 return;
1825 /* If we're not shadowing a template parameter, we're done. Note
1826 that OLDDECL might be an OVERLOAD (or perhaps even an
1827 ERROR_MARK), so we can't just blithely assume it to be a _DECL
1828 node. */
1829 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
1830 return;
1832 /* We check for decl != olddecl to avoid bogus errors for using a
1833 name inside a class. We check TPFI to avoid duplicate errors for
1834 inline member templates. */
1835 if (decl == olddecl
1836 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
1837 return;
1839 cp_error_at ("declaration of `%#D'", decl);
1840 cp_error_at (" shadows template parm `%#D'", olddecl);
1843 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
1844 ORIG_LEVEL, DECL, and TYPE. */
1846 static tree
1847 build_template_parm_index (index, level, orig_level, decl, type)
1848 int index;
1849 int level;
1850 int orig_level;
1851 tree decl;
1852 tree type;
1854 tree t = make_node (TEMPLATE_PARM_INDEX);
1855 TEMPLATE_PARM_IDX (t) = index;
1856 TEMPLATE_PARM_LEVEL (t) = level;
1857 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
1858 TEMPLATE_PARM_DECL (t) = decl;
1859 TREE_TYPE (t) = type;
1861 return t;
1864 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
1865 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
1866 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
1867 new one is created. */
1869 static tree
1870 reduce_template_parm_level (index, type, levels)
1871 tree index;
1872 tree type;
1873 int levels;
1875 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
1876 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
1877 != TEMPLATE_PARM_LEVEL (index) - levels))
1879 tree decl
1880 = build_decl (TREE_CODE (TEMPLATE_PARM_DECL (index)),
1881 DECL_NAME (TEMPLATE_PARM_DECL (index)),
1882 type);
1883 tree t
1884 = build_template_parm_index (TEMPLATE_PARM_IDX (index),
1885 TEMPLATE_PARM_LEVEL (index) - levels,
1886 TEMPLATE_PARM_ORIG_LEVEL (index),
1887 decl, type);
1888 TEMPLATE_PARM_DESCENDANTS (index) = t;
1890 DECL_ARTIFICIAL (decl) = 1;
1891 SET_DECL_TEMPLATE_PARM_P (decl);
1893 /* Template template parameters need this. */
1894 DECL_TEMPLATE_PARMS (decl)
1895 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index));
1898 return TEMPLATE_PARM_DESCENDANTS (index);
1901 /* Process information from new template parameter NEXT and append it to the
1902 LIST being built. */
1904 tree
1905 process_template_parm (list, next)
1906 tree list, next;
1908 tree parm;
1909 tree decl = 0;
1910 tree defval;
1911 int is_type, idx;
1913 parm = next;
1914 my_friendly_assert (TREE_CODE (parm) == TREE_LIST, 259);
1915 defval = TREE_PURPOSE (parm);
1916 parm = TREE_VALUE (parm);
1917 is_type = TREE_PURPOSE (parm) == class_type_node;
1919 if (list)
1921 tree p = TREE_VALUE (tree_last (list));
1923 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
1924 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
1925 else
1926 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
1927 ++idx;
1929 else
1930 idx = 0;
1932 if (!is_type)
1934 my_friendly_assert (TREE_CODE (TREE_PURPOSE (parm)) == TREE_LIST, 260);
1935 /* is a const-param */
1936 parm = grokdeclarator (TREE_VALUE (parm), TREE_PURPOSE (parm),
1937 PARM, 0, NULL_TREE);
1939 /* [temp.param]
1941 The top-level cv-qualifiers on the template-parameter are
1942 ignored when determining its type. */
1943 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
1945 /* A template parameter is not modifiable. */
1946 TREE_READONLY (parm) = 1;
1947 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
1948 TREE_TYPE (parm) = void_type_node;
1949 decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
1950 DECL_INITIAL (parm) = DECL_INITIAL (decl)
1951 = build_template_parm_index (idx, processing_template_decl,
1952 processing_template_decl,
1953 decl, TREE_TYPE (parm));
1955 else
1957 tree t;
1958 parm = TREE_VALUE (parm);
1960 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
1962 t = make_aggr_type (TEMPLATE_TEMPLATE_PARM);
1963 /* This is for distinguishing between real templates and template
1964 template parameters */
1965 TREE_TYPE (parm) = t;
1966 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
1967 decl = parm;
1969 else
1971 t = make_aggr_type (TEMPLATE_TYPE_PARM);
1972 /* parm is either IDENTIFIER_NODE or NULL_TREE */
1973 decl = build_decl (TYPE_DECL, parm, t);
1976 TYPE_NAME (t) = decl;
1977 TYPE_STUB_DECL (t) = decl;
1978 parm = decl;
1979 TEMPLATE_TYPE_PARM_INDEX (t)
1980 = build_template_parm_index (idx, processing_template_decl,
1981 processing_template_decl,
1982 decl, TREE_TYPE (parm));
1984 DECL_ARTIFICIAL (decl) = 1;
1985 SET_DECL_TEMPLATE_PARM_P (decl);
1986 pushdecl (decl);
1987 parm = build_tree_list (defval, parm);
1988 return chainon (list, parm);
1991 /* The end of a template parameter list has been reached. Process the
1992 tree list into a parameter vector, converting each parameter into a more
1993 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
1994 as PARM_DECLs. */
1996 tree
1997 end_template_parm_list (parms)
1998 tree parms;
2000 int nparms;
2001 tree parm;
2002 tree saved_parmlist = make_tree_vec (list_length (parms));
2004 current_template_parms
2005 = tree_cons (size_int (processing_template_decl),
2006 saved_parmlist, current_template_parms);
2008 for (parm = parms, nparms = 0;
2009 parm;
2010 parm = TREE_CHAIN (parm), nparms++)
2011 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
2013 --processing_template_parmlist;
2015 return saved_parmlist;
2018 /* end_template_decl is called after a template declaration is seen. */
2020 void
2021 end_template_decl ()
2023 reset_specialization ();
2025 if (! processing_template_decl)
2026 return;
2028 /* This matches the pushlevel in begin_template_parm_list. */
2029 finish_scope ();
2031 --processing_template_decl;
2032 current_template_parms = TREE_CHAIN (current_template_parms);
2035 /* Given a template argument vector containing the template PARMS.
2036 The innermost PARMS are given first. */
2038 tree
2039 current_template_args ()
2041 tree header;
2042 tree args = NULL_TREE;
2043 int length = TMPL_PARMS_DEPTH (current_template_parms);
2044 int l = length;
2046 /* If there is only one level of template parameters, we do not
2047 create a TREE_VEC of TREE_VECs. Instead, we return a single
2048 TREE_VEC containing the arguments. */
2049 if (length > 1)
2050 args = make_tree_vec (length);
2052 for (header = current_template_parms; header; header = TREE_CHAIN (header))
2054 tree a = copy_node (TREE_VALUE (header));
2055 int i;
2057 TREE_TYPE (a) = NULL_TREE;
2058 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
2060 tree t = TREE_VEC_ELT (a, i);
2062 /* T will be a list if we are called from within a
2063 begin/end_template_parm_list pair, but a vector directly
2064 if within a begin/end_member_template_processing pair. */
2065 if (TREE_CODE (t) == TREE_LIST)
2067 t = TREE_VALUE (t);
2069 if (TREE_CODE (t) == TYPE_DECL
2070 || TREE_CODE (t) == TEMPLATE_DECL)
2071 t = TREE_TYPE (t);
2072 else
2073 t = DECL_INITIAL (t);
2074 TREE_VEC_ELT (a, i) = t;
2078 if (length > 1)
2079 TREE_VEC_ELT (args, --l) = a;
2080 else
2081 args = a;
2084 return args;
2087 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
2088 template PARMS. Used by push_template_decl below. */
2090 static tree
2091 build_template_decl (decl, parms)
2092 tree decl;
2093 tree parms;
2095 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
2096 DECL_TEMPLATE_PARMS (tmpl) = parms;
2097 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
2098 if (DECL_LANG_SPECIFIC (decl))
2100 if (CAN_HAVE_FULL_LANG_DECL_P (decl))
2101 DECL_VIRTUAL_CONTEXT (tmpl) = DECL_VIRTUAL_CONTEXT (decl);
2102 DECL_STATIC_FUNCTION_P (tmpl) = DECL_STATIC_FUNCTION_P (decl);
2103 DECL_CONSTRUCTOR_P (tmpl) = DECL_CONSTRUCTOR_P (decl);
2104 DECL_NONCONVERTING_P (tmpl) = DECL_NONCONVERTING_P (decl);
2105 DECL_ASSIGNMENT_OPERATOR_P (tmpl) = DECL_ASSIGNMENT_OPERATOR_P (decl);
2106 if (DECL_OVERLOADED_OPERATOR_P (decl))
2107 SET_OVERLOADED_OPERATOR_CODE (tmpl,
2108 DECL_OVERLOADED_OPERATOR_P (decl));
2111 return tmpl;
2114 struct template_parm_data
2116 /* The level of the template parameters we are currently
2117 processing. */
2118 int level;
2120 /* The index of the specialization argument we are currently
2121 processing. */
2122 int current_arg;
2124 /* An array whose size is the number of template parameters. The
2125 elements are non-zero if the parameter has been used in any one
2126 of the arguments processed so far. */
2127 int* parms;
2129 /* An array whose size is the number of template arguments. The
2130 elements are non-zero if the argument makes use of template
2131 parameters of this level. */
2132 int* arg_uses_template_parms;
2135 /* Subroutine of push_template_decl used to see if each template
2136 parameter in a partial specialization is used in the explicit
2137 argument list. If T is of the LEVEL given in DATA (which is
2138 treated as a template_parm_data*), then DATA->PARMS is marked
2139 appropriately. */
2141 static int
2142 mark_template_parm (t, data)
2143 tree t;
2144 void* data;
2146 int level;
2147 int idx;
2148 struct template_parm_data* tpd = (struct template_parm_data*) data;
2150 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2152 level = TEMPLATE_PARM_LEVEL (t);
2153 idx = TEMPLATE_PARM_IDX (t);
2155 else
2157 level = TEMPLATE_TYPE_LEVEL (t);
2158 idx = TEMPLATE_TYPE_IDX (t);
2161 if (level == tpd->level)
2163 tpd->parms[idx] = 1;
2164 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
2167 /* Return zero so that for_each_template_parm will continue the
2168 traversal of the tree; we want to mark *every* template parm. */
2169 return 0;
2172 /* Process the partial specialization DECL. */
2174 static tree
2175 process_partial_specialization (decl)
2176 tree decl;
2178 tree type = TREE_TYPE (decl);
2179 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
2180 tree specargs = CLASSTYPE_TI_ARGS (type);
2181 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
2182 tree inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
2183 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
2184 int nargs = TREE_VEC_LENGTH (inner_args);
2185 int ntparms = TREE_VEC_LENGTH (inner_parms);
2186 int i;
2187 int did_error_intro = 0;
2188 struct template_parm_data tpd;
2189 struct template_parm_data tpd2;
2191 /* We check that each of the template parameters given in the
2192 partial specialization is used in the argument list to the
2193 specialization. For example:
2195 template <class T> struct S;
2196 template <class T> struct S<T*>;
2198 The second declaration is OK because `T*' uses the template
2199 parameter T, whereas
2201 template <class T> struct S<int>;
2203 is no good. Even trickier is:
2205 template <class T>
2206 struct S1
2208 template <class U>
2209 struct S2;
2210 template <class U>
2211 struct S2<T>;
2214 The S2<T> declaration is actually illegal; it is a
2215 full-specialization. Of course,
2217 template <class U>
2218 struct S2<T (*)(U)>;
2220 or some such would have been OK. */
2221 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
2222 tpd.parms = alloca (sizeof (int) * ntparms);
2223 memset ((PTR) tpd.parms, 0, sizeof (int) * ntparms);
2225 tpd.arg_uses_template_parms = alloca (sizeof (int) * nargs);
2226 memset ((PTR) tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
2227 for (i = 0; i < nargs; ++i)
2229 tpd.current_arg = i;
2230 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
2231 &mark_template_parm,
2232 &tpd);
2234 for (i = 0; i < ntparms; ++i)
2235 if (tpd.parms[i] == 0)
2237 /* One of the template parms was not used in the
2238 specialization. */
2239 if (!did_error_intro)
2241 cp_error ("template parameters not used in partial specialization:");
2242 did_error_intro = 1;
2245 cp_error (" `%D'",
2246 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
2249 /* [temp.class.spec]
2251 The argument list of the specialization shall not be identical to
2252 the implicit argument list of the primary template. */
2253 if (comp_template_args
2254 (inner_args,
2255 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
2256 (maintmpl)))))
2257 cp_error ("partial specialization `%T' does not specialize any template arguments", type);
2259 /* [temp.class.spec]
2261 A partially specialized non-type argument expression shall not
2262 involve template parameters of the partial specialization except
2263 when the argument expression is a simple identifier.
2265 The type of a template parameter corresponding to a specialized
2266 non-type argument shall not be dependent on a parameter of the
2267 specialization. */
2268 my_friendly_assert (nargs == DECL_NTPARMS (maintmpl), 0);
2269 tpd2.parms = 0;
2270 for (i = 0; i < nargs; ++i)
2272 tree arg = TREE_VEC_ELT (inner_args, i);
2273 if (/* These first two lines are the `non-type' bit. */
2274 !TYPE_P (arg)
2275 && TREE_CODE (arg) != TEMPLATE_DECL
2276 /* This next line is the `argument expression is not just a
2277 simple identifier' condition and also the `specialized
2278 non-type argument' bit. */
2279 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
2281 if (tpd.arg_uses_template_parms[i])
2282 cp_error ("template argument `%E' involves template parameter(s)", arg);
2283 else
2285 /* Look at the corresponding template parameter,
2286 marking which template parameters its type depends
2287 upon. */
2288 tree type =
2289 TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (main_inner_parms,
2290 i)));
2292 if (!tpd2.parms)
2294 /* We haven't yet initialized TPD2. Do so now. */
2295 tpd2.arg_uses_template_parms
2296 = (int*) alloca (sizeof (int) * nargs);
2297 /* The number of parameters here is the number in the
2298 main template, which, as checked in the assertion
2299 above, is NARGS. */
2300 tpd2.parms = (int*) alloca (sizeof (int) * nargs);
2301 tpd2.level =
2302 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
2305 /* Mark the template parameters. But this time, we're
2306 looking for the template parameters of the main
2307 template, not in the specialization. */
2308 tpd2.current_arg = i;
2309 tpd2.arg_uses_template_parms[i] = 0;
2310 memset ((PTR) tpd2.parms, 0, sizeof (int) * nargs);
2311 for_each_template_parm (type,
2312 &mark_template_parm,
2313 &tpd2);
2315 if (tpd2.arg_uses_template_parms [i])
2317 /* The type depended on some template parameters.
2318 If they are fully specialized in the
2319 specialization, that's OK. */
2320 int j;
2321 for (j = 0; j < nargs; ++j)
2322 if (tpd2.parms[j] != 0
2323 && tpd.arg_uses_template_parms [j])
2325 cp_error ("type `%T' of template argument `%E' depends on template parameter(s)",
2326 type,
2327 arg);
2328 break;
2335 if (retrieve_specialization (maintmpl, specargs))
2336 /* We've already got this specialization. */
2337 return decl;
2339 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
2340 = tree_cons (inner_args, inner_parms,
2341 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
2342 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
2343 return decl;
2346 /* Check that a template declaration's use of default arguments is not
2347 invalid. Here, PARMS are the template parameters. IS_PRIMARY is
2348 non-zero if DECL is the thing declared by a primary template.
2349 IS_PARTIAL is non-zero if DECL is a partial specialization. */
2351 static void
2352 check_default_tmpl_args (decl, parms, is_primary, is_partial)
2353 tree decl;
2354 tree parms;
2355 int is_primary;
2356 int is_partial;
2358 const char *msg;
2359 int last_level_to_check;
2360 tree parm_level;
2362 /* [temp.param]
2364 A default template-argument shall not be specified in a
2365 function template declaration or a function template definition, nor
2366 in the template-parameter-list of the definition of a member of a
2367 class template. */
2369 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
2370 /* You can't have a function template declaration in a local
2371 scope, nor you can you define a member of a class template in a
2372 local scope. */
2373 return;
2375 if (current_class_type
2376 && !TYPE_BEING_DEFINED (current_class_type)
2377 && DECL_LANG_SPECIFIC (decl)
2378 /* If this is either a friend defined in the scope of the class
2379 or a member function. */
2380 && ((DECL_CONTEXT (decl)
2381 && same_type_p (DECL_CONTEXT (decl), current_class_type))
2382 || (DECL_FRIEND_CONTEXT (decl)
2383 && same_type_p (DECL_FRIEND_CONTEXT (decl),
2384 current_class_type)))
2385 /* And, if it was a member function, it really was defined in
2386 the scope of the class. */
2387 && (!DECL_FUNCTION_MEMBER_P (decl) || DECL_INITIALIZED_IN_CLASS_P (decl)))
2388 /* We already checked these parameters when the template was
2389 declared, so there's no need to do it again now. This function
2390 was defined in class scope, but we're processing it's body now
2391 that the class is complete. */
2392 return;
2394 /* [temp.param]
2396 If a template-parameter has a default template-argument, all
2397 subsequent template-parameters shall have a default
2398 template-argument supplied. */
2399 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
2401 tree inner_parms = TREE_VALUE (parm_level);
2402 int ntparms = TREE_VEC_LENGTH (inner_parms);
2403 int seen_def_arg_p = 0;
2404 int i;
2406 for (i = 0; i < ntparms; ++i)
2408 tree parm = TREE_VEC_ELT (inner_parms, i);
2409 if (TREE_PURPOSE (parm))
2410 seen_def_arg_p = 1;
2411 else if (seen_def_arg_p)
2413 cp_error ("no default argument for `%D'", TREE_VALUE (parm));
2414 /* For better subsequent error-recovery, we indicate that
2415 there should have been a default argument. */
2416 TREE_PURPOSE (parm) = error_mark_node;
2421 if (TREE_CODE (decl) != TYPE_DECL || is_partial || !is_primary)
2422 /* For an ordinary class template, default template arguments are
2423 allowed at the innermost level, e.g.:
2424 template <class T = int>
2425 struct S {};
2426 but, in a partial specialization, they're not allowed even
2427 there, as we have in [temp.class.spec]:
2429 The template parameter list of a specialization shall not
2430 contain default template argument values.
2432 So, for a partial specialization, or for a function template,
2433 we look at all of them. */
2435 else
2436 /* But, for a primary class template that is not a partial
2437 specialization we look at all template parameters except the
2438 innermost ones. */
2439 parms = TREE_CHAIN (parms);
2441 /* Figure out what error message to issue. */
2442 if (TREE_CODE (decl) == FUNCTION_DECL)
2443 msg = "default argument for template parameter in function template `%D'";
2444 else if (is_partial)
2445 msg = "default argument in partial specialization `%D'";
2446 else
2447 msg = "default argument for template parameter for class enclosing `%D'";
2449 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
2450 /* If we're inside a class definition, there's no need to
2451 examine the parameters to the class itself. On the one
2452 hand, they will be checked when the class is defined, and,
2453 on the other, default arguments are legal in things like:
2454 template <class T = double>
2455 struct S { template <class U> void f(U); };
2456 Here the default argument for `S' has no bearing on the
2457 declaration of `f'. */
2458 last_level_to_check = template_class_depth (current_class_type) + 1;
2459 else
2460 /* Check everything. */
2461 last_level_to_check = 0;
2463 for (parm_level = parms;
2464 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
2465 parm_level = TREE_CHAIN (parm_level))
2467 tree inner_parms = TREE_VALUE (parm_level);
2468 int i;
2469 int ntparms;
2471 ntparms = TREE_VEC_LENGTH (inner_parms);
2472 for (i = 0; i < ntparms; ++i)
2473 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
2475 if (msg)
2477 cp_error (msg, decl);
2478 msg = 0;
2481 /* Clear out the default argument so that we are not
2482 confused later. */
2483 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
2486 /* At this point, if we're still interested in issuing messages,
2487 they must apply to classes surrounding the object declared. */
2488 if (msg)
2489 msg = "default argument for template parameter for class enclosing `%D'";
2493 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
2494 parameters given by current_template_args, or reuses a
2495 previously existing one, if appropriate. Returns the DECL, or an
2496 equivalent one, if it is replaced via a call to duplicate_decls.
2498 If IS_FRIEND is non-zero, DECL is a friend declaration. */
2500 tree
2501 push_template_decl_real (decl, is_friend)
2502 tree decl;
2503 int is_friend;
2505 tree tmpl;
2506 tree args;
2507 tree info;
2508 tree ctx;
2509 int primary;
2510 int is_partial;
2511 int new_template_p = 0;
2513 /* See if this is a partial specialization. */
2514 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
2515 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
2516 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
2518 is_friend |= (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl));
2520 if (is_friend)
2521 /* For a friend, we want the context of the friend function, not
2522 the type of which it is a friend. */
2523 ctx = DECL_CONTEXT (decl);
2524 else if (CP_DECL_CONTEXT (decl)
2525 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
2526 /* In the case of a virtual function, we want the class in which
2527 it is defined. */
2528 ctx = CP_DECL_CONTEXT (decl);
2529 else
2530 /* Otherwise, if we're currently defining some class, the DECL
2531 is assumed to be a member of the class. */
2532 ctx = current_scope ();
2534 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
2535 ctx = NULL_TREE;
2537 if (!DECL_CONTEXT (decl))
2538 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
2540 /* See if this is a primary template. */
2541 primary = template_parm_scope_p ();
2543 if (primary)
2545 if (current_lang_name == lang_name_c)
2546 cp_error ("template with C linkage");
2547 else if (TREE_CODE (decl) == TYPE_DECL
2548 && ANON_AGGRNAME_P (DECL_NAME (decl)))
2549 cp_error ("template class without a name");
2550 else if ((DECL_IMPLICIT_TYPEDEF_P (decl)
2551 && CLASS_TYPE_P (TREE_TYPE (decl)))
2552 || (TREE_CODE (decl) == VAR_DECL && ctx && CLASS_TYPE_P (ctx))
2553 || TREE_CODE (decl) == FUNCTION_DECL)
2554 /* OK */;
2555 else
2556 cp_error ("template declaration of `%#D'", decl);
2559 /* Check to see that the rules regarding the use of default
2560 arguments are not being violated. */
2561 check_default_tmpl_args (decl, current_template_parms,
2562 primary, is_partial);
2564 if (is_partial)
2565 return process_partial_specialization (decl);
2567 args = current_template_args ();
2569 if (!ctx
2570 || TREE_CODE (ctx) == FUNCTION_DECL
2571 || TYPE_BEING_DEFINED (ctx)
2572 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
2574 if (DECL_LANG_SPECIFIC (decl)
2575 && DECL_TEMPLATE_INFO (decl)
2576 && DECL_TI_TEMPLATE (decl))
2577 tmpl = DECL_TI_TEMPLATE (decl);
2578 /* If DECL is a TYPE_DECL for a class-template, then there won't
2579 be DECL_LANG_SPECIFIC. The information equivalent to
2580 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
2581 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
2582 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2583 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2585 /* Since a template declaration already existed for this
2586 class-type, we must be redeclaring it here. Make sure
2587 that the redeclaration is legal. */
2588 redeclare_class_template (TREE_TYPE (decl),
2589 current_template_parms);
2590 /* We don't need to create a new TEMPLATE_DECL; just use the
2591 one we already had. */
2592 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
2594 else
2596 tmpl = build_template_decl (decl, current_template_parms);
2597 new_template_p = 1;
2599 if (DECL_LANG_SPECIFIC (decl)
2600 && DECL_TEMPLATE_SPECIALIZATION (decl))
2602 /* A specialization of a member template of a template
2603 class. */
2604 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2605 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
2606 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
2610 else
2612 tree a, t, current, parms;
2613 int i;
2615 if (TREE_CODE (decl) == TYPE_DECL)
2617 if ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (decl)))
2618 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
2619 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2620 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2621 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
2622 else
2624 cp_error ("`%D' does not declare a template type", decl);
2625 return decl;
2628 else if (! DECL_TEMPLATE_INFO (decl))
2630 cp_error ("template definition of non-template `%#D'", decl);
2631 return decl;
2633 else
2634 tmpl = DECL_TI_TEMPLATE (decl);
2636 if (is_member_template (tmpl)
2637 && DECL_FUNCTION_TEMPLATE_P (tmpl)
2638 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
2639 && DECL_TEMPLATE_SPECIALIZATION (decl))
2641 tree new_tmpl;
2643 /* The declaration is a specialization of a member
2644 template, declared outside the class. Therefore, the
2645 innermost template arguments will be NULL, so we
2646 replace them with the arguments determined by the
2647 earlier call to check_explicit_specialization. */
2648 args = DECL_TI_ARGS (decl);
2650 new_tmpl
2651 = build_template_decl (decl, current_template_parms);
2652 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
2653 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
2654 DECL_TI_TEMPLATE (decl) = new_tmpl;
2655 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
2656 DECL_TEMPLATE_INFO (new_tmpl)
2657 = tree_cons (tmpl, args, NULL_TREE);
2659 register_specialization (new_tmpl,
2660 most_general_template (tmpl),
2661 args);
2662 return decl;
2665 /* Make sure the template headers we got make sense. */
2667 parms = DECL_TEMPLATE_PARMS (tmpl);
2668 i = TMPL_PARMS_DEPTH (parms);
2669 if (TMPL_ARGS_DEPTH (args) != i)
2671 cp_error ("expected %d levels of template parms for `%#D', got %d",
2672 i, decl, TMPL_ARGS_DEPTH (args));
2674 else
2675 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
2677 a = TMPL_ARGS_LEVEL (args, i);
2678 t = INNERMOST_TEMPLATE_PARMS (parms);
2680 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
2682 if (current == decl)
2683 cp_error ("got %d template parameters for `%#D'",
2684 TREE_VEC_LENGTH (a), decl);
2685 else
2686 cp_error ("got %d template parameters for `%#T'",
2687 TREE_VEC_LENGTH (a), current);
2688 cp_error (" but %d required", TREE_VEC_LENGTH (t));
2691 /* Perhaps we should also check that the parms are used in the
2692 appropriate qualifying scopes in the declarator? */
2694 if (current == decl)
2695 current = ctx;
2696 else
2697 current = TYPE_CONTEXT (current);
2701 DECL_TEMPLATE_RESULT (tmpl) = decl;
2702 TREE_TYPE (tmpl) = TREE_TYPE (decl);
2704 /* Push template declarations for global functions and types. Note
2705 that we do not try to push a global template friend declared in a
2706 template class; such a thing may well depend on the template
2707 parameters of the class. */
2708 if (new_template_p && !ctx
2709 && !(is_friend && template_class_depth (current_class_type) > 0))
2710 tmpl = pushdecl_namespace_level (tmpl);
2712 if (primary)
2713 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
2715 info = tree_cons (tmpl, args, NULL_TREE);
2717 if (DECL_IMPLICIT_TYPEDEF_P (decl))
2719 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
2720 if ((!ctx || TREE_CODE (ctx) != FUNCTION_DECL)
2721 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE)
2722 DECL_NAME (decl) = classtype_mangled_name (TREE_TYPE (decl));
2724 else if (DECL_LANG_SPECIFIC (decl))
2725 DECL_TEMPLATE_INFO (decl) = info;
2727 return DECL_TEMPLATE_RESULT (tmpl);
2730 tree
2731 push_template_decl (decl)
2732 tree decl;
2734 return push_template_decl_real (decl, 0);
2737 /* Called when a class template TYPE is redeclared with the indicated
2738 template PARMS, e.g.:
2740 template <class T> struct S;
2741 template <class T> struct S {}; */
2743 void
2744 redeclare_class_template (type, parms)
2745 tree type;
2746 tree parms;
2748 tree tmpl;
2749 tree tmpl_parms;
2750 int i;
2752 if (!TYPE_TEMPLATE_INFO (type))
2754 cp_error ("`%T' is not a template type", type);
2755 return;
2758 tmpl = TYPE_TI_TEMPLATE (type);
2759 if (!PRIMARY_TEMPLATE_P (tmpl))
2760 /* The type is nested in some template class. Nothing to worry
2761 about here; there are no new template parameters for the nested
2762 type. */
2763 return;
2765 parms = INNERMOST_TEMPLATE_PARMS (parms);
2766 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
2768 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
2770 cp_error_at ("previous declaration `%D'", tmpl);
2771 cp_error ("used %d template parameter%s instead of %d",
2772 TREE_VEC_LENGTH (tmpl_parms),
2773 TREE_VEC_LENGTH (tmpl_parms) == 1 ? "" : "s",
2774 TREE_VEC_LENGTH (parms));
2775 return;
2778 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
2780 tree tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
2781 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
2782 tree tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
2783 tree parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
2785 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm))
2787 cp_error_at ("template parameter `%#D'", tmpl_parm);
2788 cp_error ("redeclared here as `%#D'", parm);
2789 return;
2792 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
2794 /* We have in [temp.param]:
2796 A template-parameter may not be given default arguments
2797 by two different declarations in the same scope. */
2798 cp_error ("redefinition of default argument for `%#D'", parm);
2799 cp_error_at (" original definition appeared here", tmpl_parm);
2800 return;
2803 if (parm_default != NULL_TREE)
2804 /* Update the previous template parameters (which are the ones
2805 that will really count) with the new default value. */
2806 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
2807 else if (tmpl_default != NULL_TREE)
2808 /* Update the new parameters, too; they'll be used as the
2809 parameters for any members. */
2810 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
2814 /* Attempt to convert the non-type template parameter EXPR to the
2815 indicated TYPE. If the conversion is successful, return the
2816 converted value. If the conversion is unsuccessful, return
2817 NULL_TREE if we issued an error message, or error_mark_node if we
2818 did not. We issue error messages for out-and-out bad template
2819 parameters, but not simply because the conversion failed, since we
2820 might be just trying to do argument deduction. By the time this
2821 function is called, neither TYPE nor EXPR may make use of template
2822 parameters. */
2824 static tree
2825 convert_nontype_argument (type, expr)
2826 tree type;
2827 tree expr;
2829 tree expr_type = TREE_TYPE (expr);
2831 /* A template-argument for a non-type, non-template
2832 template-parameter shall be one of:
2834 --an integral constant-expression of integral or enumeration
2835 type; or
2837 --the name of a non-type template-parameter; or
2839 --the name of an object or function with external linkage,
2840 including function templates and function template-ids but
2841 excluding non-static class members, expressed as id-expression;
2844 --the address of an object or function with external linkage,
2845 including function templates and function template-ids but
2846 excluding non-static class members, expressed as & id-expression
2847 where the & is optional if the name refers to a function or
2848 array; or
2850 --a pointer to member expressed as described in _expr.unary.op_. */
2852 /* An integral constant-expression can include const variables or
2853 enumerators. Simplify things by folding them to their values,
2854 unless we're about to bind the declaration to a reference
2855 parameter. */
2856 if (INTEGRAL_TYPE_P (expr_type)
2857 && TREE_CODE (type) != REFERENCE_TYPE)
2858 expr = decl_constant_value (expr);
2860 if (is_overloaded_fn (expr))
2861 /* OK for now. We'll check that it has external linkage later.
2862 Check this first since if expr_type is the unknown_type_node
2863 we would otherwise complain below. */
2865 else if (TYPE_PTRMEM_P (expr_type)
2866 || TYPE_PTRMEMFUNC_P (expr_type))
2868 if (TREE_CODE (expr) != PTRMEM_CST)
2869 goto bad_argument;
2871 else if (TYPE_PTR_P (expr_type)
2872 || TYPE_PTRMEM_P (expr_type)
2873 || TREE_CODE (expr_type) == ARRAY_TYPE
2874 || TREE_CODE (type) == REFERENCE_TYPE
2875 /* If expr is the address of an overloaded function, we
2876 will get the unknown_type_node at this point. */
2877 || expr_type == unknown_type_node)
2879 tree referent;
2880 tree e = expr;
2881 STRIP_NOPS (e);
2883 if (TREE_CODE (expr_type) == ARRAY_TYPE
2884 || (TREE_CODE (type) == REFERENCE_TYPE
2885 && TREE_CODE (e) != ADDR_EXPR))
2886 referent = e;
2887 else
2889 if (TREE_CODE (e) != ADDR_EXPR)
2891 bad_argument:
2892 cp_error ("`%E' is not a valid template argument", expr);
2893 if (TYPE_PTR_P (expr_type))
2895 if (TREE_CODE (TREE_TYPE (expr_type)) == FUNCTION_TYPE)
2896 cp_error ("it must be the address of a function with external linkage");
2897 else
2898 cp_error ("it must be the address of an object with external linkage");
2900 else if (TYPE_PTRMEM_P (expr_type)
2901 || TYPE_PTRMEMFUNC_P (expr_type))
2902 cp_error ("it must be a pointer-to-member of the form `&X::Y'");
2904 return NULL_TREE;
2907 referent = TREE_OPERAND (e, 0);
2908 STRIP_NOPS (referent);
2911 if (TREE_CODE (referent) == STRING_CST)
2913 cp_error ("string literal %E is not a valid template argument because it is the address of an object with static linkage",
2914 referent);
2915 return NULL_TREE;
2918 if (is_overloaded_fn (referent))
2919 /* We'll check that it has external linkage later. */
2921 else if (TREE_CODE (referent) != VAR_DECL)
2922 goto bad_argument;
2923 else if (!DECL_EXTERNAL_LINKAGE_P (referent))
2925 cp_error ("address of non-extern `%E' cannot be used as template argument", referent);
2926 return error_mark_node;
2929 else if (INTEGRAL_TYPE_P (expr_type)
2930 || TYPE_PTRMEM_P (expr_type)
2931 || TYPE_PTRMEMFUNC_P (expr_type)
2932 /* The next two are g++ extensions. */
2933 || TREE_CODE (expr_type) == REAL_TYPE
2934 || TREE_CODE (expr_type) == COMPLEX_TYPE)
2936 if (! TREE_CONSTANT (expr))
2938 non_constant:
2939 cp_error ("non-constant `%E' cannot be used as template argument",
2940 expr);
2941 return NULL_TREE;
2944 else
2946 cp_error ("object `%E' cannot be used as template argument", expr);
2947 return NULL_TREE;
2950 switch (TREE_CODE (type))
2952 case INTEGER_TYPE:
2953 case BOOLEAN_TYPE:
2954 case ENUMERAL_TYPE:
2955 /* For a non-type template-parameter of integral or enumeration
2956 type, integral promotions (_conv.prom_) and integral
2957 conversions (_conv.integral_) are applied. */
2958 if (!INTEGRAL_TYPE_P (expr_type))
2959 return error_mark_node;
2961 /* It's safe to call digest_init in this case; we know we're
2962 just converting one integral constant expression to another. */
2963 expr = digest_init (type, expr, (tree*) 0);
2965 if (TREE_CODE (expr) != INTEGER_CST)
2966 /* Curiously, some TREE_CONSTANT integral expressions do not
2967 simplify to integer constants. For example, `3 % 0',
2968 remains a TRUNC_MOD_EXPR. */
2969 goto non_constant;
2971 return expr;
2973 case REAL_TYPE:
2974 case COMPLEX_TYPE:
2975 /* These are g++ extensions. */
2976 if (TREE_CODE (expr_type) != TREE_CODE (type))
2977 return error_mark_node;
2979 expr = digest_init (type, expr, (tree*) 0);
2981 if (TREE_CODE (expr) != REAL_CST)
2982 goto non_constant;
2984 return expr;
2986 case POINTER_TYPE:
2988 tree type_pointed_to = TREE_TYPE (type);
2990 if (TYPE_PTRMEM_P (type))
2992 tree e;
2994 /* For a non-type template-parameter of type pointer to data
2995 member, qualification conversions (_conv.qual_) are
2996 applied. */
2997 e = perform_qualification_conversions (type, expr);
2998 if (TREE_CODE (e) == NOP_EXPR)
2999 /* The call to perform_qualification_conversions will
3000 insert a NOP_EXPR over EXPR to do express conversion,
3001 if necessary. But, that will confuse us if we use
3002 this (converted) template parameter to instantiate
3003 another template; then the thing will not look like a
3004 valid template argument. So, just make a new
3005 constant, of the appropriate type. */
3006 e = make_ptrmem_cst (type, PTRMEM_CST_MEMBER (expr));
3007 return e;
3009 else if (TREE_CODE (type_pointed_to) == FUNCTION_TYPE)
3011 /* For a non-type template-parameter of type pointer to
3012 function, only the function-to-pointer conversion
3013 (_conv.func_) is applied. If the template-argument
3014 represents a set of overloaded functions (or a pointer to
3015 such), the matching function is selected from the set
3016 (_over.over_). */
3017 tree fns;
3018 tree fn;
3020 if (TREE_CODE (expr) == ADDR_EXPR)
3021 fns = TREE_OPERAND (expr, 0);
3022 else
3023 fns = expr;
3025 fn = instantiate_type (type_pointed_to, fns, itf_none);
3027 if (fn == error_mark_node)
3028 return error_mark_node;
3030 if (!DECL_EXTERNAL_LINKAGE_P (fn))
3032 if (really_overloaded_fn (fns))
3033 return error_mark_node;
3034 else
3035 goto bad_argument;
3038 expr = build_unary_op (ADDR_EXPR, fn, 0);
3040 my_friendly_assert (same_type_p (type, TREE_TYPE (expr)),
3042 return expr;
3044 else
3046 /* For a non-type template-parameter of type pointer to
3047 object, qualification conversions (_conv.qual_) and the
3048 array-to-pointer conversion (_conv.array_) are applied.
3049 [Note: In particular, neither the null pointer conversion
3050 (_conv.ptr_) nor the derived-to-base conversion
3051 (_conv.ptr_) are applied. Although 0 is a valid
3052 template-argument for a non-type template-parameter of
3053 integral type, it is not a valid template-argument for a
3054 non-type template-parameter of pointer type.]
3056 The call to decay_conversion performs the
3057 array-to-pointer conversion, if appropriate. */
3058 expr = decay_conversion (expr);
3060 if (expr == error_mark_node)
3061 return error_mark_node;
3062 else
3063 return perform_qualification_conversions (type, expr);
3066 break;
3068 case REFERENCE_TYPE:
3070 tree type_referred_to = TREE_TYPE (type);
3072 /* If this expression already has reference type, get the
3073 underling object. */
3074 if (TREE_CODE (expr_type) == REFERENCE_TYPE)
3076 my_friendly_assert (TREE_CODE (expr) == ADDR_EXPR, 20000604);
3077 expr = TREE_OPERAND (expr, 0);
3078 expr_type = TREE_TYPE (expr);
3081 if (TREE_CODE (type_referred_to) == FUNCTION_TYPE)
3083 /* For a non-type template-parameter of type reference to
3084 function, no conversions apply. If the
3085 template-argument represents a set of overloaded
3086 functions, the matching function is selected from the
3087 set (_over.over_). */
3088 tree fn;
3090 fn = instantiate_type (type_referred_to, expr, itf_none);
3092 if (fn == error_mark_node)
3093 return error_mark_node;
3095 if (!DECL_EXTERNAL_LINKAGE_P (fn))
3097 if (really_overloaded_fn (expr))
3098 /* Don't issue an error here; we might get a different
3099 function if the overloading had worked out
3100 differently. */
3101 return error_mark_node;
3102 else
3103 goto bad_argument;
3106 my_friendly_assert (same_type_p (type_referred_to,
3107 TREE_TYPE (fn)),
3110 expr = fn;
3112 else
3114 /* For a non-type template-parameter of type reference to
3115 object, no conversions apply. The type referred to by the
3116 reference may be more cv-qualified than the (otherwise
3117 identical) type of the template-argument. The
3118 template-parameter is bound directly to the
3119 template-argument, which must be an lvalue. */
3120 if (!same_type_p (TYPE_MAIN_VARIANT (expr_type),
3121 TYPE_MAIN_VARIANT (type_referred_to))
3122 || !at_least_as_qualified_p (type_referred_to,
3123 expr_type)
3124 || !real_lvalue_p (expr))
3125 return error_mark_node;
3128 mark_addressable (expr);
3129 return build1 (ADDR_EXPR, type, expr);
3131 break;
3133 case RECORD_TYPE:
3135 my_friendly_assert (TYPE_PTRMEMFUNC_P (type), 20010112);
3137 /* For a non-type template-parameter of type pointer to member
3138 function, no conversions apply. If the template-argument
3139 represents a set of overloaded member functions, the
3140 matching member function is selected from the set
3141 (_over.over_). */
3143 if (!TYPE_PTRMEMFUNC_P (expr_type) &&
3144 expr_type != unknown_type_node)
3145 return error_mark_node;
3147 if (TREE_CODE (expr) == PTRMEM_CST)
3149 /* A ptr-to-member constant. */
3150 if (!same_type_p (type, expr_type))
3151 return error_mark_node;
3152 else
3153 return expr;
3156 if (TREE_CODE (expr) != ADDR_EXPR)
3157 return error_mark_node;
3159 expr = instantiate_type (type, expr, itf_none);
3161 if (expr == error_mark_node)
3162 return error_mark_node;
3164 my_friendly_assert (same_type_p (type, TREE_TYPE (expr)),
3166 return expr;
3168 break;
3170 default:
3171 /* All non-type parameters must have one of these types. */
3172 my_friendly_abort (0);
3173 break;
3176 return error_mark_node;
3179 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
3180 template template parameters. Both PARM_PARMS and ARG_PARMS are
3181 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
3182 or PARM_DECL.
3184 ARG_PARMS may contain more parameters than PARM_PARMS. If this is
3185 the case, then extra parameters must have default arguments.
3187 Consider the example:
3188 template <class T, class Allocator = allocator> class vector;
3189 template<template <class U> class TT> class C;
3191 C<vector> is a valid instantiation. PARM_PARMS for the above code
3192 contains a TYPE_DECL (for U), ARG_PARMS contains two TYPE_DECLs (for
3193 T and Allocator) and OUTER_ARGS contains the argument that is used to
3194 substitute the TT parameter. */
3196 static int
3197 coerce_template_template_parms (parm_parms, arg_parms, complain,
3198 in_decl, outer_args)
3199 tree parm_parms, arg_parms;
3200 int complain;
3201 tree in_decl, outer_args;
3203 int nparms, nargs, i;
3204 tree parm, arg;
3206 my_friendly_assert (TREE_CODE (parm_parms) == TREE_VEC, 0);
3207 my_friendly_assert (TREE_CODE (arg_parms) == TREE_VEC, 0);
3209 nparms = TREE_VEC_LENGTH (parm_parms);
3210 nargs = TREE_VEC_LENGTH (arg_parms);
3212 /* The rule here is opposite of coerce_template_parms. */
3213 if (nargs < nparms
3214 || (nargs > nparms
3215 && TREE_PURPOSE (TREE_VEC_ELT (arg_parms, nparms)) == NULL_TREE))
3216 return 0;
3218 for (i = 0; i < nparms; ++i)
3220 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
3221 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
3223 if (arg == NULL_TREE || arg == error_mark_node
3224 || parm == NULL_TREE || parm == error_mark_node)
3225 return 0;
3227 if (TREE_CODE (arg) != TREE_CODE (parm))
3228 return 0;
3230 switch (TREE_CODE (parm))
3232 case TYPE_DECL:
3233 break;
3235 case TEMPLATE_DECL:
3236 /* We encounter instantiations of templates like
3237 template <template <template <class> class> class TT>
3238 class C; */
3240 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3241 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3243 if (!coerce_template_template_parms (parmparm, argparm,
3244 complain, in_decl,
3245 outer_args))
3246 return 0;
3248 break;
3250 case PARM_DECL:
3251 /* The tsubst call is used to handle cases such as
3252 template <class T, template <T> class TT> class D;
3253 i.e. the parameter list of TT depends on earlier parameters. */
3254 if (!same_type_p (tsubst (TREE_TYPE (parm), outer_args,
3255 complain, in_decl),
3256 TREE_TYPE (arg)))
3257 return 0;
3258 break;
3260 default:
3261 my_friendly_abort (0);
3264 return 1;
3267 /* Convert the indicated template ARG as necessary to match the
3268 indicated template PARM. Returns the converted ARG, or
3269 error_mark_node if the conversion was unsuccessful. Error messages
3270 are issued if COMPLAIN is non-zero. This conversion is for the Ith
3271 parameter in the parameter list. ARGS is the full set of template
3272 arguments deduced so far. */
3274 static tree
3275 convert_template_argument (parm, arg, args, complain, i, in_decl)
3276 tree parm;
3277 tree arg;
3278 tree args;
3279 int complain;
3280 int i;
3281 tree in_decl;
3283 tree val;
3284 tree inner_args;
3285 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
3287 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3289 if (TREE_CODE (arg) == TREE_LIST
3290 && TREE_TYPE (arg) != NULL_TREE
3291 && TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE)
3293 /* The template argument was the name of some
3294 member function. That's usually
3295 illegal, but static members are OK. In any
3296 case, grab the underlying fields/functions
3297 and issue an error later if required. */
3298 arg = TREE_VALUE (arg);
3299 TREE_TYPE (arg) = unknown_type_node;
3302 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
3303 requires_type = (TREE_CODE (parm) == TYPE_DECL
3304 || requires_tmpl_type);
3306 /* Check if it is a class template. If REQUIRES_TMPL_TYPE is true,
3307 we also accept implicitly created TYPE_DECL as a valid argument.
3308 This is necessary to handle the case where we pass a template name
3309 to a template template parameter in a scope where we've derived from
3310 in instantiation of that template, so the template name refers to that
3311 instantiation. We really ought to handle this better. */
3312 is_tmpl_type
3313 = ((TREE_CODE (arg) == TEMPLATE_DECL
3314 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
3315 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3316 || (TREE_CODE (arg) == RECORD_TYPE
3317 && CLASSTYPE_TEMPLATE_INFO (arg)
3318 && TREE_CODE (TYPE_NAME (arg)) == TYPE_DECL
3319 && DECL_ARTIFICIAL (TYPE_NAME (arg))
3320 && requires_tmpl_type
3321 && is_base_of_enclosing_class (arg, current_class_type)));
3322 if (is_tmpl_type && TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
3323 arg = TYPE_STUB_DECL (arg);
3324 else if (is_tmpl_type && TREE_CODE (arg) == RECORD_TYPE)
3325 arg = CLASSTYPE_TI_TEMPLATE (arg);
3327 is_type = TYPE_P (arg) || is_tmpl_type;
3329 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
3330 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
3332 cp_pedwarn ("to refer to a type member of a template parameter, use `typename %E'", arg);
3334 arg = make_typename_type (TREE_OPERAND (arg, 0),
3335 TREE_OPERAND (arg, 1),
3336 complain);
3337 is_type = 1;
3339 if (is_type != requires_type)
3341 if (in_decl)
3343 if (complain)
3345 cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
3346 i + 1, in_decl);
3347 if (is_type)
3348 cp_error (" expected a constant of type `%T', got `%T'",
3349 TREE_TYPE (parm),
3350 (is_tmpl_type ? DECL_NAME (arg) : arg));
3351 else
3352 cp_error (" expected a type, got `%E'", arg);
3355 return error_mark_node;
3357 if (is_tmpl_type ^ requires_tmpl_type)
3359 if (in_decl && complain)
3361 cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
3362 i + 1, in_decl);
3363 if (is_tmpl_type)
3364 cp_error (" expected a type, got `%T'", DECL_NAME (arg));
3365 else
3366 cp_error (" expected a class template, got `%T'", arg);
3368 return error_mark_node;
3371 if (is_type)
3373 if (requires_tmpl_type)
3375 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3376 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3378 if (coerce_template_template_parms (parmparm, argparm, complain,
3379 in_decl, inner_args))
3381 val = arg;
3383 /* TEMPLATE_TEMPLATE_PARM node is preferred over
3384 TEMPLATE_DECL. */
3385 if (val != error_mark_node
3386 && DECL_TEMPLATE_TEMPLATE_PARM_P (val))
3387 val = TREE_TYPE (val);
3389 else
3391 if (in_decl && complain)
3393 cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
3394 i + 1, in_decl);
3395 cp_error (" expected a template of type `%D', got `%D'", parm, arg);
3398 val = error_mark_node;
3401 else
3403 val = groktypename (arg);
3404 if (! processing_template_decl)
3406 /* [basic.link]: A name with no linkage (notably, the
3407 name of a class or enumeration declared in a local
3408 scope) shall not be used to declare an entity with
3409 linkage. This implies that names with no linkage
3410 cannot be used as template arguments. */
3411 tree t = no_linkage_check (val);
3412 if (t)
3414 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
3415 cp_pedwarn
3416 ("template-argument `%T' uses anonymous type", val);
3417 else
3418 cp_error
3419 ("template-argument `%T' uses local type `%T'",
3420 val, t);
3421 return error_mark_node;
3426 else
3428 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
3430 if (invalid_nontype_parm_type_p (t, complain))
3431 return error_mark_node;
3433 if (processing_template_decl)
3434 arg = maybe_fold_nontype_arg (arg);
3436 if (!uses_template_parms (arg) && !uses_template_parms (t))
3437 /* We used to call digest_init here. However, digest_init
3438 will report errors, which we don't want when complain
3439 is zero. More importantly, digest_init will try too
3440 hard to convert things: for example, `0' should not be
3441 converted to pointer type at this point according to
3442 the standard. Accepting this is not merely an
3443 extension, since deciding whether or not these
3444 conversions can occur is part of determining which
3445 function template to call, or whether a given explicit
3446 argument specification is legal. */
3447 val = convert_nontype_argument (t, arg);
3448 else
3449 val = arg;
3451 if (val == NULL_TREE)
3452 val = error_mark_node;
3453 else if (val == error_mark_node && complain)
3454 cp_error ("could not convert template argument `%E' to `%T'",
3455 arg, t);
3458 return val;
3461 /* Convert all template arguments to their appropriate types, and
3462 return a vector containing the innermost resulting template
3463 arguments. If any error occurs, return error_mark_node, and, if
3464 COMPLAIN is non-zero, issue an error message. Some error messages
3465 are issued even if COMPLAIN is zero; for instance, if a template
3466 argument is composed from a local class.
3468 If REQUIRE_ALL_ARGUMENTS is non-zero, all arguments must be
3469 provided in ARGLIST, or else trailing parameters must have default
3470 values. If REQUIRE_ALL_ARGUMENTS is zero, we will attempt argument
3471 deduction for any unspecified trailing arguments. */
3473 static tree
3474 coerce_template_parms (parms, args, in_decl,
3475 complain,
3476 require_all_arguments)
3477 tree parms, args;
3478 tree in_decl;
3479 int complain;
3480 int require_all_arguments;
3482 int nparms, nargs, i, lost = 0;
3483 tree inner_args;
3484 tree new_args;
3485 tree new_inner_args;
3487 inner_args = INNERMOST_TEMPLATE_ARGS (args);
3488 nargs = NUM_TMPL_ARGS (inner_args);
3489 nparms = TREE_VEC_LENGTH (parms);
3491 if (nargs > nparms
3492 || (nargs < nparms
3493 && require_all_arguments
3494 && TREE_PURPOSE (TREE_VEC_ELT (parms, nargs)) == NULL_TREE))
3496 if (complain)
3498 cp_error ("wrong number of template arguments (%d, should be %d)",
3499 nargs, nparms);
3501 if (in_decl)
3502 cp_error_at ("provided for `%D'", in_decl);
3505 return error_mark_node;
3508 new_inner_args = make_tree_vec (nparms);
3509 new_args = add_outermost_template_args (args, new_inner_args);
3510 for (i = 0; i < nparms; i++)
3512 tree arg;
3513 tree parm;
3515 /* Get the Ith template parameter. */
3516 parm = TREE_VEC_ELT (parms, i);
3518 /* Calculate the Ith argument. */
3519 if (inner_args && TREE_CODE (inner_args) == TREE_LIST)
3521 arg = TREE_VALUE (inner_args);
3522 inner_args = TREE_CHAIN (inner_args);
3524 else if (i < nargs)
3525 arg = TREE_VEC_ELT (inner_args, i);
3526 /* If no template argument was supplied, look for a default
3527 value. */
3528 else if (TREE_PURPOSE (parm) == NULL_TREE)
3530 /* There was no default value. */
3531 my_friendly_assert (!require_all_arguments, 0);
3532 break;
3534 else if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL)
3535 arg = tsubst (TREE_PURPOSE (parm), new_args, complain, in_decl);
3536 else
3537 arg = tsubst_expr (TREE_PURPOSE (parm), new_args, complain,
3538 in_decl);
3540 /* Now, convert the Ith argument, as necessary. */
3541 if (arg == NULL_TREE)
3542 /* We're out of arguments. */
3544 my_friendly_assert (!require_all_arguments, 0);
3545 break;
3547 else if (arg == error_mark_node)
3549 cp_error ("template argument %d is invalid", i + 1);
3550 arg = error_mark_node;
3552 else
3553 arg = convert_template_argument (TREE_VALUE (parm),
3554 arg, new_args, complain, i,
3555 in_decl);
3557 if (arg == error_mark_node)
3558 lost++;
3559 TREE_VEC_ELT (new_inner_args, i) = arg;
3562 if (lost)
3563 return error_mark_node;
3565 return new_inner_args;
3568 /* Returns 1 if template args OT and NT are equivalent. */
3570 static int
3571 template_args_equal (ot, nt)
3572 tree ot, nt;
3574 if (nt == ot)
3575 return 1;
3577 if (TREE_CODE (nt) == TREE_VEC)
3578 /* For member templates */
3579 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
3580 else if (TYPE_P (nt))
3581 return TYPE_P (ot) && same_type_p (ot, nt);
3582 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
3583 return 0;
3584 else
3585 return (cp_tree_equal (ot, nt) > 0);
3588 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
3589 of template arguments. Returns 0 otherwise. */
3592 comp_template_args (oldargs, newargs)
3593 tree oldargs, newargs;
3595 int i;
3597 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
3598 return 0;
3600 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
3602 tree nt = TREE_VEC_ELT (newargs, i);
3603 tree ot = TREE_VEC_ELT (oldargs, i);
3605 if (! template_args_equal (ot, nt))
3606 return 0;
3608 return 1;
3611 /* Given class template name and parameter list, produce a user-friendly name
3612 for the instantiation. */
3614 static char *
3615 mangle_class_name_for_template (name, parms, arglist)
3616 const char *name;
3617 tree parms, arglist;
3619 static struct obstack scratch_obstack;
3620 static char *scratch_firstobj;
3621 int i, nparms;
3623 if (!scratch_firstobj)
3624 gcc_obstack_init (&scratch_obstack);
3625 else
3626 obstack_free (&scratch_obstack, scratch_firstobj);
3627 scratch_firstobj = obstack_alloc (&scratch_obstack, 1);
3629 #define ccat(c) obstack_1grow (&scratch_obstack, (c));
3630 #define cat(s) obstack_grow (&scratch_obstack, (s), strlen (s))
3632 cat (name);
3633 ccat ('<');
3634 nparms = TREE_VEC_LENGTH (parms);
3635 arglist = INNERMOST_TEMPLATE_ARGS (arglist);
3636 my_friendly_assert (nparms == TREE_VEC_LENGTH (arglist), 268);
3637 for (i = 0; i < nparms; i++)
3639 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
3640 tree arg = TREE_VEC_ELT (arglist, i);
3642 if (i)
3643 ccat (',');
3645 if (TREE_CODE (parm) == TYPE_DECL)
3647 cat (type_as_string (arg, TFF_CHASE_TYPEDEF));
3648 continue;
3650 else if (TREE_CODE (parm) == TEMPLATE_DECL)
3652 if (TREE_CODE (arg) == TEMPLATE_DECL)
3654 /* Already substituted with real template. Just output
3655 the template name here */
3656 tree context = DECL_CONTEXT (arg);
3657 if (context)
3659 /* The template may be defined in a namespace, or
3660 may be a member template. */
3661 my_friendly_assert (TREE_CODE (context) == NAMESPACE_DECL
3662 || CLASS_TYPE_P (context),
3663 980422);
3664 cat(decl_as_string (DECL_CONTEXT (arg), TFF_PLAIN_IDENTIFIER));
3665 cat("::");
3667 cat (IDENTIFIER_POINTER (DECL_NAME (arg)));
3669 else
3670 /* Output the parameter declaration */
3671 cat (type_as_string (arg, TFF_CHASE_TYPEDEF));
3672 continue;
3674 else
3675 my_friendly_assert (TREE_CODE (parm) == PARM_DECL, 269);
3677 if (TREE_CODE (arg) == TREE_LIST)
3679 /* New list cell was built because old chain link was in
3680 use. */
3681 my_friendly_assert (TREE_PURPOSE (arg) == NULL_TREE, 270);
3682 arg = TREE_VALUE (arg);
3684 /* No need to check arglist against parmlist here; we did that
3685 in coerce_template_parms, called from lookup_template_class. */
3686 cat (expr_as_string (arg, TFF_PLAIN_IDENTIFIER));
3689 char *bufp = obstack_next_free (&scratch_obstack);
3690 int offset = 0;
3691 while (bufp[offset - 1] == ' ')
3692 offset--;
3693 obstack_blank_fast (&scratch_obstack, offset);
3695 /* B<C<char> >, not B<C<char>> */
3696 if (bufp[offset - 1] == '>')
3697 ccat (' ');
3699 ccat ('>');
3700 ccat ('\0');
3701 return (char *) obstack_base (&scratch_obstack);
3704 static tree
3705 classtype_mangled_name (t)
3706 tree t;
3708 if (CLASSTYPE_TEMPLATE_INFO (t)
3709 /* Specializations have already had their names set up in
3710 lookup_template_class. */
3711 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
3713 tree tmpl = most_general_template (CLASSTYPE_TI_TEMPLATE (t));
3715 /* For non-primary templates, the template parameters are
3716 implicit from their surrounding context. */
3717 if (PRIMARY_TEMPLATE_P (tmpl))
3719 tree name = DECL_NAME (tmpl);
3720 char *mangled_name = mangle_class_name_for_template
3721 (IDENTIFIER_POINTER (name),
3722 DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
3723 CLASSTYPE_TI_ARGS (t));
3724 tree id = get_identifier (mangled_name);
3725 IDENTIFIER_TEMPLATE (id) = name;
3726 return id;
3730 return TYPE_IDENTIFIER (t);
3733 static void
3734 add_pending_template (d)
3735 tree d;
3737 tree ti = (TYPE_P (d)
3738 ? CLASSTYPE_TEMPLATE_INFO (d)
3739 : DECL_TEMPLATE_INFO (d));
3740 int level;
3742 if (TI_PENDING_TEMPLATE_FLAG (ti))
3743 return;
3745 /* We are called both from instantiate_decl, where we've already had a
3746 tinst_level pushed, and instantiate_template, where we haven't.
3747 Compensate. */
3748 level = !(current_tinst_level && TINST_DECL (current_tinst_level) == d);
3750 if (level)
3751 push_tinst_level (d);
3753 *template_tail = tree_cons (current_tinst_level, d, NULL_TREE);
3754 template_tail = &TREE_CHAIN (*template_tail);
3755 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
3757 if (level)
3758 pop_tinst_level ();
3762 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS (which
3763 may be either a _DECL or an overloaded function or an
3764 IDENTIFIER_NODE), and ARGLIST. */
3766 tree
3767 lookup_template_function (fns, arglist)
3768 tree fns, arglist;
3770 tree type;
3772 if (fns == NULL_TREE)
3774 cp_error ("non-template used as template");
3775 return error_mark_node;
3778 type = TREE_TYPE (fns);
3779 if (TREE_CODE (fns) == OVERLOAD || !type)
3780 type = unknown_type_node;
3782 if (processing_template_decl)
3783 return build_min (TEMPLATE_ID_EXPR, type, fns, arglist);
3784 else
3785 return build (TEMPLATE_ID_EXPR, type, fns, arglist);
3788 /* Within the scope of a template class S<T>, the name S gets bound
3789 (in build_self_reference) to a TYPE_DECL for the class, not a
3790 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
3791 or one of its enclosing classes, and that type is a template,
3792 return the associated TEMPLATE_DECL. Otherwise, the original
3793 DECL is returned. */
3795 static tree
3796 maybe_get_template_decl_from_type_decl (decl)
3797 tree decl;
3799 return (decl != NULL_TREE
3800 && TREE_CODE (decl) == TYPE_DECL
3801 && DECL_ARTIFICIAL (decl)
3802 && CLASS_TYPE_P (TREE_TYPE (decl))
3803 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
3804 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
3807 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
3808 parameters, find the desired type.
3810 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
3811 (Actually ARGLIST may be either a TREE_LIST or a TREE_VEC. It will
3812 be a TREE_LIST if called directly from the parser, and a TREE_VEC
3813 otherwise.)
3815 IN_DECL, if non-NULL, is the template declaration we are trying to
3816 instantiate.
3818 If ENTERING_SCOPE is non-zero, we are about to enter the scope of
3819 the class we are looking up.
3821 If COMPLAIN is non-zero, issue error messages.
3823 If the template class is really a local class in a template
3824 function, then the FUNCTION_CONTEXT is the function in which it is
3825 being instantiated. */
3827 tree
3828 lookup_template_class (d1, arglist, in_decl, context, entering_scope, complain)
3829 tree d1, arglist;
3830 tree in_decl;
3831 tree context;
3832 int entering_scope;
3833 int complain;
3835 tree template = NULL_TREE, parmlist;
3836 tree t;
3838 if (TREE_CODE (d1) == IDENTIFIER_NODE)
3840 if (IDENTIFIER_VALUE (d1)
3841 && DECL_TEMPLATE_TEMPLATE_PARM_P (IDENTIFIER_VALUE (d1)))
3842 template = IDENTIFIER_VALUE (d1);
3843 else
3845 if (context)
3846 push_decl_namespace (context);
3847 template = lookup_name (d1, /*prefer_type=*/0);
3848 template = maybe_get_template_decl_from_type_decl (template);
3849 if (context)
3850 pop_decl_namespace ();
3852 if (template)
3853 context = DECL_CONTEXT (template);
3855 else if (TREE_CODE (d1) == TYPE_DECL && IS_AGGR_TYPE (TREE_TYPE (d1)))
3857 tree type = TREE_TYPE (d1);
3859 /* If we are declaring a constructor, say A<T>::A<T>, we will get
3860 an implicit typename for the second A. Deal with it. */
3861 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
3862 type = TREE_TYPE (type);
3864 if (CLASSTYPE_TEMPLATE_INFO (type))
3866 template = CLASSTYPE_TI_TEMPLATE (type);
3867 d1 = DECL_NAME (template);
3870 else if (TREE_CODE (d1) == ENUMERAL_TYPE
3871 || (TYPE_P (d1) && IS_AGGR_TYPE (d1)))
3873 template = TYPE_TI_TEMPLATE (d1);
3874 d1 = DECL_NAME (template);
3876 else if (TREE_CODE (d1) == TEMPLATE_DECL
3877 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
3879 template = d1;
3880 d1 = DECL_NAME (template);
3881 context = DECL_CONTEXT (template);
3884 /* With something like `template <class T> class X class X { ... };'
3885 we could end up with D1 having nothing but an IDENTIFIER_VALUE.
3886 We don't want to do that, but we have to deal with the situation,
3887 so let's give them some syntax errors to chew on instead of a
3888 crash. Alternatively D1 might not be a template type at all. */
3889 if (! template)
3891 if (complain)
3892 cp_error ("`%T' is not a template", d1);
3893 return error_mark_node;
3896 if (TREE_CODE (template) != TEMPLATE_DECL)
3898 if (complain)
3900 cp_error ("non-template type `%T' used as a template", d1);
3901 if (in_decl)
3902 cp_error_at ("for template declaration `%D'", in_decl);
3904 return error_mark_node;
3907 if (DECL_TEMPLATE_TEMPLATE_PARM_P (template))
3909 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
3910 template arguments */
3912 tree parm;
3913 tree arglist2;
3915 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (template);
3917 arglist2 = coerce_template_parms (parmlist, arglist, template,
3918 complain, /*require_all_args=*/1);
3919 if (arglist2 == error_mark_node)
3920 return error_mark_node;
3922 parm = copy_template_template_parm (TREE_TYPE (template), arglist2);
3923 TYPE_SIZE (parm) = 0;
3924 return parm;
3926 else
3928 tree template_type = TREE_TYPE (template);
3929 tree gen_tmpl;
3930 tree type_decl;
3931 tree found = NULL_TREE;
3932 tree *tp;
3933 int arg_depth;
3934 int parm_depth;
3935 int is_partial_instantiation;
3937 gen_tmpl = most_general_template (template);
3938 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
3939 parm_depth = TMPL_PARMS_DEPTH (parmlist);
3940 arg_depth = TMPL_ARGS_DEPTH (arglist);
3942 if (arg_depth == 1 && parm_depth > 1)
3944 /* We've been given an incomplete set of template arguments.
3945 For example, given:
3947 template <class T> struct S1 {
3948 template <class U> struct S2 {};
3949 template <class U> struct S2<U*> {};
3952 we will be called with an ARGLIST of `U*', but the
3953 TEMPLATE will be `template <class T> template
3954 <class U> struct S1<T>::S2'. We must fill in the missing
3955 arguments. */
3956 arglist
3957 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (template)),
3958 arglist);
3959 arg_depth = TMPL_ARGS_DEPTH (arglist);
3962 /* Now we should enough arguments. */
3963 my_friendly_assert (parm_depth == arg_depth, 0);
3965 /* From here on, we're only interested in the most general
3966 template. */
3967 template = gen_tmpl;
3969 /* Calculate the BOUND_ARGS. These will be the args that are
3970 actually tsubst'd into the definition to create the
3971 instantiation. */
3972 if (parm_depth > 1)
3974 /* We have multiple levels of arguments to coerce, at once. */
3975 int i;
3976 int saved_depth = TMPL_ARGS_DEPTH (arglist);
3978 tree bound_args = make_tree_vec (parm_depth);
3980 for (i = saved_depth,
3981 t = DECL_TEMPLATE_PARMS (template);
3982 i > 0 && t != NULL_TREE;
3983 --i, t = TREE_CHAIN (t))
3985 tree a = coerce_template_parms (TREE_VALUE (t),
3986 arglist, template,
3987 complain, /*require_all_args=*/1);
3988 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
3990 /* We temporarily reduce the length of the ARGLIST so
3991 that coerce_template_parms will see only the arguments
3992 corresponding to the template parameters it is
3993 examining. */
3994 TREE_VEC_LENGTH (arglist)--;
3997 /* Restore the ARGLIST to its full size. */
3998 TREE_VEC_LENGTH (arglist) = saved_depth;
4000 arglist = bound_args;
4002 else
4003 arglist
4004 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
4005 INNERMOST_TEMPLATE_ARGS (arglist),
4006 template,
4007 complain, /*require_all_args=*/1);
4009 if (arglist == error_mark_node)
4010 /* We were unable to bind the arguments. */
4011 return error_mark_node;
4013 /* In the scope of a template class, explicit references to the
4014 template class refer to the type of the template, not any
4015 instantiation of it. For example, in:
4017 template <class T> class C { void f(C<T>); }
4019 the `C<T>' is just the same as `C'. Outside of the
4020 class, however, such a reference is an instantiation. */
4021 if (comp_template_args (TYPE_TI_ARGS (template_type),
4022 arglist))
4024 found = template_type;
4026 if (!entering_scope && PRIMARY_TEMPLATE_P (template))
4028 tree ctx;
4030 /* Note that we use DECL_CONTEXT, rather than
4031 CP_DECL_CONTEXT, so that the termination test is
4032 always just `ctx'. We're not interested in namespace
4033 scopes. */
4034 for (ctx = current_class_type;
4035 ctx;
4036 ctx = (TYPE_P (ctx)) ? TYPE_CONTEXT (ctx) : DECL_CONTEXT (ctx))
4037 if (same_type_p (ctx, template_type))
4038 break;
4040 if (!ctx)
4041 /* We're not in the scope of the class, so the
4042 TEMPLATE_TYPE is not the type we want after
4043 all. */
4044 found = NULL_TREE;
4047 if (found)
4048 return found;
4050 for (tp = &DECL_TEMPLATE_INSTANTIATIONS (template);
4051 *tp;
4052 tp = &TREE_CHAIN (*tp))
4053 if (comp_template_args (TREE_PURPOSE (*tp), arglist))
4055 found = *tp;
4057 /* Use the move-to-front heuristic to speed up future
4058 searches. */
4059 *tp = TREE_CHAIN (*tp);
4060 TREE_CHAIN (found)
4061 = DECL_TEMPLATE_INSTANTIATIONS (template);
4062 DECL_TEMPLATE_INSTANTIATIONS (template) = found;
4064 return TREE_VALUE (found);
4067 /* This type is a "partial instantiation" if any of the template
4068 arguments still involve template parameters. Note that we set
4069 IS_PARTIAL_INSTANTIATION for partial specializations as
4070 well. */
4071 is_partial_instantiation = uses_template_parms (arglist);
4073 if (!is_partial_instantiation
4074 && !PRIMARY_TEMPLATE_P (template)
4075 && TREE_CODE (CP_DECL_CONTEXT (template)) == NAMESPACE_DECL)
4077 found = xref_tag_from_type (TREE_TYPE (template),
4078 DECL_NAME (template),
4079 /*globalize=*/1);
4080 return found;
4083 context = tsubst (DECL_CONTEXT (template), arglist,
4084 /*complain=*/0, in_decl);
4085 if (!context)
4086 context = global_namespace;
4088 /* Create the type. */
4089 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
4091 if (!is_partial_instantiation)
4093 set_current_access_from_decl (TYPE_NAME (template_type));
4094 t = start_enum (TYPE_IDENTIFIER (template_type));
4096 else
4097 /* We don't want to call start_enum for this type, since
4098 the values for the enumeration constants may involve
4099 template parameters. And, no one should be interested
4100 in the enumeration constants for such a type. */
4101 t = make_node (ENUMERAL_TYPE);
4103 else
4105 t = make_aggr_type (TREE_CODE (template_type));
4106 CLASSTYPE_DECLARED_CLASS (t)
4107 = CLASSTYPE_DECLARED_CLASS (template_type);
4108 CLASSTYPE_GOT_SEMICOLON (t) = 1;
4109 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
4110 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
4112 /* A local class. Make sure the decl gets registered properly. */
4113 if (context == current_function_decl)
4114 pushtag (DECL_NAME (template), t, 0);
4117 /* If we called start_enum or pushtag above, this information
4118 will already be set up. */
4119 if (!TYPE_NAME (t))
4121 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
4123 type_decl = create_implicit_typedef (DECL_NAME (template), t);
4124 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
4125 TYPE_STUB_DECL (t) = type_decl;
4126 DECL_SOURCE_FILE (type_decl)
4127 = DECL_SOURCE_FILE (TYPE_STUB_DECL (template_type));
4128 DECL_SOURCE_LINE (type_decl)
4129 = DECL_SOURCE_LINE (TYPE_STUB_DECL (template_type));
4131 else
4132 type_decl = TYPE_NAME (t);
4134 /* Set up the template information. We have to figure out which
4135 template is the immediate parent if this is a full
4136 instantiation. */
4137 if (parm_depth == 1 || is_partial_instantiation
4138 || !PRIMARY_TEMPLATE_P (template))
4139 /* This case is easy; there are no member templates involved. */
4140 found = template;
4141 else
4143 /* This is a full instantiation of a member template. Look
4144 for a partial instantiation of which this is an instance. */
4146 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
4147 found; found = TREE_CHAIN (found))
4149 int success;
4150 tree tmpl = CLASSTYPE_TI_TEMPLATE (TREE_VALUE (found));
4152 /* We only want partial instantiations, here, not
4153 specializations or full instantiations. */
4154 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_VALUE (found))
4155 || !uses_template_parms (TREE_VALUE (found)))
4156 continue;
4158 /* Temporarily reduce by one the number of levels in the
4159 ARGLIST and in FOUND so as to avoid comparing the
4160 last set of arguments. */
4161 TREE_VEC_LENGTH (arglist)--;
4162 TREE_VEC_LENGTH (TREE_PURPOSE (found)) --;
4164 /* See if the arguments match. If they do, then TMPL is
4165 the partial instantiation we want. */
4166 success = comp_template_args (TREE_PURPOSE (found), arglist);
4168 /* Restore the argument vectors to their full size. */
4169 TREE_VEC_LENGTH (arglist)++;
4170 TREE_VEC_LENGTH (TREE_PURPOSE (found))++;
4172 if (success)
4174 found = tmpl;
4175 break;
4179 if (!found)
4181 /* There was no partial instantiation. This happens
4182 where C<T> is a member template of A<T> and it's used
4183 in something like
4185 template <typename T> struct B { A<T>::C<int> m; };
4186 B<float>;
4188 Create the partial instantiation.
4190 TREE_VEC_LENGTH (arglist)--;
4191 template = tsubst (template, arglist, /*complain=*/0, NULL_TREE);
4192 TREE_VEC_LENGTH (arglist)++;
4193 found = template;
4197 SET_TYPE_TEMPLATE_INFO (t, tree_cons (found, arglist, NULL_TREE));
4198 DECL_TEMPLATE_INSTANTIATIONS (template)
4199 = tree_cons (arglist, t,
4200 DECL_TEMPLATE_INSTANTIATIONS (template));
4202 if (TREE_CODE (t) == ENUMERAL_TYPE
4203 && !is_partial_instantiation)
4204 /* Now that the type has been registered on the instantiations
4205 list, we set up the enumerators. Because the enumeration
4206 constants may involve the enumeration type itself, we make
4207 sure to register the type first, and then create the
4208 constants. That way, doing tsubst_expr for the enumeration
4209 constants won't result in recursive calls here; we'll find
4210 the instantiation and exit above. */
4211 tsubst_enum (template_type, t, arglist);
4213 /* Reset the name of the type, now that CLASSTYPE_TEMPLATE_INFO
4214 is set up. */
4215 if (TREE_CODE (t) != ENUMERAL_TYPE)
4216 DECL_NAME (type_decl) = classtype_mangled_name (t);
4217 DECL_ASSEMBLER_NAME (type_decl) = DECL_NAME (type_decl);
4218 if (!is_partial_instantiation)
4220 if (flag_new_abi)
4221 DECL_ASSEMBLER_NAME (type_decl) = mangle_decl (type_decl);
4222 else
4223 DECL_ASSEMBLER_NAME (type_decl)
4224 = get_identifier (build_overload_name (t, 1, 1));
4226 /* For backwards compatibility; code that uses
4227 -fexternal-templates expects looking up a template to
4228 instantiate it. I think DDD still relies on this.
4229 (jason 8/20/1998) */
4230 if (TREE_CODE (t) != ENUMERAL_TYPE
4231 && flag_external_templates
4232 && CLASSTYPE_INTERFACE_KNOWN (TREE_TYPE (template))
4233 && ! CLASSTYPE_INTERFACE_ONLY (TREE_TYPE (template)))
4234 add_pending_template (t);
4236 else
4237 /* If the type makes use of template parameters, the
4238 code that generates debugging information will crash. */
4239 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
4241 return t;
4245 struct pair_fn_data
4247 tree_fn_t fn;
4248 void *data;
4251 /* Called from for_each_template_parm via walk_tree. */
4253 static tree
4254 for_each_template_parm_r (tp, walk_subtrees, d)
4255 tree *tp;
4256 int *walk_subtrees;
4257 void *d;
4259 tree t = *tp;
4260 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
4261 tree_fn_t fn = pfd->fn;
4262 void *data = pfd->data;
4264 if (TYPE_P (t)
4265 && for_each_template_parm (TYPE_CONTEXT (t), fn, data))
4266 return error_mark_node;
4268 switch (TREE_CODE (t))
4270 case RECORD_TYPE:
4271 if (TYPE_PTRMEMFUNC_P (t))
4272 break;
4273 /* Fall through. */
4275 case UNION_TYPE:
4276 case ENUMERAL_TYPE:
4277 if (!TYPE_TEMPLATE_INFO (t))
4278 *walk_subtrees = 0;
4279 else if (for_each_template_parm (TREE_VALUE (TYPE_TEMPLATE_INFO (t)),
4280 fn, data))
4281 return error_mark_node;
4282 break;
4284 case METHOD_TYPE:
4285 /* Since we're not going to walk subtrees, we have to do this
4286 explicitly here. */
4287 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data))
4288 return error_mark_node;
4289 /* Fall through. */
4291 case FUNCTION_TYPE:
4292 /* Check the return type. */
4293 if (for_each_template_parm (TREE_TYPE (t), fn, data))
4294 return error_mark_node;
4296 /* Check the parameter types. Since default arguments are not
4297 instantiated until they are needed, the TYPE_ARG_TYPES may
4298 contain expressions that involve template parameters. But,
4299 no-one should be looking at them yet. And, once they're
4300 instantiated, they don't contain template parameters, so
4301 there's no point in looking at them then, either. */
4303 tree parm;
4305 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
4306 if (for_each_template_parm (TREE_VALUE (parm), fn, data))
4307 return error_mark_node;
4309 /* Since we've already handled the TYPE_ARG_TYPES, we don't
4310 want walk_tree walking into them itself. */
4311 *walk_subtrees = 0;
4313 break;
4315 case FUNCTION_DECL:
4316 case VAR_DECL:
4317 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
4318 && for_each_template_parm (DECL_TI_ARGS (t), fn, data))
4319 return error_mark_node;
4320 /* Fall through. */
4322 case CONST_DECL:
4323 case PARM_DECL:
4324 if (DECL_CONTEXT (t)
4325 && for_each_template_parm (DECL_CONTEXT (t), fn, data))
4326 return error_mark_node;
4327 break;
4329 case BOUND_TEMPLATE_TEMPLATE_PARM:
4330 /* Record template parameters such as `T' inside `TT<T>'. */
4331 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data))
4332 return error_mark_node;
4333 /* Fall through. */
4335 case TEMPLATE_TEMPLATE_PARM:
4336 case TEMPLATE_TYPE_PARM:
4337 case TEMPLATE_PARM_INDEX:
4338 if (fn && (*fn)(t, data))
4339 return error_mark_node;
4340 else if (!fn)
4341 return error_mark_node;
4342 break;
4344 case TEMPLATE_DECL:
4345 /* A template template parameter is encountered */
4346 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
4347 && for_each_template_parm (TREE_TYPE (t), fn, data))
4348 return error_mark_node;
4350 /* Already substituted template template parameter */
4351 *walk_subtrees = 0;
4352 break;
4354 case TYPENAME_TYPE:
4355 if (!fn || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn, data))
4356 return error_mark_node;
4357 break;
4359 case CONSTRUCTOR:
4360 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
4361 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
4362 (TREE_TYPE (t)), fn, data))
4363 return error_mark_node;
4364 break;
4366 case INDIRECT_REF:
4367 case COMPONENT_REF:
4368 /* If there's no type, then this thing must be some expression
4369 involving template parameters. */
4370 if (!fn && !TREE_TYPE (t))
4371 return error_mark_node;
4372 break;
4374 case MODOP_EXPR:
4375 case CAST_EXPR:
4376 case REINTERPRET_CAST_EXPR:
4377 case CONST_CAST_EXPR:
4378 case STATIC_CAST_EXPR:
4379 case DYNAMIC_CAST_EXPR:
4380 case ARROW_EXPR:
4381 case DOTSTAR_EXPR:
4382 case TYPEID_EXPR:
4383 case LOOKUP_EXPR:
4384 case PSEUDO_DTOR_EXPR:
4385 if (!fn)
4386 return error_mark_node;
4387 break;
4389 default:
4390 break;
4393 /* We didn't find any template parameters we liked. */
4394 return NULL_TREE;
4397 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
4398 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
4399 call FN with the parameter and the DATA.
4400 If FN returns non-zero, the iteration is terminated, and
4401 for_each_template_parm returns 1. Otherwise, the iteration
4402 continues. If FN never returns a non-zero value, the value
4403 returned by for_each_template_parm is 0. If FN is NULL, it is
4404 considered to be the function which always returns 1. */
4406 static int
4407 for_each_template_parm (t, fn, data)
4408 tree t;
4409 tree_fn_t fn;
4410 void* data;
4412 struct pair_fn_data pfd;
4414 /* Set up. */
4415 pfd.fn = fn;
4416 pfd.data = data;
4418 /* Walk the tree. (Conceptually, we would like to walk without
4419 duplicates, but for_each_template_parm_r recursively calls
4420 for_each_template_parm, so we would need to reorganize a fair
4421 bit to use walk_tree_without_duplicates.) */
4422 return walk_tree (&t,
4423 for_each_template_parm_r,
4424 &pfd,
4425 NULL) != NULL_TREE;
4429 uses_template_parms (t)
4430 tree t;
4432 return for_each_template_parm (t, 0, 0);
4435 static int tinst_depth;
4436 extern int max_tinst_depth;
4437 #ifdef GATHER_STATISTICS
4438 int depth_reached;
4439 #endif
4440 static int tinst_level_tick;
4441 static int last_template_error_tick;
4443 /* We're starting to instantiate D; record the template instantiation context
4444 for diagnostics and to restore it later. */
4446 static int
4447 push_tinst_level (d)
4448 tree d;
4450 tree new;
4452 if (tinst_depth >= max_tinst_depth)
4454 /* If the instantiation in question still has unbound template parms,
4455 we don't really care if we can't instantiate it, so just return.
4456 This happens with base instantiation for implicit `typename'. */
4457 if (uses_template_parms (d))
4458 return 0;
4460 last_template_error_tick = tinst_level_tick;
4461 cp_error ("template instantiation depth exceeds maximum of %d (use -ftemplate-depth-NN to increase the maximum) instantiating `%D'",
4462 max_tinst_depth, d);
4464 print_instantiation_context ();
4466 return 0;
4469 new = build_expr_wfl (d, input_filename, lineno, 0);
4470 TREE_CHAIN (new) = current_tinst_level;
4471 current_tinst_level = new;
4473 ++tinst_depth;
4474 #ifdef GATHER_STATISTICS
4475 if (tinst_depth > depth_reached)
4476 depth_reached = tinst_depth;
4477 #endif
4479 ++tinst_level_tick;
4480 return 1;
4483 /* We're done instantiating this template; return to the instantiation
4484 context. */
4486 void
4487 pop_tinst_level ()
4489 tree old = current_tinst_level;
4491 /* Restore the filename and line number stashed away when we started
4492 this instantiation. */
4493 lineno = TINST_LINE (old);
4494 input_filename = TINST_FILE (old);
4495 extract_interface_info ();
4497 current_tinst_level = TREE_CHAIN (old);
4498 --tinst_depth;
4499 ++tinst_level_tick;
4502 /* We're instantiating a deferred template; restore the template
4503 instantiation context in which the instantiation was requested, which
4504 is one step out from LEVEL. */
4506 static void
4507 reopen_tinst_level (level)
4508 tree level;
4510 tree t;
4512 tinst_depth = 0;
4513 for (t = level; t; t = TREE_CHAIN (t))
4514 ++tinst_depth;
4516 current_tinst_level = level;
4517 pop_tinst_level ();
4520 /* Return the outermost template instantiation context, for use with
4521 -falt-external-templates. */
4523 tree
4524 tinst_for_decl ()
4526 tree p = current_tinst_level;
4528 if (p)
4529 for (; TREE_CHAIN (p) ; p = TREE_CHAIN (p))
4531 return p;
4534 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
4535 vector of template arguments, as for tsubst.
4537 Returns an appropriate tsubst'd friend declaration. */
4539 static tree
4540 tsubst_friend_function (decl, args)
4541 tree decl;
4542 tree args;
4544 tree new_friend;
4545 int line = lineno;
4546 const char *file = input_filename;
4548 lineno = DECL_SOURCE_LINE (decl);
4549 input_filename = DECL_SOURCE_FILE (decl);
4551 if (TREE_CODE (decl) == FUNCTION_DECL
4552 && DECL_TEMPLATE_INSTANTIATION (decl)
4553 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
4554 /* This was a friend declared with an explicit template
4555 argument list, e.g.:
4557 friend void f<>(T);
4559 to indicate that f was a template instantiation, not a new
4560 function declaration. Now, we have to figure out what
4561 instantiation of what template. */
4563 tree template_id, arglist, fns;
4564 tree new_args;
4565 tree tmpl;
4566 tree ns = CP_DECL_CONTEXT (TYPE_MAIN_DECL (current_class_type));
4568 /* Friend functions are looked up in the containing namespace scope.
4569 We must enter that scope, to avoid finding member functions of the
4570 current cless with same name. */
4571 push_nested_namespace (ns);
4572 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
4573 /*complain=*/1, NULL_TREE);
4574 pop_nested_namespace (ns);
4575 arglist = tsubst (DECL_TI_ARGS (decl), args,
4576 /*complain=*/1, NULL_TREE);
4577 template_id = lookup_template_function (fns, arglist);
4579 new_friend = tsubst (decl, args, /*complain=*/1, NULL_TREE);
4580 tmpl = determine_specialization (template_id, new_friend,
4581 &new_args,
4582 /*need_member_template=*/0);
4583 new_friend = instantiate_template (tmpl, new_args);
4584 goto done;
4587 new_friend = tsubst (decl, args, /*complain=*/1, NULL_TREE);
4589 /* The NEW_FRIEND will look like an instantiation, to the
4590 compiler, but is not an instantiation from the point of view of
4591 the language. For example, we might have had:
4593 template <class T> struct S {
4594 template <class U> friend void f(T, U);
4597 Then, in S<int>, template <class U> void f(int, U) is not an
4598 instantiation of anything. */
4599 DECL_USE_TEMPLATE (new_friend) = 0;
4600 if (TREE_CODE (decl) == TEMPLATE_DECL)
4602 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
4603 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
4604 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
4607 /* The mangled name for the NEW_FRIEND is incorrect. The call to
4608 tsubst will have resulted in a call to
4609 set_mangled_name_for_template_decl. But, the function is not a
4610 template instantiation and should not be mangled like one.
4611 Therefore, we remangle the function name. We don't have to do
4612 this if the NEW_FRIEND is a template since
4613 set_mangled_name_for_template_decl doesn't do anything if the
4614 function declaration still uses template arguments. */
4615 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
4617 set_mangled_name_for_decl (new_friend);
4618 DECL_RTL (new_friend) = 0;
4619 make_decl_rtl (new_friend, NULL_PTR);
4622 if (DECL_NAMESPACE_SCOPE_P (new_friend))
4624 tree old_decl;
4625 tree new_friend_template_info;
4626 tree new_friend_result_template_info;
4627 tree ns;
4628 int new_friend_is_defn;
4630 /* We must save some information from NEW_FRIEND before calling
4631 duplicate decls since that function will free NEW_FRIEND if
4632 possible. */
4633 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
4634 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
4636 /* This declaration is a `primary' template. */
4637 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
4639 new_friend_is_defn
4640 = DECL_INITIAL (DECL_TEMPLATE_RESULT (new_friend)) != NULL_TREE;
4641 new_friend_result_template_info
4642 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
4644 else
4646 new_friend_is_defn = DECL_INITIAL (new_friend) != NULL_TREE;
4647 new_friend_result_template_info = NULL_TREE;
4650 /* Inside pushdecl_namespace_level, we will push into the
4651 current namespace. However, the friend function should go
4652 into the namespace of the template. */
4653 ns = decl_namespace_context (new_friend);
4654 push_nested_namespace (ns);
4655 old_decl = pushdecl_namespace_level (new_friend);
4656 pop_nested_namespace (ns);
4658 if (old_decl != new_friend)
4660 /* This new friend declaration matched an existing
4661 declaration. For example, given:
4663 template <class T> void f(T);
4664 template <class U> class C {
4665 template <class T> friend void f(T) {}
4668 the friend declaration actually provides the definition
4669 of `f', once C has been instantiated for some type. So,
4670 old_decl will be the out-of-class template declaration,
4671 while new_friend is the in-class definition.
4673 But, if `f' was called before this point, the
4674 instantiation of `f' will have DECL_TI_ARGS corresponding
4675 to `T' but not to `U', references to which might appear
4676 in the definition of `f'. Previously, the most general
4677 template for an instantiation of `f' was the out-of-class
4678 version; now it is the in-class version. Therefore, we
4679 run through all specialization of `f', adding to their
4680 DECL_TI_ARGS appropriately. In particular, they need a
4681 new set of outer arguments, corresponding to the
4682 arguments for this class instantiation.
4684 The same situation can arise with something like this:
4686 friend void f(int);
4687 template <class T> class C {
4688 friend void f(T) {}
4691 when `C<int>' is instantiated. Now, `f(int)' is defined
4692 in the class. */
4694 if (!new_friend_is_defn)
4695 /* On the other hand, if the in-class declaration does
4696 *not* provide a definition, then we don't want to alter
4697 existing definitions. We can just leave everything
4698 alone. */
4700 else
4702 /* Overwrite whatever template info was there before, if
4703 any, with the new template information pertaining to
4704 the declaration. */
4705 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
4707 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
4708 /* duplicate_decls will take care of this case. */
4710 else
4712 tree t;
4713 tree new_friend_args;
4715 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
4716 = new_friend_result_template_info;
4718 new_friend_args = TI_ARGS (new_friend_template_info);
4719 for (t = DECL_TEMPLATE_SPECIALIZATIONS (old_decl);
4720 t != NULL_TREE;
4721 t = TREE_CHAIN (t))
4723 tree spec = TREE_VALUE (t);
4725 DECL_TI_ARGS (spec)
4726 = add_outermost_template_args (new_friend_args,
4727 DECL_TI_ARGS (spec));
4730 /* Now, since specializations are always supposed to
4731 hang off of the most general template, we must move
4732 them. */
4733 t = most_general_template (old_decl);
4734 if (t != old_decl)
4736 DECL_TEMPLATE_SPECIALIZATIONS (t)
4737 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (t),
4738 DECL_TEMPLATE_SPECIALIZATIONS (old_decl));
4739 DECL_TEMPLATE_SPECIALIZATIONS (old_decl) = NULL_TREE;
4744 /* The information from NEW_FRIEND has been merged into OLD_DECL
4745 by duplicate_decls. */
4746 new_friend = old_decl;
4749 else if (COMPLETE_TYPE_P (DECL_CONTEXT (new_friend)))
4751 /* Check to see that the declaration is really present, and,
4752 possibly obtain an improved declaration. */
4753 tree fn = check_classfn (DECL_CONTEXT (new_friend),
4754 new_friend);
4756 if (fn)
4757 new_friend = fn;
4760 done:
4761 lineno = line;
4762 input_filename = file;
4763 return new_friend;
4766 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
4767 template arguments, as for tsubst.
4769 Returns an appropriate tsubst'd friend type or error_mark_node on
4770 failure. */
4772 static tree
4773 tsubst_friend_class (friend_tmpl, args)
4774 tree friend_tmpl;
4775 tree args;
4777 tree friend_type;
4778 tree tmpl;
4780 /* First, we look for a class template. */
4781 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/0);
4783 /* But, if we don't find one, it might be because we're in a
4784 situation like this:
4786 template <class T>
4787 struct S {
4788 template <class U>
4789 friend struct S;
4792 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
4793 for `S<int>', not the TEMPLATE_DECL. */
4794 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
4796 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/1);
4797 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
4800 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
4802 /* The friend template has already been declared. Just
4803 check to see that the declarations match, and install any new
4804 default parameters. We must tsubst the default parameters,
4805 of course. We only need the innermost template parameters
4806 because that is all that redeclare_class_template will look
4807 at. */
4808 tree parms
4809 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
4810 args, /*complain=*/1);
4811 if (!parms)
4812 return error_mark_node;
4813 redeclare_class_template (TREE_TYPE (tmpl), parms);
4814 friend_type = TREE_TYPE (tmpl);
4816 else
4818 /* The friend template has not already been declared. In this
4819 case, the instantiation of the template class will cause the
4820 injection of this template into the global scope. */
4821 tmpl = tsubst (friend_tmpl, args, /*complain=*/1, NULL_TREE);
4823 /* The new TMPL is not an instantiation of anything, so we
4824 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
4825 the new type because that is supposed to be the corresponding
4826 template decl, i.e., TMPL. */
4827 DECL_USE_TEMPLATE (tmpl) = 0;
4828 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
4829 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
4831 /* Inject this template into the global scope. */
4832 friend_type = TREE_TYPE (pushdecl_top_level (tmpl));
4835 return friend_type;
4838 tree
4839 instantiate_class_template (type)
4840 tree type;
4842 tree template, args, pattern, t;
4843 tree typedecl;
4845 if (type == error_mark_node)
4846 return error_mark_node;
4848 if (TYPE_BEING_DEFINED (type) || COMPLETE_TYPE_P (type))
4849 return type;
4851 /* Figure out which template is being instantiated. */
4852 template = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
4853 my_friendly_assert (TREE_CODE (template) == TEMPLATE_DECL, 279);
4855 /* Figure out which arguments are being used to do the
4856 instantiation. */
4857 args = CLASSTYPE_TI_ARGS (type);
4858 PARTIAL_INSTANTIATION_P (type) = uses_template_parms (args);
4860 if (pedantic && PARTIAL_INSTANTIATION_P (type))
4861 /* If this is a partial instantiation, then we can't instantiate
4862 the type; there's no telling whether or not one of the
4863 template parameters might eventually be instantiated to some
4864 value that results in a specialization being used. For
4865 example, consider:
4867 template <class T>
4868 struct S {};
4870 template <class U>
4871 void f(S<U>);
4873 template <>
4874 struct S<int> {};
4876 Now, the `S<U>' in `f<int>' is the specialization, not an
4877 instantiation of the original template. */
4878 return type;
4880 /* Determine what specialization of the original template to
4881 instantiate. */
4882 if (PARTIAL_INSTANTIATION_P (type))
4883 /* There's no telling which specialization is appropriate at this
4884 point. Since all peeking at the innards of this partial
4885 instantiation are extensions (like the "implicit typename"
4886 extension, which allows users to omit the keyword `typename' on
4887 names that are declared as types in template base classes), we
4888 are free to do what we please.
4890 Trying to figure out which partial instantiation to use can
4891 cause a crash. (Some of the template arguments don't even have
4892 types.) So, we just use the most general version. */
4893 t = NULL_TREE;
4894 else
4896 t = most_specialized_class (template, args);
4898 if (t == error_mark_node)
4900 const char *str = "candidates are:";
4901 cp_error ("ambiguous class template instantiation for `%#T'", type);
4902 for (t = DECL_TEMPLATE_SPECIALIZATIONS (template); t;
4903 t = TREE_CHAIN (t))
4905 if (get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t),
4906 args))
4908 cp_error_at ("%s %+#T", str, TREE_TYPE (t));
4909 str = " ";
4912 TYPE_BEING_DEFINED (type) = 1;
4913 return error_mark_node;
4917 if (t)
4918 pattern = TREE_TYPE (t);
4919 else
4920 pattern = TREE_TYPE (template);
4922 /* If the template we're instantiating is incomplete, then clearly
4923 there's nothing we can do. */
4924 if (!COMPLETE_TYPE_P (pattern))
4925 return type;
4927 /* If this is a partial instantiation, don't tsubst anything. We will
4928 only use this type for implicit typename, so the actual contents don't
4929 matter. All that matters is whether a particular name is a type. */
4930 if (PARTIAL_INSTANTIATION_P (type))
4932 /* The fields set here must be kept in sync with those cleared
4933 in begin_class_definition. */
4934 TYPE_BINFO_BASETYPES (type) = TYPE_BINFO_BASETYPES (pattern);
4935 TYPE_FIELDS (type) = TYPE_FIELDS (pattern);
4936 TYPE_METHODS (type) = TYPE_METHODS (pattern);
4937 CLASSTYPE_TAGS (type) = CLASSTYPE_TAGS (pattern);
4938 CLASSTYPE_VBASECLASSES (type) = CLASSTYPE_VBASECLASSES (pattern);
4940 /* Pretend that the type is complete, so that we will look
4941 inside it during name lookup and such. */
4942 TYPE_SIZE (type) = bitsize_zero_node;
4943 return type;
4946 /* If we've recursively instantiated too many templates, stop. */
4947 if (! push_tinst_level (type))
4948 return type;
4950 /* Now we're really doing the instantiation. Mark the type as in
4951 the process of being defined. */
4952 TYPE_BEING_DEFINED (type) = 1;
4954 maybe_push_to_top_level (uses_template_parms (type));
4956 if (t)
4958 /* This TYPE is actually a instantiation of of a partial
4959 specialization. We replace the innermost set of ARGS with
4960 the arguments appropriate for substitution. For example,
4961 given:
4963 template <class T> struct S {};
4964 template <class T> struct S<T*> {};
4966 and supposing that we are instantiating S<int*>, ARGS will
4967 present be {int*} but we need {int}. */
4968 tree inner_args
4969 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t),
4970 args);
4972 /* If there were multiple levels in ARGS, replacing the
4973 innermost level would alter CLASSTYPE_TI_ARGS, which we don't
4974 want, so we make a copy first. */
4975 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
4977 args = copy_node (args);
4978 SET_TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args), inner_args);
4980 else
4981 args = inner_args;
4984 if (flag_external_templates)
4986 if (flag_alt_external_templates)
4988 CLASSTYPE_INTERFACE_ONLY (type) = interface_only;
4989 SET_CLASSTYPE_INTERFACE_UNKNOWN_X (type, interface_unknown);
4990 CLASSTYPE_VTABLE_NEEDS_WRITING (type)
4991 = (! CLASSTYPE_INTERFACE_ONLY (type)
4992 && CLASSTYPE_INTERFACE_KNOWN (type));
4994 else
4996 CLASSTYPE_INTERFACE_ONLY (type) = CLASSTYPE_INTERFACE_ONLY (pattern);
4997 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
4998 (type, CLASSTYPE_INTERFACE_UNKNOWN (pattern));
4999 CLASSTYPE_VTABLE_NEEDS_WRITING (type)
5000 = (! CLASSTYPE_INTERFACE_ONLY (type)
5001 && CLASSTYPE_INTERFACE_KNOWN (type));
5004 else
5006 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
5007 CLASSTYPE_VTABLE_NEEDS_WRITING (type) = 1;
5010 TYPE_HAS_CONSTRUCTOR (type) = TYPE_HAS_CONSTRUCTOR (pattern);
5011 TYPE_HAS_DESTRUCTOR (type) = TYPE_HAS_DESTRUCTOR (pattern);
5012 TYPE_OVERLOADS_CALL_EXPR (type) = TYPE_OVERLOADS_CALL_EXPR (pattern);
5013 TYPE_OVERLOADS_ARRAY_REF (type) = TYPE_OVERLOADS_ARRAY_REF (pattern);
5014 TYPE_OVERLOADS_ARROW (type) = TYPE_OVERLOADS_ARROW (pattern);
5015 TYPE_HAS_NEW_OPERATOR (type) = TYPE_HAS_NEW_OPERATOR (pattern);
5016 TYPE_HAS_ARRAY_NEW_OPERATOR (type) = TYPE_HAS_ARRAY_NEW_OPERATOR (pattern);
5017 TYPE_GETS_DELETE (type) = TYPE_GETS_DELETE (pattern);
5018 TYPE_VEC_DELETE_TAKES_SIZE (type) = TYPE_VEC_DELETE_TAKES_SIZE (pattern);
5019 TYPE_HAS_ASSIGN_REF (type) = TYPE_HAS_ASSIGN_REF (pattern);
5020 TYPE_HAS_CONST_ASSIGN_REF (type) = TYPE_HAS_CONST_ASSIGN_REF (pattern);
5021 TYPE_HAS_ABSTRACT_ASSIGN_REF (type) = TYPE_HAS_ABSTRACT_ASSIGN_REF (pattern);
5022 TYPE_HAS_INIT_REF (type) = TYPE_HAS_INIT_REF (pattern);
5023 TYPE_HAS_CONST_INIT_REF (type) = TYPE_HAS_CONST_INIT_REF (pattern);
5024 TYPE_HAS_DEFAULT_CONSTRUCTOR (type) = TYPE_HAS_DEFAULT_CONSTRUCTOR (pattern);
5025 TYPE_HAS_CONVERSION (type) = TYPE_HAS_CONVERSION (pattern);
5026 TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type)
5027 = TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (pattern);
5028 TYPE_USES_MULTIPLE_INHERITANCE (type)
5029 = TYPE_USES_MULTIPLE_INHERITANCE (pattern);
5030 TYPE_USES_VIRTUAL_BASECLASSES (type)
5031 = TYPE_USES_VIRTUAL_BASECLASSES (pattern);
5032 TYPE_PACKED (type) = TYPE_PACKED (pattern);
5033 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
5034 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
5035 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
5036 if (ANON_AGGR_TYPE_P (pattern))
5037 SET_ANON_AGGR_TYPE_P (type);
5039 if (TYPE_BINFO_BASETYPES (pattern))
5041 tree base_list = NULL_TREE;
5042 tree pbases = TYPE_BINFO_BASETYPES (pattern);
5043 int i;
5045 /* Substitute into each of the bases to determine the actual
5046 basetypes. */
5047 for (i = 0; i < TREE_VEC_LENGTH (pbases); ++i)
5049 tree base;
5050 tree access;
5051 tree pbase;
5053 pbase = TREE_VEC_ELT (pbases, i);
5055 /* Substitute to figure out the base class. */
5056 base = tsubst (BINFO_TYPE (pbase), args,
5057 /*complain=*/1, NULL_TREE);
5058 if (base == error_mark_node)
5059 continue;
5061 /* Calculate the correct access node. */
5062 if (TREE_VIA_VIRTUAL (pbase))
5064 if (TREE_VIA_PUBLIC (pbase))
5065 access = access_public_virtual_node;
5066 else if (TREE_VIA_PROTECTED (pbase))
5067 access = access_protected_virtual_node;
5068 else
5069 access = access_private_virtual_node;
5071 else
5073 if (TREE_VIA_PUBLIC (pbase))
5074 access = access_public_node;
5075 else if (TREE_VIA_PROTECTED (pbase))
5076 access = access_protected_node;
5077 else
5078 access = access_private_node;
5081 base_list = tree_cons (access, base, base_list);
5084 /* The list is now in reverse order; correct that. */
5085 base_list = nreverse (base_list);
5087 /* Now call xref_basetypes to set up all the base-class
5088 information. */
5089 xref_basetypes (TREE_CODE (pattern) == RECORD_TYPE
5090 ? (CLASSTYPE_DECLARED_CLASS (pattern)
5091 ? class_type_node : record_type_node)
5092 : union_type_node,
5093 DECL_NAME (TYPE_NAME (pattern)),
5094 type,
5095 base_list);
5098 /* Now that our base classes are set up, enter the scope of the
5099 class, so that name lookups into base classes, etc. will work
5100 correctly. This is precisely analogous to what we do in
5101 begin_class_definition when defining an ordinary non-template
5102 class. */
5103 pushclass (type, 1);
5105 for (t = CLASSTYPE_TAGS (pattern); t; t = TREE_CHAIN (t))
5107 tree tag = TREE_VALUE (t);
5108 tree name = TYPE_IDENTIFIER (tag);
5109 tree newtag;
5111 newtag = tsubst (tag, args, /*complain=*/1, NULL_TREE);
5112 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
5114 if (TYPE_LANG_SPECIFIC (tag) && CLASSTYPE_IS_TEMPLATE (tag))
5115 /* Unfortunately, lookup_template_class sets
5116 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
5117 instantiation (i.e., for the type of a member template
5118 class nested within a template class.) This behavior is
5119 required for maybe_process_partial_specialization to work
5120 correctly, but is not accurate in this case; the TAG is not
5121 an instantiation of anything. (The corresponding
5122 TEMPLATE_DECL is an instantiation, but the TYPE is not.) */
5123 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
5125 /* Now, we call pushtag to put this NEWTAG into the scope of
5126 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
5127 pushtag calling push_template_decl. We don't have to do
5128 this for enums because it will already have been done in
5129 tsubst_enum. */
5130 if (name)
5131 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
5132 pushtag (name, newtag, /*globalize=*/0);
5136 /* Don't replace enum constants here. */
5137 for (t = TYPE_FIELDS (pattern); t; t = TREE_CHAIN (t))
5138 if (TREE_CODE (t) != CONST_DECL)
5140 tree r;
5142 /* The the file and line for this declaration, to assist in
5143 error message reporting. Since we called push_tinst_level
5144 above, we don't need to restore these. */
5145 lineno = DECL_SOURCE_LINE (t);
5146 input_filename = DECL_SOURCE_FILE (t);
5148 r = tsubst (t, args, /*complain=*/1, NULL_TREE);
5149 if (TREE_CODE (r) == VAR_DECL)
5151 tree init;
5153 if (DECL_INITIALIZED_IN_CLASS_P (r))
5154 init = tsubst_expr (DECL_INITIAL (t), args,
5155 /*complain=*/1, NULL_TREE);
5156 else
5157 init = NULL_TREE;
5159 finish_static_data_member_decl (r, init,
5160 /*asmspec_tree=*/NULL_TREE,
5161 /*flags=*/0);
5163 if (DECL_INITIALIZED_IN_CLASS_P (r))
5164 check_static_variable_definition (r, TREE_TYPE (r));
5167 /* R will have a TREE_CHAIN if and only if it has already been
5168 processed by finish_member_declaration. This can happen
5169 if, for example, it is a TYPE_DECL for a class-scoped
5170 ENUMERAL_TYPE; such a thing will already have been added to
5171 the field list by tsubst_enum above. */
5172 if (!TREE_CHAIN (r))
5174 set_current_access_from_decl (r);
5175 finish_member_declaration (r);
5179 /* Set up the list (TYPE_METHODS) and vector (CLASSTYPE_METHOD_VEC)
5180 for this instantiation. */
5181 for (t = TYPE_METHODS (pattern); t; t = TREE_CHAIN (t))
5183 tree r = tsubst (t, args, /*complain=*/1, NULL_TREE);
5184 set_current_access_from_decl (r);
5185 finish_member_declaration (r);
5188 /* Construct the DECL_FRIENDLIST for the new class type. */
5189 typedecl = TYPE_MAIN_DECL (type);
5190 for (t = DECL_FRIENDLIST (TYPE_MAIN_DECL (pattern));
5191 t != NULL_TREE;
5192 t = TREE_CHAIN (t))
5194 tree friends;
5196 for (friends = TREE_VALUE (t);
5197 friends != NULL_TREE;
5198 friends = TREE_CHAIN (friends))
5199 if (TREE_PURPOSE (friends) == error_mark_node)
5200 add_friend (type,
5201 tsubst_friend_function (TREE_VALUE (friends),
5202 args));
5203 else
5204 my_friendly_abort (20000216);
5207 for (t = CLASSTYPE_FRIEND_CLASSES (pattern);
5208 t != NULL_TREE;
5209 t = TREE_CHAIN (t))
5211 tree friend_type = TREE_VALUE (t);
5212 tree new_friend_type;
5214 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5215 new_friend_type = tsubst_friend_class (friend_type, args);
5216 else if (uses_template_parms (friend_type))
5217 new_friend_type = tsubst (friend_type, args, /*complain=*/1,
5218 NULL_TREE);
5219 else
5221 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
5223 /* The call to xref_tag_from_type does injection for friend
5224 classes. */
5225 push_nested_namespace (ns);
5226 new_friend_type =
5227 xref_tag_from_type (friend_type, NULL_TREE, 1);
5228 pop_nested_namespace (ns);
5231 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5232 /* Trick make_friend_class into realizing that the friend
5233 we're adding is a template, not an ordinary class. It's
5234 important that we use make_friend_class since it will
5235 perform some error-checking and output cross-reference
5236 information. */
5237 ++processing_template_decl;
5239 if (new_friend_type != error_mark_node)
5240 make_friend_class (type, new_friend_type);
5242 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5243 --processing_template_decl;
5246 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
5247 if (TREE_CODE (t) == FIELD_DECL)
5249 TREE_TYPE (t) = complete_type (TREE_TYPE (t));
5250 require_complete_type (t);
5253 /* Set the file and line number information to whatever is given for
5254 the class itself. This puts error messages involving generated
5255 implicit functions at a predictable point, and the same point
5256 that would be used for non-template classes. */
5257 lineno = DECL_SOURCE_LINE (typedecl);
5258 input_filename = DECL_SOURCE_FILE (typedecl);
5260 unreverse_member_declarations (type);
5261 finish_struct_1 (type);
5262 CLASSTYPE_GOT_SEMICOLON (type) = 1;
5264 /* Clear this now so repo_template_used is happy. */
5265 TYPE_BEING_DEFINED (type) = 0;
5266 repo_template_used (type);
5268 /* Now that the class is complete, instantiate default arguments for
5269 any member functions. We don't do this earlier because the
5270 default arguments may reference members of the class. */
5271 if (!PRIMARY_TEMPLATE_P (template))
5272 for (t = TYPE_METHODS (type); t; t = TREE_CHAIN (t))
5273 if (TREE_CODE (t) == FUNCTION_DECL
5274 /* Implicitly generated member functions will not have template
5275 information; they are not instantiations, but instead are
5276 created "fresh" for each instantiation. */
5277 && DECL_TEMPLATE_INFO (t))
5278 tsubst_default_arguments (t);
5280 popclass ();
5281 pop_from_top_level ();
5282 pop_tinst_level ();
5284 return type;
5287 static int
5288 list_eq (t1, t2)
5289 tree t1, t2;
5291 if (t1 == NULL_TREE)
5292 return t2 == NULL_TREE;
5293 if (t2 == NULL_TREE)
5294 return 0;
5295 /* Don't care if one declares its arg const and the other doesn't -- the
5296 main variant of the arg type is all that matters. */
5297 if (TYPE_MAIN_VARIANT (TREE_VALUE (t1))
5298 != TYPE_MAIN_VARIANT (TREE_VALUE (t2)))
5299 return 0;
5300 return list_eq (TREE_CHAIN (t1), TREE_CHAIN (t2));
5303 /* If arg is a non-type template parameter that does not depend on template
5304 arguments, fold it like we weren't in the body of a template. */
5306 static tree
5307 maybe_fold_nontype_arg (arg)
5308 tree arg;
5310 /* If we're not in a template, ARG is already as simple as it's going to
5311 get, and trying to reprocess the trees will break. */
5312 if (! processing_template_decl)
5313 return arg;
5315 if (!TYPE_P (arg) && !uses_template_parms (arg))
5317 /* Sometimes, one of the args was an expression involving a
5318 template constant parameter, like N - 1. Now that we've
5319 tsubst'd, we might have something like 2 - 1. This will
5320 confuse lookup_template_class, so we do constant folding
5321 here. We have to unset processing_template_decl, to
5322 fool build_expr_from_tree() into building an actual
5323 tree. */
5325 int saved_processing_template_decl = processing_template_decl;
5326 processing_template_decl = 0;
5327 arg = fold (build_expr_from_tree (arg));
5328 processing_template_decl = saved_processing_template_decl;
5330 return arg;
5333 /* Substitute ARGS into the vector of template arguments T. */
5335 static tree
5336 tsubst_template_arg_vector (t, args, complain)
5337 tree t;
5338 tree args;
5339 int complain;
5341 int len = TREE_VEC_LENGTH (t), need_new = 0, i;
5342 tree *elts = (tree *) alloca (len * sizeof (tree));
5344 memset ((char *) elts, 0, len * sizeof (tree));
5346 for (i = 0; i < len; i++)
5348 if (TREE_VEC_ELT (t, i) != NULL_TREE
5349 && TREE_CODE (TREE_VEC_ELT (t, i)) == TREE_VEC)
5350 elts[i] = tsubst_template_arg_vector (TREE_VEC_ELT (t, i),
5351 args, complain);
5352 else
5353 elts[i] = maybe_fold_nontype_arg
5354 (tsubst_expr (TREE_VEC_ELT (t, i), args, complain,
5355 NULL_TREE));
5357 if (elts[i] == error_mark_node)
5358 return error_mark_node;
5360 if (elts[i] != TREE_VEC_ELT (t, i))
5361 need_new = 1;
5364 if (!need_new)
5365 return t;
5367 t = make_tree_vec (len);
5368 for (i = 0; i < len; i++)
5369 TREE_VEC_ELT (t, i) = elts[i];
5371 return t;
5374 /* Return the result of substituting ARGS into the template parameters
5375 given by PARMS. If there are m levels of ARGS and m + n levels of
5376 PARMS, then the result will contain n levels of PARMS. For
5377 example, if PARMS is `template <class T> template <class U>
5378 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
5379 result will be `template <int*, double, class V>'. */
5381 static tree
5382 tsubst_template_parms (parms, args, complain)
5383 tree parms;
5384 tree args;
5385 int complain;
5387 tree r = NULL_TREE;
5388 tree* new_parms;
5390 for (new_parms = &r;
5391 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
5392 new_parms = &(TREE_CHAIN (*new_parms)),
5393 parms = TREE_CHAIN (parms))
5395 tree new_vec =
5396 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
5397 int i;
5399 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
5401 tree default_value =
5402 TREE_PURPOSE (TREE_VEC_ELT (TREE_VALUE (parms), i));
5403 tree parm_decl =
5404 TREE_VALUE (TREE_VEC_ELT (TREE_VALUE (parms), i));
5406 TREE_VEC_ELT (new_vec, i)
5407 = build_tree_list (tsubst (default_value, args, complain,
5408 NULL_TREE),
5409 tsubst (parm_decl, args, complain,
5410 NULL_TREE));
5413 *new_parms =
5414 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
5415 - TMPL_ARGS_DEPTH (args)),
5416 new_vec, NULL_TREE);
5419 return r;
5422 /* Substitute the ARGS into the indicated aggregate (or enumeration)
5423 type T. If T is not an aggregate or enumeration type, it is
5424 handled as if by tsubst. IN_DECL is as for tsubst. If
5425 ENTERING_SCOPE is non-zero, T is the context for a template which
5426 we are presently tsubst'ing. Return the substituted value. */
5428 static tree
5429 tsubst_aggr_type (t, args, complain, in_decl, entering_scope)
5430 tree t;
5431 tree args;
5432 int complain;
5433 tree in_decl;
5434 int entering_scope;
5436 if (t == NULL_TREE)
5437 return NULL_TREE;
5439 switch (TREE_CODE (t))
5441 case RECORD_TYPE:
5442 if (TYPE_PTRMEMFUNC_P (t))
5444 tree r = build_ptrmemfunc_type
5445 (tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl));
5446 return cp_build_qualified_type_real (r, TYPE_QUALS (t),
5447 complain);
5450 /* else fall through */
5451 case ENUMERAL_TYPE:
5452 case UNION_TYPE:
5453 if (TYPE_TEMPLATE_INFO (t))
5455 tree argvec;
5456 tree context;
5457 tree r;
5459 /* First, determine the context for the type we are looking
5460 up. */
5461 if (TYPE_CONTEXT (t) != NULL_TREE)
5462 context = tsubst_aggr_type (TYPE_CONTEXT (t), args,
5463 complain,
5464 in_decl, /*entering_scope=*/1);
5465 else
5466 context = NULL_TREE;
5468 /* Then, figure out what arguments are appropriate for the
5469 type we are trying to find. For example, given:
5471 template <class T> struct S;
5472 template <class T, class U> void f(T, U) { S<U> su; }
5474 and supposing that we are instantiating f<int, double>,
5475 then our ARGS will be {int, double}, but, when looking up
5476 S we only want {double}. */
5477 argvec = tsubst_template_arg_vector (TYPE_TI_ARGS (t), args,
5478 complain);
5479 if (argvec == error_mark_node)
5480 return error_mark_node;
5482 r = lookup_template_class (t, argvec, in_decl, context,
5483 entering_scope, complain);
5485 return cp_build_qualified_type_real (r, TYPE_QUALS (t),
5486 complain);
5488 else
5489 /* This is not a template type, so there's nothing to do. */
5490 return t;
5492 default:
5493 return tsubst (t, args, complain, in_decl);
5497 /* Substitute into the default argument ARG (a default argument for
5498 FN), which has the indicated TYPE. */
5500 tree
5501 tsubst_default_argument (fn, type, arg)
5502 tree fn;
5503 tree type;
5504 tree arg;
5506 /* This default argument came from a template. Instantiate the
5507 default argument here, not in tsubst. In the case of
5508 something like:
5510 template <class T>
5511 struct S {
5512 static T t();
5513 void f(T = t());
5516 we must be careful to do name lookup in the scope of S<T>,
5517 rather than in the current class. */
5518 if (DECL_CLASS_SCOPE_P (fn))
5519 pushclass (DECL_CONTEXT (fn), 2);
5521 arg = tsubst_expr (arg, DECL_TI_ARGS (fn), /*complain=*/1, NULL_TREE);
5523 if (DECL_CLASS_SCOPE_P (fn))
5524 popclass ();
5526 /* Make sure the default argument is reasonable. */
5527 arg = check_default_argument (type, arg);
5529 return arg;
5532 /* Substitute into all the default arguments for FN. */
5534 static void
5535 tsubst_default_arguments (fn)
5536 tree fn;
5538 tree arg;
5539 tree tmpl_args;
5541 tmpl_args = DECL_TI_ARGS (fn);
5543 /* If this function is not yet instantiated, we certainly don't need
5544 its default arguments. */
5545 if (uses_template_parms (tmpl_args))
5546 return;
5548 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
5549 arg;
5550 arg = TREE_CHAIN (arg))
5551 if (TREE_PURPOSE (arg))
5552 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
5553 TREE_VALUE (arg),
5554 TREE_PURPOSE (arg));
5557 /* Substitute the ARGS into the T, which is a _DECL. TYPE is the
5558 (already computed) substitution of ARGS into TREE_TYPE (T), if
5559 appropriate. Return the result of the substitution. */
5561 static tree
5562 tsubst_decl (t, args, type)
5563 tree t;
5564 tree args;
5565 tree type;
5567 int saved_lineno;
5568 const char *saved_filename;
5569 tree r = NULL_TREE;
5570 tree in_decl = t;
5572 /* Set the filename and linenumber to improve error-reporting. */
5573 saved_lineno = lineno;
5574 saved_filename = input_filename;
5575 lineno = DECL_SOURCE_LINE (t);
5576 input_filename = DECL_SOURCE_FILE (t);
5578 switch (TREE_CODE (t))
5580 case TEMPLATE_DECL:
5582 /* We can get here when processing a member template function
5583 of a template class. */
5584 tree decl = DECL_TEMPLATE_RESULT (t);
5585 tree spec;
5586 int is_template_template_parm = DECL_TEMPLATE_TEMPLATE_PARM_P (t);
5588 if (!is_template_template_parm)
5590 /* We might already have an instance of this template.
5591 The ARGS are for the surrounding class type, so the
5592 full args contain the tsubst'd args for the context,
5593 plus the innermost args from the template decl. */
5594 tree tmpl_args = DECL_CLASS_TEMPLATE_P (t)
5595 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
5596 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
5597 tree full_args;
5599 full_args = tsubst_template_arg_vector (tmpl_args, args,
5600 /*complain=*/1);
5602 /* tsubst_template_arg_vector doesn't copy the vector if
5603 nothing changed. But, *something* should have
5604 changed. */
5605 my_friendly_assert (full_args != tmpl_args, 0);
5607 spec = retrieve_specialization (t, full_args);
5608 if (spec != NULL_TREE)
5610 r = spec;
5611 break;
5615 /* Make a new template decl. It will be similar to the
5616 original, but will record the current template arguments.
5617 We also create a new function declaration, which is just
5618 like the old one, but points to this new template, rather
5619 than the old one. */
5620 r = copy_decl (t);
5621 my_friendly_assert (DECL_LANG_SPECIFIC (r) != 0, 0);
5622 TREE_CHAIN (r) = NULL_TREE;
5624 if (is_template_template_parm)
5626 tree new_decl = tsubst (decl, args, /*complain=*/1, in_decl);
5627 DECL_TEMPLATE_RESULT (r) = new_decl;
5628 TREE_TYPE (r) = TREE_TYPE (new_decl);
5629 break;
5632 DECL_CONTEXT (r)
5633 = tsubst_aggr_type (DECL_CONTEXT (t), args,
5634 /*complain=*/1, in_decl,
5635 /*entering_scope=*/1);
5636 DECL_VIRTUAL_CONTEXT (r)
5637 = tsubst_aggr_type (DECL_VIRTUAL_CONTEXT (t), args,
5638 /*complain=*/1, in_decl,
5639 /*entering_scope=*/1);
5640 DECL_TEMPLATE_INFO (r) = build_tree_list (t, args);
5642 if (TREE_CODE (decl) == TYPE_DECL)
5644 tree new_type = tsubst (TREE_TYPE (t), args,
5645 /*complain=*/1, in_decl);
5646 TREE_TYPE (r) = new_type;
5647 CLASSTYPE_TI_TEMPLATE (new_type) = r;
5648 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
5649 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
5651 else
5653 tree new_decl = tsubst (decl, args, /*complain=*/1, in_decl);
5655 DECL_TEMPLATE_RESULT (r) = new_decl;
5656 DECL_TI_TEMPLATE (new_decl) = r;
5657 TREE_TYPE (r) = TREE_TYPE (new_decl);
5658 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
5661 SET_DECL_IMPLICIT_INSTANTIATION (r);
5662 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
5663 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
5665 /* The template parameters for this new template are all the
5666 template parameters for the old template, except the
5667 outermost level of parameters. */
5668 DECL_TEMPLATE_PARMS (r)
5669 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
5670 /*complain=*/1);
5672 if (PRIMARY_TEMPLATE_P (t))
5673 DECL_PRIMARY_TEMPLATE (r) = r;
5675 /* We don't partially instantiate partial specializations. */
5676 if (TREE_CODE (decl) == TYPE_DECL)
5677 break;
5679 /* Record this partial instantiation. */
5680 register_specialization (r, t,
5681 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)));
5684 break;
5686 case FUNCTION_DECL:
5688 tree ctx;
5689 tree argvec = NULL_TREE;
5690 tree *friends;
5691 tree gen_tmpl;
5692 int member;
5693 int args_depth;
5694 int parms_depth;
5696 /* Nobody should be tsubst'ing into non-template functions. */
5697 my_friendly_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE, 0);
5699 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
5701 tree spec;
5703 /* Calculate the most general template of which R is a
5704 specialization, and the complete set of arguments used to
5705 specialize R. */
5706 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
5707 argvec
5708 = tsubst_template_arg_vector (DECL_TI_ARGS
5709 (DECL_TEMPLATE_RESULT (gen_tmpl)),
5710 args, /*complain=*/1);
5712 /* Check to see if we already have this specialization. */
5713 spec = retrieve_specialization (gen_tmpl, argvec);
5715 if (spec)
5717 r = spec;
5718 break;
5721 /* We can see more levels of arguments than parameters if
5722 there was a specialization of a member template, like
5723 this:
5725 template <class T> struct S { template <class U> void f(); }
5726 template <> template <class U> void S<int>::f(U);
5728 Here, we'll be substituting into the specialization,
5729 because that's where we can find the code we actually
5730 want to generate, but we'll have enough arguments for
5731 the most general template.
5733 We also deal with the peculiar case:
5735 template <class T> struct S {
5736 template <class U> friend void f();
5738 template <class U> void f() {}
5739 template S<int>;
5740 template void f<double>();
5742 Here, the ARGS for the instantiation of will be {int,
5743 double}. But, we only need as many ARGS as there are
5744 levels of template parameters in CODE_PATTERN. We are
5745 careful not to get fooled into reducing the ARGS in
5746 situations like:
5748 template <class T> struct S { template <class U> void f(U); }
5749 template <class T> template <> void S<T>::f(int) {}
5751 which we can spot because the pattern will be a
5752 specialization in this case. */
5753 args_depth = TMPL_ARGS_DEPTH (args);
5754 parms_depth =
5755 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
5756 if (args_depth > parms_depth
5757 && !DECL_TEMPLATE_SPECIALIZATION (t))
5758 args = get_innermost_template_args (args, parms_depth);
5760 else
5762 /* This special case arises when we have something like this:
5764 template <class T> struct S {
5765 friend void f<int>(int, double);
5768 Here, the DECL_TI_TEMPLATE for the friend declaration
5769 will be a LOOKUP_EXPR or an IDENTIFIER_NODE. We are
5770 being called from tsubst_friend_function, and we want
5771 only to create a new decl (R) with appropriate types so
5772 that we can call determine_specialization. */
5773 my_friendly_assert ((TREE_CODE (DECL_TI_TEMPLATE (t))
5774 == LOOKUP_EXPR)
5775 || (TREE_CODE (DECL_TI_TEMPLATE (t))
5776 == IDENTIFIER_NODE), 0);
5777 gen_tmpl = NULL_TREE;
5780 if (DECL_CLASS_SCOPE_P (t))
5782 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
5783 member = 2;
5784 else
5785 member = 1;
5786 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
5787 /*complain=*/1, t,
5788 /*entering_scope=*/1);
5790 else
5792 member = 0;
5793 ctx = DECL_CONTEXT (t);
5795 type = tsubst (type, args, /*complain=*/1, in_decl);
5796 if (type == error_mark_node)
5797 return error_mark_node;
5799 /* We do NOT check for matching decls pushed separately at this
5800 point, as they may not represent instantiations of this
5801 template, and in any case are considered separate under the
5802 discrete model. */
5803 r = copy_decl (t);
5804 DECL_USE_TEMPLATE (r) = 0;
5805 TREE_TYPE (r) = type;
5807 DECL_CONTEXT (r) = ctx;
5808 DECL_VIRTUAL_CONTEXT (r)
5809 = tsubst_aggr_type (DECL_VIRTUAL_CONTEXT (t), args,
5810 /*complain=*/1, t,
5811 /*entering_scope=*/1);
5813 if (member && DECL_CONV_FN_P (r))
5815 /* Type-conversion operator. Reconstruct the name, in
5816 case it's the name of one of the template's parameters. */
5817 if (flag_new_abi)
5818 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
5819 else
5820 DECL_NAME (r) = build_typename_overload (TREE_TYPE (type));
5823 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
5824 /*complain=*/1, t);
5825 DECL_RESULT (r) = NULL_TREE;
5827 TREE_STATIC (r) = 0;
5828 TREE_PUBLIC (r) = TREE_PUBLIC (t);
5829 DECL_EXTERNAL (r) = 1;
5830 DECL_INTERFACE_KNOWN (r) = 0;
5831 DECL_DEFER_OUTPUT (r) = 0;
5832 TREE_CHAIN (r) = NULL_TREE;
5833 DECL_PENDING_INLINE_INFO (r) = 0;
5834 DECL_PENDING_INLINE_P (r) = 0;
5835 DECL_SAVED_TREE (r) = NULL_TREE;
5836 TREE_USED (r) = 0;
5837 if (DECL_CLONED_FUNCTION (r))
5839 DECL_CLONED_FUNCTION (r) = tsubst (DECL_CLONED_FUNCTION (t),
5840 args, /*complain=*/1, t);
5841 TREE_CHAIN (r) = TREE_CHAIN (DECL_CLONED_FUNCTION (r));
5842 TREE_CHAIN (DECL_CLONED_FUNCTION (r)) = r;
5845 /* Set up the DECL_TEMPLATE_INFO for R and compute its mangled
5846 name. There's no need to do this in the special friend
5847 case mentioned above where GEN_TMPL is NULL. */
5848 if (gen_tmpl)
5850 DECL_TEMPLATE_INFO (r)
5851 = tree_cons (gen_tmpl, argvec, NULL_TREE);
5852 SET_DECL_IMPLICIT_INSTANTIATION (r);
5853 register_specialization (r, gen_tmpl, argvec);
5855 /* Set the mangled name for R. */
5856 if (DECL_DESTRUCTOR_P (t))
5858 if (flag_new_abi)
5859 set_mangled_name_for_decl (r);
5860 else
5861 DECL_ASSEMBLER_NAME (r) = build_destructor_name (ctx);
5863 else
5865 /* Instantiations of template functions must be mangled
5866 specially, in order to conform to 14.5.5.1
5867 [temp.over.link]. */
5868 tree tmpl = DECL_TI_TEMPLATE (t);
5870 /* TMPL will be NULL if this is a specialization of a
5871 member function of a template class. */
5872 if (name_mangling_version < 1
5873 || tmpl == NULL_TREE
5874 || (member && !is_member_template (tmpl)
5875 && !DECL_TEMPLATE_INFO (tmpl)))
5876 set_mangled_name_for_decl (r);
5877 else
5878 set_mangled_name_for_template_decl (r);
5881 DECL_RTL (r) = 0;
5882 make_decl_rtl (r, NULL_PTR);
5884 /* Like grokfndecl. If we don't do this, pushdecl will
5885 mess up our TREE_CHAIN because it doesn't find a
5886 previous decl. Sigh. */
5887 if (member
5888 && ! uses_template_parms (r)
5889 && (IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r))
5890 == NULL_TREE))
5891 SET_IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r), r);
5893 /* We're not supposed to instantiate default arguments
5894 until they are called, for a template. But, for a
5895 declaration like:
5897 template <class T> void f ()
5898 { extern void g(int i = T()); }
5900 we should do the substitution when the template is
5901 instantiated. We handle the member function case in
5902 instantiate_class_template since the default arguments
5903 might refer to other members of the class. */
5904 if (!member
5905 && !PRIMARY_TEMPLATE_P (gen_tmpl)
5906 && !uses_template_parms (argvec))
5907 tsubst_default_arguments (r);
5910 /* Copy the list of befriending classes. */
5911 for (friends = &DECL_BEFRIENDING_CLASSES (r);
5912 *friends;
5913 friends = &TREE_CHAIN (*friends))
5915 *friends = copy_node (*friends);
5916 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
5917 args, /*complain=*/1,
5918 in_decl);
5921 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
5923 maybe_retrofit_in_chrg (r);
5924 if (DECL_CONSTRUCTOR_P (r))
5925 grok_ctor_properties (ctx, r);
5926 /* If this is an instantiation of a member template, clone it.
5927 If it isn't, that'll be handled by
5928 clone_constructors_and_destructors. */
5929 if (PRIMARY_TEMPLATE_P (gen_tmpl))
5930 clone_function_decl(r, /*update_method_vec_p=*/0);
5932 else if (IDENTIFIER_OPNAME_P (DECL_NAME (r)))
5933 grok_op_properties (r, DECL_VIRTUAL_P (r), DECL_FRIEND_P (r));
5935 break;
5937 case PARM_DECL:
5939 r = copy_node (t);
5940 TREE_TYPE (r) = type;
5941 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5943 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
5944 DECL_INITIAL (r) = TREE_TYPE (r);
5945 else
5946 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
5947 /*complain=*/1, in_decl);
5949 DECL_CONTEXT (r) = NULL_TREE;
5950 if (PROMOTE_PROTOTYPES
5951 && (TREE_CODE (type) == INTEGER_TYPE
5952 || TREE_CODE (type) == ENUMERAL_TYPE)
5953 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5954 DECL_ARG_TYPE (r) = integer_type_node;
5955 if (TREE_CHAIN (t))
5956 TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args,
5957 /*complain=*/1, TREE_CHAIN (t));
5959 break;
5961 case FIELD_DECL:
5963 r = copy_decl (t);
5964 TREE_TYPE (r) = type;
5965 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5967 /* We don't have to set DECL_CONTEXT here; it is set by
5968 finish_member_declaration. */
5969 DECL_INITIAL (r) = tsubst_expr (DECL_INITIAL (t), args,
5970 /*complain=*/1, in_decl);
5971 TREE_CHAIN (r) = NULL_TREE;
5972 if (TREE_CODE (type) == VOID_TYPE)
5973 cp_error_at ("instantiation of `%D' as type void", r);
5975 break;
5977 case USING_DECL:
5979 r = copy_node (t);
5980 DECL_INITIAL (r)
5981 = tsubst_copy (DECL_INITIAL (t), args, /*complain=*/1, in_decl);
5982 TREE_CHAIN (r) = NULL_TREE;
5984 break;
5986 case TYPE_DECL:
5987 if (TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM
5988 || t == TYPE_MAIN_DECL (TREE_TYPE (t)))
5990 /* If this is the canonical decl, we don't have to mess with
5991 instantiations, and often we can't (for typename, template
5992 type parms and such). Note that TYPE_NAME is not correct for
5993 the above test if we've copied the type for a typedef. */
5994 r = TYPE_NAME (type);
5995 break;
5998 /* Fall through. */
6000 case VAR_DECL:
6002 tree argvec = NULL_TREE;
6003 tree gen_tmpl = NULL_TREE;
6004 tree spec;
6005 tree tmpl = NULL_TREE;
6006 tree ctx;
6007 int local_p;
6009 /* Assume this is a non-local variable. */
6010 local_p = 0;
6012 if (TYPE_P (CP_DECL_CONTEXT (t)))
6013 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
6014 /*complain=*/1,
6015 in_decl, /*entering_scope=*/1);
6016 else
6018 /* Subsequent calls to pushdecl will fill this in. */
6019 ctx = NULL_TREE;
6020 if (!DECL_NAMESPACE_SCOPE_P (t))
6021 local_p = 1;
6024 /* Check to see if we already have this specialization. */
6025 if (!local_p)
6027 tmpl = DECL_TI_TEMPLATE (t);
6028 gen_tmpl = most_general_template (tmpl);
6029 argvec = tsubst (DECL_TI_ARGS (t), args, /*complain=*/1, in_decl);
6030 spec = retrieve_specialization (gen_tmpl, argvec);
6032 else
6033 spec = retrieve_local_specialization (t);
6035 if (spec)
6037 r = spec;
6038 break;
6041 r = copy_decl (t);
6042 TREE_TYPE (r) = type;
6043 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
6044 DECL_CONTEXT (r) = ctx;
6046 /* Don't try to expand the initializer until someone tries to use
6047 this variable; otherwise we run into circular dependencies. */
6048 DECL_INITIAL (r) = NULL_TREE;
6049 DECL_RTL (r) = 0;
6050 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
6052 /* For __PRETTY_FUNCTION__ we have to adjust the initializer. */
6053 if (DECL_PRETTY_FUNCTION_P (r))
6055 DECL_INITIAL (r) = tsubst (DECL_INITIAL (t),
6056 args,
6057 /*complain=*/1,
6058 NULL_TREE);
6059 TREE_TYPE (r) = TREE_TYPE (DECL_INITIAL (r));
6062 /* Even if the original location is out of scope, the newly
6063 substituted one is not. */
6064 if (TREE_CODE (r) == VAR_DECL)
6065 DECL_DEAD_FOR_LOCAL (r) = 0;
6067 if (!local_p)
6069 /* A static data member declaration is always marked
6070 external when it is declared in-class, even if an
6071 initializer is present. We mimic the non-template
6072 processing here. */
6073 DECL_EXTERNAL (r) = 1;
6075 register_specialization (r, gen_tmpl, argvec);
6076 DECL_TEMPLATE_INFO (r) = tree_cons (tmpl, argvec, NULL_TREE);
6077 SET_DECL_IMPLICIT_INSTANTIATION (r);
6079 else
6080 register_local_specialization (r, t);
6082 TREE_CHAIN (r) = NULL_TREE;
6083 if (TREE_CODE (r) == VAR_DECL && TREE_CODE (type) == VOID_TYPE)
6084 cp_error_at ("instantiation of `%D' as type void", r);
6086 break;
6088 default:
6089 my_friendly_abort (0);
6092 /* Restore the file and line information. */
6093 lineno = saved_lineno;
6094 input_filename = saved_filename;
6096 return r;
6099 /* Substitue into the ARG_TYPES of a function type. */
6101 static tree
6102 tsubst_arg_types (arg_types, args, complain, in_decl)
6103 tree arg_types;
6104 tree args;
6105 int complain;
6106 tree in_decl;
6108 tree remaining_arg_types;
6109 tree type;
6111 if (!arg_types || arg_types == void_list_node)
6112 return arg_types;
6114 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
6115 args, complain, in_decl);
6116 if (remaining_arg_types == error_mark_node)
6117 return error_mark_node;
6119 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
6120 if (type == error_mark_node)
6121 return error_mark_node;
6122 if (VOID_TYPE_P (type))
6124 if (complain)
6126 cp_error ("invalid parameter type `%T'", type);
6127 if (in_decl)
6128 cp_error_at ("in declaration `%D'", in_decl);
6130 return error_mark_node;
6133 /* Do array-to-pointer, function-to-pointer conversion, and ignore
6134 top-level qualifiers as required. */
6135 type = TYPE_MAIN_VARIANT (type_decays_to (type));
6137 /* Note that we do not substitute into default arguments here. The
6138 standard mandates that they be instantiated only when needed,
6139 which is done in build_over_call. */
6140 return hash_tree_cons (TREE_PURPOSE (arg_types), type,
6141 remaining_arg_types);
6145 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
6146 *not* handle the exception-specification for FNTYPE, because the
6147 initial substitution of explicitly provided template parameters
6148 during argument deduction forbids substitution into the
6149 exception-specification:
6151 [temp.deduct]
6153 All references in the function type of the function template to the
6154 corresponding template parameters are replaced by the specified tem-
6155 plate argument values. If a substitution in a template parameter or
6156 in the function type of the function template results in an invalid
6157 type, type deduction fails. [Note: The equivalent substitution in
6158 exception specifications is done only when the function is instanti-
6159 ated, at which point a program is ill-formed if the substitution
6160 results in an invalid type.] */
6162 static tree
6163 tsubst_function_type (t, args, complain, in_decl)
6164 tree t;
6165 tree args;
6166 int complain;
6167 tree in_decl;
6169 tree return_type;
6170 tree arg_types;
6171 tree fntype;
6173 /* The TYPE_CONTEXT is not used for function/method types. */
6174 my_friendly_assert (TYPE_CONTEXT (t) == NULL_TREE, 0);
6176 /* Substitue the return type. */
6177 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6178 if (return_type == error_mark_node)
6179 return error_mark_node;
6181 /* Substitue the argument types. */
6182 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
6183 complain, in_decl);
6184 if (arg_types == error_mark_node)
6185 return error_mark_node;
6187 /* Construct a new type node and return it. */
6188 if (TREE_CODE (t) == FUNCTION_TYPE)
6189 fntype = build_function_type (return_type, arg_types);
6190 else
6192 tree r = TREE_TYPE (TREE_VALUE (arg_types));
6193 if (! IS_AGGR_TYPE (r))
6195 /* [temp.deduct]
6197 Type deduction may fail for any of the following
6198 reasons:
6200 -- Attempting to create "pointer to member of T" when T
6201 is not a class type. */
6202 if (complain)
6203 cp_error ("creating pointer to member function of non-class type `%T'",
6205 return error_mark_node;
6208 fntype = build_cplus_method_type (r, return_type, TREE_CHAIN
6209 (arg_types));
6211 fntype = build_qualified_type (fntype, TYPE_QUALS (t));
6212 fntype = build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
6214 return fntype;
6217 /* Substitute into the PARMS of a call-declarator. */
6219 static tree
6220 tsubst_call_declarator_parms (parms, args, complain, in_decl)
6221 tree parms;
6222 tree args;
6223 int complain;
6224 tree in_decl;
6226 tree new_parms;
6227 tree type;
6228 tree defarg;
6230 if (!parms || parms == void_list_node)
6231 return parms;
6233 new_parms = tsubst_call_declarator_parms (TREE_CHAIN (parms),
6234 args, complain, in_decl);
6236 /* Figure out the type of this parameter. */
6237 type = tsubst (TREE_VALUE (parms), args, complain, in_decl);
6239 /* Figure out the default argument as well. Note that we use
6240 tsubst_expr since the default argument is really an expression. */
6241 defarg = tsubst_expr (TREE_PURPOSE (parms), args, complain, in_decl);
6243 /* Chain this parameter on to the front of those we have already
6244 processed. We don't use hash_tree_cons because that function
6245 doesn't check TREE_PARMLIST. */
6246 new_parms = tree_cons (defarg, type, new_parms);
6248 /* And note that these are parameters. */
6249 TREE_PARMLIST (new_parms) = 1;
6251 return new_parms;
6254 /* Take the tree structure T and replace template parameters used
6255 therein with the argument vector ARGS. IN_DECL is an associated
6256 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
6257 An appropriate error message is issued only if COMPLAIN is
6258 non-zero. Note that we must be relatively non-tolerant of
6259 extensions here, in order to preserve conformance; if we allow
6260 substitutions that should not be allowed, we may allow argument
6261 deductions that should not succeed, and therefore report ambiguous
6262 overload situations where there are none. In theory, we could
6263 allow the substitution, but indicate that it should have failed,
6264 and allow our caller to make sure that the right thing happens, but
6265 we don't try to do this yet.
6267 This function is used for dealing with types, decls and the like;
6268 for expressions, use tsubst_expr or tsubst_copy. */
6270 tree
6271 tsubst (t, args, complain, in_decl)
6272 tree t, args;
6273 int complain;
6274 tree in_decl;
6276 tree type, r;
6278 if (t == NULL_TREE || t == error_mark_node
6279 || t == integer_type_node
6280 || t == void_type_node
6281 || t == char_type_node
6282 || TREE_CODE (t) == NAMESPACE_DECL)
6283 return t;
6285 if (TREE_CODE (t) == IDENTIFIER_NODE)
6286 type = IDENTIFIER_TYPE_VALUE (t);
6287 else
6288 type = TREE_TYPE (t);
6289 if (type == unknown_type_node)
6290 my_friendly_abort (42);
6292 if (type && TREE_CODE (t) != FUNCTION_DECL
6293 && TREE_CODE (t) != TYPENAME_TYPE
6294 && TREE_CODE (t) != TEMPLATE_DECL
6295 && TREE_CODE (t) != IDENTIFIER_NODE
6296 && TREE_CODE (t) != FUNCTION_TYPE
6297 && TREE_CODE (t) != METHOD_TYPE)
6298 type = tsubst (type, args, complain, in_decl);
6299 if (type == error_mark_node)
6300 return error_mark_node;
6302 if (DECL_P (t))
6303 return tsubst_decl (t, args, type);
6305 switch (TREE_CODE (t))
6307 case RECORD_TYPE:
6308 case UNION_TYPE:
6309 case ENUMERAL_TYPE:
6310 return tsubst_aggr_type (t, args, complain, in_decl,
6311 /*entering_scope=*/0);
6313 case ERROR_MARK:
6314 case IDENTIFIER_NODE:
6315 case OP_IDENTIFIER:
6316 case VOID_TYPE:
6317 case REAL_TYPE:
6318 case COMPLEX_TYPE:
6319 case VECTOR_TYPE:
6320 case BOOLEAN_TYPE:
6321 case INTEGER_CST:
6322 case REAL_CST:
6323 case STRING_CST:
6324 return t;
6326 case INTEGER_TYPE:
6327 if (t == integer_type_node)
6328 return t;
6330 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
6331 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
6332 return t;
6335 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
6337 max = tsubst_expr (omax, args, complain, in_decl);
6338 if (max == error_mark_node)
6339 return error_mark_node;
6341 /* See if we can reduce this expression to something simpler. */
6342 max = maybe_fold_nontype_arg (max);
6343 if (!processing_template_decl)
6344 max = decl_constant_value (max);
6346 if (processing_template_decl
6347 /* When providing explicit arguments to a template
6348 function, but leaving some arguments for subsequent
6349 deduction, MAX may be template-dependent even if we're
6350 not PROCESSING_TEMPLATE_DECL. We still need to check for
6351 template parms, though; MAX won't be an INTEGER_CST for
6352 dynamic arrays, either. */
6353 || (TREE_CODE (max) != INTEGER_CST
6354 && uses_template_parms (max)))
6356 tree itype = make_node (INTEGER_TYPE);
6357 TYPE_MIN_VALUE (itype) = size_zero_node;
6358 TYPE_MAX_VALUE (itype) = build_min (MINUS_EXPR, sizetype, max,
6359 integer_one_node);
6360 return itype;
6363 if (integer_zerop (omax))
6365 /* Still allow an explicit array of size zero. */
6366 if (pedantic)
6367 pedwarn ("creating array with size zero");
6369 else if (integer_zerop (max)
6370 || (TREE_CODE (max) == INTEGER_CST
6371 && INT_CST_LT (max, integer_zero_node)))
6373 /* [temp.deduct]
6375 Type deduction may fail for any of the following
6376 reasons:
6378 Attempting to create an array with a size that is
6379 zero or negative. */
6380 if (complain)
6381 cp_error ("creating array with size zero (`%E')", max);
6383 return error_mark_node;
6386 return compute_array_index_type (NULL_TREE, max);
6389 case TEMPLATE_TYPE_PARM:
6390 case TEMPLATE_TEMPLATE_PARM:
6391 case BOUND_TEMPLATE_TEMPLATE_PARM:
6392 case TEMPLATE_PARM_INDEX:
6394 int idx;
6395 int level;
6396 int levels;
6398 r = NULL_TREE;
6400 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
6401 || TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
6402 || TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6404 idx = TEMPLATE_TYPE_IDX (t);
6405 level = TEMPLATE_TYPE_LEVEL (t);
6407 else
6409 idx = TEMPLATE_PARM_IDX (t);
6410 level = TEMPLATE_PARM_LEVEL (t);
6413 if (TREE_VEC_LENGTH (args) > 0)
6415 tree arg = NULL_TREE;
6417 levels = TMPL_ARGS_DEPTH (args);
6418 if (level <= levels)
6419 arg = TMPL_ARG (args, level, idx);
6421 if (arg == error_mark_node)
6422 return error_mark_node;
6423 else if (arg != NULL_TREE)
6425 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
6427 my_friendly_assert (TYPE_P (arg), 0);
6428 return cp_build_qualified_type_real
6429 (arg, CP_TYPE_QUALS (arg) | CP_TYPE_QUALS (t),
6430 complain);
6432 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6434 /* We are processing a type constructed from
6435 a template template parameter */
6436 tree argvec = tsubst (TYPE_TI_ARGS (t),
6437 args, complain, in_decl);
6438 if (argvec == error_mark_node)
6439 return error_mark_node;
6441 /* We can get a TEMPLATE_TEMPLATE_PARM here when
6442 we are resolving nested-types in the signature of
6443 a member function templates.
6444 Otherwise ARG is a TEMPLATE_DECL and is the real
6445 template to be instantiated. */
6446 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
6447 arg = TYPE_NAME (arg);
6449 r = lookup_template_class (arg,
6450 argvec, in_decl,
6451 DECL_CONTEXT (arg),
6452 /*entering_scope=*/0,
6453 complain);
6454 return cp_build_qualified_type_real (r,
6455 TYPE_QUALS (t),
6456 complain);
6458 else
6459 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
6460 return arg;
6463 else
6464 my_friendly_abort (981018);
6466 if (level == 1)
6467 /* This can happen during the attempted tsubst'ing in
6468 unify. This means that we don't yet have any information
6469 about the template parameter in question. */
6470 return t;
6472 /* If we get here, we must have been looking at a parm for a
6473 more deeply nested template. Make a new version of this
6474 template parameter, but with a lower level. */
6475 switch (TREE_CODE (t))
6477 case TEMPLATE_TYPE_PARM:
6478 case TEMPLATE_TEMPLATE_PARM:
6479 case BOUND_TEMPLATE_TEMPLATE_PARM:
6480 if (CP_TYPE_QUALS (t))
6482 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
6483 r = cp_build_qualified_type_real (r, CP_TYPE_QUALS (t),
6484 complain);
6486 else
6488 r = copy_node (t);
6489 TEMPLATE_TYPE_PARM_INDEX (r)
6490 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
6491 r, levels);
6492 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
6493 TYPE_MAIN_VARIANT (r) = r;
6494 TYPE_POINTER_TO (r) = NULL_TREE;
6495 TYPE_REFERENCE_TO (r) = NULL_TREE;
6497 if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
6499 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
6500 complain, in_decl);
6501 if (argvec == error_mark_node)
6502 return error_mark_node;
6504 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
6505 = tree_cons (TYPE_TI_TEMPLATE (t), argvec, NULL_TREE);
6508 break;
6510 case TEMPLATE_PARM_INDEX:
6511 r = reduce_template_parm_level (t, type, levels);
6512 break;
6514 default:
6515 my_friendly_abort (0);
6518 return r;
6521 case TREE_LIST:
6523 tree purpose, value, chain, result;
6525 if (t == void_list_node)
6526 return t;
6528 purpose = TREE_PURPOSE (t);
6529 if (purpose)
6531 purpose = tsubst (purpose, args, complain, in_decl);
6532 if (purpose == error_mark_node)
6533 return error_mark_node;
6535 value = TREE_VALUE (t);
6536 if (value)
6538 value = tsubst (value, args, complain, in_decl);
6539 if (value == error_mark_node)
6540 return error_mark_node;
6542 chain = TREE_CHAIN (t);
6543 if (chain && chain != void_type_node)
6545 chain = tsubst (chain, args, complain, in_decl);
6546 if (chain == error_mark_node)
6547 return error_mark_node;
6549 if (purpose == TREE_PURPOSE (t)
6550 && value == TREE_VALUE (t)
6551 && chain == TREE_CHAIN (t))
6552 return t;
6553 if (TREE_PARMLIST (t))
6555 result = tree_cons (purpose, value, chain);
6556 TREE_PARMLIST (result) = 1;
6558 else
6559 result = hash_tree_cons (purpose, value, chain);
6560 return result;
6562 case TREE_VEC:
6563 if (type != NULL_TREE)
6565 /* A binfo node. We always need to make a copy, of the node
6566 itself and of its BINFO_BASETYPES. */
6568 t = copy_node (t);
6570 /* Make sure type isn't a typedef copy. */
6571 type = BINFO_TYPE (TYPE_BINFO (type));
6573 TREE_TYPE (t) = complete_type (type);
6574 if (IS_AGGR_TYPE (type))
6576 BINFO_VTABLE (t) = TYPE_BINFO_VTABLE (type);
6577 BINFO_VIRTUALS (t) = TYPE_BINFO_VIRTUALS (type);
6578 if (TYPE_BINFO_BASETYPES (type) != NULL_TREE)
6579 BINFO_BASETYPES (t) = copy_node (TYPE_BINFO_BASETYPES (type));
6581 return t;
6584 /* Otherwise, a vector of template arguments. */
6585 return tsubst_template_arg_vector (t, args, complain);
6587 case POINTER_TYPE:
6588 case REFERENCE_TYPE:
6590 enum tree_code code;
6592 if (type == TREE_TYPE (t))
6593 return t;
6595 code = TREE_CODE (t);
6598 /* [temp.deduct]
6600 Type deduction may fail for any of the following
6601 reasons:
6603 -- Attempting to create a pointer to reference type.
6604 -- Attempting to create a reference to a reference type or
6605 a reference to void. */
6606 if (TREE_CODE (type) == REFERENCE_TYPE
6607 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
6609 static int last_line = 0;
6610 static const char* last_file = 0;
6612 /* We keep track of the last time we issued this error
6613 message to avoid spewing a ton of messages during a
6614 single bad template instantiation. */
6615 if (complain && (last_line != lineno ||
6616 last_file != input_filename))
6618 if (TREE_CODE (type) == VOID_TYPE)
6619 cp_error ("forming reference to void");
6620 else
6621 cp_error ("forming %s to reference type `%T'",
6622 (code == POINTER_TYPE) ? "pointer" : "reference",
6623 type);
6624 last_line = lineno;
6625 last_file = input_filename;
6628 return error_mark_node;
6630 else if (code == POINTER_TYPE)
6631 r = build_pointer_type (type);
6632 else
6633 r = build_reference_type (type);
6634 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
6636 if (r != error_mark_node)
6637 /* Will this ever be needed for TYPE_..._TO values? */
6638 layout_type (r);
6640 return r;
6642 case OFFSET_TYPE:
6644 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
6645 if (r == error_mark_node || !IS_AGGR_TYPE (r))
6647 /* [temp.deduct]
6649 Type deduction may fail for any of the following
6650 reasons:
6652 -- Attempting to create "pointer to member of T" when T
6653 is not a class type. */
6654 if (complain)
6655 cp_error ("creating pointer to member of non-class type `%T'",
6657 return error_mark_node;
6659 return build_offset_type (r, type);
6661 case FUNCTION_TYPE:
6662 case METHOD_TYPE:
6664 tree fntype;
6665 tree raises;
6667 fntype = tsubst_function_type (t, args, complain, in_decl);
6668 if (fntype == error_mark_node)
6669 return error_mark_node;
6671 /* Substitue the exception specification. */
6672 raises = TYPE_RAISES_EXCEPTIONS (t);
6673 if (raises)
6675 tree list = NULL_TREE;
6677 if (! TREE_VALUE (raises))
6678 list = raises;
6679 else
6680 for (; raises != NULL_TREE; raises = TREE_CHAIN (raises))
6682 tree spec = TREE_VALUE (raises);
6684 spec = tsubst (spec, args, complain, in_decl);
6685 if (spec == error_mark_node)
6686 return spec;
6687 list = add_exception_specifier (list, spec, complain);
6689 fntype = build_exception_variant (fntype, list);
6691 return fntype;
6693 case ARRAY_TYPE:
6695 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
6696 if (domain == error_mark_node)
6697 return error_mark_node;
6699 /* As an optimization, we avoid regenerating the array type if
6700 it will obviously be the same as T. */
6701 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
6702 return t;
6704 /* These checks should match the ones in grokdeclarator.
6706 [temp.deduct]
6708 The deduction may fail for any of the following reasons:
6710 -- Attempting to create an array with an element type that
6711 is void, a function type, or a reference type. */
6712 if (TREE_CODE (type) == VOID_TYPE
6713 || TREE_CODE (type) == FUNCTION_TYPE
6714 || TREE_CODE (type) == REFERENCE_TYPE)
6716 if (complain)
6717 cp_error ("creating array of `%T'", type);
6718 return error_mark_node;
6721 r = build_cplus_array_type (type, domain);
6722 return r;
6725 case PLUS_EXPR:
6726 case MINUS_EXPR:
6728 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6729 in_decl);
6730 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain,
6731 in_decl);
6733 if (e1 == error_mark_node || e2 == error_mark_node)
6734 return error_mark_node;
6736 return fold (build (TREE_CODE (t), TREE_TYPE (t), e1, e2));
6739 case NEGATE_EXPR:
6740 case NOP_EXPR:
6742 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6743 in_decl);
6744 if (e == error_mark_node)
6745 return error_mark_node;
6747 return fold (build (TREE_CODE (t), TREE_TYPE (t), e));
6750 case TYPENAME_TYPE:
6752 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
6753 in_decl, /*entering_scope=*/1);
6754 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
6755 complain, in_decl);
6757 if (ctx == error_mark_node || f == error_mark_node)
6758 return error_mark_node;
6760 if (!IS_AGGR_TYPE (ctx))
6762 if (complain)
6763 cp_error ("`%T' is not a class, struct, or union type",
6764 ctx);
6765 return error_mark_node;
6767 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
6769 /* Normally, make_typename_type does not require that the CTX
6770 have complete type in order to allow things like:
6772 template <class T> struct S { typename S<T>::X Y; };
6774 But, such constructs have already been resolved by this
6775 point, so here CTX really should have complete type, unless
6776 it's a partial instantiation. */
6777 ctx = complete_type (ctx);
6778 if (!COMPLETE_TYPE_P (ctx))
6780 if (complain)
6781 incomplete_type_error (NULL_TREE, ctx);
6782 return error_mark_node;
6786 f = make_typename_type (ctx, f, complain);
6787 if (f == error_mark_node)
6788 return f;
6789 return cp_build_qualified_type_real (f,
6790 CP_TYPE_QUALS (f)
6791 | CP_TYPE_QUALS (t),
6792 complain);
6795 case INDIRECT_REF:
6797 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6798 in_decl);
6799 if (e == error_mark_node)
6800 return error_mark_node;
6801 return make_pointer_declarator (type, e);
6804 case ADDR_EXPR:
6806 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6807 in_decl);
6808 if (e == error_mark_node)
6809 return error_mark_node;
6810 return make_reference_declarator (type, e);
6813 case ARRAY_REF:
6815 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6816 in_decl);
6817 tree e2 = tsubst_expr (TREE_OPERAND (t, 1), args, complain,
6818 in_decl);
6819 if (e1 == error_mark_node || e2 == error_mark_node)
6820 return error_mark_node;
6822 return build_parse_node (ARRAY_REF, e1, e2, tsubst_expr);
6825 case CALL_EXPR:
6827 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6828 in_decl);
6829 tree e2 = (tsubst_call_declarator_parms
6830 (CALL_DECLARATOR_PARMS (t), args, complain, in_decl));
6831 tree e3 = tsubst (CALL_DECLARATOR_EXCEPTION_SPEC (t), args,
6832 complain, in_decl);
6834 if (e1 == error_mark_node || e2 == error_mark_node
6835 || e3 == error_mark_node)
6836 return error_mark_node;
6838 return make_call_declarator (e1, e2, CALL_DECLARATOR_QUALS (t), e3);
6841 case SCOPE_REF:
6843 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6844 in_decl);
6845 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
6846 if (e1 == error_mark_node || e2 == error_mark_node)
6847 return error_mark_node;
6849 return build_parse_node (TREE_CODE (t), e1, e2);
6852 case TYPEOF_TYPE:
6854 tree e1 = tsubst_expr (TYPE_FIELDS (t), args, complain,
6855 in_decl);
6856 if (e1 == error_mark_node)
6857 return error_mark_node;
6859 return TREE_TYPE (e1);
6862 case FUNCTION_NAME:
6864 const char *name;
6865 int len;
6866 tree type;
6867 tree str;
6869 /* This code should match declare_hidden_char_array in
6870 c-common.c. */
6871 name = (*decl_printable_name) (current_function_decl, 2);
6872 len = strlen (name) + 1;
6873 type = build_array_type (char_type_node,
6874 build_index_type (size_int (len)));
6875 str = build_string (len, name);
6876 TREE_TYPE (str) = type;
6877 return str;
6880 default:
6881 sorry ("use of `%s' in template",
6882 tree_code_name [(int) TREE_CODE (t)]);
6883 return error_mark_node;
6887 /* Like tsubst, but deals with expressions. This function just replaces
6888 template parms; to finish processing the resultant expression, use
6889 tsubst_expr. */
6891 tree
6892 tsubst_copy (t, args, complain, in_decl)
6893 tree t, args;
6894 int complain;
6895 tree in_decl;
6897 enum tree_code code;
6898 tree r;
6900 if (t == NULL_TREE || t == error_mark_node)
6901 return t;
6903 code = TREE_CODE (t);
6905 switch (code)
6907 case PARM_DECL:
6908 return do_identifier (DECL_NAME (t), 0, NULL_TREE);
6910 case CONST_DECL:
6912 tree enum_type;
6913 tree v;
6915 if (!DECL_CONTEXT (t))
6916 /* This is a global enumeration constant. */
6917 return t;
6919 /* Unfortunately, we cannot just call lookup_name here.
6920 Consider:
6922 template <int I> int f() {
6923 enum E { a = I };
6924 struct S { void g() { E e = a; } };
6927 When we instantiate f<7>::S::g(), say, lookup_name is not
6928 clever enough to find f<7>::a. */
6929 enum_type
6930 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
6931 /*entering_scope=*/0);
6933 for (v = TYPE_VALUES (enum_type);
6934 v != NULL_TREE;
6935 v = TREE_CHAIN (v))
6936 if (TREE_PURPOSE (v) == DECL_NAME (t))
6937 return TREE_VALUE (v);
6939 /* We didn't find the name. That should never happen; if
6940 name-lookup found it during preliminary parsing, we
6941 should find it again here during instantiation. */
6942 my_friendly_abort (0);
6944 return t;
6946 case FIELD_DECL:
6947 if (DECL_CONTEXT (t))
6949 tree ctx;
6951 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
6952 /*entering_scope=*/1);
6953 if (ctx != DECL_CONTEXT (t))
6954 return lookup_field (ctx, DECL_NAME (t), 0, 0);
6956 return t;
6958 case VAR_DECL:
6959 case FUNCTION_DECL:
6960 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
6961 t = tsubst (t, args, complain, in_decl);
6962 mark_used (t);
6963 return t;
6965 case TEMPLATE_DECL:
6966 if (is_member_template (t))
6967 return tsubst (t, args, complain, in_decl);
6968 else
6969 return t;
6971 case LOOKUP_EXPR:
6973 /* We must tsbust into a LOOKUP_EXPR in case the names to
6974 which it refers is a conversion operator; in that case the
6975 name will change. We avoid making unnecessary copies,
6976 however. */
6978 tree id = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
6980 if (id != TREE_OPERAND (t, 0))
6982 r = build_nt (LOOKUP_EXPR, id);
6983 LOOKUP_EXPR_GLOBAL (r) = LOOKUP_EXPR_GLOBAL (t);
6984 t = r;
6987 return t;
6990 case CAST_EXPR:
6991 case REINTERPRET_CAST_EXPR:
6992 case CONST_CAST_EXPR:
6993 case STATIC_CAST_EXPR:
6994 case DYNAMIC_CAST_EXPR:
6995 case NOP_EXPR:
6996 return build1
6997 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
6998 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
7000 case INDIRECT_REF:
7001 case NEGATE_EXPR:
7002 case TRUTH_NOT_EXPR:
7003 case BIT_NOT_EXPR:
7004 case ADDR_EXPR:
7005 case CONVERT_EXPR: /* Unary + */
7006 case SIZEOF_EXPR:
7007 case ALIGNOF_EXPR:
7008 case ARROW_EXPR:
7009 case THROW_EXPR:
7010 case TYPEID_EXPR:
7011 case REALPART_EXPR:
7012 case IMAGPART_EXPR:
7013 return build1
7014 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
7015 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
7017 case PLUS_EXPR:
7018 case MINUS_EXPR:
7019 case MULT_EXPR:
7020 case TRUNC_DIV_EXPR:
7021 case CEIL_DIV_EXPR:
7022 case FLOOR_DIV_EXPR:
7023 case ROUND_DIV_EXPR:
7024 case EXACT_DIV_EXPR:
7025 case BIT_AND_EXPR:
7026 case BIT_ANDTC_EXPR:
7027 case BIT_IOR_EXPR:
7028 case BIT_XOR_EXPR:
7029 case TRUNC_MOD_EXPR:
7030 case FLOOR_MOD_EXPR:
7031 case TRUTH_ANDIF_EXPR:
7032 case TRUTH_ORIF_EXPR:
7033 case TRUTH_AND_EXPR:
7034 case TRUTH_OR_EXPR:
7035 case RSHIFT_EXPR:
7036 case LSHIFT_EXPR:
7037 case RROTATE_EXPR:
7038 case LROTATE_EXPR:
7039 case EQ_EXPR:
7040 case NE_EXPR:
7041 case MAX_EXPR:
7042 case MIN_EXPR:
7043 case LE_EXPR:
7044 case GE_EXPR:
7045 case LT_EXPR:
7046 case GT_EXPR:
7047 case COMPONENT_REF:
7048 case ARRAY_REF:
7049 case COMPOUND_EXPR:
7050 case SCOPE_REF:
7051 case DOTSTAR_EXPR:
7052 case MEMBER_REF:
7053 case PREDECREMENT_EXPR:
7054 case PREINCREMENT_EXPR:
7055 case POSTDECREMENT_EXPR:
7056 case POSTINCREMENT_EXPR:
7057 return build_nt
7058 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7059 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
7061 case CALL_EXPR:
7063 tree fn = TREE_OPERAND (t, 0);
7064 if (is_overloaded_fn (fn))
7065 fn = tsubst_copy (get_first_fn (fn), args, complain, in_decl);
7066 else
7067 /* Sometimes FN is a LOOKUP_EXPR. */
7068 fn = tsubst_copy (fn, args, complain, in_decl);
7069 return build_nt
7070 (code, fn, tsubst_copy (TREE_OPERAND (t, 1), args, complain,
7071 in_decl),
7072 NULL_TREE);
7075 case METHOD_CALL_EXPR:
7077 tree name = TREE_OPERAND (t, 0);
7078 if (TREE_CODE (name) == BIT_NOT_EXPR)
7080 name = tsubst_copy (TREE_OPERAND (name, 0), args,
7081 complain, in_decl);
7082 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
7084 else if (TREE_CODE (name) == SCOPE_REF
7085 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
7087 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
7088 complain, in_decl);
7089 name = TREE_OPERAND (name, 1);
7090 name = tsubst_copy (TREE_OPERAND (name, 0), args,
7091 complain, in_decl);
7092 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
7093 name = build_nt (SCOPE_REF, base, name);
7095 else
7096 name = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
7097 return build_nt
7098 (code, name, tsubst_copy (TREE_OPERAND (t, 1), args,
7099 complain, in_decl),
7100 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl),
7101 NULL_TREE);
7104 case STMT_EXPR:
7105 /* This processing should really occur in tsubst_expr, However,
7106 tsubst_expr does not recurse into expressions, since it
7107 assumes that there aren't any statements inside them.
7108 Instead, it simply calls build_expr_from_tree. So, we need
7109 to expand the STMT_EXPR here. */
7110 if (!processing_template_decl)
7112 tree stmt_expr = begin_stmt_expr ();
7113 tsubst_expr (STMT_EXPR_STMT (t), args,
7114 complain, in_decl);
7115 return finish_stmt_expr (stmt_expr);
7118 return t;
7120 case COND_EXPR:
7121 case MODOP_EXPR:
7122 case PSEUDO_DTOR_EXPR:
7124 r = build_nt
7125 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7126 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7127 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
7128 return r;
7131 case NEW_EXPR:
7133 r = build_nt
7134 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7135 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7136 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
7137 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
7138 return r;
7141 case DELETE_EXPR:
7143 r = build_nt
7144 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7145 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
7146 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
7147 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
7148 return r;
7151 case TEMPLATE_ID_EXPR:
7153 /* Substituted template arguments */
7154 tree targs = tsubst_copy (TREE_OPERAND (t, 1), args, complain,
7155 in_decl);
7157 if (targs && TREE_CODE (targs) == TREE_LIST)
7159 tree chain;
7160 for (chain = targs; chain; chain = TREE_CHAIN (chain))
7161 TREE_VALUE (chain) = maybe_fold_nontype_arg (TREE_VALUE (chain));
7163 else if (targs)
7165 int i;
7166 for (i = 0; i < TREE_VEC_LENGTH (targs); ++i)
7167 TREE_VEC_ELT (targs, i)
7168 = maybe_fold_nontype_arg (TREE_VEC_ELT (targs, i));
7171 return lookup_template_function
7172 (tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl), targs);
7175 case TREE_LIST:
7177 tree purpose, value, chain;
7179 if (t == void_list_node)
7180 return t;
7182 purpose = TREE_PURPOSE (t);
7183 if (purpose)
7184 purpose = tsubst_copy (purpose, args, complain, in_decl);
7185 value = TREE_VALUE (t);
7186 if (value)
7187 value = tsubst_copy (value, args, complain, in_decl);
7188 chain = TREE_CHAIN (t);
7189 if (chain && chain != void_type_node)
7190 chain = tsubst_copy (chain, args, complain, in_decl);
7191 if (purpose == TREE_PURPOSE (t)
7192 && value == TREE_VALUE (t)
7193 && chain == TREE_CHAIN (t))
7194 return t;
7195 return tree_cons (purpose, value, chain);
7198 case RECORD_TYPE:
7199 case UNION_TYPE:
7200 case ENUMERAL_TYPE:
7201 case INTEGER_TYPE:
7202 case TEMPLATE_TYPE_PARM:
7203 case TEMPLATE_TEMPLATE_PARM:
7204 case BOUND_TEMPLATE_TEMPLATE_PARM:
7205 case TEMPLATE_PARM_INDEX:
7206 case POINTER_TYPE:
7207 case REFERENCE_TYPE:
7208 case OFFSET_TYPE:
7209 case FUNCTION_TYPE:
7210 case METHOD_TYPE:
7211 case ARRAY_TYPE:
7212 case TYPENAME_TYPE:
7213 case TYPE_DECL:
7214 return tsubst (t, args, complain, in_decl);
7216 case IDENTIFIER_NODE:
7217 if (IDENTIFIER_TYPENAME_P (t))
7219 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
7220 if (flag_new_abi)
7221 return mangle_conv_op_name_for_type (new_type);
7222 else
7223 return (build_typename_overload (new_type));
7225 else
7226 return t;
7228 case CONSTRUCTOR:
7230 r = build
7231 (CONSTRUCTOR, tsubst (TREE_TYPE (t), args, complain, in_decl),
7232 NULL_TREE, tsubst_copy (CONSTRUCTOR_ELTS (t), args,
7233 complain, in_decl));
7234 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
7235 return r;
7238 case VA_ARG_EXPR:
7239 return build_x_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
7240 in_decl),
7241 tsubst (TREE_TYPE (t), args, complain, in_decl));
7243 case FUNCTION_NAME:
7244 return tsubst (t, args, complain, in_decl);
7246 default:
7247 return t;
7251 /* Like tsubst_copy, but also does semantic processing. */
7253 tree
7254 tsubst_expr (t, args, complain, in_decl)
7255 tree t, args;
7256 int complain;
7257 tree in_decl;
7259 tree stmt;
7261 if (t == NULL_TREE || t == error_mark_node)
7262 return t;
7264 if (processing_template_decl)
7265 return tsubst_copy (t, args, complain, in_decl);
7267 switch (TREE_CODE (t))
7269 case RETURN_INIT:
7270 prep_stmt (t);
7271 finish_named_return_value
7272 (TREE_OPERAND (t, 0),
7273 tsubst_expr (TREE_OPERAND (t, 1), args, /*complain=*/1, in_decl));
7274 tsubst_expr (TREE_CHAIN (t), args, complain, in_decl);
7275 break;
7277 case CTOR_INITIALIZER:
7279 tree member_init_list;
7280 tree base_init_list;
7282 prep_stmt (t);
7283 member_init_list
7284 = tsubst_initializer_list (TREE_OPERAND (t, 0), args);
7285 base_init_list
7286 = tsubst_initializer_list (TREE_OPERAND (t, 1), args);
7287 setup_vtbl_ptr (member_init_list, base_init_list);
7288 tsubst_expr (TREE_CHAIN (t), args, complain, in_decl);
7289 break;
7292 case RETURN_STMT:
7293 prep_stmt (t);
7294 finish_return_stmt (tsubst_expr (RETURN_EXPR (t),
7295 args, complain, in_decl));
7296 break;
7298 case EXPR_STMT:
7299 prep_stmt (t);
7300 finish_expr_stmt (tsubst_expr (EXPR_STMT_EXPR (t),
7301 args, complain, in_decl));
7302 break;
7304 case DECL_STMT:
7306 tree decl;
7307 tree init;
7309 prep_stmt (t);
7310 decl = DECL_STMT_DECL (t);
7311 if (TREE_CODE (decl) == LABEL_DECL)
7312 finish_label_decl (DECL_NAME (decl));
7313 else
7315 init = DECL_INITIAL (decl);
7316 decl = tsubst (decl, args, complain, in_decl);
7317 init = tsubst_expr (init, args, complain, in_decl);
7318 if (decl != error_mark_node)
7320 if (TREE_CODE (decl) != TYPE_DECL)
7321 /* Make sure the type is instantiated now. */
7322 complete_type (TREE_TYPE (decl));
7323 if (init)
7324 DECL_INITIAL (decl) = error_mark_node;
7325 /* By marking the declaration as instantiated, we avoid
7326 trying to instantiate it. Since instantiate_decl can't
7327 handle local variables, and since we've already done
7328 all that needs to be done, that's the right thing to
7329 do. */
7330 if (TREE_CODE (decl) == VAR_DECL)
7331 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
7332 maybe_push_decl (decl);
7333 cp_finish_decl (decl, init, NULL_TREE, 0);
7336 return decl;
7339 case FOR_STMT:
7341 tree tmp;
7342 prep_stmt (t);
7344 stmt = begin_for_stmt ();
7345 for (tmp = FOR_INIT_STMT (t); tmp; tmp = TREE_CHAIN (tmp))
7346 tsubst_expr (tmp, args, complain, in_decl);
7347 finish_for_init_stmt (stmt);
7348 finish_for_cond (tsubst_expr (FOR_COND (t), args,
7349 complain, in_decl),
7350 stmt);
7351 tmp = tsubst_expr (FOR_EXPR (t), args, complain, in_decl);
7352 finish_for_expr (tmp, stmt);
7353 tsubst_expr (FOR_BODY (t), args, complain, in_decl);
7354 finish_for_stmt (stmt);
7356 break;
7358 case WHILE_STMT:
7360 prep_stmt (t);
7361 stmt = begin_while_stmt ();
7362 finish_while_stmt_cond (tsubst_expr (WHILE_COND (t),
7363 args, complain, in_decl),
7364 stmt);
7365 tsubst_expr (WHILE_BODY (t), args, complain, in_decl);
7366 finish_while_stmt (stmt);
7368 break;
7370 case DO_STMT:
7372 prep_stmt (t);
7373 stmt = begin_do_stmt ();
7374 tsubst_expr (DO_BODY (t), args, complain, in_decl);
7375 finish_do_body (stmt);
7376 finish_do_stmt (tsubst_expr (DO_COND (t), args,
7377 complain, in_decl),
7378 stmt);
7380 break;
7382 case IF_STMT:
7384 tree tmp;
7386 prep_stmt (t);
7387 stmt = begin_if_stmt ();
7388 finish_if_stmt_cond (tsubst_expr (IF_COND (t),
7389 args, complain, in_decl),
7390 stmt);
7392 if (tmp = THEN_CLAUSE (t), tmp)
7394 tsubst_expr (tmp, args, complain, in_decl);
7395 finish_then_clause (stmt);
7398 if (tmp = ELSE_CLAUSE (t), tmp)
7400 begin_else_clause ();
7401 tsubst_expr (tmp, args, complain, in_decl);
7402 finish_else_clause (stmt);
7405 finish_if_stmt ();
7407 break;
7409 case COMPOUND_STMT:
7411 tree substmt;
7413 prep_stmt (t);
7414 stmt = begin_compound_stmt (COMPOUND_STMT_NO_SCOPE (t));
7415 for (substmt = COMPOUND_BODY (t);
7416 substmt != NULL_TREE;
7417 substmt = TREE_CHAIN (substmt))
7418 tsubst_expr (substmt, args, complain, in_decl);
7419 return finish_compound_stmt (COMPOUND_STMT_NO_SCOPE (t), stmt);
7421 break;
7423 case BREAK_STMT:
7424 prep_stmt (t);
7425 finish_break_stmt ();
7426 break;
7428 case CONTINUE_STMT:
7429 prep_stmt (t);
7430 finish_continue_stmt ();
7431 break;
7433 case SWITCH_STMT:
7435 tree val;
7437 prep_stmt (t);
7438 stmt = begin_switch_stmt ();
7439 val = tsubst_expr (SWITCH_COND (t), args, complain, in_decl);
7440 finish_switch_cond (val, stmt);
7441 tsubst_expr (SWITCH_BODY (t), args, complain, in_decl);
7442 finish_switch_stmt (stmt);
7444 break;
7446 case CASE_LABEL:
7447 prep_stmt (t);
7448 finish_case_label (tsubst_expr (CASE_LOW (t), args, complain, in_decl),
7449 tsubst_expr (CASE_HIGH (t), args, complain,
7450 in_decl));
7451 break;
7453 case LABEL_STMT:
7454 lineno = STMT_LINENO (t);
7455 finish_label_stmt (DECL_NAME (LABEL_STMT_LABEL (t)));
7456 break;
7458 case GOTO_STMT:
7459 prep_stmt (t);
7460 t = GOTO_DESTINATION (t);
7461 if (TREE_CODE (t) != LABEL_DECL)
7462 /* Computed goto's must be tsubst'd into. On the other hand,
7463 non-computed gotos must not be; the identifier in question
7464 will have no binding. */
7465 t = tsubst_expr (t, args, complain, in_decl);
7466 else
7467 t = DECL_NAME (t);
7468 finish_goto_stmt (t);
7469 break;
7471 case ASM_STMT:
7472 prep_stmt (t);
7473 finish_asm_stmt (ASM_CV_QUAL (t),
7474 tsubst_expr (ASM_STRING (t), args, complain, in_decl),
7475 tsubst_expr (ASM_OUTPUTS (t), args, complain, in_decl),
7476 tsubst_expr (ASM_INPUTS (t), args, complain, in_decl),
7477 tsubst_expr (ASM_CLOBBERS (t), args, complain,
7478 in_decl));
7479 break;
7481 case TRY_BLOCK:
7482 prep_stmt (t);
7483 if (CLEANUP_P (t))
7485 stmt = begin_try_block ();
7486 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
7487 finish_cleanup_try_block (stmt);
7488 finish_cleanup (tsubst_expr (TRY_HANDLERS (t), args,
7489 complain, in_decl),
7490 stmt);
7492 else
7494 tree handler;
7496 if (FN_TRY_BLOCK_P (t))
7497 stmt = begin_function_try_block ();
7498 else
7499 stmt = begin_try_block ();
7501 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
7503 if (FN_TRY_BLOCK_P (t))
7504 finish_function_try_block (stmt);
7505 else
7506 finish_try_block (stmt);
7508 handler = TRY_HANDLERS (t);
7509 for (; handler; handler = TREE_CHAIN (handler))
7510 tsubst_expr (handler, args, complain, in_decl);
7511 if (FN_TRY_BLOCK_P (t))
7512 finish_function_handler_sequence (stmt);
7513 else
7514 finish_handler_sequence (stmt);
7516 break;
7518 case HANDLER:
7520 tree decl;
7521 tree blocks;
7523 prep_stmt (t);
7524 stmt = begin_handler ();
7525 if (HANDLER_PARMS (t))
7527 decl = DECL_STMT_DECL (HANDLER_PARMS (t));
7528 decl = tsubst (decl, args, complain, in_decl);
7529 /* Prevent instantiate_decl from trying to instantiate
7530 this variable. We've already done all that needs to be
7531 done. */
7532 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
7534 else
7535 decl = NULL_TREE;
7536 blocks = finish_handler_parms (decl, stmt);
7537 tsubst_expr (HANDLER_BODY (t), args, complain, in_decl);
7538 finish_handler (blocks, stmt);
7540 break;
7542 case TAG_DEFN:
7543 prep_stmt (t);
7544 t = TREE_TYPE (t);
7545 tsubst (t, args, complain, NULL_TREE);
7546 break;
7548 default:
7549 return build_expr_from_tree (tsubst_copy (t, args, complain, in_decl));
7551 return NULL_TREE;
7554 /* TMPL is a TEMPLATE_DECL for a cloned constructor or destructor.
7555 Instantiate it with the ARGS. */
7557 static tree
7558 instantiate_clone (tmpl, args)
7559 tree tmpl;
7560 tree args;
7562 tree spec;
7563 tree clone;
7565 /* Instantiated the cloned function, rather than the clone. */
7566 spec = instantiate_template (DECL_CLONED_FUNCTION (tmpl), args);
7568 /* Then, see if we've already cloned the instantiation. */
7569 for (clone = TREE_CHAIN (spec);
7570 clone && DECL_CLONED_FUNCTION_P (clone);
7571 clone = TREE_CHAIN (clone))
7572 if (DECL_NAME (clone) == DECL_NAME (tmpl))
7573 return clone;
7575 /* If we haven't, do so know. */
7576 if (!clone)
7577 clone_function_decl (spec, /*update_method_vec_p=*/0);
7579 /* Look again. */
7580 for (clone = TREE_CHAIN (spec);
7581 clone && DECL_CLONED_FUNCTION_P (clone);
7582 clone = TREE_CHAIN (clone))
7583 if (DECL_NAME (clone) == DECL_NAME (tmpl))
7584 return clone;
7586 /* We should always have found the clone by now. */
7587 my_friendly_abort (20000411);
7588 return NULL_TREE;
7591 /* Instantiate the indicated variable or function template TMPL with
7592 the template arguments in TARG_PTR. */
7594 tree
7595 instantiate_template (tmpl, targ_ptr)
7596 tree tmpl, targ_ptr;
7598 tree clone;
7599 tree fndecl;
7600 tree gen_tmpl;
7601 tree spec;
7602 int i, len;
7603 tree inner_args;
7605 if (tmpl == error_mark_node)
7606 return error_mark_node;
7608 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 283);
7610 /* If this function is a clone, handle it specially. */
7611 if (DECL_CLONED_FUNCTION_P (tmpl))
7612 return instantiate_clone (tmpl, targ_ptr);
7614 /* Check to see if we already have this specialization. */
7615 spec = retrieve_specialization (tmpl, targ_ptr);
7616 if (spec != NULL_TREE)
7617 return spec;
7619 gen_tmpl = most_general_template (tmpl);
7620 if (tmpl != gen_tmpl)
7622 /* The TMPL is a partial instantiation. To get a full set of
7623 arguments we must add the arguments used to perform the
7624 partial instantiation. */
7625 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
7626 targ_ptr);
7628 /* Check to see if we already have this specialization. */
7629 spec = retrieve_specialization (gen_tmpl, targ_ptr);
7630 if (spec != NULL_TREE)
7631 return spec;
7634 len = DECL_NTPARMS (gen_tmpl);
7635 inner_args = INNERMOST_TEMPLATE_ARGS (targ_ptr);
7636 i = len;
7637 while (i--)
7639 tree t = TREE_VEC_ELT (inner_args, i);
7640 if (TYPE_P (t))
7642 tree nt = target_type (t);
7643 if (IS_AGGR_TYPE (nt) && decl_function_context (TYPE_MAIN_DECL (nt)))
7645 cp_error ("type `%T' composed from a local class is not a valid template-argument", t);
7646 cp_error (" trying to instantiate `%D'", gen_tmpl);
7647 return error_mark_node;
7652 /* substitute template parameters */
7653 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
7654 targ_ptr, /*complain=*/1, gen_tmpl);
7655 /* The DECL_TI_TEMPLATE should always be the immediate parent
7656 template, not the most general template. */
7657 DECL_TI_TEMPLATE (fndecl) = tmpl;
7659 if (flag_external_templates)
7660 add_pending_template (fndecl);
7662 /* If we've just instantiated the main entry point for a function,
7663 instantiate all the alternate entry points as well. */
7664 for (clone = TREE_CHAIN (gen_tmpl);
7665 clone && DECL_CLONED_FUNCTION_P (clone);
7666 clone = TREE_CHAIN (clone))
7667 instantiate_template (clone, targ_ptr);
7669 return fndecl;
7672 /* The FN is a TEMPLATE_DECL for a function. The ARGS are the
7673 arguments that are being used when calling it. TARGS is a vector
7674 into which the deduced template arguments are placed.
7676 Return zero for success, 2 for an incomplete match that doesn't resolve
7677 all the types, and 1 for complete failure. An error message will be
7678 printed only for an incomplete match.
7680 If FN is a conversion operator, or we are trying to produce a specific
7681 specialization, RETURN_TYPE is the return type desired.
7683 The EXPLICIT_TARGS are explicit template arguments provided via a
7684 template-id.
7686 The parameter STRICT is one of:
7688 DEDUCE_CALL:
7689 We are deducing arguments for a function call, as in
7690 [temp.deduct.call].
7692 DEDUCE_CONV:
7693 We are deducing arguments for a conversion function, as in
7694 [temp.deduct.conv].
7696 DEDUCE_EXACT:
7697 We are deducing arguments when doing an explicit instantiation
7698 as in [temp.explicit], when determining an explicit specialization
7699 as in [temp.expl.spec], or when taking the address of a function
7700 template, as in [temp.deduct.funcaddr].
7702 DEDUCE_ORDER:
7703 We are deducing arguments when calculating the partial
7704 ordering between specializations of function or class
7705 templates, as in [temp.func.order] and [temp.class.order].
7707 LEN is the number of parms to consider before returning success, or -1
7708 for all. This is used in partial ordering to avoid comparing parms for
7709 which no actual argument was passed, since they are not considered in
7710 overload resolution (and are explicitly excluded from consideration in
7711 partial ordering in [temp.func.order]/6). */
7714 fn_type_unification (fn, explicit_targs, targs, args, return_type,
7715 strict, len)
7716 tree fn, explicit_targs, targs, args, return_type;
7717 unification_kind_t strict;
7718 int len;
7720 tree parms;
7721 tree fntype;
7722 int result;
7724 my_friendly_assert (TREE_CODE (fn) == TEMPLATE_DECL, 0);
7726 fntype = TREE_TYPE (fn);
7727 if (explicit_targs)
7729 /* [temp.deduct]
7731 The specified template arguments must match the template
7732 parameters in kind (i.e., type, nontype, template), and there
7733 must not be more arguments than there are parameters;
7734 otherwise type deduction fails.
7736 Nontype arguments must match the types of the corresponding
7737 nontype template parameters, or must be convertible to the
7738 types of the corresponding nontype parameters as specified in
7739 _temp.arg.nontype_, otherwise type deduction fails.
7741 All references in the function type of the function template
7742 to the corresponding template parameters are replaced by the
7743 specified template argument values. If a substitution in a
7744 template parameter or in the function type of the function
7745 template results in an invalid type, type deduction fails. */
7746 int i;
7747 tree converted_args;
7749 converted_args
7750 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
7751 explicit_targs, NULL_TREE, /*complain=*/0,
7752 /*require_all_arguments=*/0));
7753 if (converted_args == error_mark_node)
7754 return 1;
7756 fntype = tsubst (fntype, converted_args, /*complain=*/0, NULL_TREE);
7757 if (fntype == error_mark_node)
7758 return 1;
7760 /* Place the explicitly specified arguments in TARGS. */
7761 for (i = 0; i < TREE_VEC_LENGTH (targs); i++)
7762 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
7765 parms = TYPE_ARG_TYPES (fntype);
7766 /* Never do unification on the 'this' parameter. */
7767 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
7768 parms = TREE_CHAIN (parms);
7770 if (return_type)
7772 /* We've been given a return type to match, prepend it. */
7773 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
7774 args = tree_cons (NULL_TREE, return_type, args);
7775 if (len >= 0)
7776 ++len;
7779 /* We allow incomplete unification without an error message here
7780 because the standard doesn't seem to explicitly prohibit it. Our
7781 callers must be ready to deal with unification failures in any
7782 event. */
7783 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
7784 targs, parms, args, /*subr=*/0,
7785 strict, /*allow_incomplete*/1, len);
7787 if (result == 0)
7788 /* All is well so far. Now, check:
7790 [temp.deduct]
7792 When all template arguments have been deduced, all uses of
7793 template parameters in nondeduced contexts are replaced with
7794 the corresponding deduced argument values. If the
7795 substitution results in an invalid type, as described above,
7796 type deduction fails. */
7797 if (tsubst (TREE_TYPE (fn), targs, /*complain=*/0, NULL_TREE)
7798 == error_mark_node)
7799 return 1;
7801 return result;
7804 /* Adjust types before performing type deduction, as described in
7805 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
7806 sections are symmetric. PARM is the type of a function parameter
7807 or the return type of the conversion function. ARG is the type of
7808 the argument passed to the call, or the type of the value
7809 initialized with the result of the conversion function. */
7811 static int
7812 maybe_adjust_types_for_deduction (strict, parm, arg)
7813 unification_kind_t strict;
7814 tree* parm;
7815 tree* arg;
7817 int result = 0;
7819 switch (strict)
7821 case DEDUCE_CALL:
7822 break;
7824 case DEDUCE_CONV:
7826 /* Swap PARM and ARG throughout the remainder of this
7827 function; the handling is precisely symmetric since PARM
7828 will initialize ARG rather than vice versa. */
7829 tree* temp = parm;
7830 parm = arg;
7831 arg = temp;
7832 break;
7835 case DEDUCE_EXACT:
7836 /* There is nothing to do in this case. */
7837 return 0;
7839 case DEDUCE_ORDER:
7840 /* DR 214. [temp.func.order] is underspecified, and leads to no
7841 ordering between things like `T *' and `T const &' for `U *'.
7842 The former has T=U and the latter T=U*. The former looks more
7843 specialized and John Spicer considers it well-formed (the EDG
7844 compiler accepts it).
7846 John also confirms that deduction should proceed as in a function
7847 call. Which implies the usual ARG and PARM bashing as DEDUCE_CALL.
7848 However, in ordering, ARG can have REFERENCE_TYPE, but no argument
7849 to an actual call can have such a type.
7851 When deducing against a REFERENCE_TYPE, we can either not change
7852 PARM's type, or we can change ARG's type too. The latter, though
7853 seemingly more safe, turns out to give the following quirk. Consider
7854 deducing a call to a `const int *' with the following template
7855 function parameters
7856 #1; T const *const & ; T = int
7857 #2; T *const & ; T = const int
7858 #3; T * ; T = const int
7859 It looks like #1 is the more specialized. Taken pairwise, #1 is
7860 more specialized than #2 and #2 is more specialized than #3, yet
7861 there is no ordering between #1 and #3.
7863 So, if ARG is a reference, we look though it when PARM is
7864 not a refence. When both are references we don't change either. */
7865 if (TREE_CODE (*arg) == REFERENCE_TYPE)
7867 if (TREE_CODE (*parm) == REFERENCE_TYPE)
7868 return 0;
7869 *arg = TREE_TYPE (*arg);
7870 result |= UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
7871 goto skip_arg;
7873 break;
7874 default:
7875 my_friendly_abort (0);
7878 if (TREE_CODE (*parm) != REFERENCE_TYPE)
7880 /* [temp.deduct.call]
7882 If P is not a reference type:
7884 --If A is an array type, the pointer type produced by the
7885 array-to-pointer standard conversion (_conv.array_) is
7886 used in place of A for type deduction; otherwise,
7888 --If A is a function type, the pointer type produced by
7889 the function-to-pointer standard conversion
7890 (_conv.func_) is used in place of A for type deduction;
7891 otherwise,
7893 --If A is a cv-qualified type, the top level
7894 cv-qualifiers of A's type are ignored for type
7895 deduction. */
7896 if (TREE_CODE (*arg) == ARRAY_TYPE)
7897 *arg = build_pointer_type (TREE_TYPE (*arg));
7898 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
7899 *arg = build_pointer_type (*arg);
7900 else
7901 *arg = TYPE_MAIN_VARIANT (*arg);
7904 skip_arg:;
7905 /* [temp.deduct.call]
7907 If P is a cv-qualified type, the top level cv-qualifiers
7908 of P's type are ignored for type deduction. If P is a
7909 reference type, the type referred to by P is used for
7910 type deduction. */
7911 *parm = TYPE_MAIN_VARIANT (*parm);
7912 if (TREE_CODE (*parm) == REFERENCE_TYPE)
7914 *parm = TREE_TYPE (*parm);
7915 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
7917 return result;
7920 /* Most parms like fn_type_unification.
7922 If SUBR is 1, we're being called recursively (to unify the
7923 arguments of a function or method parameter of a function
7924 template). */
7926 static int
7927 type_unification_real (tparms, targs, parms, args, subr,
7928 strict, allow_incomplete, len)
7929 tree tparms, targs, parms, args;
7930 int subr;
7931 unification_kind_t strict;
7932 int allow_incomplete, len;
7934 tree parm, arg;
7935 int i;
7936 int ntparms = TREE_VEC_LENGTH (tparms);
7937 int sub_strict;
7939 my_friendly_assert (TREE_CODE (tparms) == TREE_VEC, 289);
7940 my_friendly_assert (parms == NULL_TREE
7941 || TREE_CODE (parms) == TREE_LIST, 290);
7942 /* ARGS could be NULL (via a call from parse.y to
7943 build_x_function_call). */
7944 if (args)
7945 my_friendly_assert (TREE_CODE (args) == TREE_LIST, 291);
7946 my_friendly_assert (ntparms > 0, 292);
7948 switch (strict)
7950 case DEDUCE_CALL:
7951 sub_strict = (UNIFY_ALLOW_OUTER_LEVEL | UNIFY_ALLOW_MORE_CV_QUAL
7952 | UNIFY_ALLOW_DERIVED);
7953 break;
7955 case DEDUCE_CONV:
7956 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
7957 break;
7959 case DEDUCE_EXACT:
7960 sub_strict = UNIFY_ALLOW_NONE;
7961 break;
7963 case DEDUCE_ORDER:
7964 sub_strict = UNIFY_ALLOW_NONE;
7965 break;
7967 default:
7968 my_friendly_abort (0);
7971 if (len == 0)
7972 return 0;
7974 while (parms
7975 && parms != void_list_node
7976 && args
7977 && args != void_list_node)
7979 parm = TREE_VALUE (parms);
7980 parms = TREE_CHAIN (parms);
7981 arg = TREE_VALUE (args);
7982 args = TREE_CHAIN (args);
7984 if (arg == error_mark_node)
7985 return 1;
7986 if (arg == unknown_type_node)
7987 /* We can't deduce anything from this, but we might get all the
7988 template args from other function args. */
7989 continue;
7991 /* Conversions will be performed on a function argument that
7992 corresponds with a function parameter that contains only
7993 non-deducible template parameters and explicitly specified
7994 template parameters. */
7995 if (! uses_template_parms (parm))
7997 tree type;
7999 if (!TYPE_P (arg))
8000 type = TREE_TYPE (arg);
8001 else
8003 type = arg;
8004 arg = NULL_TREE;
8007 if (strict == DEDUCE_EXACT || strict == DEDUCE_ORDER)
8009 if (same_type_p (parm, type))
8010 continue;
8012 else
8013 /* It might work; we shouldn't check now, because we might
8014 get into infinite recursion. Overload resolution will
8015 handle it. */
8016 continue;
8018 return 1;
8021 if (!TYPE_P (arg))
8023 my_friendly_assert (TREE_TYPE (arg) != NULL_TREE, 293);
8024 if (type_unknown_p (arg))
8026 /* [temp.deduct.type] A template-argument can be deduced from
8027 a pointer to function or pointer to member function
8028 argument if the set of overloaded functions does not
8029 contain function templates and at most one of a set of
8030 overloaded functions provides a unique match. */
8032 if (resolve_overloaded_unification
8033 (tparms, targs, parm, arg, strict, sub_strict)
8034 != 0)
8035 return 1;
8036 continue;
8038 arg = TREE_TYPE (arg);
8042 int arg_strict = sub_strict;
8044 if (!subr)
8045 arg_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg);
8047 if (unify (tparms, targs, parm, arg, arg_strict))
8048 return 1;
8051 /* Are we done with the interesting parms? */
8052 if (--len == 0)
8053 return 0;
8055 /* Fail if we've reached the end of the parm list, and more args
8056 are present, and the parm list isn't variadic. */
8057 if (args && args != void_list_node && parms == void_list_node)
8058 return 1;
8059 /* Fail if parms are left and they don't have default values. */
8060 if (parms
8061 && parms != void_list_node
8062 && TREE_PURPOSE (parms) == NULL_TREE)
8063 return 1;
8064 if (!subr)
8065 for (i = 0; i < ntparms; i++)
8066 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
8068 if (!allow_incomplete)
8069 error ("incomplete type unification");
8070 return 2;
8072 return 0;
8075 /* Subroutine of type_unification_real. Args are like the variables at the
8076 call site. ARG is an overloaded function (or template-id); we try
8077 deducing template args from each of the overloads, and if only one
8078 succeeds, we go with that. Modifies TARGS and returns 0 on success. */
8080 static int
8081 resolve_overloaded_unification (tparms, targs, parm, arg, strict,
8082 sub_strict)
8083 tree tparms, targs, parm, arg;
8084 unification_kind_t strict;
8085 int sub_strict;
8087 tree tempargs = copy_node (targs);
8088 int good = 0;
8090 if (TREE_CODE (arg) == ADDR_EXPR)
8091 arg = TREE_OPERAND (arg, 0);
8093 if (TREE_CODE (arg) == COMPONENT_REF)
8094 /* Handle `&x' where `x' is some static or non-static member
8095 function name. */
8096 arg = TREE_OPERAND (arg, 1);
8098 if (TREE_CODE (arg) == OFFSET_REF)
8099 arg = TREE_OPERAND (arg, 1);
8101 /* Strip baselink information. */
8102 while (TREE_CODE (arg) == TREE_LIST)
8103 arg = TREE_VALUE (arg);
8105 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
8107 /* If we got some explicit template args, we need to plug them into
8108 the affected templates before we try to unify, in case the
8109 explicit args will completely resolve the templates in question. */
8111 tree expl_subargs = TREE_OPERAND (arg, 1);
8112 arg = TREE_OPERAND (arg, 0);
8114 for (; arg; arg = OVL_NEXT (arg))
8116 tree fn = OVL_CURRENT (arg);
8117 tree subargs, elem;
8119 if (TREE_CODE (fn) != TEMPLATE_DECL)
8120 continue;
8122 subargs = get_bindings_overload (fn, DECL_TEMPLATE_RESULT (fn),
8123 expl_subargs);
8124 if (subargs)
8126 elem = tsubst (TREE_TYPE (fn), subargs, /*complain=*/0,
8127 NULL_TREE);
8128 if (TREE_CODE (elem) == METHOD_TYPE)
8129 elem = build_ptrmemfunc_type (build_pointer_type (elem));
8130 good += try_one_overload (tparms, targs, tempargs, parm, elem,
8131 strict, sub_strict);
8135 else if (TREE_CODE (arg) == OVERLOAD)
8137 for (; arg; arg = OVL_NEXT (arg))
8139 tree type = TREE_TYPE (OVL_CURRENT (arg));
8140 if (TREE_CODE (type) == METHOD_TYPE)
8141 type = build_ptrmemfunc_type (build_pointer_type (type));
8142 good += try_one_overload (tparms, targs, tempargs, parm,
8143 type,
8144 strict, sub_strict);
8147 else
8148 my_friendly_abort (981006);
8150 /* [temp.deduct.type] A template-argument can be deduced from a pointer
8151 to function or pointer to member function argument if the set of
8152 overloaded functions does not contain function templates and at most
8153 one of a set of overloaded functions provides a unique match.
8155 So if we found multiple possibilities, we return success but don't
8156 deduce anything. */
8158 if (good == 1)
8160 int i = TREE_VEC_LENGTH (targs);
8161 for (; i--; )
8162 if (TREE_VEC_ELT (tempargs, i))
8163 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
8165 if (good)
8166 return 0;
8168 return 1;
8171 /* Subroutine of resolve_overloaded_unification; does deduction for a single
8172 overload. Fills TARGS with any deduced arguments, or error_mark_node if
8173 different overloads deduce different arguments for a given parm.
8174 Returns 1 on success. */
8176 static int
8177 try_one_overload (tparms, orig_targs, targs, parm, arg, strict,
8178 sub_strict)
8179 tree tparms, orig_targs, targs, parm, arg;
8180 unification_kind_t strict;
8181 int sub_strict;
8183 int nargs;
8184 tree tempargs;
8185 int i;
8187 /* [temp.deduct.type] A template-argument can be deduced from a pointer
8188 to function or pointer to member function argument if the set of
8189 overloaded functions does not contain function templates and at most
8190 one of a set of overloaded functions provides a unique match.
8192 So if this is a template, just return success. */
8194 if (uses_template_parms (arg))
8195 return 1;
8197 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg);
8199 /* We don't copy orig_targs for this because if we have already deduced
8200 some template args from previous args, unify would complain when we
8201 try to deduce a template parameter for the same argument, even though
8202 there isn't really a conflict. */
8203 nargs = TREE_VEC_LENGTH (targs);
8204 tempargs = make_tree_vec (nargs);
8206 if (unify (tparms, tempargs, parm, arg, sub_strict) != 0)
8207 return 0;
8209 /* First make sure we didn't deduce anything that conflicts with
8210 explicitly specified args. */
8211 for (i = nargs; i--; )
8213 tree elt = TREE_VEC_ELT (tempargs, i);
8214 tree oldelt = TREE_VEC_ELT (orig_targs, i);
8216 if (elt == NULL_TREE)
8217 continue;
8218 else if (uses_template_parms (elt))
8220 /* Since we're unifying against ourselves, we will fill in template
8221 args used in the function parm list with our own template parms.
8222 Discard them. */
8223 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
8224 continue;
8226 else if (oldelt && ! template_args_equal (oldelt, elt))
8227 return 0;
8230 for (i = nargs; i--; )
8232 tree elt = TREE_VEC_ELT (tempargs, i);
8234 if (elt)
8235 TREE_VEC_ELT (targs, i) = elt;
8238 return 1;
8241 /* Verify that nondeduce template argument agrees with the type
8242 obtained from argument deduction. Return nonzero if the
8243 verification fails.
8245 For example:
8247 struct A { typedef int X; };
8248 template <class T, class U> struct C {};
8249 template <class T> struct C<T, typename T::X> {};
8251 Then with the instantiation `C<A, int>', we can deduce that
8252 `T' is `A' but unify () does not check whether `typename T::X'
8253 is `int'. This function ensure that they agree.
8255 TARGS, PARMS are the same as the arguments of unify.
8256 ARGS contains template arguments from all levels. */
8258 static int
8259 verify_class_unification (targs, parms, args)
8260 tree targs, parms, args;
8262 int i;
8263 int nparms = TREE_VEC_LENGTH (parms);
8264 tree new_parms = tsubst (parms, add_outermost_template_args (args, targs),
8265 /*complain=*/0, NULL_TREE);
8266 if (new_parms == error_mark_node)
8267 return 1;
8269 args = INNERMOST_TEMPLATE_ARGS (args);
8271 for (i = 0; i < nparms; i++)
8273 tree parm = TREE_VEC_ELT (new_parms, i);
8274 tree arg = TREE_VEC_ELT (args, i);
8276 /* In case we are deducing from a function argument of a function
8277 templates, some parameters may not be deduced yet. So we
8278 make sure that only fully substituted elements of PARM are
8279 compared below. */
8281 if (!uses_template_parms (parm) && !template_args_equal (parm, arg))
8282 return 1;
8284 return 0;
8287 /* PARM is a template class (perhaps with unbound template
8288 parameters). ARG is a fully instantiated type. If ARG can be
8289 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
8290 TARGS are as for unify. */
8292 static tree
8293 try_class_unification (tparms, targs, parm, arg)
8294 tree tparms;
8295 tree targs;
8296 tree parm;
8297 tree arg;
8299 tree copy_of_targs;
8301 if (!CLASSTYPE_TEMPLATE_INFO (arg)
8302 || CLASSTYPE_TI_TEMPLATE (arg) != CLASSTYPE_TI_TEMPLATE (parm))
8303 return NULL_TREE;
8305 /* We need to make a new template argument vector for the call to
8306 unify. If we used TARGS, we'd clutter it up with the result of
8307 the attempted unification, even if this class didn't work out.
8308 We also don't want to commit ourselves to all the unifications
8309 we've already done, since unification is supposed to be done on
8310 an argument-by-argument basis. In other words, consider the
8311 following pathological case:
8313 template <int I, int J, int K>
8314 struct S {};
8316 template <int I, int J>
8317 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
8319 template <int I, int J, int K>
8320 void f(S<I, J, K>, S<I, I, I>);
8322 void g() {
8323 S<0, 0, 0> s0;
8324 S<0, 1, 2> s2;
8326 f(s0, s2);
8329 Now, by the time we consider the unification involving `s2', we
8330 already know that we must have `f<0, 0, 0>'. But, even though
8331 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is not legal
8332 because there are two ways to unify base classes of S<0, 1, 2>
8333 with S<I, I, I>. If we kept the already deduced knowledge, we
8334 would reject the possibility I=1. */
8335 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
8337 /* If unification failed, we're done. */
8338 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
8339 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE))
8340 return NULL_TREE;
8342 return arg;
8345 /* Subroutine of get_template_base. RVAL, if non-NULL, is a base we
8346 have already discovered to be satisfactory. ARG_BINFO is the binfo
8347 for the base class of ARG that we are currently examining. */
8349 static tree
8350 get_template_base_recursive (tparms, targs, parm,
8351 arg_binfo, rval, flags)
8352 tree tparms;
8353 tree targs;
8354 tree arg_binfo;
8355 tree rval;
8356 tree parm;
8357 int flags;
8359 tree binfos;
8360 int i, n_baselinks;
8361 tree arg = BINFO_TYPE (arg_binfo);
8363 if (!(flags & GTB_IGNORE_TYPE))
8365 tree r = try_class_unification (tparms, targs,
8366 parm, arg);
8368 /* If there is more than one satisfactory baseclass, then:
8370 [temp.deduct.call]
8372 If they yield more than one possible deduced A, the type
8373 deduction fails.
8375 applies. */
8376 if (r && rval && !same_type_p (r, rval))
8377 return error_mark_node;
8378 else if (r)
8379 rval = r;
8382 binfos = BINFO_BASETYPES (arg_binfo);
8383 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
8385 /* Process base types. */
8386 for (i = 0; i < n_baselinks; i++)
8388 tree base_binfo = TREE_VEC_ELT (binfos, i);
8389 int this_virtual;
8391 /* Skip this base, if we've already seen it. */
8392 if (BINFO_MARKED (base_binfo))
8393 continue;
8395 this_virtual =
8396 (flags & GTB_VIA_VIRTUAL) || TREE_VIA_VIRTUAL (base_binfo);
8398 /* When searching for a non-virtual, we cannot mark virtually
8399 found binfos. */
8400 if (! this_virtual)
8401 SET_BINFO_MARKED (base_binfo);
8403 rval = get_template_base_recursive (tparms, targs,
8404 parm,
8405 base_binfo,
8406 rval,
8407 GTB_VIA_VIRTUAL * this_virtual);
8409 /* If we discovered more than one matching base class, we can
8410 stop now. */
8411 if (rval == error_mark_node)
8412 return error_mark_node;
8415 return rval;
8418 /* Given a template type PARM and a class type ARG, find the unique
8419 base type in ARG that is an instance of PARM. We do not examine
8420 ARG itself; only its base-classes. If there is no appropriate base
8421 class, return NULL_TREE. If there is more than one, return
8422 error_mark_node. PARM may be the type of a partial specialization,
8423 as well as a plain template type. Used by unify. */
8425 static tree
8426 get_template_base (tparms, targs, parm, arg)
8427 tree tparms;
8428 tree targs;
8429 tree parm;
8430 tree arg;
8432 tree rval;
8433 tree arg_binfo;
8435 my_friendly_assert (IS_AGGR_TYPE_CODE (TREE_CODE (arg)), 92);
8437 arg_binfo = TYPE_BINFO (complete_type (arg));
8438 rval = get_template_base_recursive (tparms, targs,
8439 parm, arg_binfo,
8440 NULL_TREE,
8441 GTB_IGNORE_TYPE);
8443 /* Since get_template_base_recursive marks the bases classes, we
8444 must unmark them here. */
8445 dfs_walk (arg_binfo, dfs_unmark, markedp, 0);
8447 return rval;
8450 /* Returns the level of DECL, which declares a template parameter. */
8452 static int
8453 template_decl_level (decl)
8454 tree decl;
8456 switch (TREE_CODE (decl))
8458 case TYPE_DECL:
8459 case TEMPLATE_DECL:
8460 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
8462 case PARM_DECL:
8463 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
8465 default:
8466 my_friendly_abort (0);
8467 return 0;
8471 /* Decide whether ARG can be unified with PARM, considering only the
8472 cv-qualifiers of each type, given STRICT as documented for unify.
8473 Returns non-zero iff the unification is OK on that basis.*/
8475 static int
8476 check_cv_quals_for_unify (strict, arg, parm)
8477 int strict;
8478 tree arg;
8479 tree parm;
8481 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
8482 && !at_least_as_qualified_p (arg, parm))
8483 return 0;
8485 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
8486 && !at_least_as_qualified_p (parm, arg))
8487 return 0;
8489 return 1;
8492 /* Takes parameters as for type_unification. Returns 0 if the
8493 type deduction succeeds, 1 otherwise. The parameter STRICT is a
8494 bitwise or of the following flags:
8496 UNIFY_ALLOW_NONE:
8497 Require an exact match between PARM and ARG.
8498 UNIFY_ALLOW_MORE_CV_QUAL:
8499 Allow the deduced ARG to be more cv-qualified (by qualification
8500 conversion) than ARG.
8501 UNIFY_ALLOW_LESS_CV_QUAL:
8502 Allow the deduced ARG to be less cv-qualified than ARG.
8503 UNIFY_ALLOW_DERIVED:
8504 Allow the deduced ARG to be a template base class of ARG,
8505 or a pointer to a template base class of the type pointed to by
8506 ARG.
8507 UNIFY_ALLOW_INTEGER:
8508 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
8509 case for more information.
8510 UNIFY_ALLOW_OUTER_LEVEL:
8511 This is the outermost level of a deduction. Used to determine validity
8512 of qualification conversions. A valid qualification conversion must
8513 have const qualified pointers leading up to the inner type which
8514 requires additional CV quals, except at the outer level, where const
8515 is not required [conv.qual]. It would be normal to set this flag in
8516 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
8517 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
8518 This is the outermost level of a deduction, and PARM can be more CV
8519 qualified at this point.
8520 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
8521 This is the outermost level of a deduction, and PARM can be less CV
8522 qualified at this point. */
8524 static int
8525 unify (tparms, targs, parm, arg, strict)
8526 tree tparms, targs, parm, arg;
8527 int strict;
8529 int idx;
8530 tree targ;
8531 tree tparm;
8532 int strict_in = strict;
8534 /* I don't think this will do the right thing with respect to types.
8535 But the only case I've seen it in so far has been array bounds, where
8536 signedness is the only information lost, and I think that will be
8537 okay. */
8538 while (TREE_CODE (parm) == NOP_EXPR)
8539 parm = TREE_OPERAND (parm, 0);
8541 if (arg == error_mark_node)
8542 return 1;
8543 if (arg == unknown_type_node)
8544 /* We can't deduce anything from this, but we might get all the
8545 template args from other function args. */
8546 return 0;
8548 /* If PARM uses template parameters, then we can't bail out here,
8549 even if ARG == PARM, since we won't record unifications for the
8550 template parameters. We might need them if we're trying to
8551 figure out which of two things is more specialized. */
8552 if (arg == parm && !uses_template_parms (parm))
8553 return 0;
8555 /* Immediately reject some pairs that won't unify because of
8556 cv-qualification mismatches. */
8557 if (TREE_CODE (arg) == TREE_CODE (parm)
8558 && TYPE_P (arg)
8559 /* We check the cv-qualifiers when unifying with template type
8560 parameters below. We want to allow ARG `const T' to unify with
8561 PARM `T' for example, when computing which of two templates
8562 is more specialized, for example. */
8563 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
8564 && !check_cv_quals_for_unify (strict_in, arg, parm))
8565 return 1;
8567 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
8568 && TYPE_P (arg) && !CP_TYPE_CONST_P (arg))
8569 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
8570 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
8571 strict &= ~UNIFY_ALLOW_DERIVED;
8572 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
8573 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
8575 switch (TREE_CODE (parm))
8577 case TYPENAME_TYPE:
8578 /* In a type which contains a nested-name-specifier, template
8579 argument values cannot be deduced for template parameters used
8580 within the nested-name-specifier. */
8581 return 0;
8583 case TEMPLATE_TYPE_PARM:
8584 case TEMPLATE_TEMPLATE_PARM:
8585 case BOUND_TEMPLATE_TEMPLATE_PARM:
8586 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
8588 if (TEMPLATE_TYPE_LEVEL (parm)
8589 != template_decl_level (tparm))
8590 /* The PARM is not one we're trying to unify. Just check
8591 to see if it matches ARG. */
8592 return (TREE_CODE (arg) == TREE_CODE (parm)
8593 && same_type_p (parm, arg)) ? 0 : 1;
8594 idx = TEMPLATE_TYPE_IDX (parm);
8595 targ = TREE_VEC_ELT (targs, idx);
8596 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
8598 /* Check for mixed types and values. */
8599 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
8600 && TREE_CODE (tparm) != TYPE_DECL)
8601 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
8602 && TREE_CODE (tparm) != TEMPLATE_DECL))
8603 return 1;
8605 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
8607 /* ARG must be constructed from a template class or a template
8608 template parameter. */
8609 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
8610 && (TREE_CODE (arg) != RECORD_TYPE || !CLASSTYPE_TEMPLATE_INFO (arg)))
8611 return 1;
8614 tree parmtmpl = TYPE_TI_TEMPLATE (parm);
8615 tree parmvec = TYPE_TI_ARGS (parm);
8616 tree argvec = TYPE_TI_ARGS (arg);
8617 tree argtmplvec
8618 = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_TI_TEMPLATE (arg));
8619 int i;
8621 /* The parameter and argument roles have to be switched here
8622 in order to handle default arguments properly. For example,
8623 template<template <class> class TT> void f(TT<int>)
8624 should be able to accept vector<int> which comes from
8625 template <class T, class Allocator = allocator>
8626 class vector. */
8628 if (coerce_template_parms (argtmplvec, parmvec, parmtmpl, 0, 1)
8629 == error_mark_node)
8630 return 1;
8632 /* Deduce arguments T, i from TT<T> or TT<i>.
8633 We check each element of PARMVEC and ARGVEC individually
8634 rather than the whole TREE_VEC since they can have
8635 different number of elements. */
8637 for (i = 0; i < TREE_VEC_LENGTH (parmvec); ++i)
8639 tree t = TREE_VEC_ELT (parmvec, i);
8641 if (unify (tparms, targs, t,
8642 TREE_VEC_ELT (argvec, i),
8643 UNIFY_ALLOW_NONE))
8644 return 1;
8647 arg = TYPE_TI_TEMPLATE (arg);
8649 /* Fall through to deduce template name. */
8652 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
8653 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
8655 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
8657 /* Simple cases: Value already set, does match or doesn't. */
8658 if (targ != NULL_TREE && template_args_equal (targ, arg))
8659 return 0;
8660 else if (targ)
8661 return 1;
8663 else
8665 /* If PARM is `const T' and ARG is only `int', we don't have
8666 a match unless we are allowing additional qualification.
8667 If ARG is `const int' and PARM is just `T' that's OK;
8668 that binds `const int' to `T'. */
8669 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
8670 arg, parm))
8671 return 1;
8673 /* Consider the case where ARG is `const volatile int' and
8674 PARM is `const T'. Then, T should be `volatile int'. */
8675 arg =
8676 cp_build_qualified_type_real (arg,
8677 CP_TYPE_QUALS (arg)
8678 & ~CP_TYPE_QUALS (parm),
8679 /*complain=*/0);
8680 if (arg == error_mark_node)
8681 return 1;
8683 /* Simple cases: Value already set, does match or doesn't. */
8684 if (targ != NULL_TREE && same_type_p (targ, arg))
8685 return 0;
8686 else if (targ)
8687 return 1;
8690 /* Make sure that ARG is not a variable-sized array. (Note that
8691 were talking about variable-sized arrays (like `int[n]'),
8692 rather than arrays of unknown size (like `int[]').) We'll
8693 get very confused by such a type since the bound of the array
8694 will not be computable in an instantiation. Besides, such
8695 types are not allowed in ISO C++, so we can do as we please
8696 here. */
8697 if (TREE_CODE (arg) == ARRAY_TYPE
8698 && !uses_template_parms (arg)
8699 && TYPE_DOMAIN (arg)
8700 && (TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (arg)))
8701 != INTEGER_CST))
8702 return 1;
8704 TREE_VEC_ELT (targs, idx) = arg;
8705 return 0;
8707 case TEMPLATE_PARM_INDEX:
8708 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
8710 if (TEMPLATE_PARM_LEVEL (parm)
8711 != template_decl_level (tparm))
8712 /* The PARM is not one we're trying to unify. Just check
8713 to see if it matches ARG. */
8714 return (TREE_CODE (arg) == TREE_CODE (parm)
8715 && cp_tree_equal (parm, arg) > 0) ? 0 : 1;
8717 idx = TEMPLATE_PARM_IDX (parm);
8718 targ = TREE_VEC_ELT (targs, idx);
8720 if (targ)
8722 int i = (cp_tree_equal (targ, arg) > 0);
8723 if (i == 1)
8724 return 0;
8725 else if (i == 0)
8726 return 1;
8727 else
8728 my_friendly_abort (42);
8731 /* [temp.deduct.type] If, in the declaration of a function template
8732 with a non-type template-parameter, the non-type
8733 template-parameter is used in an expression in the function
8734 parameter-list and, if the corresponding template-argument is
8735 deduced, the template-argument type shall match the type of the
8736 template-parameter exactly, except that a template-argument
8737 deduced from an array bound may be of any integral type.
8738 The non-type parameter might use already deduced type parameters. */
8739 if (same_type_p (TREE_TYPE (arg),
8740 tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE)))
8741 /* OK */;
8742 else if ((strict & UNIFY_ALLOW_INTEGER)
8743 && (TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
8744 || TREE_CODE (TREE_TYPE (parm)) == BOOLEAN_TYPE))
8745 /* OK */;
8746 else
8747 return 1;
8749 TREE_VEC_ELT (targs, idx) = arg;
8750 return 0;
8752 case POINTER_TYPE:
8754 if (TREE_CODE (arg) != POINTER_TYPE)
8755 return 1;
8757 /* [temp.deduct.call]
8759 A can be another pointer or pointer to member type that can
8760 be converted to the deduced A via a qualification
8761 conversion (_conv.qual_).
8763 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
8764 This will allow for additional cv-qualification of the
8765 pointed-to types if appropriate. */
8767 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
8768 /* The derived-to-base conversion only persists through one
8769 level of pointers. */
8770 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
8772 return unify (tparms, targs, TREE_TYPE (parm),
8773 TREE_TYPE (arg), strict);
8776 case REFERENCE_TYPE:
8777 if (TREE_CODE (arg) != REFERENCE_TYPE)
8778 return 1;
8779 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
8780 strict & UNIFY_ALLOW_MORE_CV_QUAL);
8782 case ARRAY_TYPE:
8783 if (TREE_CODE (arg) != ARRAY_TYPE)
8784 return 1;
8785 if ((TYPE_DOMAIN (parm) == NULL_TREE)
8786 != (TYPE_DOMAIN (arg) == NULL_TREE))
8787 return 1;
8788 if (TYPE_DOMAIN (parm) != NULL_TREE
8789 && unify (tparms, targs, TYPE_DOMAIN (parm),
8790 TYPE_DOMAIN (arg), UNIFY_ALLOW_NONE) != 0)
8791 return 1;
8792 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
8793 UNIFY_ALLOW_NONE);
8795 case REAL_TYPE:
8796 case COMPLEX_TYPE:
8797 case VECTOR_TYPE:
8798 case INTEGER_TYPE:
8799 case BOOLEAN_TYPE:
8800 case VOID_TYPE:
8801 if (TREE_CODE (arg) != TREE_CODE (parm))
8802 return 1;
8804 if (TREE_CODE (parm) == INTEGER_TYPE
8805 && TREE_CODE (TYPE_MAX_VALUE (parm)) != INTEGER_CST)
8807 if (TYPE_MIN_VALUE (parm) && TYPE_MIN_VALUE (arg)
8808 && unify (tparms, targs, TYPE_MIN_VALUE (parm),
8809 TYPE_MIN_VALUE (arg), UNIFY_ALLOW_INTEGER))
8810 return 1;
8811 if (TYPE_MAX_VALUE (parm) && TYPE_MAX_VALUE (arg)
8812 && unify (tparms, targs, TYPE_MAX_VALUE (parm),
8813 TYPE_MAX_VALUE (arg), UNIFY_ALLOW_INTEGER))
8814 return 1;
8816 /* We have already checked cv-qualification at the top of the
8817 function. */
8818 else if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
8819 return 1;
8821 /* As far as unification is concerned, this wins. Later checks
8822 will invalidate it if necessary. */
8823 return 0;
8825 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
8826 /* Type INTEGER_CST can come from ordinary constant template args. */
8827 case INTEGER_CST:
8828 while (TREE_CODE (arg) == NOP_EXPR)
8829 arg = TREE_OPERAND (arg, 0);
8831 if (TREE_CODE (arg) != INTEGER_CST)
8832 return 1;
8833 return !tree_int_cst_equal (parm, arg);
8835 case TREE_VEC:
8837 int i;
8838 if (TREE_CODE (arg) != TREE_VEC)
8839 return 1;
8840 if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
8841 return 1;
8842 for (i = 0; i < TREE_VEC_LENGTH (parm); ++i)
8843 if (unify (tparms, targs,
8844 TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
8845 UNIFY_ALLOW_NONE))
8846 return 1;
8847 return 0;
8850 case RECORD_TYPE:
8851 case UNION_TYPE:
8852 if (TREE_CODE (arg) != TREE_CODE (parm))
8853 return 1;
8855 if (TYPE_PTRMEMFUNC_P (parm))
8857 if (!TYPE_PTRMEMFUNC_P (arg))
8858 return 1;
8860 return unify (tparms, targs,
8861 TYPE_PTRMEMFUNC_FN_TYPE (parm),
8862 TYPE_PTRMEMFUNC_FN_TYPE (arg),
8863 strict);
8866 if (CLASSTYPE_TEMPLATE_INFO (parm))
8868 tree t = NULL_TREE;
8870 if (strict_in & UNIFY_ALLOW_DERIVED)
8872 /* First, we try to unify the PARM and ARG directly. */
8873 t = try_class_unification (tparms, targs,
8874 parm, arg);
8876 if (!t)
8878 /* Fallback to the special case allowed in
8879 [temp.deduct.call]:
8881 If P is a class, and P has the form
8882 template-id, then A can be a derived class of
8883 the deduced A. Likewise, if P is a pointer to
8884 a class of the form template-id, A can be a
8885 pointer to a derived class pointed to by the
8886 deduced A. */
8887 t = get_template_base (tparms, targs,
8888 parm, arg);
8890 if (! t || t == error_mark_node)
8891 return 1;
8894 else if (CLASSTYPE_TEMPLATE_INFO (arg)
8895 && (CLASSTYPE_TI_TEMPLATE (parm)
8896 == CLASSTYPE_TI_TEMPLATE (arg)))
8897 /* Perhaps PARM is something like S<U> and ARG is S<int>.
8898 Then, we should unify `int' and `U'. */
8899 t = arg;
8900 else
8901 /* There's no chance of unification succeeding. */
8902 return 1;
8904 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
8905 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE);
8907 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
8908 return 1;
8909 return 0;
8911 case METHOD_TYPE:
8912 case FUNCTION_TYPE:
8913 if (TREE_CODE (arg) != TREE_CODE (parm))
8914 return 1;
8916 if (unify (tparms, targs, TREE_TYPE (parm),
8917 TREE_TYPE (arg), UNIFY_ALLOW_NONE))
8918 return 1;
8919 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
8920 TYPE_ARG_TYPES (arg), 1,
8921 DEDUCE_EXACT, 0, -1);
8923 case OFFSET_TYPE:
8924 if (TREE_CODE (arg) != OFFSET_TYPE)
8925 return 1;
8926 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
8927 TYPE_OFFSET_BASETYPE (arg), UNIFY_ALLOW_NONE))
8928 return 1;
8929 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
8930 strict);
8932 case CONST_DECL:
8933 if (arg != decl_constant_value (parm))
8934 return 1;
8935 return 0;
8937 case TEMPLATE_DECL:
8938 /* Matched cases are handled by the ARG == PARM test above. */
8939 return 1;
8941 case MINUS_EXPR:
8942 if (TREE_CODE (TREE_OPERAND (parm, 1)) == INTEGER_CST)
8944 /* We handle this case specially, since it comes up with
8945 arrays. In particular, something like:
8947 template <int N> void f(int (&x)[N]);
8949 Here, we are trying to unify the range type, which
8950 looks like [0 ... (N - 1)]. */
8951 tree t, t1, t2;
8952 t1 = TREE_OPERAND (parm, 0);
8953 t2 = TREE_OPERAND (parm, 1);
8955 t = fold (build (PLUS_EXPR, integer_type_node, arg, t2));
8957 return unify (tparms, targs, t1, t, strict);
8959 /* else fall through */
8961 default:
8962 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (parm))))
8965 /* We're looking at an expression. This can happen with
8966 something like:
8968 template <int I>
8969 void foo(S<I>, S<I + 2>);
8971 This is a "nondeduced context":
8973 [deduct.type]
8975 The nondeduced contexts are:
8977 --A type that is a template-id in which one or more of
8978 the template-arguments is an expression that references
8979 a template-parameter.
8981 In these cases, we assume deduction succeeded, but don't
8982 actually infer any unifications. */
8984 if (!uses_template_parms (parm)
8985 && !template_args_equal (parm, arg))
8986 return 1;
8987 else
8988 return 0;
8990 else
8991 sorry ("use of `%s' in template type unification",
8992 tree_code_name [(int) TREE_CODE (parm)]);
8994 return 1;
8998 /* Called if RESULT is explicitly instantiated, or is a member of an
8999 explicitly instantiated class, or if using -frepo and the
9000 instantiation of RESULT has been assigned to this file. */
9002 void
9003 mark_decl_instantiated (result, extern_p)
9004 tree result;
9005 int extern_p;
9007 if (TREE_CODE (result) != FUNCTION_DECL)
9008 /* The TREE_PUBLIC flag for function declarations will have been
9009 set correctly by tsubst. */
9010 TREE_PUBLIC (result) = 1;
9012 /* We used to set this unconditionally; we moved that to
9013 do_decl_instantiation so it wouldn't get set on members of
9014 explicit class template instantiations. But we still need to set
9015 it here for the 'extern template' case in order to suppress
9016 implicit instantiations. */
9017 if (extern_p)
9018 SET_DECL_EXPLICIT_INSTANTIATION (result);
9020 if (! extern_p)
9022 DECL_INTERFACE_KNOWN (result) = 1;
9023 DECL_NOT_REALLY_EXTERN (result) = 1;
9025 /* Always make artificials weak. */
9026 if (DECL_ARTIFICIAL (result) && flag_weak)
9027 comdat_linkage (result);
9028 /* For WIN32 we also want to put explicit instantiations in
9029 linkonce sections. */
9030 else if (TREE_PUBLIC (result))
9031 maybe_make_one_only (result);
9033 else if (TREE_CODE (result) == FUNCTION_DECL)
9034 defer_fn (result);
9037 /* Given two function templates PAT1 and PAT2, return:
9039 DEDUCE should be DEDUCE_EXACT or DEDUCE_ORDER.
9041 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
9042 -1 if PAT2 is more specialized than PAT1.
9043 0 if neither is more specialized.
9045 LEN is passed through to fn_type_unification. */
9048 more_specialized (pat1, pat2, deduce, len)
9049 tree pat1, pat2;
9050 int deduce;
9051 int len;
9053 tree targs;
9054 int winner = 0;
9056 targs = get_bindings_real (pat1, DECL_TEMPLATE_RESULT (pat2),
9057 NULL_TREE, 0, deduce, len);
9058 if (targs)
9059 --winner;
9061 targs = get_bindings_real (pat2, DECL_TEMPLATE_RESULT (pat1),
9062 NULL_TREE, 0, deduce, len);
9063 if (targs)
9064 ++winner;
9066 return winner;
9069 /* Given two class template specialization list nodes PAT1 and PAT2, return:
9071 1 if PAT1 is more specialized than PAT2 as described in [temp.class.order].
9072 -1 if PAT2 is more specialized than PAT1.
9073 0 if neither is more specialized. */
9076 more_specialized_class (pat1, pat2)
9077 tree pat1, pat2;
9079 tree targs;
9080 int winner = 0;
9082 targs = get_class_bindings (TREE_VALUE (pat1), TREE_PURPOSE (pat1),
9083 TREE_PURPOSE (pat2));
9084 if (targs)
9085 --winner;
9087 targs = get_class_bindings (TREE_VALUE (pat2), TREE_PURPOSE (pat2),
9088 TREE_PURPOSE (pat1));
9089 if (targs)
9090 ++winner;
9092 return winner;
9095 /* Return the template arguments that will produce the function signature
9096 DECL from the function template FN, with the explicit template
9097 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is 1, the return type must
9098 also match. Return NULL_TREE if no satisfactory arguments could be
9099 found. DEDUCE and LEN are passed through to fn_type_unification. */
9101 static tree
9102 get_bindings_real (fn, decl, explicit_args, check_rettype, deduce, len)
9103 tree fn, decl, explicit_args;
9104 int check_rettype, deduce, len;
9106 int ntparms = DECL_NTPARMS (fn);
9107 tree targs = make_tree_vec (ntparms);
9108 tree decl_type;
9109 tree decl_arg_types;
9110 int i;
9112 /* Substitute the explicit template arguments into the type of DECL.
9113 The call to fn_type_unification will handle substitution into the
9114 FN. */
9115 decl_type = TREE_TYPE (decl);
9116 if (explicit_args && uses_template_parms (decl_type))
9118 tree tmpl;
9119 tree converted_args;
9121 if (DECL_TEMPLATE_INFO (decl))
9122 tmpl = DECL_TI_TEMPLATE (decl);
9123 else
9124 /* We can get here for some illegal specializations. */
9125 return NULL_TREE;
9127 converted_args
9128 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
9129 explicit_args, NULL_TREE,
9130 /*complain=*/0,
9131 /*require_all_arguments=*/0));
9132 if (converted_args == error_mark_node)
9133 return NULL_TREE;
9135 decl_type = tsubst (decl_type, converted_args, /*complain=*/0,
9136 NULL_TREE);
9137 if (decl_type == error_mark_node)
9138 return NULL_TREE;
9141 decl_arg_types = TYPE_ARG_TYPES (decl_type);
9142 /* Never do unification on the 'this' parameter. */
9143 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
9144 decl_arg_types = TREE_CHAIN (decl_arg_types);
9146 i = fn_type_unification (fn, explicit_args, targs,
9147 decl_arg_types,
9148 (check_rettype || DECL_CONV_FN_P (fn)
9149 ? TREE_TYPE (decl_type) : NULL_TREE),
9150 deduce, len);
9152 if (i != 0)
9153 return NULL_TREE;
9155 return targs;
9158 /* For most uses, we want to check the return type. */
9160 tree
9161 get_bindings (fn, decl, explicit_args)
9162 tree fn, decl, explicit_args;
9164 return get_bindings_real (fn, decl, explicit_args, 1, DEDUCE_EXACT, -1);
9167 /* But for resolve_overloaded_unification, we only care about the parameter
9168 types. */
9170 static tree
9171 get_bindings_overload (fn, decl, explicit_args)
9172 tree fn, decl, explicit_args;
9174 return get_bindings_real (fn, decl, explicit_args, 0, DEDUCE_EXACT, -1);
9177 /* Return the innermost template arguments that, when applied to a
9178 template specialization whose innermost template parameters are
9179 TPARMS, and whose specialization arguments are ARGS, yield the
9180 ARGS.
9182 For example, suppose we have:
9184 template <class T, class U> struct S {};
9185 template <class T> struct S<T*, int> {};
9187 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
9188 {T}, the PARMS will be {T*, int} and the ARGS will be {double*,
9189 int}. The resulting vector will be {double}, indicating that `T'
9190 is bound to `double'. */
9192 static tree
9193 get_class_bindings (tparms, parms, args)
9194 tree tparms, parms, args;
9196 int i, ntparms = TREE_VEC_LENGTH (tparms);
9197 tree vec = make_tree_vec (ntparms);
9199 if (unify (tparms, vec, parms, INNERMOST_TEMPLATE_ARGS (args),
9200 UNIFY_ALLOW_NONE))
9201 return NULL_TREE;
9203 for (i = 0; i < ntparms; ++i)
9204 if (! TREE_VEC_ELT (vec, i))
9205 return NULL_TREE;
9207 if (verify_class_unification (vec, parms, args))
9208 return NULL_TREE;
9210 return vec;
9213 /* In INSTANTIATIONS is a list of <INSTANTIATION, TEMPLATE> pairs.
9214 Pick the most specialized template, and return the corresponding
9215 instantiation, or if there is no corresponding instantiation, the
9216 template itself. If there is no most specialized template,
9217 error_mark_node is returned. If there are no templates at all,
9218 NULL_TREE is returned. */
9220 tree
9221 most_specialized_instantiation (instantiations)
9222 tree instantiations;
9224 tree fn, champ;
9225 int fate;
9227 if (!instantiations)
9228 return NULL_TREE;
9230 champ = instantiations;
9231 for (fn = TREE_CHAIN (instantiations); fn; fn = TREE_CHAIN (fn))
9233 fate = more_specialized (TREE_VALUE (champ), TREE_VALUE (fn),
9234 DEDUCE_EXACT, -1);
9235 if (fate == 1)
9237 else
9239 if (fate == 0)
9241 fn = TREE_CHAIN (fn);
9242 if (! fn)
9243 return error_mark_node;
9245 champ = fn;
9249 for (fn = instantiations; fn && fn != champ; fn = TREE_CHAIN (fn))
9251 fate = more_specialized (TREE_VALUE (champ), TREE_VALUE (fn),
9252 DEDUCE_EXACT, -1);
9253 if (fate != 1)
9254 return error_mark_node;
9257 return TREE_PURPOSE (champ) ? TREE_PURPOSE (champ) : TREE_VALUE (champ);
9260 /* Return the most specialized of the list of templates in FNS that can
9261 produce an instantiation matching DECL, given the explicit template
9262 arguments EXPLICIT_ARGS. */
9264 static tree
9265 most_specialized (fns, decl, explicit_args)
9266 tree fns, decl, explicit_args;
9268 tree candidates = NULL_TREE;
9269 tree fn, args;
9271 for (fn = fns; fn; fn = TREE_CHAIN (fn))
9273 tree candidate = TREE_VALUE (fn);
9275 args = get_bindings (candidate, decl, explicit_args);
9276 if (args)
9277 candidates = tree_cons (NULL_TREE, candidate, candidates);
9280 return most_specialized_instantiation (candidates);
9283 /* If DECL is a specialization of some template, return the most
9284 general such template. Otherwise, returns NULL_TREE.
9286 For example, given:
9288 template <class T> struct S { template <class U> void f(U); };
9290 if TMPL is `template <class U> void S<int>::f(U)' this will return
9291 the full template. This function will not trace past partial
9292 specializations, however. For example, given in addition:
9294 template <class T> struct S<T*> { template <class U> void f(U); };
9296 if TMPL is `template <class U> void S<int*>::f(U)' this will return
9297 `template <class T> template <class U> S<T*>::f(U)'. */
9299 tree
9300 most_general_template (decl)
9301 tree decl;
9303 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
9304 an immediate specialization. */
9305 if (TREE_CODE (decl) == FUNCTION_DECL)
9307 if (DECL_TEMPLATE_INFO (decl)) {
9308 decl = DECL_TI_TEMPLATE (decl);
9310 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
9311 template friend. */
9312 if (TREE_CODE (decl) != TEMPLATE_DECL)
9313 return NULL_TREE;
9314 } else
9315 return NULL_TREE;
9318 /* Look for more and more general templates. */
9319 while (DECL_TEMPLATE_INFO (decl))
9321 /* The DECL_TI_TEMPLATE can be a LOOKUP_EXPR or IDENTIFIER_NODE
9322 in some cases. (See cp-tree.h for details.) */
9323 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9324 break;
9326 /* Stop if we run into an explicitly specialized class template. */
9327 if (!DECL_NAMESPACE_SCOPE_P (decl)
9328 && DECL_CONTEXT (decl)
9329 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
9330 break;
9332 decl = DECL_TI_TEMPLATE (decl);
9335 return decl;
9338 /* Return the most specialized of the class template specializations
9339 of TMPL which can produce an instantiation matching ARGS, or
9340 error_mark_node if the choice is ambiguous. */
9342 static tree
9343 most_specialized_class (tmpl, args)
9344 tree tmpl;
9345 tree args;
9347 tree list = NULL_TREE;
9348 tree t;
9349 tree champ;
9350 int fate;
9352 tmpl = most_general_template (tmpl);
9353 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
9355 tree spec_args
9356 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args);
9357 if (spec_args)
9359 list = tree_cons (TREE_PURPOSE (t), TREE_VALUE (t), list);
9360 TREE_TYPE (list) = TREE_TYPE (t);
9364 if (! list)
9365 return NULL_TREE;
9367 t = list;
9368 champ = t;
9369 t = TREE_CHAIN (t);
9370 for (; t; t = TREE_CHAIN (t))
9372 fate = more_specialized_class (champ, t);
9373 if (fate == 1)
9375 else
9377 if (fate == 0)
9379 t = TREE_CHAIN (t);
9380 if (! t)
9381 return error_mark_node;
9383 champ = t;
9387 for (t = list; t && t != champ; t = TREE_CHAIN (t))
9389 fate = more_specialized_class (champ, t);
9390 if (fate != 1)
9391 return error_mark_node;
9394 return champ;
9397 /* called from the parser. */
9399 void
9400 do_decl_instantiation (declspecs, declarator, storage)
9401 tree declspecs, declarator, storage;
9403 tree decl = grokdeclarator (declarator, declspecs, NORMAL, 0, NULL_TREE);
9404 tree result = NULL_TREE;
9405 int extern_p = 0;
9407 if (!decl)
9408 /* An error occurred, for which grokdeclarator has already issued
9409 an appropriate message. */
9410 return;
9411 else if (! DECL_LANG_SPECIFIC (decl))
9413 cp_error ("explicit instantiation of non-template `%#D'", decl);
9414 return;
9416 else if (TREE_CODE (decl) == VAR_DECL)
9418 /* There is an asymmetry here in the way VAR_DECLs and
9419 FUNCTION_DECLs are handled by grokdeclarator. In the case of
9420 the latter, the DECL we get back will be marked as a
9421 template instantiation, and the appropriate
9422 DECL_TEMPLATE_INFO will be set up. This does not happen for
9423 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
9424 should handle VAR_DECLs as it currently handles
9425 FUNCTION_DECLs. */
9426 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, 0);
9427 if (result && TREE_CODE (result) != VAR_DECL)
9429 cp_error ("no matching template for `%D' found", result);
9430 return;
9433 else if (TREE_CODE (decl) != FUNCTION_DECL)
9435 cp_error ("explicit instantiation of `%#D'", decl);
9436 return;
9438 else
9439 result = decl;
9441 /* Check for various error cases. Note that if the explicit
9442 instantiation is legal the RESULT will currently be marked as an
9443 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
9444 until we get here. */
9446 if (DECL_TEMPLATE_SPECIALIZATION (result))
9448 /* [temp.spec]
9450 No program shall both explicitly instantiate and explicitly
9451 specialize a template. */
9452 cp_pedwarn ("explicit instantiation of `%#D' after", result);
9453 cp_pedwarn_at ("explicit specialization here", result);
9454 return;
9456 else if (DECL_EXPLICIT_INSTANTIATION (result))
9458 /* [temp.spec]
9460 No program shall explicitly instantiate any template more
9461 than once.
9463 We check DECL_INTERFACE_KNOWN so as not to complain when the first
9464 instantiation was `extern' and the second is not, and EXTERN_P for
9465 the opposite case. If -frepo, chances are we already got marked
9466 as an explicit instantiation because of the repo file. */
9467 if (DECL_INTERFACE_KNOWN (result) && !extern_p && !flag_use_repository)
9468 cp_pedwarn ("duplicate explicit instantiation of `%#D'", result);
9470 /* If we've already instantiated the template, just return now. */
9471 if (DECL_INTERFACE_KNOWN (result))
9472 return;
9474 else if (!DECL_IMPLICIT_INSTANTIATION (result))
9476 cp_error ("no matching template for `%D' found", result);
9477 return;
9479 else if (!DECL_TEMPLATE_INFO (result))
9481 cp_pedwarn ("explicit instantiation of non-template `%#D'", result);
9482 return;
9485 if (flag_external_templates)
9486 return;
9488 if (storage == NULL_TREE)
9490 else if (storage == ridpointers[(int) RID_EXTERN])
9492 if (pedantic)
9493 cp_pedwarn ("ISO C++ forbids the use of `extern' on explicit instantiations");
9494 extern_p = 1;
9496 else
9497 cp_error ("storage class `%D' applied to template instantiation",
9498 storage);
9500 SET_DECL_EXPLICIT_INSTANTIATION (result);
9501 mark_decl_instantiated (result, extern_p);
9502 repo_template_instantiated (result, extern_p);
9503 if (! extern_p)
9504 instantiate_decl (result, /*defer_ok=*/1);
9507 void
9508 mark_class_instantiated (t, extern_p)
9509 tree t;
9510 int extern_p;
9512 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
9513 SET_CLASSTYPE_INTERFACE_KNOWN (t);
9514 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
9515 CLASSTYPE_VTABLE_NEEDS_WRITING (t) = ! extern_p;
9516 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
9517 if (! extern_p)
9519 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
9520 rest_of_type_compilation (t, 1);
9524 /* Perform an explicit instantiation of template class T. STORAGE, if
9525 non-null, is the RID for extern, inline or static. COMPLAIN is
9526 non-zero if this is called from the parser, zero if called recursively,
9527 since the standard is unclear (as detailed below). */
9529 void
9530 do_type_instantiation (t, storage, complain)
9531 tree t, storage;
9532 int complain;
9534 int extern_p = 0;
9535 int nomem_p = 0;
9536 int static_p = 0;
9538 if (TREE_CODE (t) == TYPE_DECL)
9539 t = TREE_TYPE (t);
9541 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
9543 cp_error ("explicit instantiation of non-template type `%T'", t);
9544 return;
9547 complete_type (t);
9549 /* With -fexternal-templates, explicit instantiations are treated the same
9550 as implicit ones. */
9551 if (flag_external_templates)
9552 return;
9554 if (!COMPLETE_TYPE_P (t))
9556 if (complain)
9557 cp_error ("explicit instantiation of `%#T' before definition of template",
9559 return;
9562 if (storage != NULL_TREE)
9564 if (pedantic)
9565 cp_pedwarn("ISO C++ forbids the use of `%s' on explicit instantiations",
9566 IDENTIFIER_POINTER (storage));
9568 if (storage == ridpointers[(int) RID_INLINE])
9569 nomem_p = 1;
9570 else if (storage == ridpointers[(int) RID_EXTERN])
9571 extern_p = 1;
9572 else if (storage == ridpointers[(int) RID_STATIC])
9573 static_p = 1;
9574 else
9576 cp_error ("storage class `%D' applied to template instantiation",
9577 storage);
9578 extern_p = 0;
9582 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
9584 /* [temp.spec]
9586 No program shall both explicitly instantiate and explicitly
9587 specialize a template. */
9588 if (complain)
9590 cp_error ("explicit instantiation of `%#T' after", t);
9591 cp_error_at ("explicit specialization here", t);
9593 return;
9595 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
9597 /* [temp.spec]
9599 No program shall explicitly instantiate any template more
9600 than once.
9602 If CLASSTYPE_INTERFACE_ONLY, then the first explicit instantiation
9603 was `extern'. If EXTERN_P then the second is. If -frepo, chances
9604 are we already got marked as an explicit instantion because of the
9605 repo file. All these cases are OK. */
9606 if (!CLASSTYPE_INTERFACE_ONLY (t) && !extern_p && !flag_use_repository
9607 && complain)
9608 cp_pedwarn ("duplicate explicit instantiation of `%#T'", t);
9610 /* If we've already instantiated the template, just return now. */
9611 if (!CLASSTYPE_INTERFACE_ONLY (t))
9612 return;
9615 mark_class_instantiated (t, extern_p);
9616 repo_template_instantiated (t, extern_p);
9618 if (nomem_p)
9619 return;
9622 tree tmp;
9624 /* In contrast to implicit instantiation, where only the
9625 declarations, and not the definitions, of members are
9626 instantiated, we have here:
9628 [temp.explicit]
9630 The explicit instantiation of a class template specialization
9631 implies the instantiation of all of its members not
9632 previously explicitly specialized in the translation unit
9633 containing the explicit instantiation.
9635 Of course, we can't instantiate member template classes, since
9636 we don't have any arguments for them. Note that the standard
9637 is unclear on whether the instantiation of the members are
9638 *explicit* instantiations or not. We choose to be generous,
9639 and not set DECL_EXPLICIT_INSTANTIATION. Therefore, we allow
9640 the explicit instantiation of a class where some of the members
9641 have no definition in the current translation unit. */
9643 if (! static_p)
9644 for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
9645 if (TREE_CODE (tmp) == FUNCTION_DECL
9646 && DECL_TEMPLATE_INSTANTIATION (tmp))
9648 mark_decl_instantiated (tmp, extern_p);
9649 repo_template_instantiated (tmp, extern_p);
9650 if (! extern_p)
9651 instantiate_decl (tmp, /*defer_ok=*/1);
9654 for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
9655 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
9657 mark_decl_instantiated (tmp, extern_p);
9658 repo_template_instantiated (tmp, extern_p);
9659 if (! extern_p)
9660 instantiate_decl (tmp, /*defer_ok=*/1);
9663 for (tmp = CLASSTYPE_TAGS (t); tmp; tmp = TREE_CHAIN (tmp))
9664 if (IS_AGGR_TYPE (TREE_VALUE (tmp))
9665 && !uses_template_parms (CLASSTYPE_TI_ARGS (TREE_VALUE (tmp))))
9666 do_type_instantiation (TYPE_MAIN_DECL (TREE_VALUE (tmp)), storage, 0);
9670 /* Given a function DECL, which is a specialization of TMPL, modify
9671 DECL to be a re-instantiation of TMPL with the same template
9672 arguments. TMPL should be the template into which tsubst'ing
9673 should occur for DECL, not the most general template.
9675 One reason for doing this is a scenario like this:
9677 template <class T>
9678 void f(const T&, int i);
9680 void g() { f(3, 7); }
9682 template <class T>
9683 void f(const T& t, const int i) { }
9685 Note that when the template is first instantiated, with
9686 instantiate_template, the resulting DECL will have no name for the
9687 first parameter, and the wrong type for the second. So, when we go
9688 to instantiate the DECL, we regenerate it. */
9690 static void
9691 regenerate_decl_from_template (decl, tmpl)
9692 tree decl;
9693 tree tmpl;
9695 /* The most general version of TMPL. */
9696 tree gen_tmpl;
9697 /* The arguments used to instantiate DECL, from the most general
9698 template. */
9699 tree args;
9700 tree code_pattern;
9701 tree new_decl;
9702 int unregistered;
9704 args = DECL_TI_ARGS (decl);
9705 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
9707 /* Unregister the specialization so that when we tsubst we will not
9708 just return DECL. We don't have to unregister DECL from TMPL
9709 because if would only be registered there if it were a partial
9710 instantiation of a specialization, which it isn't: it's a full
9711 instantiation. */
9712 gen_tmpl = most_general_template (tmpl);
9713 unregistered = unregister_specialization (decl, gen_tmpl);
9715 /* If the DECL was not unregistered then something peculiar is
9716 happening: we created a specialization but did not call
9717 register_specialization for it. */
9718 my_friendly_assert (unregistered, 0);
9720 if (TREE_CODE (decl) == VAR_DECL)
9721 /* Make sure that we can see identifiers, and compute access
9722 correctly, for the class members used in the declaration of
9723 this static variable. */
9724 pushclass (DECL_CONTEXT (decl), 2);
9726 /* Do the substitution to get the new declaration. */
9727 new_decl = tsubst (code_pattern, args, /*complain=*/1, NULL_TREE);
9729 if (TREE_CODE (decl) == VAR_DECL)
9731 /* Set up DECL_INITIAL, since tsubst doesn't. */
9732 DECL_INITIAL (new_decl) =
9733 tsubst_expr (DECL_INITIAL (code_pattern), args,
9734 /*complain=*/1, DECL_TI_TEMPLATE (decl));
9735 /* Pop the class context we pushed above. */
9736 popclass ();
9738 else if (TREE_CODE (decl) == FUNCTION_DECL)
9740 /* Convince duplicate_decls to use the DECL_ARGUMENTS from the
9741 new decl. */
9742 DECL_INITIAL (new_decl) = error_mark_node;
9743 /* And don't complain about a duplicate definition. */
9744 DECL_INITIAL (decl) = NULL_TREE;
9747 /* The immediate parent of the new template is still whatever it was
9748 before, even though tsubst sets DECL_TI_TEMPLATE up as the most
9749 general template. We also reset the DECL_ASSEMBLER_NAME since
9750 tsubst always calculates the name as if the function in question
9751 were really a template instance, and sometimes, with friend
9752 functions, this is not so. See tsubst_friend_function for
9753 details. */
9754 DECL_TI_TEMPLATE (new_decl) = DECL_TI_TEMPLATE (decl);
9755 DECL_ASSEMBLER_NAME (new_decl) = DECL_ASSEMBLER_NAME (decl);
9756 DECL_RTL (new_decl) = DECL_RTL (decl);
9757 DECL_USE_TEMPLATE (new_decl) = DECL_USE_TEMPLATE (decl);
9759 /* Call duplicate decls to merge the old and new declarations. */
9760 duplicate_decls (new_decl, decl);
9762 /* Now, re-register the specialization. */
9763 register_specialization (decl, gen_tmpl, args);
9766 /* Produce the definition of D, a _DECL generated from a template. If
9767 DEFER_OK is non-zero, then we don't have to actually do the
9768 instantiation now; we just have to do it sometime. */
9770 tree
9771 instantiate_decl (d, defer_ok)
9772 tree d;
9773 int defer_ok;
9775 tree tmpl = DECL_TI_TEMPLATE (d);
9776 tree args = DECL_TI_ARGS (d);
9777 tree td;
9778 tree code_pattern;
9779 tree spec;
9780 tree gen_tmpl;
9781 int pattern_defined;
9782 int line = lineno;
9783 int need_push;
9784 const char *file = input_filename;
9786 /* This function should only be used to instantiate templates for
9787 functions and static member variables. */
9788 my_friendly_assert (TREE_CODE (d) == FUNCTION_DECL
9789 || TREE_CODE (d) == VAR_DECL, 0);
9791 /* Don't instantiate cloned functions. Instead, instantiate the
9792 functions they cloned. */
9793 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
9794 d = DECL_CLONED_FUNCTION (d);
9796 if (DECL_TEMPLATE_INSTANTIATED (d))
9797 /* D has already been instantiated. It might seem reasonable to
9798 check whether or not D is an explicit instantiation, and, if so,
9799 stop here. But when an explicit instantiation is deferred
9800 until the end of the compilation, DECL_EXPLICIT_INSTANTIATION
9801 is set, even though we still need to do the instantiation. */
9802 return d;
9804 /* If we already have a specialization of this declaration, then
9805 there's no reason to instantiate it. Note that
9806 retrieve_specialization gives us both instantiations and
9807 specializations, so we must explicitly check
9808 DECL_TEMPLATE_SPECIALIZATION. */
9809 gen_tmpl = most_general_template (tmpl);
9810 spec = retrieve_specialization (gen_tmpl, args);
9811 if (spec != NULL_TREE && DECL_TEMPLATE_SPECIALIZATION (spec))
9812 return spec;
9814 /* This needs to happen before any tsubsting. */
9815 if (! push_tinst_level (d))
9816 return d;
9818 timevar_push (TV_PARSE);
9820 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
9821 for the instantiation. This is not always the most general
9822 template. Consider, for example:
9824 template <class T>
9825 struct S { template <class U> void f();
9826 template <> void f<int>(); };
9828 and an instantiation of S<double>::f<int>. We want TD to be the
9829 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
9830 td = tmpl;
9831 while (/* An instantiation cannot have a definition, so we need a
9832 more general template. */
9833 DECL_TEMPLATE_INSTANTIATION (td)
9834 /* We must also deal with friend templates. Given:
9836 template <class T> struct S {
9837 template <class U> friend void f() {};
9840 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
9841 so far as the language is concerned, but that's still
9842 where we get the pattern for the instantiation from. On
9843 other hand, if the definition comes outside the class, say:
9845 template <class T> struct S {
9846 template <class U> friend void f();
9848 template <class U> friend void f() {}
9850 we don't need to look any further. That's what the check for
9851 DECL_INITIAL is for. */
9852 || (TREE_CODE (d) == FUNCTION_DECL
9853 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (td)
9854 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (td))))
9856 /* The present template, TD, should not be a definition. If it
9857 were a definition, we should be using it! Note that we
9858 cannot restructure the loop to just keep going until we find
9859 a template with a definition, since that might go too far if
9860 a specialization was declared, but not defined. */
9861 my_friendly_assert (!(TREE_CODE (d) == VAR_DECL
9862 && !DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (td))),
9863 0);
9865 /* Fetch the more general template. */
9866 td = DECL_TI_TEMPLATE (td);
9869 code_pattern = DECL_TEMPLATE_RESULT (td);
9871 if (TREE_CODE (d) == FUNCTION_DECL)
9872 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE);
9873 else
9874 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
9876 lineno = DECL_SOURCE_LINE (d);
9877 input_filename = DECL_SOURCE_FILE (d);
9879 if (pattern_defined)
9881 repo_template_used (d);
9883 if (flag_external_templates && ! DECL_INTERFACE_KNOWN (d))
9885 if (flag_alt_external_templates)
9887 if (interface_unknown)
9888 warn_if_unknown_interface (d);
9890 else if (DECL_INTERFACE_KNOWN (code_pattern))
9892 DECL_INTERFACE_KNOWN (d) = 1;
9893 DECL_NOT_REALLY_EXTERN (d) = ! DECL_EXTERNAL (code_pattern);
9895 else
9896 warn_if_unknown_interface (code_pattern);
9899 if (at_eof)
9900 import_export_decl (d);
9903 /* We need to set up DECL_INITIAL regardless, if
9904 the variable is initialized in the class body. */
9905 if (TREE_CODE (d) == VAR_DECL && DECL_INITIALIZED_IN_CLASS_P (d))
9907 /* Reject all external templates except inline functions. */
9908 else if (DECL_INTERFACE_KNOWN (d)
9909 && ! DECL_NOT_REALLY_EXTERN (d)
9910 && ! (TREE_CODE (d) == FUNCTION_DECL && DECL_INLINE (d)))
9911 goto out;
9912 /* Defer all other templates, unless we have been explicitly
9913 forbidden from doing so. We restore the source position here
9914 because it's used by add_pending_template. */
9915 else if (! pattern_defined || defer_ok)
9917 lineno = line;
9918 input_filename = file;
9920 if (at_eof && !pattern_defined
9921 && DECL_EXPLICIT_INSTANTIATION (d))
9922 /* [temp.explicit]
9924 The definition of a non-exported function template, a
9925 non-exported member function template, or a non-exported
9926 member function or static data member of a class template
9927 shall be present in every translation unit in which it is
9928 explicitly instantiated. */
9929 cp_error ("explicit instantiation of `%D' but no definition available",
9932 add_pending_template (d);
9933 goto out;
9936 need_push = !global_bindings_p ();
9937 if (need_push)
9938 push_to_top_level ();
9940 /* We're now committed to instantiating this template. Mark it as
9941 instantiated so that recursive calls to instantiate_decl do not
9942 try to instantiate it again. */
9943 DECL_TEMPLATE_INSTANTIATED (d) = 1;
9945 /* Regenerate the declaration in case the template has been modified
9946 by a subsequent redeclaration. */
9947 regenerate_decl_from_template (d, td);
9949 /* We already set the file and line above. Reset them now in case
9950 they changed as a result of calling regenerate_decl_from_template. */
9951 lineno = DECL_SOURCE_LINE (d);
9952 input_filename = DECL_SOURCE_FILE (d);
9954 if (TREE_CODE (d) == VAR_DECL)
9956 DECL_IN_AGGR_P (d) = 0;
9957 if (DECL_INTERFACE_KNOWN (d))
9958 DECL_EXTERNAL (d) = ! DECL_NOT_REALLY_EXTERN (d);
9959 else
9961 DECL_EXTERNAL (d) = 1;
9962 DECL_NOT_REALLY_EXTERN (d) = 1;
9964 cp_finish_decl (d, DECL_INITIAL (d), NULL_TREE, 0);
9966 else if (TREE_CODE (d) == FUNCTION_DECL)
9968 htab_t saved_local_specializations;
9970 /* Save away the current list, in case we are instantiating one
9971 template from within the body of another. */
9972 saved_local_specializations = local_specializations;
9974 /* Set up the list of local specializations. */
9975 local_specializations = htab_create (37,
9976 htab_hash_pointer,
9977 htab_eq_pointer,
9978 NULL);
9980 /* Set up context. */
9981 start_function (NULL_TREE, d, NULL_TREE, SF_PRE_PARSED);
9983 /* We already set up __FUNCTION__, etc., so we don't want to do
9984 it again now. */
9985 function_name_declared_p = 1;
9987 /* Substitute into the body of the function. */
9988 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
9989 /*complain=*/1, tmpl);
9991 /* We don't need the local specializations any more. */
9992 htab_delete (local_specializations);
9993 local_specializations = saved_local_specializations;
9995 /* Finish the function. */
9996 expand_body (finish_function (0));
9999 /* We're not deferring instantiation any more. */
10000 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
10002 if (need_push)
10003 pop_from_top_level ();
10005 out:
10006 lineno = line;
10007 input_filename = file;
10009 pop_tinst_level ();
10011 timevar_pop (TV_PARSE);
10013 return d;
10016 /* Run through the list of templates that we wish we could
10017 instantiate, and instantiate any we can. */
10020 instantiate_pending_templates ()
10022 tree *t;
10023 int instantiated_something = 0;
10024 int reconsider;
10028 reconsider = 0;
10030 t = &pending_templates;
10031 while (*t)
10033 tree instantiation = TREE_VALUE (*t);
10035 reopen_tinst_level (TREE_PURPOSE (*t));
10037 if (TYPE_P (instantiation))
10039 tree fn;
10041 if (!COMPLETE_TYPE_P (instantiation))
10043 instantiate_class_template (instantiation);
10044 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
10045 for (fn = TYPE_METHODS (instantiation);
10047 fn = TREE_CHAIN (fn))
10048 if (! DECL_ARTIFICIAL (fn))
10049 instantiate_decl (fn, /*defer_ok=*/0);
10050 if (COMPLETE_TYPE_P (instantiation))
10052 instantiated_something = 1;
10053 reconsider = 1;
10057 if (COMPLETE_TYPE_P (instantiation))
10058 /* If INSTANTIATION has been instantiated, then we don't
10059 need to consider it again in the future. */
10060 *t = TREE_CHAIN (*t);
10061 else
10062 t = &TREE_CHAIN (*t);
10064 else
10066 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
10067 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
10069 instantiation = instantiate_decl (instantiation,
10070 /*defer_ok=*/0);
10071 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
10073 instantiated_something = 1;
10074 reconsider = 1;
10078 if (DECL_TEMPLATE_SPECIALIZATION (instantiation)
10079 || DECL_TEMPLATE_INSTANTIATED (instantiation))
10080 /* If INSTANTIATION has been instantiated, then we don't
10081 need to consider it again in the future. */
10082 *t = TREE_CHAIN (*t);
10083 else
10084 t = &TREE_CHAIN (*t);
10086 tinst_depth = 0;
10087 current_tinst_level = NULL_TREE;
10089 template_tail = t;
10091 /* Go through the things that are template instantiations if we are
10092 using guiding declarations. */
10093 t = &maybe_templates;
10094 while (*t)
10096 tree template;
10097 tree fn;
10098 tree args;
10100 fn = TREE_VALUE (*t);
10102 if (DECL_INITIAL (fn))
10103 /* If the FN is already defined, then it was either already
10104 instantiated or, even though guiding declarations were
10105 allowed, a non-template definition was provided. */
10107 else
10109 template = TREE_PURPOSE (*t);
10110 args = get_bindings (template, fn, NULL_TREE);
10111 fn = instantiate_template (template, args);
10112 instantiate_decl (fn, /*defer_ok=*/0);
10113 reconsider = 1;
10116 /* Remove this entry from the chain. */
10117 *t = TREE_CHAIN (*t);
10119 maybe_template_tail = t;
10121 while (reconsider);
10123 return instantiated_something;
10126 /* Substitute ARGVEC into T, which is a list of initializers for
10127 either base class or a non-static data member. The TREE_PURPOSEs
10128 are DECLs, and the TREE_VALUEs are the initializer values. Used by
10129 instantiate_decl. */
10131 static tree
10132 tsubst_initializer_list (t, argvec)
10133 tree t, argvec;
10135 tree first = NULL_TREE;
10136 tree *p = &first;
10138 for (; t; t = TREE_CHAIN (t))
10140 tree decl;
10141 tree init;
10142 tree val;
10144 decl = tsubst_copy (TREE_PURPOSE (t), argvec, /*complain=*/1,
10145 NULL_TREE);
10146 init = tsubst_expr (TREE_VALUE (t), argvec, /*complain=*/1,
10147 NULL_TREE);
10149 if (!init)
10151 else if (TREE_CODE (init) == TREE_LIST)
10152 for (val = init; val; val = TREE_CHAIN (val))
10153 TREE_VALUE (val) = convert_from_reference (TREE_VALUE (val));
10154 else
10155 init = convert_from_reference (init);
10157 *p = build_tree_list (decl, init);
10158 p = &TREE_CHAIN (*p);
10160 return first;
10163 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
10165 static void
10166 set_current_access_from_decl (decl)
10167 tree decl;
10169 if (TREE_PRIVATE (decl))
10170 current_access_specifier = access_private_node;
10171 else if (TREE_PROTECTED (decl))
10172 current_access_specifier = access_protected_node;
10173 else
10174 current_access_specifier = access_public_node;
10177 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
10178 is the instantiation (which should have been created with
10179 start_enum) and ARGS are the template arguments to use. */
10181 static void
10182 tsubst_enum (tag, newtag, args)
10183 tree tag;
10184 tree newtag;
10185 tree args;
10187 tree e;
10189 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
10191 tree value;
10193 /* Note that in a template enum, the TREE_VALUE is the
10194 CONST_DECL, not the corresponding INTEGER_CST. */
10195 value = tsubst_expr (DECL_INITIAL (TREE_VALUE (e)),
10196 args, /*complain=*/1,
10197 NULL_TREE);
10199 /* Give this enumeration constant the correct access. */
10200 set_current_access_from_decl (TREE_VALUE (e));
10202 /* Actually build the enumerator itself. */
10203 build_enumerator (TREE_PURPOSE (e), value, newtag);
10206 finish_enum (newtag);
10207 DECL_SOURCE_LINE (TYPE_NAME (newtag)) = DECL_SOURCE_LINE (TYPE_NAME (tag));
10208 DECL_SOURCE_FILE (TYPE_NAME (newtag)) = DECL_SOURCE_FILE (TYPE_NAME (tag));
10211 /* DECL is a FUNCTION_DECL that is a template specialization. Return
10212 its type -- but without substituting the innermost set of template
10213 arguments. So, innermost set of template parameters will appear in
10214 the type. If CONTEXTP is non-NULL, then the partially substituted
10215 DECL_CONTEXT (if any) will also be filled in. Similarly, TPARMSP
10216 will be filled in with the substituted template parameters, if it
10217 is non-NULL. */
10219 tree
10220 get_mostly_instantiated_function_type (decl, contextp, tparmsp)
10221 tree decl;
10222 tree *contextp;
10223 tree *tparmsp;
10225 tree context = NULL_TREE;
10226 tree fn_type;
10227 tree tmpl;
10228 tree targs;
10229 tree tparms;
10230 int parm_depth;
10232 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
10233 targs = DECL_TI_ARGS (decl);
10234 tparms = DECL_TEMPLATE_PARMS (tmpl);
10235 parm_depth = TMPL_PARMS_DEPTH (tparms);
10237 /* There should be as many levels of arguments as there are levels
10238 of parameters. */
10239 my_friendly_assert (parm_depth == TMPL_ARGS_DEPTH (targs), 0);
10241 fn_type = TREE_TYPE (tmpl);
10242 if (DECL_STATIC_FUNCTION_P (decl))
10243 context = DECL_CONTEXT (decl);
10245 if (parm_depth == 1)
10246 /* No substitution is necessary. */
10248 else
10250 int i;
10251 tree partial_args;
10253 /* Replace the innermost level of the TARGS with NULL_TREEs to
10254 let tsubst know not to substitute for those parameters. */
10255 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
10256 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
10257 SET_TMPL_ARGS_LEVEL (partial_args, i,
10258 TMPL_ARGS_LEVEL (targs, i));
10259 SET_TMPL_ARGS_LEVEL (partial_args,
10260 TMPL_ARGS_DEPTH (targs),
10261 make_tree_vec (DECL_NTPARMS (tmpl)));
10263 /* Now, do the (partial) substitution to figure out the
10264 appropriate function type. */
10265 fn_type = tsubst (fn_type, partial_args, /*complain=*/1, NULL_TREE);
10266 if (DECL_STATIC_FUNCTION_P (decl))
10267 context = tsubst (context, partial_args, /*complain=*/1, NULL_TREE);
10269 /* Substitute into the template parameters to obtain the real
10270 innermost set of parameters. This step is important if the
10271 innermost set of template parameters contains value
10272 parameters whose types depend on outer template parameters. */
10273 TREE_VEC_LENGTH (partial_args)--;
10274 tparms = tsubst_template_parms (tparms, partial_args, /*complain=*/1);
10277 if (contextp)
10278 *contextp = context;
10279 if (tparmsp)
10280 *tparmsp = tparms;
10282 return fn_type;
10285 /* Set the DECL_ASSEMBLER_NAME for DECL, which is a FUNCTION_DECL that
10286 is either an instantiation or specialization of a template
10287 function. */
10289 static void
10290 set_mangled_name_for_template_decl (decl)
10291 tree decl;
10293 tree context = NULL_TREE;
10294 tree fn_type;
10295 tree ret_type;
10296 tree parm_types;
10297 tree tparms;
10298 tree targs;
10300 my_friendly_assert (TREE_CODE (decl) == FUNCTION_DECL, 0);
10301 my_friendly_assert (DECL_TEMPLATE_INFO (decl) != NULL_TREE, 0);
10303 /* Under the new ABI, we don't need special machinery. */
10304 if (flag_new_abi)
10306 set_mangled_name_for_decl (decl);
10307 return;
10310 /* The names of template functions must be mangled so as to indicate
10311 what template is being specialized with what template arguments.
10312 For example, each of the following three functions must get
10313 different mangled names:
10315 void f(int);
10316 template <> void f<7>(int);
10317 template <> void f<8>(int); */
10319 targs = DECL_TI_ARGS (decl);
10320 if (uses_template_parms (targs))
10321 /* This DECL is for a partial instantiation. There's no need to
10322 mangle the name of such an entity. */
10323 return;
10325 /* We now compute the PARMS and RET_TYPE to give to
10326 build_decl_overload_real. The PARMS and RET_TYPE are the
10327 parameter and return types of the template, after all but the
10328 innermost template arguments have been substituted, not the
10329 parameter and return types of the function DECL. For example,
10330 given:
10332 template <class T> T f(T);
10334 both PARMS and RET_TYPE should be `T' even if DECL is `int f(int)'.
10335 A more subtle example is:
10337 template <class T> struct S { template <class U> void f(T, U); }
10339 Here, if DECL is `void S<int>::f(int, double)', PARMS should be
10340 {int, U}. Thus, the args that we want to subsitute into the
10341 return and parameter type for the function are those in TARGS,
10342 with the innermost level omitted. */
10343 fn_type = get_mostly_instantiated_function_type (decl, &context, &tparms);
10345 /* Now, get the innermost parameters and arguments, and figure out
10346 the parameter and return types. */
10347 tparms = INNERMOST_TEMPLATE_PARMS (tparms);
10348 targs = INNERMOST_TEMPLATE_ARGS (targs);
10349 ret_type = TREE_TYPE (fn_type);
10350 parm_types = TYPE_ARG_TYPES (fn_type);
10352 /* For a static member function, we generate a fake `this' pointer,
10353 for the purposes of mangling. This indicates of which class the
10354 function is a member. Because of:
10356 [class.static]
10358 There shall not be a static and a nonstatic member function
10359 with the same name and the same parameter types
10361 we don't have to worry that this will result in a clash with a
10362 non-static member function. */
10363 if (DECL_STATIC_FUNCTION_P (decl))
10364 parm_types = hash_tree_chain (build_pointer_type (context), parm_types);
10366 /* There should be the same number of template parameters as
10367 template arguments. */
10368 my_friendly_assert (TREE_VEC_LENGTH (tparms) == TREE_VEC_LENGTH (targs),
10371 /* Actually set the DECL_ASSEMBLER_NAME. */
10372 DECL_ASSEMBLER_NAME (decl)
10373 = build_decl_overload_real (decl, parm_types, ret_type,
10374 tparms, targs,
10375 DECL_FUNCTION_MEMBER_P (decl)
10376 + DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl));
10379 /* Return truthvalue if we're processing a template different from
10380 the last one involved in diagnostics. */
10382 problematic_instantiation_changed ()
10384 return last_template_error_tick != tinst_level_tick;
10387 /* Remember current template involved in diagnostics. */
10388 void
10389 record_last_problematic_instantiation ()
10391 last_template_error_tick = tinst_level_tick;
10394 tree
10395 current_instantiation ()
10397 return current_tinst_level;
10400 /* [temp.param] Check that template non-type parm TYPE is of an allowable
10401 type. Return zero for ok, non-zero for disallowed. If COMPLAIN is
10402 non-zero, then complain. */
10404 static int
10405 invalid_nontype_parm_type_p (type, complain)
10406 tree type;
10407 int complain;
10409 if (INTEGRAL_TYPE_P (type))
10410 return 0;
10411 else if (POINTER_TYPE_P (type))
10412 return 0;
10413 else if (TYPE_PTRMEM_P (type))
10414 return 0;
10415 else if (TYPE_PTRMEMFUNC_P (type))
10416 return 0;
10417 else if (!pedantic && TREE_CODE (type) == REAL_TYPE)
10418 return 0; /* GNU extension */
10419 else if (!pedantic && TREE_CODE (type) == COMPLEX_TYPE)
10420 return 0; /* GNU extension */
10421 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
10422 return 0;
10423 else if (TREE_CODE (type) == TYPENAME_TYPE)
10424 return 0;
10426 if (complain)
10427 cp_error ("`%#T' is not a valid type for a template constant parameter",
10428 type);
10429 return 1;