pt.c (tsubst_friend_function): Improve comment.
[gcc.git] / gcc / cp / pt.c
1 /* Handle parameterized types (templates) for GNU C++.
2 Copyright (C) 1992, 93-97, 1998, 1999, 2000 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23 /* Known bugs or deficiencies include:
24
25 all methods must be provided in header files; can't use a source
26 file that contains only the method templates and "just win". */
27
28 #include "config.h"
29 #include "system.h"
30 #include "obstack.h"
31
32 #include "tree.h"
33 #include "flags.h"
34 #include "cp-tree.h"
35 #include "decl.h"
36 #include "parse.h"
37 #include "lex.h"
38 #include "output.h"
39 #include "defaults.h"
40 #include "except.h"
41 #include "toplev.h"
42 #include "rtl.h"
43 #include "defaults.h"
44 #include "ggc.h"
45
46 /* The type of functions taking a tree, and some additional data, and
47 returning an int. */
48 typedef int (*tree_fn_t) PROTO((tree, void*));
49
50 extern struct obstack permanent_obstack;
51
52 extern int lineno;
53 extern char *input_filename;
54
55 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
56 instantiations have been deferred, either because their definitions
57 were not yet available, or because we were putting off doing the
58 work. The TREE_PURPOSE of each entry is a SRCLOC indicating where
59 the instantiate request occurred; the TREE_VALUE is a either a DECL
60 (for a function or static data member), or a TYPE (for a class)
61 indicating what we are hoping to instantiate. */
62 static tree pending_templates;
63 static tree *template_tail = &pending_templates;
64
65 static tree maybe_templates;
66 static tree *maybe_template_tail = &maybe_templates;
67
68 int processing_template_parmlist;
69 static int template_header_count;
70
71 static tree saved_trees;
72 static varray_type inline_parm_levels;
73 static size_t inline_parm_levels_used;
74
75 #define obstack_chunk_alloc xmalloc
76 #define obstack_chunk_free free
77
78 #define UNIFY_ALLOW_NONE 0
79 #define UNIFY_ALLOW_MORE_CV_QUAL 1
80 #define UNIFY_ALLOW_LESS_CV_QUAL 2
81 #define UNIFY_ALLOW_DERIVED 4
82 #define UNIFY_ALLOW_INTEGER 8
83
84 #define GTB_VIA_VIRTUAL 1 /* The base class we are examining is
85 virtual, or a base class of a virtual
86 base. */
87 #define GTB_IGNORE_TYPE 2 /* We don't need to try to unify the current
88 type with the desired type. */
89
90 static int resolve_overloaded_unification PROTO((tree, tree, tree, tree,
91 unification_kind_t, int));
92 static int try_one_overload PROTO((tree, tree, tree, tree, tree,
93 unification_kind_t, int));
94 static int unify PROTO((tree, tree, tree, tree, int));
95 static void add_pending_template PROTO((tree));
96 static int push_tinst_level PROTO((tree));
97 static tree classtype_mangled_name PROTO((tree));
98 static char *mangle_class_name_for_template PROTO((char *, tree, tree));
99 static tree tsubst_expr_values PROTO((tree, tree));
100 static int list_eq PROTO((tree, tree));
101 static tree get_class_bindings PROTO((tree, tree, tree));
102 static tree coerce_template_parms PROTO((tree, tree, tree, int, int));
103 static void tsubst_enum PROTO((tree, tree, tree));
104 static tree add_to_template_args PROTO((tree, tree));
105 static tree add_outermost_template_args PROTO((tree, tree));
106 static void maybe_adjust_types_for_deduction PROTO((unification_kind_t, tree*,
107 tree*));
108 static int type_unification_real PROTO((tree, tree, tree, tree,
109 int, unification_kind_t, int));
110 static void note_template_header PROTO((int));
111 static tree maybe_fold_nontype_arg PROTO((tree));
112 static tree convert_nontype_argument PROTO((tree, tree));
113 static tree convert_template_argument PROTO ((tree, tree, tree, int,
114 int , tree));
115 static tree get_bindings_overload PROTO((tree, tree, tree));
116 static int for_each_template_parm PROTO((tree, tree_fn_t, void*));
117 static tree build_template_parm_index PROTO((int, int, int, tree, tree));
118 static int inline_needs_template_parms PROTO((tree));
119 static void push_inline_template_parms_recursive PROTO((tree, int));
120 static tree retrieve_specialization PROTO((tree, tree));
121 static tree retrieve_local_specialization PROTO((tree, tree));
122 static tree register_specialization PROTO((tree, tree, tree));
123 static tree register_local_specialization PROTO((tree, tree, tree));
124 static int unregister_specialization PROTO((tree, tree));
125 static tree reduce_template_parm_level PROTO((tree, tree, int));
126 static tree build_template_decl PROTO((tree, tree));
127 static int mark_template_parm PROTO((tree, void *));
128 static tree tsubst_friend_function PROTO((tree, tree));
129 static tree tsubst_friend_class PROTO((tree, tree));
130 static tree get_bindings_real PROTO((tree, tree, tree, int));
131 static int template_decl_level PROTO((tree));
132 static tree maybe_get_template_decl_from_type_decl PROTO((tree));
133 static int check_cv_quals_for_unify PROTO((int, tree, tree));
134 static tree tsubst_template_arg_vector PROTO((tree, tree, int));
135 static tree tsubst_template_parms PROTO((tree, tree, int));
136 static void regenerate_decl_from_template PROTO((tree, tree));
137 static tree most_specialized PROTO((tree, tree, tree));
138 static tree most_specialized_class PROTO((tree, tree));
139 static void set_mangled_name_for_template_decl PROTO((tree));
140 static int template_class_depth_real PROTO((tree, int));
141 static tree tsubst_aggr_type PROTO((tree, tree, int, tree, int));
142 static tree tsubst_decl PROTO((tree, tree, tree, tree));
143 static tree tsubst_arg_types PROTO((tree, tree, int, tree));
144 static tree tsubst_function_type PROTO((tree, tree, int, tree));
145 static void check_specialization_scope PROTO((void));
146 static tree process_partial_specialization PROTO((tree));
147 static void set_current_access_from_decl PROTO((tree));
148 static void check_default_tmpl_args PROTO((tree, tree, int, int));
149 static tree tsubst_call_declarator_parms PROTO((tree, tree, int, tree));
150 static tree get_template_base_recursive PROTO((tree, tree,
151 tree, tree, tree, int));
152 static tree get_template_base PROTO((tree, tree, tree, tree));
153 static tree try_class_unification PROTO((tree, tree, tree, tree));
154 static int coerce_template_template_parms PROTO((tree, tree, int,
155 tree, tree));
156 static tree determine_specialization PROTO((tree, tree, tree *, int));
157 static int template_args_equal PROTO((tree, tree));
158 static void print_template_context PROTO((int));
159 static void tsubst_default_arguments PROTO((tree));
160 static tree for_each_template_parm_r PROTO((tree *, int *, void *));
161
162 /* Called once to initialize pt.c. */
163
164 void
165 init_pt ()
166 {
167 ggc_add_tree_root (&pending_templates, 1);
168 ggc_add_tree_root (&maybe_templates, 1);
169 ggc_add_tree_root (&saved_trees, 1);
170 }
171
172 /* Do any processing required when DECL (a member template declaration
173 using TEMPLATE_PARAMETERS as its innermost parameter list) is
174 finished. Returns the TEMPLATE_DECL corresponding to DECL, unless
175 it is a specialization, in which case the DECL itself is returned. */
176
177 tree
178 finish_member_template_decl (decl)
179 tree decl;
180 {
181 if (decl == NULL_TREE || decl == void_type_node)
182 return NULL_TREE;
183 else if (decl == error_mark_node)
184 /* By returning NULL_TREE, the parser will just ignore this
185 declaration. We have already issued the error. */
186 return NULL_TREE;
187 else if (TREE_CODE (decl) == TREE_LIST)
188 {
189 /* Assume that the class is the only declspec. */
190 decl = TREE_VALUE (decl);
191 if (IS_AGGR_TYPE (decl) && CLASSTYPE_TEMPLATE_INFO (decl)
192 && ! CLASSTYPE_TEMPLATE_SPECIALIZATION (decl))
193 {
194 tree tmpl = CLASSTYPE_TI_TEMPLATE (decl);
195 check_member_template (tmpl);
196 return tmpl;
197 }
198 return NULL_TREE;
199 }
200 else if (TREE_CODE (decl) == FIELD_DECL)
201 cp_error ("data member `%D' cannot be a member template", decl);
202 else if (DECL_TEMPLATE_INFO (decl))
203 {
204 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
205 {
206 check_member_template (DECL_TI_TEMPLATE (decl));
207 return DECL_TI_TEMPLATE (decl);
208 }
209 else
210 return decl;
211 }
212 else
213 cp_error ("invalid member template declaration `%D'", decl);
214
215 return error_mark_node;
216 }
217
218 /* Returns the template nesting level of the indicated class TYPE.
219
220 For example, in:
221 template <class T>
222 struct A
223 {
224 template <class U>
225 struct B {};
226 };
227
228 A<T>::B<U> has depth two, while A<T> has depth one.
229 Both A<T>::B<int> and A<int>::B<U> have depth one, if
230 COUNT_SPECIALIZATIONS is 0 or if they are instantiations, not
231 specializations.
232
233 This function is guaranteed to return 0 if passed NULL_TREE so
234 that, for example, `template_class_depth (current_class_type)' is
235 always safe. */
236
237 static int
238 template_class_depth_real (type, count_specializations)
239 tree type;
240 int count_specializations;
241 {
242 int depth;
243
244 for (depth = 0;
245 type && TREE_CODE (type) != NAMESPACE_DECL;
246 type = (TREE_CODE (type) == FUNCTION_DECL)
247 ? DECL_REAL_CONTEXT (type) : TYPE_CONTEXT (type))
248 {
249 if (TREE_CODE (type) != FUNCTION_DECL)
250 {
251 if (CLASSTYPE_TEMPLATE_INFO (type)
252 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
253 && ((count_specializations
254 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
255 || uses_template_parms (CLASSTYPE_TI_ARGS (type))))
256 ++depth;
257 }
258 else
259 {
260 if (DECL_TEMPLATE_INFO (type)
261 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (type))
262 && ((count_specializations
263 && DECL_TEMPLATE_SPECIALIZATION (type))
264 || uses_template_parms (DECL_TI_ARGS (type))))
265 ++depth;
266 }
267 }
268
269 return depth;
270 }
271
272 /* Returns the template nesting level of the indicated class TYPE.
273 Like template_class_depth_real, but instantiations do not count in
274 the depth. */
275
276 int
277 template_class_depth (type)
278 tree type;
279 {
280 return template_class_depth_real (type, /*count_specializations=*/0);
281 }
282
283 /* Returns 1 if processing DECL as part of do_pending_inlines
284 needs us to push template parms. */
285
286 static int
287 inline_needs_template_parms (decl)
288 tree decl;
289 {
290 if (! DECL_TEMPLATE_INFO (decl))
291 return 0;
292
293 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
294 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
295 }
296
297 /* Subroutine of maybe_begin_member_template_processing.
298 Push the template parms in PARMS, starting from LEVELS steps into the
299 chain, and ending at the beginning, since template parms are listed
300 innermost first. */
301
302 static void
303 push_inline_template_parms_recursive (parmlist, levels)
304 tree parmlist;
305 int levels;
306 {
307 tree parms = TREE_VALUE (parmlist);
308 int i;
309
310 if (levels > 1)
311 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
312
313 ++processing_template_decl;
314 current_template_parms
315 = tree_cons (build_int_2 (0, processing_template_decl),
316 parms, current_template_parms);
317 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
318
319 pushlevel (0);
320 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
321 {
322 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
323 my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (parm)) == 'd', 0);
324
325 switch (TREE_CODE (parm))
326 {
327 case TYPE_DECL:
328 case TEMPLATE_DECL:
329 pushdecl (parm);
330 break;
331
332 case PARM_DECL:
333 {
334 /* Make a CONST_DECL as is done in process_template_parm.
335 It is ugly that we recreate this here; the original
336 version built in process_template_parm is no longer
337 available. */
338 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
339 TREE_TYPE (parm));
340 SET_DECL_ARTIFICIAL (decl);
341 DECL_INITIAL (decl) = DECL_INITIAL (parm);
342 SET_DECL_TEMPLATE_PARM_P (decl);
343 pushdecl (decl);
344 }
345 break;
346
347 default:
348 my_friendly_abort (0);
349 }
350 }
351 }
352
353 /* Restore the template parameter context for a member template or
354 a friend template defined in a class definition. */
355
356 void
357 maybe_begin_member_template_processing (decl)
358 tree decl;
359 {
360 tree parms;
361 int levels = 0;
362
363 if (inline_needs_template_parms (decl))
364 {
365 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
366 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
367
368 if (DECL_TEMPLATE_SPECIALIZATION (decl))
369 {
370 --levels;
371 parms = TREE_CHAIN (parms);
372 }
373
374 push_inline_template_parms_recursive (parms, levels);
375 }
376
377 /* Remember how many levels of template parameters we pushed so that
378 we can pop them later. */
379 if (!inline_parm_levels)
380 VARRAY_INT_INIT (inline_parm_levels, 4, "inline_parm_levels");
381 if (inline_parm_levels_used == inline_parm_levels->num_elements)
382 VARRAY_GROW (inline_parm_levels, 2 * inline_parm_levels_used);
383 VARRAY_INT (inline_parm_levels, inline_parm_levels_used) = levels;
384 ++inline_parm_levels_used;
385 }
386
387 /* Undo the effects of begin_member_template_processing. */
388
389 void
390 maybe_end_member_template_processing ()
391 {
392 int i;
393
394 if (!inline_parm_levels_used)
395 return;
396
397 --inline_parm_levels_used;
398 for (i = 0;
399 i < VARRAY_INT (inline_parm_levels, inline_parm_levels_used);
400 ++i)
401 {
402 --processing_template_decl;
403 current_template_parms = TREE_CHAIN (current_template_parms);
404 poplevel (0, 0, 0);
405 }
406 }
407
408 /* Returns non-zero iff T is a member template function. We must be
409 careful as in
410
411 template <class T> class C { void f(); }
412
413 Here, f is a template function, and a member, but not a member
414 template. This function does not concern itself with the origin of
415 T, only its present state. So if we have
416
417 template <class T> class C { template <class U> void f(U); }
418
419 then neither C<int>::f<char> nor C<T>::f<double> is considered
420 to be a member template. But, `template <class U> void
421 C<int>::f(U)' is considered a member template. */
422
423 int
424 is_member_template (t)
425 tree t;
426 {
427 if (!DECL_FUNCTION_TEMPLATE_P (t))
428 /* Anything that isn't a function or a template function is
429 certainly not a member template. */
430 return 0;
431
432 /* A local class can't have member templates. */
433 if (hack_decl_function_context (t))
434 return 0;
435
436 return (DECL_FUNCTION_MEMBER_P (DECL_TEMPLATE_RESULT (t))
437 /* If there are more levels of template parameters than
438 there are template classes surrounding the declaration,
439 then we have a member template. */
440 && (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
441 template_class_depth (DECL_CLASS_CONTEXT (t))));
442 }
443
444 #if 0 /* UNUSED */
445 /* Returns non-zero iff T is a member template class. See
446 is_member_template for a description of what precisely constitutes
447 a member template. */
448
449 int
450 is_member_template_class (t)
451 tree t;
452 {
453 if (!DECL_CLASS_TEMPLATE_P (t))
454 /* Anything that isn't a class template, is certainly not a member
455 template. */
456 return 0;
457
458 if (!DECL_CLASS_SCOPE_P (t))
459 /* Anything whose context isn't a class type is surely not a
460 member template. */
461 return 0;
462
463 /* If there are more levels of template parameters than there are
464 template classes surrounding the declaration, then we have a
465 member template. */
466 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
467 template_class_depth (DECL_CONTEXT (t)));
468 }
469 #endif
470
471 /* Return a new template argument vector which contains all of ARGS,
472 but has as its innermost set of arguments the EXTRA_ARGS. The
473 resulting vector will be built on a temporary obstack, and so must
474 be explicitly copied to the permanent obstack, if required. */
475
476 static tree
477 add_to_template_args (args, extra_args)
478 tree args;
479 tree extra_args;
480 {
481 tree new_args;
482 int extra_depth;
483 int i;
484 int j;
485
486 extra_depth = TMPL_ARGS_DEPTH (extra_args);
487 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
488
489 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
490 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
491
492 for (j = 1; j <= extra_depth; ++j, ++i)
493 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
494
495 return new_args;
496 }
497
498 /* Like add_to_template_args, but only the outermost ARGS are added to
499 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
500 (EXTRA_ARGS) levels are added. This function is used to combine
501 the template arguments from a partial instantiation with the
502 template arguments used to attain the full instantiation from the
503 partial instantiation. */
504
505 static tree
506 add_outermost_template_args (args, extra_args)
507 tree args;
508 tree extra_args;
509 {
510 tree new_args;
511
512 /* If there are more levels of EXTRA_ARGS than there are ARGS,
513 something very fishy is going on. */
514 my_friendly_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args),
515 0);
516
517 /* If *all* the new arguments will be the EXTRA_ARGS, just return
518 them. */
519 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
520 return extra_args;
521
522 /* For the moment, we make ARGS look like it contains fewer levels. */
523 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
524
525 new_args = add_to_template_args (args, extra_args);
526
527 /* Now, we restore ARGS to its full dimensions. */
528 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
529
530 return new_args;
531 }
532
533 /* We've got a template header coming up; push to a new level for storing
534 the parms. */
535
536 void
537 begin_template_parm_list ()
538 {
539 /* We use a non-tag-transparent scope here, which causes pushtag to
540 put tags in this scope, rather than in the enclosing class or
541 namespace scope. This is the right thing, since we want
542 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
543 global template class, push_template_decl handles putting the
544 TEMPLATE_DECL into top-level scope. For a nested template class,
545 e.g.:
546
547 template <class T> struct S1 {
548 template <class T> struct S2 {};
549 };
550
551 pushtag contains special code to call pushdecl_with_scope on the
552 TEMPLATE_DECL for S2. */
553 pushlevel (0);
554 declare_pseudo_global_level ();
555 ++processing_template_decl;
556 ++processing_template_parmlist;
557 note_template_header (0);
558 }
559
560 /* This routine is called when a specialization is declared. If it is
561 illegal to declare a specialization here, an error is reported. */
562
563 static void
564 check_specialization_scope ()
565 {
566 tree scope = current_scope ();
567
568 /* [temp.expl.spec]
569
570 An explicit specialization shall be declared in the namespace of
571 which the template is a member, or, for member templates, in the
572 namespace of which the enclosing class or enclosing class
573 template is a member. An explicit specialization of a member
574 function, member class or static data member of a class template
575 shall be declared in the namespace of which the class template
576 is a member. */
577 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
578 cp_error ("explicit specialization in non-namespace scope `%D'",
579 scope);
580
581 /* [temp.expl.spec]
582
583 In an explicit specialization declaration for a member of a class
584 template or a member template that appears in namespace scope,
585 the member template and some of its enclosing class templates may
586 remain unspecialized, except that the declaration shall not
587 explicitly specialize a class member template if its enclosing
588 class templates are not explicitly specialized as well. */
589 if (current_template_parms)
590 cp_error ("enclosing class templates are not explicitly specialized");
591 }
592
593 /* We've just seen template <>. */
594
595 void
596 begin_specialization ()
597 {
598 note_template_header (1);
599 check_specialization_scope ();
600 }
601
602 /* Called at then end of processing a declaration preceeded by
603 template<>. */
604
605 void
606 end_specialization ()
607 {
608 reset_specialization ();
609 }
610
611 /* Any template <>'s that we have seen thus far are not referring to a
612 function specialization. */
613
614 void
615 reset_specialization ()
616 {
617 processing_specialization = 0;
618 template_header_count = 0;
619 }
620
621 /* We've just seen a template header. If SPECIALIZATION is non-zero,
622 it was of the form template <>. */
623
624 static void
625 note_template_header (specialization)
626 int specialization;
627 {
628 processing_specialization = specialization;
629 template_header_count++;
630 }
631
632 /* We're beginning an explicit instantiation. */
633
634 void
635 begin_explicit_instantiation ()
636 {
637 ++processing_explicit_instantiation;
638 }
639
640
641 void
642 end_explicit_instantiation ()
643 {
644 my_friendly_assert(processing_explicit_instantiation > 0, 0);
645 --processing_explicit_instantiation;
646 }
647
648 /* The TYPE is being declared. If it is a template type, that means it
649 is a partial specialization. Do appropriate error-checking. */
650
651 void
652 maybe_process_partial_specialization (type)
653 tree type;
654 {
655 if (IS_AGGR_TYPE (type) && CLASSTYPE_USE_TEMPLATE (type))
656 {
657 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
658 && TYPE_SIZE (type) == NULL_TREE)
659 {
660 if (current_namespace
661 != decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type)))
662 {
663 cp_pedwarn ("specializing `%#T' in different namespace", type);
664 cp_pedwarn_at (" from definition of `%#D'",
665 CLASSTYPE_TI_TEMPLATE (type));
666 }
667 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
668 if (processing_template_decl)
669 push_template_decl (TYPE_MAIN_DECL (type));
670 }
671 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
672 cp_error ("specialization of `%T' after instantiation", type);
673 }
674 else if (processing_specialization)
675 cp_error ("explicit specialization of non-template `%T'", type);
676 }
677
678 /* Retrieve the specialization (in the sense of [temp.spec] - a
679 specialization is either an instantiation or an explicit
680 specialization) of TMPL for the given template ARGS. If there is
681 no such specialization, return NULL_TREE. The ARGS are a vector of
682 arguments, or a vector of vectors of arguments, in the case of
683 templates with more than one level of parameters. */
684
685 static tree
686 retrieve_specialization (tmpl, args)
687 tree tmpl;
688 tree args;
689 {
690 tree s;
691
692 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
693
694 /* There should be as many levels of arguments as there are
695 levels of parameters. */
696 my_friendly_assert (TMPL_ARGS_DEPTH (args)
697 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)),
698 0);
699
700 for (s = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
701 s != NULL_TREE;
702 s = TREE_CHAIN (s))
703 if (comp_template_args (TREE_PURPOSE (s), args))
704 return TREE_VALUE (s);
705
706 return NULL_TREE;
707 }
708
709 /* Like retrieve_speciailization, but for local declarations. FN is
710 the function in which we are looking for an instantiation. */
711
712 static tree
713 retrieve_local_specialization (tmpl, fn)
714 tree tmpl;
715 tree fn;
716 {
717 tree s = purpose_member (fn, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
718 return s ? TREE_VALUE (s) : NULL_TREE;
719 }
720
721 /* Returns non-zero iff DECL is a specialization of TMPL. */
722
723 int
724 is_specialization_of (decl, tmpl)
725 tree decl;
726 tree tmpl;
727 {
728 tree t;
729
730 if (TREE_CODE (decl) == FUNCTION_DECL)
731 {
732 for (t = decl;
733 t != NULL_TREE;
734 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
735 if (t == tmpl)
736 return 1;
737 }
738 else
739 {
740 my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 0);
741
742 for (t = TREE_TYPE (decl);
743 t != NULL_TREE;
744 t = CLASSTYPE_USE_TEMPLATE (t)
745 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
746 if (same_type_p (TYPE_MAIN_VARIANT (t),
747 TYPE_MAIN_VARIANT (TREE_TYPE (tmpl))))
748 return 1;
749 }
750
751 return 0;
752 }
753
754 /* Register the specialization SPEC as a specialization of TMPL with
755 the indicated ARGS. Returns SPEC, or an equivalent prior
756 declaration, if available. */
757
758 static tree
759 register_specialization (spec, tmpl, args)
760 tree spec;
761 tree tmpl;
762 tree args;
763 {
764 tree s;
765
766 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
767
768 if (TREE_CODE (spec) == FUNCTION_DECL
769 && uses_template_parms (DECL_TI_ARGS (spec)))
770 /* This is the FUNCTION_DECL for a partial instantiation. Don't
771 register it; we want the corresponding TEMPLATE_DECL instead.
772 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
773 the more obvious `uses_template_parms (spec)' to avoid problems
774 with default function arguments. In particular, given
775 something like this:
776
777 template <class T> void f(T t1, T t = T())
778
779 the default argument expression is not substituted for in an
780 instantiation unless and until it is actually needed. */
781 return spec;
782
783 /* There should be as many levels of arguments as there are
784 levels of parameters. */
785 my_friendly_assert (TMPL_ARGS_DEPTH (args)
786 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)),
787 0);
788
789 for (s = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
790 s != NULL_TREE;
791 s = TREE_CHAIN (s))
792 {
793 tree fn = TREE_VALUE (s);
794
795 /* We can sometimes try to re-register a specialization that we've
796 already got. In particular, regenerate_decl_from_template
797 calls duplicate_decls which will update the specialization
798 list. But, we'll still get called again here anyhow. It's
799 more convenient to simply allow this than to try to prevent it. */
800 if (fn == spec)
801 return spec;
802 else if (comp_template_args (TREE_PURPOSE (s), args))
803 {
804 if (DECL_TEMPLATE_SPECIALIZATION (spec))
805 {
806 if (DECL_TEMPLATE_INSTANTIATION (fn))
807 {
808 if (TREE_USED (fn)
809 || DECL_EXPLICIT_INSTANTIATION (fn))
810 {
811 cp_error ("specialization of %D after instantiation",
812 fn);
813 return spec;
814 }
815 else
816 {
817 /* This situation should occur only if the first
818 specialization is an implicit instantiation,
819 the second is an explicit specialization, and
820 the implicit instantiation has not yet been
821 used. That situation can occur if we have
822 implicitly instantiated a member function and
823 then specialized it later.
824
825 We can also wind up here if a friend
826 declaration that looked like an instantiation
827 turns out to be a specialization:
828
829 template <class T> void foo(T);
830 class S { friend void foo<>(int) };
831 template <> void foo(int);
832
833 We transform the existing DECL in place so that
834 any pointers to it become pointers to the
835 updated declaration.
836
837 If there was a definition for the template, but
838 not for the specialization, we want this to
839 look as if there is no definition, and vice
840 versa. */
841 DECL_INITIAL (fn) = NULL_TREE;
842 duplicate_decls (spec, fn);
843
844 return fn;
845 }
846 }
847 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
848 {
849 duplicate_decls (spec, fn);
850 return fn;
851 }
852 }
853 }
854 }
855
856 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
857 = tree_cons (args, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
858
859 return spec;
860 }
861
862 /* Unregister the specialization SPEC as a specialization of TMPL.
863 Returns nonzero if the SPEC was listed as a specialization of
864 TMPL. */
865
866 static int
867 unregister_specialization (spec, tmpl)
868 tree spec;
869 tree tmpl;
870 {
871 tree* s;
872
873 for (s = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
874 *s != NULL_TREE;
875 s = &TREE_CHAIN (*s))
876 if (TREE_VALUE (*s) == spec)
877 {
878 *s = TREE_CHAIN (*s);
879 return 1;
880 }
881
882 return 0;
883 }
884
885 /* Like register_specialization, but for local declarations. FN is
886 the function in which we are registering SPEC, an instantiation of
887 TMPL. */
888
889 static tree
890 register_local_specialization (spec, tmpl, fn)
891 tree spec;
892 tree tmpl;
893 tree fn;
894 {
895 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
896 = tree_cons (fn, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
897
898 return spec;
899 }
900
901 /* Print the list of candidate FNS in an error message. */
902
903 void
904 print_candidates (fns)
905 tree fns;
906 {
907 tree fn;
908
909 const char *str = "candidates are:";
910
911 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn))
912 {
913 tree f;
914
915 for (f = TREE_VALUE (fn); f; f = OVL_NEXT (f))
916 cp_error_at ("%s %+#D", str, OVL_CURRENT (f));
917 str = " ";
918 }
919 }
920
921 /* Returns the template (one of the functions given by TEMPLATE_ID)
922 which can be specialized to match the indicated DECL with the
923 explicit template args given in TEMPLATE_ID. The DECL may be
924 NULL_TREE if none is available. In that case, the functions in
925 TEMPLATE_ID are non-members.
926
927 If NEED_MEMBER_TEMPLATE is non-zero the function is known to be a
928 specialization of a member template.
929
930 The template args (those explicitly specified and those deduced)
931 are output in a newly created vector *TARGS_OUT.
932
933 If it is impossible to determine the result, an error message is
934 issued. The error_mark_node is returned to indicate failure. */
935
936 static tree
937 determine_specialization (template_id, decl, targs_out,
938 need_member_template)
939 tree template_id;
940 tree decl;
941 tree* targs_out;
942 int need_member_template;
943 {
944 tree fns;
945 tree targs;
946 tree explicit_targs;
947 tree candidates = NULL_TREE;
948 tree templates = NULL_TREE;
949
950 *targs_out = NULL_TREE;
951
952 if (template_id == error_mark_node)
953 return error_mark_node;
954
955 fns = TREE_OPERAND (template_id, 0);
956 explicit_targs = TREE_OPERAND (template_id, 1);
957
958 if (fns == error_mark_node)
959 return error_mark_node;
960
961 /* Check for baselinks. */
962 if (BASELINK_P (fns))
963 fns = TREE_VALUE (fns);
964
965 if (!is_overloaded_fn (fns))
966 {
967 cp_error ("`%D' is not a function template", fns);
968 return error_mark_node;
969 }
970
971 for (; fns; fns = OVL_NEXT (fns))
972 {
973 tree tmpl;
974
975 tree fn = OVL_CURRENT (fns);
976
977 if (TREE_CODE (fn) == TEMPLATE_DECL)
978 /* DECL might be a specialization of FN. */
979 tmpl = fn;
980 else if (need_member_template)
981 /* FN is an ordinary member function, and we need a
982 specialization of a member template. */
983 continue;
984 else if (TREE_CODE (fn) != FUNCTION_DECL)
985 /* We can get IDENTIFIER_NODEs here in certain erroneous
986 cases. */
987 continue;
988 else if (!DECL_FUNCTION_MEMBER_P (fn))
989 /* This is just an ordinary non-member function. Nothing can
990 be a specialization of that. */
991 continue;
992 else
993 {
994 tree decl_arg_types;
995
996 /* This is an ordinary member function. However, since
997 we're here, we can assume it's enclosing class is a
998 template class. For example,
999
1000 template <typename T> struct S { void f(); };
1001 template <> void S<int>::f() {}
1002
1003 Here, S<int>::f is a non-template, but S<int> is a
1004 template class. If FN has the same type as DECL, we
1005 might be in business. */
1006 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1007 TREE_TYPE (TREE_TYPE (fn))))
1008 /* The return types differ. */
1009 continue;
1010
1011 /* Adjust the type of DECL in case FN is a static member. */
1012 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1013 if (DECL_STATIC_FUNCTION_P (fn)
1014 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1015 decl_arg_types = TREE_CHAIN (decl_arg_types);
1016
1017 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1018 decl_arg_types))
1019 /* They match! */
1020 candidates = tree_cons (NULL_TREE, fn, candidates);
1021
1022 continue;
1023 }
1024
1025 /* See whether this function might be a specialization of this
1026 template. */
1027 targs = get_bindings (tmpl, decl, explicit_targs);
1028
1029 if (!targs)
1030 /* We cannot deduce template arguments that when used to
1031 specialize TMPL will produce DECL. */
1032 continue;
1033
1034 /* Save this template, and the arguments deduced. */
1035 templates = tree_cons (targs, tmpl, templates);
1036 }
1037
1038 if (templates && TREE_CHAIN (templates))
1039 {
1040 /* We have:
1041
1042 [temp.expl.spec]
1043
1044 It is possible for a specialization with a given function
1045 signature to be instantiated from more than one function
1046 template. In such cases, explicit specification of the
1047 template arguments must be used to uniquely identify the
1048 function template specialization being specialized.
1049
1050 Note that here, there's no suggestion that we're supposed to
1051 determine which of the candidate templates is most
1052 specialized. However, we, also have:
1053
1054 [temp.func.order]
1055
1056 Partial ordering of overloaded function template
1057 declarations is used in the following contexts to select
1058 the function template to which a function template
1059 specialization refers:
1060
1061 -- when an explicit specialization refers to a function
1062 template.
1063
1064 So, we do use the partial ordering rules, at least for now.
1065 This extension can only serve to make illegal programs legal,
1066 so it's safe. And, there is strong anecdotal evidence that
1067 the committee intended the partial ordering rules to apply;
1068 the EDG front-end has that behavior, and John Spicer claims
1069 that the committee simply forgot to delete the wording in
1070 [temp.expl.spec]. */
1071 tree tmpl = most_specialized (templates, decl, explicit_targs);
1072 if (tmpl && tmpl != error_mark_node)
1073 {
1074 targs = get_bindings (tmpl, decl, explicit_targs);
1075 templates = tree_cons (targs, tmpl, NULL_TREE);
1076 }
1077 }
1078
1079 if (templates == NULL_TREE && candidates == NULL_TREE)
1080 {
1081 cp_error_at ("template-id `%D' for `%+D' does not match any template declaration",
1082 template_id, decl);
1083 return error_mark_node;
1084 }
1085 else if ((templates && TREE_CHAIN (templates))
1086 || (candidates && TREE_CHAIN (candidates))
1087 || (templates && candidates))
1088 {
1089 cp_error_at ("ambiguous template specialization `%D' for `%+D'",
1090 template_id, decl);
1091 chainon (candidates, templates);
1092 print_candidates (candidates);
1093 return error_mark_node;
1094 }
1095
1096 /* We have one, and exactly one, match. */
1097 if (candidates)
1098 {
1099 /* It was a specialization of an ordinary member function in a
1100 template class. */
1101 *targs_out = copy_node (DECL_TI_ARGS (TREE_VALUE (candidates)));
1102 return DECL_TI_TEMPLATE (TREE_VALUE (candidates));
1103 }
1104
1105 /* It was a specialization of a template. */
1106 targs = DECL_TI_ARGS (DECL_RESULT (TREE_VALUE (templates)));
1107 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
1108 {
1109 *targs_out = copy_node (targs);
1110 SET_TMPL_ARGS_LEVEL (*targs_out,
1111 TMPL_ARGS_DEPTH (*targs_out),
1112 TREE_PURPOSE (templates));
1113 }
1114 else
1115 *targs_out = TREE_PURPOSE (templates);
1116 return TREE_VALUE (templates);
1117 }
1118
1119 /* Check to see if the function just declared, as indicated in
1120 DECLARATOR, and in DECL, is a specialization of a function
1121 template. We may also discover that the declaration is an explicit
1122 instantiation at this point.
1123
1124 Returns DECL, or an equivalent declaration that should be used
1125 instead if all goes well. Issues an error message if something is
1126 amiss. Returns error_mark_node if the error is not easily
1127 recoverable.
1128
1129 FLAGS is a bitmask consisting of the following flags:
1130
1131 2: The function has a definition.
1132 4: The function is a friend.
1133
1134 The TEMPLATE_COUNT is the number of references to qualifying
1135 template classes that appeared in the name of the function. For
1136 example, in
1137
1138 template <class T> struct S { void f(); };
1139 void S<int>::f();
1140
1141 the TEMPLATE_COUNT would be 1. However, explicitly specialized
1142 classes are not counted in the TEMPLATE_COUNT, so that in
1143
1144 template <class T> struct S {};
1145 template <> struct S<int> { void f(); }
1146 template <> void S<int>::f();
1147
1148 the TEMPLATE_COUNT would be 0. (Note that this declaration is
1149 illegal; there should be no template <>.)
1150
1151 If the function is a specialization, it is marked as such via
1152 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
1153 is set up correctly, and it is added to the list of specializations
1154 for that template. */
1155
1156 tree
1157 check_explicit_specialization (declarator, decl, template_count, flags)
1158 tree declarator;
1159 tree decl;
1160 int template_count;
1161 int flags;
1162 {
1163 int have_def = flags & 2;
1164 int is_friend = flags & 4;
1165 int specialization = 0;
1166 int explicit_instantiation = 0;
1167 int member_specialization = 0;
1168
1169 tree ctype = DECL_CLASS_CONTEXT (decl);
1170 tree dname = DECL_NAME (decl);
1171
1172 if (processing_specialization)
1173 {
1174 /* The last template header was of the form template <>. */
1175
1176 if (template_header_count > template_count)
1177 {
1178 /* There were more template headers than qualifying template
1179 classes. */
1180 if (template_header_count - template_count > 1)
1181 /* There shouldn't be that many template parameter lists.
1182 There can be at most one parameter list for every
1183 qualifying class, plus one for the function itself. */
1184 cp_error ("too many template parameter lists in declaration of `%D'", decl);
1185
1186 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1187 if (ctype)
1188 member_specialization = 1;
1189 else
1190 specialization = 1;
1191 }
1192 else if (template_header_count == template_count)
1193 {
1194 /* The counts are equal. So, this might be a
1195 specialization, but it is not a specialization of a
1196 member template. It might be something like
1197
1198 template <class T> struct S {
1199 void f(int i);
1200 };
1201 template <>
1202 void S<int>::f(int i) {} */
1203 specialization = 1;
1204 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1205 }
1206 else
1207 {
1208 /* This cannot be an explicit specialization. There are not
1209 enough headers for all of the qualifying classes. For
1210 example, we might have:
1211
1212 template <>
1213 void S<int>::T<char>::f();
1214
1215 But, we're missing another template <>. */
1216 cp_error("too few template parameter lists in declaration of `%D'", decl);
1217 return decl;
1218 }
1219 }
1220 else if (processing_explicit_instantiation)
1221 {
1222 if (template_header_count)
1223 cp_error ("template parameter list used in explicit instantiation");
1224
1225 if (have_def)
1226 cp_error ("definition provided for explicit instantiation");
1227
1228 explicit_instantiation = 1;
1229 }
1230 else if (ctype != NULL_TREE
1231 && !TYPE_BEING_DEFINED (ctype)
1232 && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype)
1233 && !is_friend)
1234 {
1235 /* This case catches outdated code that looks like this:
1236
1237 template <class T> struct S { void f(); };
1238 void S<int>::f() {} // Missing template <>
1239
1240 We disable this check when the type is being defined to
1241 avoid complaining about default compiler-generated
1242 constructors, destructors, and assignment operators.
1243 Since the type is an instantiation, not a specialization,
1244 these are the only functions that can be defined before
1245 the class is complete. */
1246
1247 /* If they said
1248 template <class T> void S<int>::f() {}
1249 that's bogus. */
1250 if (template_header_count)
1251 {
1252 cp_error ("template parameters specified in specialization");
1253 return decl;
1254 }
1255
1256 if (pedantic)
1257 cp_pedwarn
1258 ("explicit specialization not preceded by `template <>'");
1259 specialization = 1;
1260 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1261 }
1262 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
1263 {
1264 if (is_friend)
1265 /* This could be something like:
1266
1267 template <class T> void f(T);
1268 class S { friend void f<>(int); } */
1269 specialization = 1;
1270 else
1271 {
1272 /* This case handles bogus declarations like template <>
1273 template <class T> void f<int>(); */
1274
1275 cp_error ("template-id `%D' in declaration of primary template",
1276 declarator);
1277 return decl;
1278 }
1279 }
1280
1281 if (specialization || member_specialization)
1282 {
1283 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
1284 for (; t; t = TREE_CHAIN (t))
1285 if (TREE_PURPOSE (t))
1286 {
1287 cp_pedwarn
1288 ("default argument specified in explicit specialization");
1289 break;
1290 }
1291 if (current_lang_name == lang_name_c)
1292 cp_error ("template specialization with C linkage");
1293 }
1294
1295 if (specialization || member_specialization || explicit_instantiation)
1296 {
1297 tree tmpl = NULL_TREE;
1298 tree targs = NULL_TREE;
1299
1300 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
1301 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
1302 {
1303 tree fns;
1304
1305 my_friendly_assert (TREE_CODE (declarator) == IDENTIFIER_NODE,
1306 0);
1307 if (!ctype)
1308 fns = IDENTIFIER_NAMESPACE_VALUE (dname);
1309 else
1310 fns = dname;
1311
1312 declarator =
1313 lookup_template_function (fns, NULL_TREE);
1314 }
1315
1316 if (declarator == error_mark_node)
1317 return error_mark_node;
1318
1319 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
1320 {
1321 if (!explicit_instantiation)
1322 /* A specialization in class scope. This is illegal,
1323 but the error will already have been flagged by
1324 check_specialization_scope. */
1325 return error_mark_node;
1326 else
1327 {
1328 /* It's not legal to write an explicit instantiation in
1329 class scope, e.g.:
1330
1331 class C { template void f(); }
1332
1333 This case is caught by the parser. However, on
1334 something like:
1335
1336 template class C { void f(); };
1337
1338 (which is illegal) we can get here. The error will be
1339 issued later. */
1340 ;
1341 }
1342
1343 return decl;
1344 }
1345 else if (TREE_CODE (TREE_OPERAND (declarator, 0)) == LOOKUP_EXPR)
1346 {
1347 /* A friend declaration. We can't do much, because we don't
1348 know what this resolves to, yet. */
1349 my_friendly_assert (is_friend != 0, 0);
1350 my_friendly_assert (!explicit_instantiation, 0);
1351 SET_DECL_IMPLICIT_INSTANTIATION (decl);
1352 return decl;
1353 }
1354 else if (ctype != NULL_TREE
1355 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
1356 IDENTIFIER_NODE))
1357 {
1358 /* Find the list of functions in ctype that have the same
1359 name as the declared function. */
1360 tree name = TREE_OPERAND (declarator, 0);
1361 tree fns = NULL_TREE;
1362 int idx;
1363
1364 if (name == constructor_name (ctype)
1365 || name == constructor_name_full (ctype))
1366 {
1367 int is_constructor = DECL_CONSTRUCTOR_P (decl);
1368
1369 if (is_constructor ? !TYPE_HAS_CONSTRUCTOR (ctype)
1370 : !TYPE_HAS_DESTRUCTOR (ctype))
1371 {
1372 /* From [temp.expl.spec]:
1373
1374 If such an explicit specialization for the member
1375 of a class template names an implicitly-declared
1376 special member function (clause _special_), the
1377 program is ill-formed.
1378
1379 Similar language is found in [temp.explicit]. */
1380 cp_error ("specialization of implicitly-declared special member function");
1381 return error_mark_node;
1382 }
1383
1384 name = is_constructor ? ctor_identifier : dtor_identifier;
1385 }
1386
1387 if (!IDENTIFIER_TYPENAME_P (name))
1388 {
1389 idx = lookup_fnfields_1 (ctype, name);
1390 if (idx >= 0)
1391 fns = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (ctype), idx);
1392 }
1393 else
1394 {
1395 tree methods;
1396
1397 /* For a type-conversion operator, we cannot do a
1398 name-based lookup. We might be looking for `operator
1399 int' which will be a specialization of `operator T'.
1400 So, we find *all* the conversion operators, and then
1401 select from them. */
1402 fns = NULL_TREE;
1403
1404 methods = CLASSTYPE_METHOD_VEC (ctype);
1405 if (methods)
1406 for (idx = 2; idx < TREE_VEC_LENGTH (methods); ++idx)
1407 {
1408 tree ovl = TREE_VEC_ELT (methods, idx);
1409
1410 if (!ovl || !DECL_CONV_FN_P (OVL_CURRENT (ovl)))
1411 /* There are no more conversion functions. */
1412 break;
1413
1414 /* Glue all these conversion functions together
1415 with those we already have. */
1416 for (; ovl; ovl = OVL_NEXT (ovl))
1417 fns = ovl_cons (OVL_CURRENT (ovl), fns);
1418 }
1419 }
1420
1421 if (fns == NULL_TREE)
1422 {
1423 cp_error ("no member function `%D' declared in `%T'",
1424 name, ctype);
1425 return error_mark_node;
1426 }
1427 else
1428 TREE_OPERAND (declarator, 0) = fns;
1429 }
1430
1431 /* Figure out what exactly is being specialized at this point.
1432 Note that for an explicit instantiation, even one for a
1433 member function, we cannot tell apriori whether the
1434 instantiation is for a member template, or just a member
1435 function of a template class. Even if a member template is
1436 being instantiated, the member template arguments may be
1437 elided if they can be deduced from the rest of the
1438 declaration. */
1439 tmpl = determine_specialization (declarator, decl,
1440 &targs,
1441 member_specialization);
1442
1443 if (!tmpl || tmpl == error_mark_node)
1444 /* We couldn't figure out what this declaration was
1445 specializing. */
1446 return error_mark_node;
1447 else
1448 {
1449 tree gen_tmpl = most_general_template (tmpl);
1450
1451 if (explicit_instantiation)
1452 {
1453 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
1454 is done by do_decl_instantiation later. */
1455
1456 int arg_depth = TMPL_ARGS_DEPTH (targs);
1457 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
1458
1459 if (arg_depth > parm_depth)
1460 {
1461 /* If TMPL is not the most general template (for
1462 example, if TMPL is a friend template that is
1463 injected into namespace scope), then there will
1464 be too many levels fo TARGS. Remove some of them
1465 here. */
1466 int i;
1467 tree new_targs;
1468
1469 new_targs = make_tree_vec (parm_depth);
1470 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
1471 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
1472 = TREE_VEC_ELT (targs, i);
1473 targs = new_targs;
1474 }
1475
1476 decl = instantiate_template (tmpl, targs);
1477 return decl;
1478 }
1479
1480 /* If we though that the DECL was a member function, but it
1481 turns out to be specializing a static member function,
1482 make DECL a static member function as well. */
1483 if (DECL_STATIC_FUNCTION_P (tmpl)
1484 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1485 {
1486 revert_static_member_fn (&decl, 0, 0);
1487 last_function_parms = TREE_CHAIN (last_function_parms);
1488 }
1489
1490 /* Set up the DECL_TEMPLATE_INFO for DECL. */
1491 DECL_TEMPLATE_INFO (decl) = tree_cons (tmpl, targs, NULL_TREE);
1492
1493 /* Mangle the function name appropriately. Note that we do
1494 not mangle specializations of non-template member
1495 functions of template classes, e.g. with
1496
1497 template <class T> struct S { void f(); }
1498
1499 and given the specialization
1500
1501 template <> void S<int>::f() {}
1502
1503 we do not mangle S<int>::f() here. That's because it's
1504 just an ordinary member function and doesn't need special
1505 treatment. We do this here so that the ordinary,
1506 non-template, name-mangling algorith will not be used
1507 later. */
1508 if ((is_member_template (tmpl) || ctype == NULL_TREE)
1509 && name_mangling_version >= 1)
1510 set_mangled_name_for_template_decl (decl);
1511
1512 if (is_friend && !have_def)
1513 /* This is not really a declaration of a specialization.
1514 It's just the name of an instantiation. But, it's not
1515 a request for an instantiation, either. */
1516 SET_DECL_IMPLICIT_INSTANTIATION (decl);
1517
1518 /* Register this specialization so that we can find it
1519 again. */
1520 decl = register_specialization (decl, gen_tmpl, targs);
1521 }
1522 }
1523
1524 return decl;
1525 }
1526
1527 /* TYPE is being declared. Verify that the use of template headers
1528 and such is reasonable. Issue error messages if not. */
1529
1530 void
1531 maybe_check_template_type (type)
1532 tree type;
1533 {
1534 if (template_header_count)
1535 {
1536 /* We are in the scope of some `template <...>' header. */
1537
1538 int context_depth
1539 = template_class_depth_real (TYPE_CONTEXT (type),
1540 /*count_specializations=*/1);
1541
1542 if (template_header_count <= context_depth)
1543 /* This is OK; the template headers are for the context. We
1544 are actually too lenient here; like
1545 check_explicit_specialization we should consider the number
1546 of template types included in the actual declaration. For
1547 example,
1548
1549 template <class T> struct S {
1550 template <class U> template <class V>
1551 struct I {};
1552 };
1553
1554 is illegal, but:
1555
1556 template <class T> struct S {
1557 template <class U> struct I;
1558 };
1559
1560 template <class T> template <class U.
1561 struct S<T>::I {};
1562
1563 is not. */
1564 ;
1565 else if (template_header_count > context_depth + 1)
1566 /* There are two many template parameter lists. */
1567 cp_error ("too many template parameter lists in declaration of `%T'", type);
1568 }
1569 }
1570
1571 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
1572 parameters. These are represented in the same format used for
1573 DECL_TEMPLATE_PARMS. */
1574
1575 int comp_template_parms (parms1, parms2)
1576 tree parms1;
1577 tree parms2;
1578 {
1579 tree p1;
1580 tree p2;
1581
1582 if (parms1 == parms2)
1583 return 1;
1584
1585 for (p1 = parms1, p2 = parms2;
1586 p1 != NULL_TREE && p2 != NULL_TREE;
1587 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
1588 {
1589 tree t1 = TREE_VALUE (p1);
1590 tree t2 = TREE_VALUE (p2);
1591 int i;
1592
1593 my_friendly_assert (TREE_CODE (t1) == TREE_VEC, 0);
1594 my_friendly_assert (TREE_CODE (t2) == TREE_VEC, 0);
1595
1596 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
1597 return 0;
1598
1599 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
1600 {
1601 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
1602 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
1603
1604 if (TREE_CODE (parm1) != TREE_CODE (parm2))
1605 return 0;
1606
1607 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM)
1608 continue;
1609 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
1610 return 0;
1611 }
1612 }
1613
1614 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
1615 /* One set of parameters has more parameters lists than the
1616 other. */
1617 return 0;
1618
1619 return 1;
1620 }
1621
1622 /* Complain if DECL shadows a template parameter.
1623
1624 [temp.local]: A template-parameter shall not be redeclared within its
1625 scope (including nested scopes). */
1626
1627 void
1628 check_template_shadow (decl)
1629 tree decl;
1630 {
1631 tree olddecl;
1632
1633 /* If we're not in a template, we can't possibly shadow a template
1634 parameter. */
1635 if (!current_template_parms)
1636 return;
1637
1638 /* Figure out what we're shadowing. */
1639 if (TREE_CODE (decl) == OVERLOAD)
1640 decl = OVL_CURRENT (decl);
1641 olddecl = IDENTIFIER_VALUE (DECL_NAME (decl));
1642
1643 /* If there's no previous binding for this name, we're not shadowing
1644 anything, let alone a template parameter. */
1645 if (!olddecl)
1646 return;
1647
1648 /* If we're not shadowing a template parameter, we're done. Note
1649 that OLDDECL might be an OVERLOAD (or perhaps even an
1650 ERROR_MARK), so we can't just blithely assume it to be a _DECL
1651 node. */
1652 if (TREE_CODE_CLASS (TREE_CODE (olddecl)) != 'd'
1653 || !DECL_TEMPLATE_PARM_P (olddecl))
1654 return;
1655
1656 /* We check for decl != olddecl to avoid bogus errors for using a
1657 name inside a class. We check TPFI to avoid duplicate errors for
1658 inline member templates. */
1659 if (decl == olddecl
1660 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
1661 return;
1662
1663 cp_error_at ("declaration of `%#D'", decl);
1664 cp_error_at (" shadows template parm `%#D'", olddecl);
1665 }
1666
1667 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
1668 ORIG_LEVEL, DECL, and TYPE. */
1669
1670 static tree
1671 build_template_parm_index (index, level, orig_level, decl, type)
1672 int index;
1673 int level;
1674 int orig_level;
1675 tree decl;
1676 tree type;
1677 {
1678 tree t = make_node (TEMPLATE_PARM_INDEX);
1679 TEMPLATE_PARM_IDX (t) = index;
1680 TEMPLATE_PARM_LEVEL (t) = level;
1681 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
1682 TEMPLATE_PARM_DECL (t) = decl;
1683 TREE_TYPE (t) = type;
1684
1685 return t;
1686 }
1687
1688 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
1689 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
1690 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
1691 new one is created. */
1692
1693 static tree
1694 reduce_template_parm_level (index, type, levels)
1695 tree index;
1696 tree type;
1697 int levels;
1698 {
1699 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
1700 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
1701 != TEMPLATE_PARM_LEVEL (index) - levels))
1702 {
1703 tree decl
1704 = build_decl (TREE_CODE (TEMPLATE_PARM_DECL (index)),
1705 DECL_NAME (TEMPLATE_PARM_DECL (index)),
1706 type);
1707 tree t
1708 = build_template_parm_index (TEMPLATE_PARM_IDX (index),
1709 TEMPLATE_PARM_LEVEL (index) - levels,
1710 TEMPLATE_PARM_ORIG_LEVEL (index),
1711 decl, type);
1712 TEMPLATE_PARM_DESCENDANTS (index) = t;
1713
1714 /* Template template parameters need this. */
1715 DECL_TEMPLATE_PARMS (decl)
1716 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index));
1717 }
1718
1719 return TEMPLATE_PARM_DESCENDANTS (index);
1720 }
1721
1722 /* Process information from new template parameter NEXT and append it to the
1723 LIST being built. */
1724
1725 tree
1726 process_template_parm (list, next)
1727 tree list, next;
1728 {
1729 tree parm;
1730 tree decl = 0;
1731 tree defval;
1732 int is_type, idx;
1733
1734 parm = next;
1735 my_friendly_assert (TREE_CODE (parm) == TREE_LIST, 259);
1736 defval = TREE_PURPOSE (parm);
1737 parm = TREE_VALUE (parm);
1738 is_type = TREE_PURPOSE (parm) == class_type_node;
1739
1740 if (list)
1741 {
1742 tree p = TREE_VALUE (tree_last (list));
1743
1744 if (TREE_CODE (p) == TYPE_DECL)
1745 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
1746 else if (TREE_CODE (p) == TEMPLATE_DECL)
1747 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (DECL_TEMPLATE_RESULT (p)));
1748 else
1749 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
1750 ++idx;
1751 }
1752 else
1753 idx = 0;
1754
1755 if (!is_type)
1756 {
1757 my_friendly_assert (TREE_CODE (TREE_PURPOSE (parm)) == TREE_LIST, 260);
1758 /* is a const-param */
1759 parm = grokdeclarator (TREE_VALUE (parm), TREE_PURPOSE (parm),
1760 PARM, 0, NULL_TREE);
1761
1762 /* [temp.param]
1763
1764 The top-level cv-qualifiers on the template-parameter are
1765 ignored when determining its type. */
1766 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
1767
1768 /* A template parameter is not modifiable. */
1769 TREE_READONLY (parm) = 1;
1770 if (IS_AGGR_TYPE (TREE_TYPE (parm))
1771 && TREE_CODE (TREE_TYPE (parm)) != TEMPLATE_TYPE_PARM
1772 && TREE_CODE (TREE_TYPE (parm)) != TYPENAME_TYPE)
1773 {
1774 cp_error ("`%#T' is not a valid type for a template constant parameter",
1775 TREE_TYPE (parm));
1776 if (DECL_NAME (parm) == NULL_TREE)
1777 error (" a template type parameter must begin with `class' or `typename'");
1778 TREE_TYPE (parm) = void_type_node;
1779 }
1780 else if (pedantic
1781 && (TREE_CODE (TREE_TYPE (parm)) == REAL_TYPE
1782 || TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE))
1783 cp_pedwarn ("`%T' is not a valid type for a template constant parameter",
1784 TREE_TYPE (parm));
1785 decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
1786 DECL_INITIAL (parm) = DECL_INITIAL (decl)
1787 = build_template_parm_index (idx, processing_template_decl,
1788 processing_template_decl,
1789 decl, TREE_TYPE (parm));
1790 }
1791 else
1792 {
1793 tree t;
1794 parm = TREE_VALUE (parm);
1795
1796 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
1797 {
1798 t = make_aggr_type (TEMPLATE_TEMPLATE_PARM);
1799 /* This is for distinguishing between real templates and template
1800 template parameters */
1801 TREE_TYPE (parm) = t;
1802 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
1803 decl = parm;
1804 }
1805 else
1806 {
1807 t = make_aggr_type (TEMPLATE_TYPE_PARM);
1808 /* parm is either IDENTIFIER_NODE or NULL_TREE */
1809 decl = build_decl (TYPE_DECL, parm, t);
1810 }
1811
1812 TYPE_NAME (t) = decl;
1813 TYPE_STUB_DECL (t) = decl;
1814 parm = decl;
1815 TEMPLATE_TYPE_PARM_INDEX (t)
1816 = build_template_parm_index (idx, processing_template_decl,
1817 processing_template_decl,
1818 decl, TREE_TYPE (parm));
1819 }
1820 SET_DECL_ARTIFICIAL (decl);
1821 SET_DECL_TEMPLATE_PARM_P (decl);
1822 pushdecl (decl);
1823 parm = build_tree_list (defval, parm);
1824 return chainon (list, parm);
1825 }
1826
1827 /* The end of a template parameter list has been reached. Process the
1828 tree list into a parameter vector, converting each parameter into a more
1829 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
1830 as PARM_DECLs. */
1831
1832 tree
1833 end_template_parm_list (parms)
1834 tree parms;
1835 {
1836 int nparms;
1837 tree parm;
1838 tree saved_parmlist = make_tree_vec (list_length (parms));
1839
1840 current_template_parms
1841 = tree_cons (build_int_2 (0, processing_template_decl),
1842 saved_parmlist, current_template_parms);
1843
1844 for (parm = parms, nparms = 0;
1845 parm;
1846 parm = TREE_CHAIN (parm), nparms++)
1847 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
1848
1849 --processing_template_parmlist;
1850
1851 return saved_parmlist;
1852 }
1853
1854 /* end_template_decl is called after a template declaration is seen. */
1855
1856 void
1857 end_template_decl ()
1858 {
1859 reset_specialization ();
1860
1861 if (! processing_template_decl)
1862 return;
1863
1864 /* This matches the pushlevel in begin_template_parm_list. */
1865 poplevel (0, 0, 0);
1866
1867 --processing_template_decl;
1868 current_template_parms = TREE_CHAIN (current_template_parms);
1869 (void) get_pending_sizes (); /* Why? */
1870 }
1871
1872 /* Given a template argument vector containing the template PARMS.
1873 The innermost PARMS are given first. */
1874
1875 tree
1876 current_template_args ()
1877 {
1878 tree header;
1879 tree args = NULL_TREE;
1880 int length = TMPL_PARMS_DEPTH (current_template_parms);
1881 int l = length;
1882
1883 /* If there is only one level of template parameters, we do not
1884 create a TREE_VEC of TREE_VECs. Instead, we return a single
1885 TREE_VEC containing the arguments. */
1886 if (length > 1)
1887 args = make_tree_vec (length);
1888
1889 for (header = current_template_parms; header; header = TREE_CHAIN (header))
1890 {
1891 tree a = copy_node (TREE_VALUE (header));
1892 int i;
1893
1894 TREE_TYPE (a) = NULL_TREE;
1895 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
1896 {
1897 tree t = TREE_VEC_ELT (a, i);
1898
1899 /* T will be a list if we are called from within a
1900 begin/end_template_parm_list pair, but a vector directly
1901 if within a begin/end_member_template_processing pair. */
1902 if (TREE_CODE (t) == TREE_LIST)
1903 {
1904 t = TREE_VALUE (t);
1905
1906 if (TREE_CODE (t) == TYPE_DECL
1907 || TREE_CODE (t) == TEMPLATE_DECL)
1908 t = TREE_TYPE (t);
1909 else
1910 t = DECL_INITIAL (t);
1911 TREE_VEC_ELT (a, i) = t;
1912 }
1913 }
1914
1915 if (length > 1)
1916 TREE_VEC_ELT (args, --l) = a;
1917 else
1918 args = a;
1919 }
1920
1921 return args;
1922 }
1923
1924 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
1925 template PARMS. Used by push_template_decl below. */
1926
1927 static tree
1928 build_template_decl (decl, parms)
1929 tree decl;
1930 tree parms;
1931 {
1932 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
1933 DECL_TEMPLATE_PARMS (tmpl) = parms;
1934 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
1935 if (DECL_LANG_SPECIFIC (decl))
1936 {
1937 DECL_CLASS_CONTEXT (tmpl) = DECL_CLASS_CONTEXT (decl);
1938 DECL_STATIC_FUNCTION_P (tmpl) = DECL_STATIC_FUNCTION_P (decl);
1939 DECL_CONSTRUCTOR_P (tmpl) = DECL_CONSTRUCTOR_P (decl);
1940 DECL_NONCONVERTING_P (tmpl) = DECL_NONCONVERTING_P (decl);
1941 }
1942
1943 return tmpl;
1944 }
1945
1946 struct template_parm_data
1947 {
1948 /* The level of the template parameters we are currently
1949 processing. */
1950 int level;
1951
1952 /* The index of the specialization argument we are currently
1953 processing. */
1954 int current_arg;
1955
1956 /* An array whose size is the number of template parameters. The
1957 elements are non-zero if the parameter has been used in any one
1958 of the arguments processed so far. */
1959 int* parms;
1960
1961 /* An array whose size is the number of template arguments. The
1962 elements are non-zero if the argument makes use of template
1963 parameters of this level. */
1964 int* arg_uses_template_parms;
1965 };
1966
1967 /* Subroutine of push_template_decl used to see if each template
1968 parameter in a partial specialization is used in the explicit
1969 argument list. If T is of the LEVEL given in DATA (which is
1970 treated as a template_parm_data*), then DATA->PARMS is marked
1971 appropriately. */
1972
1973 static int
1974 mark_template_parm (t, data)
1975 tree t;
1976 void* data;
1977 {
1978 int level;
1979 int idx;
1980 struct template_parm_data* tpd = (struct template_parm_data*) data;
1981
1982 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
1983 {
1984 level = TEMPLATE_PARM_LEVEL (t);
1985 idx = TEMPLATE_PARM_IDX (t);
1986 }
1987 else
1988 {
1989 level = TEMPLATE_TYPE_LEVEL (t);
1990 idx = TEMPLATE_TYPE_IDX (t);
1991 }
1992
1993 if (level == tpd->level)
1994 {
1995 tpd->parms[idx] = 1;
1996 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
1997 }
1998
1999 /* Return zero so that for_each_template_parm will continue the
2000 traversal of the tree; we want to mark *every* template parm. */
2001 return 0;
2002 }
2003
2004 /* Process the partial specialization DECL. */
2005
2006 static tree
2007 process_partial_specialization (decl)
2008 tree decl;
2009 {
2010 tree type = TREE_TYPE (decl);
2011 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
2012 tree specargs = CLASSTYPE_TI_ARGS (type);
2013 tree inner_args = innermost_args (specargs);
2014 tree inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
2015 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
2016 int nargs = TREE_VEC_LENGTH (inner_args);
2017 int ntparms = TREE_VEC_LENGTH (inner_parms);
2018 int i;
2019 int did_error_intro = 0;
2020 struct template_parm_data tpd;
2021 struct template_parm_data tpd2;
2022
2023 /* We check that each of the template parameters given in the
2024 partial specialization is used in the argument list to the
2025 specialization. For example:
2026
2027 template <class T> struct S;
2028 template <class T> struct S<T*>;
2029
2030 The second declaration is OK because `T*' uses the template
2031 parameter T, whereas
2032
2033 template <class T> struct S<int>;
2034
2035 is no good. Even trickier is:
2036
2037 template <class T>
2038 struct S1
2039 {
2040 template <class U>
2041 struct S2;
2042 template <class U>
2043 struct S2<T>;
2044 };
2045
2046 The S2<T> declaration is actually illegal; it is a
2047 full-specialization. Of course,
2048
2049 template <class U>
2050 struct S2<T (*)(U)>;
2051
2052 or some such would have been OK. */
2053 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
2054 tpd.parms = alloca (sizeof (int) * ntparms);
2055 bzero ((PTR) tpd.parms, sizeof (int) * ntparms);
2056
2057 tpd.arg_uses_template_parms = alloca (sizeof (int) * nargs);
2058 bzero ((PTR) tpd.arg_uses_template_parms, sizeof (int) * nargs);
2059 for (i = 0; i < nargs; ++i)
2060 {
2061 tpd.current_arg = i;
2062 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
2063 &mark_template_parm,
2064 &tpd);
2065 }
2066 for (i = 0; i < ntparms; ++i)
2067 if (tpd.parms[i] == 0)
2068 {
2069 /* One of the template parms was not used in the
2070 specialization. */
2071 if (!did_error_intro)
2072 {
2073 cp_error ("template parameters not used in partial specialization:");
2074 did_error_intro = 1;
2075 }
2076
2077 cp_error (" `%D'",
2078 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
2079 }
2080
2081 /* [temp.class.spec]
2082
2083 The argument list of the specialization shall not be identical to
2084 the implicit argument list of the primary template. */
2085 if (comp_template_args (inner_args,
2086 innermost_args (CLASSTYPE_TI_ARGS (TREE_TYPE
2087 (maintmpl)))))
2088 cp_error ("partial specialization `%T' does not specialize any template arguments", type);
2089
2090 /* [temp.class.spec]
2091
2092 A partially specialized non-type argument expression shall not
2093 involve template parameters of the partial specialization except
2094 when the argument expression is a simple identifier.
2095
2096 The type of a template parameter corresponding to a specialized
2097 non-type argument shall not be dependent on a parameter of the
2098 specialization. */
2099 my_friendly_assert (nargs == DECL_NTPARMS (maintmpl), 0);
2100 tpd2.parms = 0;
2101 for (i = 0; i < nargs; ++i)
2102 {
2103 tree arg = TREE_VEC_ELT (inner_args, i);
2104 if (/* These first two lines are the `non-type' bit. */
2105 TREE_CODE_CLASS (TREE_CODE (arg)) != 't'
2106 && TREE_CODE (arg) != TEMPLATE_DECL
2107 /* This next line is the `argument expression is not just a
2108 simple identifier' condition and also the `specialized
2109 non-type argument' bit. */
2110 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
2111 {
2112 if (tpd.arg_uses_template_parms[i])
2113 cp_error ("template argument `%E' involves template parameter(s)", arg);
2114 else
2115 {
2116 /* Look at the corresponding template parameter,
2117 marking which template parameters its type depends
2118 upon. */
2119 tree type =
2120 TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (main_inner_parms,
2121 i)));
2122
2123 if (!tpd2.parms)
2124 {
2125 /* We haven't yet initialized TPD2. Do so now. */
2126 tpd2.arg_uses_template_parms
2127 = (int*) alloca (sizeof (int) * nargs);
2128 /* The number of parameters here is the number in the
2129 main template, which, as checked in the assertion
2130 above, is NARGS. */
2131 tpd2.parms = (int*) alloca (sizeof (int) * nargs);
2132 tpd2.level =
2133 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
2134 }
2135
2136 /* Mark the template parameters. But this time, we're
2137 looking for the template parameters of the main
2138 template, not in the specialization. */
2139 tpd2.current_arg = i;
2140 tpd2.arg_uses_template_parms[i] = 0;
2141 bzero ((PTR) tpd2.parms, sizeof (int) * nargs);
2142 for_each_template_parm (type,
2143 &mark_template_parm,
2144 &tpd2);
2145
2146 if (tpd2.arg_uses_template_parms [i])
2147 {
2148 /* The type depended on some template parameters.
2149 If they are fully specialized in the
2150 specialization, that's OK. */
2151 int j;
2152 for (j = 0; j < nargs; ++j)
2153 if (tpd2.parms[j] != 0
2154 && tpd.arg_uses_template_parms [j])
2155 {
2156 cp_error ("type `%T' of template argument `%E' depends on template parameter(s)",
2157 type,
2158 arg);
2159 break;
2160 }
2161 }
2162 }
2163 }
2164 }
2165
2166 if (retrieve_specialization (maintmpl, specargs))
2167 /* We've already got this specialization. */
2168 return decl;
2169
2170 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl) = CLASSTYPE_TI_SPEC_INFO (type)
2171 = tree_cons (inner_args, inner_parms,
2172 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
2173 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
2174 return decl;
2175 }
2176
2177 /* Check that a template declaration's use of default arguments is not
2178 invalid. Here, PARMS are the template parameters. IS_PRIMARY is
2179 non-zero if DECL is the thing declared by a primary template.
2180 IS_PARTIAL is non-zero if DECL is a partial specialization. */
2181
2182 static void
2183 check_default_tmpl_args (decl, parms, is_primary, is_partial)
2184 tree decl;
2185 tree parms;
2186 int is_primary;
2187 int is_partial;
2188 {
2189 const char *msg;
2190 int last_level_to_check;
2191 tree parm_level;
2192
2193 /* [temp.param]
2194
2195 A default template-argument shall not be specified in a
2196 function template declaration or a function template definition, nor
2197 in the template-parameter-list of the definition of a member of a
2198 class template. */
2199
2200 if (TREE_CODE (DECL_REAL_CONTEXT (decl)) == FUNCTION_DECL)
2201 /* You can't have a function template declaration in a local
2202 scope, nor you can you define a member of a class template in a
2203 local scope. */
2204 return;
2205
2206 if (current_class_type
2207 && !TYPE_BEING_DEFINED (current_class_type)
2208 && DECL_LANG_SPECIFIC (decl)
2209 /* If this is either a friend defined in the scope of the class
2210 or a member function. */
2211 && DECL_CLASS_CONTEXT (decl) == current_class_type
2212 /* And, if it was a member function, it really was defined in
2213 the scope of the class. */
2214 && (!DECL_FUNCTION_MEMBER_P (decl) || DECL_DEFINED_IN_CLASS_P (decl)))
2215 /* We already checked these parameters when the template was
2216 declared, so there's no need to do it again now. This function
2217 was defined in class scope, but we're processing it's body now
2218 that the class is complete. */
2219 return;
2220
2221 /* [temp.param]
2222
2223 If a template-parameter has a default template-argument, all
2224 subsequent template-parameters shall have a default
2225 template-argument supplied. */
2226 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
2227 {
2228 tree inner_parms = TREE_VALUE (parm_level);
2229 int ntparms = TREE_VEC_LENGTH (inner_parms);
2230 int seen_def_arg_p = 0;
2231 int i;
2232
2233 for (i = 0; i < ntparms; ++i)
2234 {
2235 tree parm = TREE_VEC_ELT (inner_parms, i);
2236 if (TREE_PURPOSE (parm))
2237 seen_def_arg_p = 1;
2238 else if (seen_def_arg_p)
2239 {
2240 cp_error ("no default argument for `%D'", TREE_VALUE (parm));
2241 /* For better subsequent error-recovery, we indicate that
2242 there should have been a default argument. */
2243 TREE_PURPOSE (parm) = error_mark_node;
2244 }
2245 }
2246 }
2247
2248 if (TREE_CODE (decl) != TYPE_DECL || is_partial || !is_primary)
2249 /* For an ordinary class template, default template arguments are
2250 allowed at the innermost level, e.g.:
2251 template <class T = int>
2252 struct S {};
2253 but, in a partial specialization, they're not allowed even
2254 there, as we have in [temp.class.spec]:
2255
2256 The template parameter list of a specialization shall not
2257 contain default template argument values.
2258
2259 So, for a partial specialization, or for a function template,
2260 we look at all of them. */
2261 ;
2262 else
2263 /* But, for a primary class template that is not a partial
2264 specialization we look at all template parameters except the
2265 innermost ones. */
2266 parms = TREE_CHAIN (parms);
2267
2268 /* Figure out what error message to issue. */
2269 if (TREE_CODE (decl) == FUNCTION_DECL)
2270 msg = "default argument for template parameter in function template `%D'";
2271 else if (is_partial)
2272 msg = "default argument in partial specialization `%D'";
2273 else
2274 msg = "default argument for template parameter for class enclosing `%D'";
2275
2276 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
2277 /* If we're inside a class definition, there's no need to
2278 examine the parameters to the class itself. On the one
2279 hand, they will be checked when the class is defined, and,
2280 on the other, default arguments are legal in things like:
2281 template <class T = double>
2282 struct S { template <class U> void f(U); };
2283 Here the default argument for `S' has no bearing on the
2284 declaration of `f'. */
2285 last_level_to_check = template_class_depth (current_class_type) + 1;
2286 else
2287 /* Check everything. */
2288 last_level_to_check = 0;
2289
2290 for (parm_level = parms;
2291 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
2292 parm_level = TREE_CHAIN (parm_level))
2293 {
2294 tree inner_parms = TREE_VALUE (parm_level);
2295 int i;
2296 int ntparms;
2297
2298 ntparms = TREE_VEC_LENGTH (inner_parms);
2299 for (i = 0; i < ntparms; ++i)
2300 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
2301 {
2302 if (msg)
2303 {
2304 cp_error (msg, decl);
2305 msg = 0;
2306 }
2307
2308 /* Clear out the default argument so that we are not
2309 confused later. */
2310 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
2311 }
2312
2313 /* At this point, if we're still interested in issuing messages,
2314 they must apply to classes surrounding the object declared. */
2315 if (msg)
2316 msg = "default argument for template parameter for class enclosing `%D'";
2317 }
2318 }
2319
2320 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
2321 parameters given by current_template_args, or reuses a
2322 previously existing one, if appropriate. Returns the DECL, or an
2323 equivalent one, if it is replaced via a call to duplicate_decls.
2324
2325 If IS_FRIEND is non-zero, DECL is a friend declaration. */
2326
2327 tree
2328 push_template_decl_real (decl, is_friend)
2329 tree decl;
2330 int is_friend;
2331 {
2332 tree tmpl;
2333 tree args;
2334 tree info;
2335 tree ctx;
2336 int primary;
2337 int is_partial;
2338 int new_template_p = 0;
2339
2340 /* See if this is a partial specialization. */
2341 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
2342 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
2343 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
2344
2345 is_friend |= (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl));
2346
2347 if (is_friend)
2348 /* For a friend, we want the context of the friend function, not
2349 the type of which it is a friend. */
2350 ctx = DECL_CONTEXT (decl);
2351 else if (DECL_REAL_CONTEXT (decl)
2352 && TREE_CODE (DECL_REAL_CONTEXT (decl)) != NAMESPACE_DECL)
2353 /* In the case of a virtual function, we want the class in which
2354 it is defined. */
2355 ctx = DECL_REAL_CONTEXT (decl);
2356 else
2357 /* Otherwise, if we're currently definining some class, the DECL
2358 is assumed to be a member of the class. */
2359 ctx = current_scope ();
2360
2361 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
2362 ctx = NULL_TREE;
2363
2364 if (!DECL_CONTEXT (decl))
2365 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
2366
2367 /* See if this is a primary template. */
2368 primary = pseudo_global_level_p ();
2369
2370 if (primary)
2371 {
2372 if (current_lang_name == lang_name_c)
2373 cp_error ("template with C linkage");
2374 else if (TREE_CODE (decl) == TYPE_DECL
2375 && ANON_AGGRNAME_P (DECL_NAME (decl)))
2376 cp_error ("template class without a name");
2377 else if ((DECL_IMPLICIT_TYPEDEF_P (decl)
2378 && CLASS_TYPE_P (TREE_TYPE (decl)))
2379 || (TREE_CODE (decl) == VAR_DECL && ctx && CLASS_TYPE_P (ctx))
2380 || TREE_CODE (decl) == FUNCTION_DECL)
2381 /* OK */;
2382 else
2383 cp_error ("template declaration of `%#D'", decl);
2384 }
2385
2386 /* Check to see that the rules regarding the use of default
2387 arguments are not being violated. */
2388 check_default_tmpl_args (decl, current_template_parms,
2389 primary, is_partial);
2390
2391 if (is_partial)
2392 return process_partial_specialization (decl);
2393
2394 args = current_template_args ();
2395
2396 if (!ctx
2397 || TREE_CODE (ctx) == FUNCTION_DECL
2398 || TYPE_BEING_DEFINED (ctx)
2399 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
2400 {
2401 if (DECL_LANG_SPECIFIC (decl)
2402 && DECL_TEMPLATE_INFO (decl)
2403 && DECL_TI_TEMPLATE (decl))
2404 tmpl = DECL_TI_TEMPLATE (decl);
2405 /* If DECL is a TYPE_DECL for a class-template, then there won't
2406 be DECL_LANG_SPECIFIC. The information equivalent to
2407 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
2408 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
2409 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2410 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2411 {
2412 /* Since a template declaration already existed for this
2413 class-type, we must be redeclaring it here. Make sure
2414 that the redeclaration is legal. */
2415 redeclare_class_template (TREE_TYPE (decl),
2416 current_template_parms);
2417 /* We don't need to create a new TEMPLATE_DECL; just use the
2418 one we already had. */
2419 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
2420 }
2421 else
2422 {
2423 tmpl = build_template_decl (decl, current_template_parms);
2424 new_template_p = 1;
2425
2426 if (DECL_LANG_SPECIFIC (decl)
2427 && DECL_TEMPLATE_SPECIALIZATION (decl))
2428 {
2429 /* A specialization of a member template of a template
2430 class. */
2431 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2432 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
2433 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
2434 }
2435 }
2436 }
2437 else
2438 {
2439 tree a, t, current, parms;
2440 int i;
2441
2442 if (CLASSTYPE_TEMPLATE_INSTANTIATION (ctx))
2443 cp_error ("must specialize `%#T' before defining member `%#D'",
2444 ctx, decl);
2445 if (TREE_CODE (decl) == TYPE_DECL)
2446 {
2447 if ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (decl)))
2448 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
2449 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2450 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2451 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
2452 else
2453 {
2454 cp_error ("`%D' does not declare a template type", decl);
2455 return decl;
2456 }
2457 }
2458 else if (! DECL_TEMPLATE_INFO (decl))
2459 {
2460 cp_error ("template definition of non-template `%#D'", decl);
2461 return decl;
2462 }
2463 else
2464 tmpl = DECL_TI_TEMPLATE (decl);
2465
2466 if (is_member_template (tmpl)
2467 && DECL_FUNCTION_TEMPLATE_P (tmpl)
2468 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
2469 && DECL_TEMPLATE_SPECIALIZATION (decl))
2470 {
2471 tree new_tmpl;
2472
2473 /* The declaration is a specialization of a member
2474 template, declared outside the class. Therefore, the
2475 innermost template arguments will be NULL, so we
2476 replace them with the arguments determined by the
2477 earlier call to check_explicit_specialization. */
2478 args = DECL_TI_ARGS (decl);
2479
2480 new_tmpl
2481 = build_template_decl (decl, current_template_parms);
2482 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
2483 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
2484 DECL_TI_TEMPLATE (decl) = new_tmpl;
2485 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
2486 DECL_TEMPLATE_INFO (new_tmpl)
2487 = tree_cons (tmpl, args, NULL_TREE);
2488
2489 register_specialization (new_tmpl, tmpl, args);
2490 return decl;
2491 }
2492
2493 /* Make sure the template headers we got make sense. */
2494
2495 parms = DECL_TEMPLATE_PARMS (tmpl);
2496 i = TMPL_PARMS_DEPTH (parms);
2497 if (TMPL_ARGS_DEPTH (args) != i)
2498 {
2499 cp_error ("expected %d levels of template parms for `%#D', got %d",
2500 i, decl, TMPL_ARGS_DEPTH (args));
2501 }
2502 else
2503 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
2504 {
2505 a = TMPL_ARGS_LEVEL (args, i);
2506 t = INNERMOST_TEMPLATE_PARMS (parms);
2507
2508 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
2509 {
2510 if (current == decl)
2511 cp_error ("got %d template parameters for `%#D'",
2512 TREE_VEC_LENGTH (a), decl);
2513 else
2514 cp_error ("got %d template parameters for `%#T'",
2515 TREE_VEC_LENGTH (a), current);
2516 cp_error (" but %d required", TREE_VEC_LENGTH (t));
2517 }
2518
2519 /* Perhaps we should also check that the parms are used in the
2520 appropriate qualifying scopes in the declarator? */
2521
2522 if (current == decl)
2523 current = ctx;
2524 else
2525 current = TYPE_CONTEXT (current);
2526 }
2527 }
2528
2529 DECL_TEMPLATE_RESULT (tmpl) = decl;
2530 TREE_TYPE (tmpl) = TREE_TYPE (decl);
2531
2532 /* Push template declarations for global functions and types. Note
2533 that we do not try to push a global template friend declared in a
2534 template class; such a thing may well depend on the template
2535 parameters of the class. */
2536 if (new_template_p && !ctx
2537 && !(is_friend && template_class_depth (current_class_type) > 0))
2538 tmpl = pushdecl_namespace_level (tmpl);
2539
2540 if (primary)
2541 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
2542
2543 info = tree_cons (tmpl, args, NULL_TREE);
2544
2545 if (DECL_IMPLICIT_TYPEDEF_P (decl))
2546 {
2547 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
2548 if ((!ctx || TREE_CODE (ctx) != FUNCTION_DECL)
2549 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE)
2550 DECL_NAME (decl) = classtype_mangled_name (TREE_TYPE (decl));
2551 }
2552 else if (DECL_LANG_SPECIFIC (decl))
2553 DECL_TEMPLATE_INFO (decl) = info;
2554
2555 return DECL_TEMPLATE_RESULT (tmpl);
2556 }
2557
2558 tree
2559 push_template_decl (decl)
2560 tree decl;
2561 {
2562 return push_template_decl_real (decl, 0);
2563 }
2564
2565 /* Called when a class template TYPE is redeclared with the indicated
2566 template PARMS, e.g.:
2567
2568 template <class T> struct S;
2569 template <class T> struct S {}; */
2570
2571 void
2572 redeclare_class_template (type, parms)
2573 tree type;
2574 tree parms;
2575 {
2576 tree tmpl;
2577 tree tmpl_parms;
2578 int i;
2579
2580 if (!TYPE_TEMPLATE_INFO (type))
2581 {
2582 cp_error ("`%T' is not a template type", type);
2583 return;
2584 }
2585
2586 tmpl = TYPE_TI_TEMPLATE (type);
2587 if (!PRIMARY_TEMPLATE_P (tmpl))
2588 /* The type is nested in some template class. Nothing to worry
2589 about here; there are no new template parameters for the nested
2590 type. */
2591 return;
2592
2593 parms = INNERMOST_TEMPLATE_PARMS (parms);
2594 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
2595
2596 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
2597 {
2598 cp_error_at ("previous declaration `%D'", tmpl);
2599 cp_error ("used %d template parameter%s instead of %d",
2600 TREE_VEC_LENGTH (tmpl_parms),
2601 TREE_VEC_LENGTH (tmpl_parms) == 1 ? "" : "s",
2602 TREE_VEC_LENGTH (parms));
2603 return;
2604 }
2605
2606 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
2607 {
2608 tree tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
2609 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
2610 tree tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
2611 tree parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
2612
2613 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm))
2614 {
2615 cp_error_at ("template parameter `%#D'", tmpl_parm);
2616 cp_error ("redeclared here as `%#D'", parm);
2617 return;
2618 }
2619
2620 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
2621 {
2622 /* We have in [temp.param]:
2623
2624 A template-parameter may not be given default arguments
2625 by two different declarations in the same scope. */
2626 cp_error ("redefinition of default argument for `%#D'", parm);
2627 cp_error_at (" original definition appeared here", tmpl_parm);
2628 return;
2629 }
2630
2631 if (parm_default != NULL_TREE)
2632 /* Update the previous template parameters (which are the ones
2633 that will really count) with the new default value. */
2634 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
2635 else if (tmpl_default != NULL_TREE)
2636 /* Update the new parameters, too; they'll be used as the
2637 parameters for any members. */
2638 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
2639 }
2640 }
2641
2642 /* Attempt to convert the non-type template parameter EXPR to the
2643 indicated TYPE. If the conversion is successful, return the
2644 converted value. If the conversion is unsuccesful, return
2645 NULL_TREE if we issued an error message, or error_mark_node if we
2646 did not. We issue error messages for out-and-out bad template
2647 parameters, but not simply because the conversion failed, since we
2648 might be just trying to do argument deduction. By the time this
2649 function is called, neither TYPE nor EXPR may make use of template
2650 parameters. */
2651
2652 static tree
2653 convert_nontype_argument (type, expr)
2654 tree type;
2655 tree expr;
2656 {
2657 tree expr_type = TREE_TYPE (expr);
2658
2659 /* A template-argument for a non-type, non-template
2660 template-parameter shall be one of:
2661
2662 --an integral constant-expression of integral or enumeration
2663 type; or
2664
2665 --the name of a non-type template-parameter; or
2666
2667 --the name of an object or function with external linkage,
2668 including function templates and function template-ids but
2669 excluding non-static class members, expressed as id-expression;
2670 or
2671
2672 --the address of an object or function with external linkage,
2673 including function templates and function template-ids but
2674 excluding non-static class members, expressed as & id-expression
2675 where the & is optional if the name refers to a function or
2676 array; or
2677
2678 --a pointer to member expressed as described in _expr.unary.op_. */
2679
2680 /* An integral constant-expression can include const variables or
2681 enumerators. Simplify things by folding them to their values,
2682 unless we're about to bind the declaration to a reference
2683 parameter. */
2684 if (INTEGRAL_TYPE_P (expr_type) && TREE_READONLY_DECL_P (expr)
2685 && TREE_CODE (type) != REFERENCE_TYPE)
2686 expr = decl_constant_value (expr);
2687
2688 if (is_overloaded_fn (expr))
2689 /* OK for now. We'll check that it has external linkage later.
2690 Check this first since if expr_type is the unknown_type_node
2691 we would otherwise complain below. */
2692 ;
2693 else if (TYPE_PTRMEM_P (expr_type)
2694 || TYPE_PTRMEMFUNC_P (expr_type))
2695 {
2696 if (TREE_CODE (expr) != PTRMEM_CST)
2697 goto bad_argument;
2698 }
2699 else if (TYPE_PTR_P (expr_type)
2700 || TYPE_PTRMEM_P (expr_type)
2701 || TREE_CODE (expr_type) == ARRAY_TYPE
2702 || TREE_CODE (type) == REFERENCE_TYPE
2703 /* If expr is the address of an overloaded function, we
2704 will get the unknown_type_node at this point. */
2705 || expr_type == unknown_type_node)
2706 {
2707 tree referent;
2708 tree e = expr;
2709 STRIP_NOPS (e);
2710
2711 if (TREE_CODE (type) == REFERENCE_TYPE
2712 || TREE_CODE (expr_type) == ARRAY_TYPE)
2713 referent = e;
2714 else
2715 {
2716 if (TREE_CODE (e) != ADDR_EXPR)
2717 {
2718 bad_argument:
2719 cp_error ("`%E' is not a valid template argument", expr);
2720 if (TYPE_PTR_P (expr_type))
2721 {
2722 if (TREE_CODE (TREE_TYPE (expr_type)) == FUNCTION_TYPE)
2723 cp_error ("it must be the address of a function with external linkage");
2724 else
2725 cp_error ("it must be the address of an object with external linkage");
2726 }
2727 else if (TYPE_PTRMEM_P (expr_type)
2728 || TYPE_PTRMEMFUNC_P (expr_type))
2729 cp_error ("it must be a pointer-to-member of the form `&X::Y'");
2730
2731 return NULL_TREE;
2732 }
2733
2734 referent = TREE_OPERAND (e, 0);
2735 STRIP_NOPS (referent);
2736 }
2737
2738 if (TREE_CODE (referent) == STRING_CST)
2739 {
2740 cp_error ("string literal %E is not a valid template argument",
2741 referent);
2742 error ("because it is the address of an object with static linkage");
2743 return NULL_TREE;
2744 }
2745
2746 if (is_overloaded_fn (referent))
2747 /* We'll check that it has external linkage later. */
2748 ;
2749 else if (TREE_CODE (referent) != VAR_DECL)
2750 goto bad_argument;
2751 else if (!TREE_PUBLIC (referent))
2752 {
2753 cp_error ("address of non-extern `%E' cannot be used as template argument", referent);
2754 return error_mark_node;
2755 }
2756 }
2757 else if (INTEGRAL_TYPE_P (expr_type)
2758 || TYPE_PTRMEM_P (expr_type)
2759 || TYPE_PTRMEMFUNC_P (expr_type)
2760 /* The next two are g++ extensions. */
2761 || TREE_CODE (expr_type) == REAL_TYPE
2762 || TREE_CODE (expr_type) == COMPLEX_TYPE)
2763 {
2764 if (! TREE_CONSTANT (expr))
2765 {
2766 non_constant:
2767 cp_error ("non-constant `%E' cannot be used as template argument",
2768 expr);
2769 return NULL_TREE;
2770 }
2771 }
2772 else
2773 {
2774 cp_error ("object `%E' cannot be used as template argument", expr);
2775 return NULL_TREE;
2776 }
2777
2778 switch (TREE_CODE (type))
2779 {
2780 case INTEGER_TYPE:
2781 case BOOLEAN_TYPE:
2782 case ENUMERAL_TYPE:
2783 /* For a non-type template-parameter of integral or enumeration
2784 type, integral promotions (_conv.prom_) and integral
2785 conversions (_conv.integral_) are applied. */
2786 if (!INTEGRAL_TYPE_P (expr_type))
2787 return error_mark_node;
2788
2789 /* It's safe to call digest_init in this case; we know we're
2790 just converting one integral constant expression to another. */
2791 expr = digest_init (type, expr, (tree*) 0);
2792
2793 if (TREE_CODE (expr) != INTEGER_CST)
2794 /* Curiously, some TREE_CONSTANT integral expressions do not
2795 simplify to integer constants. For example, `3 % 0',
2796 remains a TRUNC_MOD_EXPR. */
2797 goto non_constant;
2798
2799 return expr;
2800
2801 case REAL_TYPE:
2802 case COMPLEX_TYPE:
2803 /* These are g++ extensions. */
2804 if (TREE_CODE (expr_type) != TREE_CODE (type))
2805 return error_mark_node;
2806
2807 expr = digest_init (type, expr, (tree*) 0);
2808
2809 if (TREE_CODE (expr) != REAL_CST)
2810 goto non_constant;
2811
2812 return expr;
2813
2814 case POINTER_TYPE:
2815 {
2816 tree type_pointed_to = TREE_TYPE (type);
2817
2818 if (TYPE_PTRMEM_P (type))
2819 {
2820 tree e;
2821
2822 /* For a non-type template-parameter of type pointer to data
2823 member, qualification conversions (_conv.qual_) are
2824 applied. */
2825 e = perform_qualification_conversions (type, expr);
2826 if (TREE_CODE (e) == NOP_EXPR)
2827 /* The call to perform_qualification_conversions will
2828 insert a NOP_EXPR over EXPR to do express conversion,
2829 if necessary. But, that will confuse us if we use
2830 this (converted) template parameter to instantiate
2831 another template; then the thing will not look like a
2832 valid template argument. So, just make a new
2833 constant, of the appropriate type. */
2834 e = make_ptrmem_cst (type, PTRMEM_CST_MEMBER (expr));
2835 return e;
2836 }
2837 else if (TREE_CODE (type_pointed_to) == FUNCTION_TYPE)
2838 {
2839 /* For a non-type template-parameter of type pointer to
2840 function, only the function-to-pointer conversion
2841 (_conv.func_) is applied. If the template-argument
2842 represents a set of overloaded functions (or a pointer to
2843 such), the matching function is selected from the set
2844 (_over.over_). */
2845 tree fns;
2846 tree fn;
2847
2848 if (TREE_CODE (expr) == ADDR_EXPR)
2849 fns = TREE_OPERAND (expr, 0);
2850 else
2851 fns = expr;
2852
2853 fn = instantiate_type (type_pointed_to, fns, 0);
2854
2855 if (fn == error_mark_node)
2856 return error_mark_node;
2857
2858 if (!TREE_PUBLIC (fn))
2859 {
2860 if (really_overloaded_fn (fns))
2861 return error_mark_node;
2862 else
2863 goto bad_argument;
2864 }
2865
2866 expr = build_unary_op (ADDR_EXPR, fn, 0);
2867
2868 my_friendly_assert (same_type_p (type, TREE_TYPE (expr)),
2869 0);
2870 return expr;
2871 }
2872 else
2873 {
2874 /* For a non-type template-parameter of type pointer to
2875 object, qualification conversions (_conv.qual_) and the
2876 array-to-pointer conversion (_conv.array_) are applied.
2877 [Note: In particular, neither the null pointer conversion
2878 (_conv.ptr_) nor the derived-to-base conversion
2879 (_conv.ptr_) are applied. Although 0 is a valid
2880 template-argument for a non-type template-parameter of
2881 integral type, it is not a valid template-argument for a
2882 non-type template-parameter of pointer type.]
2883
2884 The call to decay_conversion performs the
2885 array-to-pointer conversion, if appropriate. */
2886 expr = decay_conversion (expr);
2887
2888 if (expr == error_mark_node)
2889 return error_mark_node;
2890 else
2891 return perform_qualification_conversions (type, expr);
2892 }
2893 }
2894 break;
2895
2896 case REFERENCE_TYPE:
2897 {
2898 tree type_referred_to = TREE_TYPE (type);
2899
2900 if (TREE_CODE (type_referred_to) == FUNCTION_TYPE)
2901 {
2902 /* For a non-type template-parameter of type reference to
2903 function, no conversions apply. If the
2904 template-argument represents a set of overloaded
2905 functions, the matching function is selected from the
2906 set (_over.over_). */
2907 tree fns = expr;
2908 tree fn;
2909
2910 fn = instantiate_type (type_referred_to, fns, 0);
2911
2912 if (fn == error_mark_node)
2913 return error_mark_node;
2914
2915 if (!TREE_PUBLIC (fn))
2916 {
2917 if (really_overloaded_fn (fns))
2918 /* Don't issue an error here; we might get a different
2919 function if the overloading had worked out
2920 differently. */
2921 return error_mark_node;
2922 else
2923 goto bad_argument;
2924 }
2925
2926 my_friendly_assert (same_type_p (type_referred_to,
2927 TREE_TYPE (fn)),
2928 0);
2929
2930 return fn;
2931 }
2932 else
2933 {
2934 /* For a non-type template-parameter of type reference to
2935 object, no conversions apply. The type referred to by the
2936 reference may be more cv-qualified than the (otherwise
2937 identical) type of the template-argument. The
2938 template-parameter is bound directly to the
2939 template-argument, which must be an lvalue. */
2940 if ((TYPE_MAIN_VARIANT (expr_type)
2941 != TYPE_MAIN_VARIANT (type_referred_to))
2942 || !at_least_as_qualified_p (type_referred_to,
2943 expr_type)
2944 || !real_lvalue_p (expr))
2945 return error_mark_node;
2946 else
2947 return expr;
2948 }
2949 }
2950 break;
2951
2952 case RECORD_TYPE:
2953 {
2954 if (!TYPE_PTRMEMFUNC_P (type))
2955 /* This handles templates like
2956 template<class T, T t> void f();
2957 when T is substituted with any class. The second template
2958 parameter becomes invalid and the template candidate is
2959 rejected. */
2960 return error_mark_node;
2961
2962 /* For a non-type template-parameter of type pointer to member
2963 function, no conversions apply. If the template-argument
2964 represents a set of overloaded member functions, the
2965 matching member function is selected from the set
2966 (_over.over_). */
2967
2968 if (!TYPE_PTRMEMFUNC_P (expr_type) &&
2969 expr_type != unknown_type_node)
2970 return error_mark_node;
2971
2972 if (TREE_CODE (expr) == PTRMEM_CST)
2973 {
2974 /* A ptr-to-member constant. */
2975 if (!same_type_p (type, expr_type))
2976 return error_mark_node;
2977 else
2978 return expr;
2979 }
2980
2981 if (TREE_CODE (expr) != ADDR_EXPR)
2982 return error_mark_node;
2983
2984 expr = instantiate_type (type, expr, 0);
2985
2986 if (expr == error_mark_node)
2987 return error_mark_node;
2988
2989 my_friendly_assert (same_type_p (type, TREE_TYPE (expr)),
2990 0);
2991 return expr;
2992 }
2993 break;
2994
2995 default:
2996 /* All non-type parameters must have one of these types. */
2997 my_friendly_abort (0);
2998 break;
2999 }
3000
3001 return error_mark_node;
3002 }
3003
3004 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
3005 template template parameters. Both PARM_PARMS and ARG_PARMS are
3006 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
3007 or PARM_DECL.
3008
3009 ARG_PARMS may contain more parameters than PARM_PARMS. If this is
3010 the case, then extra parameters must have default arguments.
3011
3012 Consider the example:
3013 template <class T, class Allocator = allocator> class vector;
3014 template<template <class U> class TT> class C;
3015
3016 C<vector> is a valid instantiation. PARM_PARMS for the above code
3017 contains a TYPE_DECL (for U), ARG_PARMS contains two TYPE_DECLs (for
3018 T and Allocator) and OUTER_ARGS contains the argument that is used to
3019 substitute the TT parameter. */
3020
3021 static int
3022 coerce_template_template_parms (parm_parms, arg_parms, complain,
3023 in_decl, outer_args)
3024 tree parm_parms, arg_parms;
3025 int complain;
3026 tree in_decl, outer_args;
3027 {
3028 int nparms, nargs, i;
3029 tree parm, arg;
3030
3031 my_friendly_assert (TREE_CODE (parm_parms) == TREE_VEC, 0);
3032 my_friendly_assert (TREE_CODE (arg_parms) == TREE_VEC, 0);
3033
3034 nparms = TREE_VEC_LENGTH (parm_parms);
3035 nargs = TREE_VEC_LENGTH (arg_parms);
3036
3037 /* The rule here is opposite of coerce_template_parms. */
3038 if (nargs < nparms
3039 || (nargs > nparms
3040 && TREE_PURPOSE (TREE_VEC_ELT (arg_parms, nparms)) == NULL_TREE))
3041 return 0;
3042
3043 for (i = 0; i < nparms; ++i)
3044 {
3045 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
3046 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
3047
3048 if (arg == NULL_TREE || arg == error_mark_node
3049 || parm == NULL_TREE || parm == error_mark_node)
3050 return 0;
3051
3052 if (TREE_CODE (arg) != TREE_CODE (parm))
3053 return 0;
3054
3055 switch (TREE_CODE (parm))
3056 {
3057 case TYPE_DECL:
3058 break;
3059
3060 case TEMPLATE_DECL:
3061 /* We encounter instantiations of templates like
3062 template <template <template <class> class> class TT>
3063 class C; */
3064 {
3065 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3066 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3067
3068 if (!coerce_template_template_parms (parmparm, argparm,
3069 complain, in_decl,
3070 outer_args))
3071 return 0;
3072 }
3073 break;
3074
3075 case PARM_DECL:
3076 /* The tsubst call is used to handle cases such as
3077 template <class T, template <T> class TT> class D;
3078 i.e. the parameter list of TT depends on earlier parameters. */
3079 if (!same_type_p (tsubst (TREE_TYPE (parm), outer_args,
3080 complain, in_decl),
3081 TREE_TYPE (arg)))
3082 return 0;
3083 break;
3084
3085 default:
3086 my_friendly_abort (0);
3087 }
3088 }
3089 return 1;
3090 }
3091
3092 /* Convert the indicated template ARG as necessary to match the
3093 indicated template PARM. Returns the converted ARG, or
3094 error_mark_node if the conversion was unsuccessful. Error messages
3095 are issued if COMPLAIN is non-zero. This conversion is for the Ith
3096 parameter in the parameter list. ARGS is the full set of template
3097 arguments deduced so far. */
3098
3099 static tree
3100 convert_template_argument (parm, arg, args, complain, i, in_decl)
3101 tree parm;
3102 tree arg;
3103 tree args;
3104 int complain;
3105 int i;
3106 tree in_decl;
3107 {
3108 tree val;
3109 tree inner_args;
3110 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
3111
3112 inner_args = innermost_args (args);
3113
3114 if (TREE_CODE (arg) == TREE_LIST
3115 && TREE_TYPE (arg) != NULL_TREE
3116 && TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE)
3117 {
3118 /* The template argument was the name of some
3119 member function. That's usually
3120 illegal, but static members are OK. In any
3121 case, grab the underlying fields/functions
3122 and issue an error later if required. */
3123 arg = TREE_VALUE (arg);
3124 TREE_TYPE (arg) = unknown_type_node;
3125 }
3126
3127 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
3128 requires_type = (TREE_CODE (parm) == TYPE_DECL
3129 || requires_tmpl_type);
3130
3131 /* Check if it is a class template. If REQUIRES_TMPL_TYPE is true,
3132 we also accept implicitly created TYPE_DECL as a valid argument.
3133 This is necessary to handle the case where we pass a template name
3134 to a template template parameter in a scope where we've derived from
3135 in instantiation of that template, so the template name refers to that
3136 instantiation. We really ought to handle this better. */
3137 is_tmpl_type
3138 = ((TREE_CODE (arg) == TEMPLATE_DECL
3139 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
3140 || (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
3141 && !TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (arg))
3142 || (TREE_CODE (arg) == RECORD_TYPE
3143 && CLASSTYPE_TEMPLATE_INFO (arg)
3144 && TREE_CODE (TYPE_NAME (arg)) == TYPE_DECL
3145 && DECL_ARTIFICIAL (TYPE_NAME (arg))
3146 && requires_tmpl_type
3147 && is_base_of_enclosing_class (arg, current_class_type)));
3148 if (is_tmpl_type && TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
3149 arg = TYPE_STUB_DECL (arg);
3150 else if (is_tmpl_type && TREE_CODE (arg) == RECORD_TYPE)
3151 arg = CLASSTYPE_TI_TEMPLATE (arg);
3152
3153 is_type = TREE_CODE_CLASS (TREE_CODE (arg)) == 't' || is_tmpl_type;
3154
3155 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
3156 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
3157 {
3158 cp_pedwarn ("to refer to a type member of a template parameter,");
3159 cp_pedwarn (" use `typename %E'", arg);
3160
3161 arg = make_typename_type (TREE_OPERAND (arg, 0),
3162 TREE_OPERAND (arg, 1),
3163 complain);
3164 is_type = 1;
3165 }
3166 if (is_type != requires_type)
3167 {
3168 if (in_decl)
3169 {
3170 if (complain)
3171 {
3172 cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
3173 i + 1, in_decl);
3174 if (is_type)
3175 cp_error (" expected a constant of type `%T', got `%T'",
3176 TREE_TYPE (parm),
3177 (is_tmpl_type ? DECL_NAME (arg) : arg));
3178 else
3179 cp_error (" expected a type, got `%E'", arg);
3180 }
3181 }
3182 return error_mark_node;
3183 }
3184 if (is_tmpl_type ^ requires_tmpl_type)
3185 {
3186 if (in_decl && complain)
3187 {
3188 cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
3189 i + 1, in_decl);
3190 if (is_tmpl_type)
3191 cp_error (" expected a type, got `%T'", DECL_NAME (arg));
3192 else
3193 cp_error (" expected a class template, got `%T'", arg);
3194 }
3195 return error_mark_node;
3196 }
3197
3198 if (is_type)
3199 {
3200 if (requires_tmpl_type)
3201 {
3202 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3203 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3204
3205 if (coerce_template_template_parms (parmparm, argparm, complain,
3206 in_decl, inner_args))
3207 {
3208 val = arg;
3209
3210 /* TEMPLATE_TEMPLATE_PARM node is preferred over
3211 TEMPLATE_DECL. */
3212 if (val != error_mark_node
3213 && DECL_TEMPLATE_TEMPLATE_PARM_P (val))
3214 val = TREE_TYPE (val);
3215 }
3216 else
3217 {
3218 if (in_decl && complain)
3219 {
3220 cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
3221 i + 1, in_decl);
3222 cp_error (" expected a template of type `%D', got `%D'", parm, arg);
3223 }
3224
3225 val = error_mark_node;
3226 }
3227 }
3228 else
3229 {
3230 val = groktypename (arg);
3231 if (! processing_template_decl)
3232 {
3233 /* [basic.link]: A name with no linkage (notably, the
3234 name of a class or enumeration declared in a local
3235 scope) shall not be used to declare an entity with
3236 linkage. This implies that names with no linkage
3237 cannot be used as template arguments. */
3238 tree t = no_linkage_check (val);
3239 if (t)
3240 {
3241 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
3242 cp_pedwarn
3243 ("template-argument `%T' uses anonymous type", val);
3244 else
3245 cp_error
3246 ("template-argument `%T' uses local type `%T'",
3247 val, t);
3248 return error_mark_node;
3249 }
3250 }
3251 }
3252 }
3253 else
3254 {
3255 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
3256
3257 if (processing_template_decl)
3258 arg = maybe_fold_nontype_arg (arg);
3259
3260 if (!uses_template_parms (arg) && !uses_template_parms (t))
3261 /* We used to call digest_init here. However, digest_init
3262 will report errors, which we don't want when complain
3263 is zero. More importantly, digest_init will try too
3264 hard to convert things: for example, `0' should not be
3265 converted to pointer type at this point according to
3266 the standard. Accepting this is not merely an
3267 extension, since deciding whether or not these
3268 conversions can occur is part of determining which
3269 function template to call, or whether a given epxlicit
3270 argument specification is legal. */
3271 val = convert_nontype_argument (t, arg);
3272 else
3273 val = arg;
3274
3275 if (val == NULL_TREE)
3276 val = error_mark_node;
3277 else if (val == error_mark_node && complain)
3278 cp_error ("could not convert template argument `%E' to `%T'",
3279 arg, t);
3280 }
3281
3282 return val;
3283 }
3284
3285 /* Convert all template arguments to their appropriate types, and
3286 return a vector containing the innermost resulting template
3287 arguments. If any error occurs, return error_mark_node, and, if
3288 COMPLAIN is non-zero, issue an error message. Some error messages
3289 are issued even if COMPLAIN is zero; for instance, if a template
3290 argument is composed from a local class.
3291
3292 If REQUIRE_ALL_ARGUMENTS is non-zero, all arguments must be
3293 provided in ARGLIST, or else trailing parameters must have default
3294 values. If REQUIRE_ALL_ARGUMENTS is zero, we will attempt argument
3295 deduction for any unspecified trailing arguments.
3296
3297 The resulting TREE_VEC is allocated on a temporary obstack, and
3298 must be explicitly copied if it will be permanent. */
3299
3300 static tree
3301 coerce_template_parms (parms, args, in_decl,
3302 complain,
3303 require_all_arguments)
3304 tree parms, args;
3305 tree in_decl;
3306 int complain;
3307 int require_all_arguments;
3308 {
3309 int nparms, nargs, i, lost = 0;
3310 tree inner_args;
3311 tree new_args;
3312 tree new_inner_args;
3313
3314 inner_args = innermost_args (args);
3315 nargs = NUM_TMPL_ARGS (inner_args);
3316 nparms = TREE_VEC_LENGTH (parms);
3317
3318 if (nargs > nparms
3319 || (nargs < nparms
3320 && require_all_arguments
3321 && TREE_PURPOSE (TREE_VEC_ELT (parms, nargs)) == NULL_TREE))
3322 {
3323 if (complain)
3324 {
3325 cp_error ("wrong number of template arguments (%d, should be %d)",
3326 nargs, nparms);
3327
3328 if (in_decl)
3329 cp_error_at ("provided for `%D'", in_decl);
3330 }
3331
3332 return error_mark_node;
3333 }
3334
3335 new_inner_args = make_tree_vec (nparms);
3336 new_args = add_outermost_template_args (args, new_inner_args);
3337 for (i = 0; i < nparms; i++)
3338 {
3339 tree arg;
3340 tree parm;
3341
3342 /* Get the Ith template parameter. */
3343 parm = TREE_VEC_ELT (parms, i);
3344
3345 /* Calculate the Ith argument. */
3346 if (inner_args && TREE_CODE (inner_args) == TREE_LIST)
3347 {
3348 arg = TREE_VALUE (inner_args);
3349 inner_args = TREE_CHAIN (inner_args);
3350 }
3351 else if (i < nargs)
3352 arg = TREE_VEC_ELT (inner_args, i);
3353 /* If no template argument was supplied, look for a default
3354 value. */
3355 else if (TREE_PURPOSE (parm) == NULL_TREE)
3356 {
3357 /* There was no default value. */
3358 my_friendly_assert (!require_all_arguments, 0);
3359 break;
3360 }
3361 else if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL)
3362 arg = tsubst (TREE_PURPOSE (parm), new_args, complain, in_decl);
3363 else
3364 arg = tsubst_expr (TREE_PURPOSE (parm), new_args, complain,
3365 in_decl);
3366
3367 /* Now, convert the Ith argument, as necessary. */
3368 if (arg == NULL_TREE)
3369 /* We're out of arguments. */
3370 {
3371 my_friendly_assert (!require_all_arguments, 0);
3372 break;
3373 }
3374 else if (arg == error_mark_node)
3375 {
3376 cp_error ("template argument %d is invalid", i + 1);
3377 arg = error_mark_node;
3378 }
3379 else
3380 arg = convert_template_argument (TREE_VALUE (parm),
3381 arg, new_args, complain, i,
3382 in_decl);
3383
3384 if (arg == error_mark_node)
3385 lost++;
3386 TREE_VEC_ELT (new_inner_args, i) = arg;
3387 }
3388
3389 if (lost)
3390 return error_mark_node;
3391
3392 return new_inner_args;
3393 }
3394
3395 /* Returns 1 if template args OT and NT are equivalent. */
3396
3397 static int
3398 template_args_equal (ot, nt)
3399 tree ot, nt;
3400 {
3401 if (nt == ot)
3402 return 1;
3403 if (TREE_CODE (nt) != TREE_CODE (ot))
3404 return 0;
3405 if (TREE_CODE (nt) == TREE_VEC)
3406 /* For member templates */
3407 return comp_template_args (ot, nt);
3408 else if (TREE_CODE_CLASS (TREE_CODE (ot)) == 't')
3409 return same_type_p (ot, nt);
3410 else
3411 return (cp_tree_equal (ot, nt) > 0);
3412 }
3413
3414 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
3415 of template arguments. Returns 0 otherwise. */
3416
3417 int
3418 comp_template_args (oldargs, newargs)
3419 tree oldargs, newargs;
3420 {
3421 int i;
3422
3423 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
3424 return 0;
3425
3426 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
3427 {
3428 tree nt = TREE_VEC_ELT (newargs, i);
3429 tree ot = TREE_VEC_ELT (oldargs, i);
3430
3431 if (! template_args_equal (ot, nt))
3432 return 0;
3433 }
3434 return 1;
3435 }
3436
3437 /* Given class template name and parameter list, produce a user-friendly name
3438 for the instantiation. */
3439
3440 static char *
3441 mangle_class_name_for_template (name, parms, arglist)
3442 char *name;
3443 tree parms, arglist;
3444 {
3445 static struct obstack scratch_obstack;
3446 static char *scratch_firstobj;
3447 int i, nparms;
3448
3449 if (!scratch_firstobj)
3450 gcc_obstack_init (&scratch_obstack);
3451 else
3452 obstack_free (&scratch_obstack, scratch_firstobj);
3453 scratch_firstobj = obstack_alloc (&scratch_obstack, 1);
3454
3455 #define ccat(c) obstack_1grow (&scratch_obstack, (c));
3456 #define cat(s) obstack_grow (&scratch_obstack, (s), strlen (s))
3457
3458 cat (name);
3459 ccat ('<');
3460 nparms = TREE_VEC_LENGTH (parms);
3461 arglist = innermost_args (arglist);
3462 my_friendly_assert (nparms == TREE_VEC_LENGTH (arglist), 268);
3463 for (i = 0; i < nparms; i++)
3464 {
3465 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
3466 tree arg = TREE_VEC_ELT (arglist, i);
3467
3468 if (i)
3469 ccat (',');
3470
3471 if (TREE_CODE (parm) == TYPE_DECL)
3472 {
3473 cat (type_as_string (arg, TS_CHASE_TYPEDEFS));
3474 continue;
3475 }
3476 else if (TREE_CODE (parm) == TEMPLATE_DECL)
3477 {
3478 if (TREE_CODE (arg) == TEMPLATE_DECL)
3479 {
3480 /* Already substituted with real template. Just output
3481 the template name here */
3482 tree context = DECL_CONTEXT (arg);
3483 if (context)
3484 {
3485 /* The template may be defined in a namespace, or
3486 may be a member template. */
3487 my_friendly_assert (TREE_CODE (context) == NAMESPACE_DECL
3488 || CLASS_TYPE_P (context),
3489 980422);
3490 cat(decl_as_string (DECL_CONTEXT (arg), 0));
3491 cat("::");
3492 }
3493 cat (IDENTIFIER_POINTER (DECL_NAME (arg)));
3494 }
3495 else
3496 /* Output the parameter declaration */
3497 cat (type_as_string (arg, TS_CHASE_TYPEDEFS));
3498 continue;
3499 }
3500 else
3501 my_friendly_assert (TREE_CODE (parm) == PARM_DECL, 269);
3502
3503 if (TREE_CODE (arg) == TREE_LIST)
3504 {
3505 /* New list cell was built because old chain link was in
3506 use. */
3507 my_friendly_assert (TREE_PURPOSE (arg) == NULL_TREE, 270);
3508 arg = TREE_VALUE (arg);
3509 }
3510 /* No need to check arglist against parmlist here; we did that
3511 in coerce_template_parms, called from lookup_template_class. */
3512 cat (expr_as_string (arg, 0));
3513 }
3514 {
3515 char *bufp = obstack_next_free (&scratch_obstack);
3516 int offset = 0;
3517 while (bufp[offset - 1] == ' ')
3518 offset--;
3519 obstack_blank_fast (&scratch_obstack, offset);
3520
3521 /* B<C<char> >, not B<C<char>> */
3522 if (bufp[offset - 1] == '>')
3523 ccat (' ');
3524 }
3525 ccat ('>');
3526 ccat ('\0');
3527 return (char *) obstack_base (&scratch_obstack);
3528 }
3529
3530 static tree
3531 classtype_mangled_name (t)
3532 tree t;
3533 {
3534 if (CLASSTYPE_TEMPLATE_INFO (t)
3535 /* Specializations have already had their names set up in
3536 lookup_template_class. */
3537 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
3538 {
3539 tree tmpl = most_general_template (CLASSTYPE_TI_TEMPLATE (t));
3540
3541 /* For non-primary templates, the template parameters are
3542 implicit from their surrounding context. */
3543 if (PRIMARY_TEMPLATE_P (tmpl))
3544 {
3545 tree name = DECL_NAME (tmpl);
3546 char *mangled_name = mangle_class_name_for_template
3547 (IDENTIFIER_POINTER (name),
3548 DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
3549 CLASSTYPE_TI_ARGS (t));
3550 tree id = get_identifier (mangled_name);
3551 IDENTIFIER_TEMPLATE (id) = name;
3552 return id;
3553 }
3554 }
3555
3556 return TYPE_IDENTIFIER (t);
3557 }
3558
3559 static void
3560 add_pending_template (d)
3561 tree d;
3562 {
3563 tree ti;
3564
3565 if (TREE_CODE_CLASS (TREE_CODE (d)) == 't')
3566 ti = CLASSTYPE_TEMPLATE_INFO (d);
3567 else
3568 ti = DECL_TEMPLATE_INFO (d);
3569
3570 if (TI_PENDING_TEMPLATE_FLAG (ti))
3571 return;
3572
3573 *template_tail = tree_cons (build_srcloc_here (), d, NULL_TREE);
3574 template_tail = &TREE_CHAIN (*template_tail);
3575 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
3576 }
3577
3578
3579 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS (which
3580 may be either a _DECL or an overloaded function or an
3581 IDENTIFIER_NODE), and ARGLIST. */
3582
3583 tree
3584 lookup_template_function (fns, arglist)
3585 tree fns, arglist;
3586 {
3587 tree type;
3588
3589 if (fns == NULL_TREE)
3590 {
3591 cp_error ("non-template used as template");
3592 return error_mark_node;
3593 }
3594
3595 type = TREE_TYPE (fns);
3596 if (TREE_CODE (fns) == OVERLOAD || !type)
3597 type = unknown_type_node;
3598
3599 if (processing_template_decl)
3600 return build_min (TEMPLATE_ID_EXPR, type, fns, arglist);
3601 else
3602 return build (TEMPLATE_ID_EXPR, type, fns, arglist);
3603 }
3604
3605 /* Within the scope of a template class S<T>, the name S gets bound
3606 (in build_self_reference) to a TYPE_DECL for the class, not a
3607 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
3608 or one of its enclosing classes, and that type is a template,
3609 return the associated TEMPLATE_DECL. Otherwise, the original
3610 DECL is returned. */
3611
3612 static tree
3613 maybe_get_template_decl_from_type_decl (decl)
3614 tree decl;
3615 {
3616 return (decl != NULL_TREE
3617 && TREE_CODE (decl) == TYPE_DECL
3618 && DECL_ARTIFICIAL (decl)
3619 && CLASS_TYPE_P (TREE_TYPE (decl))
3620 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
3621 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
3622 }
3623
3624 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
3625 parameters, find the desired type.
3626
3627 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
3628 (Actually ARGLIST may be either a TREE_LIST or a TREE_VEC. It will
3629 be a TREE_LIST if called directly from the parser, and a TREE_VEC
3630 otherwise.) Since ARGLIST is build on the temp_decl_obstack, we must
3631 copy it here to keep it from being reclaimed when the decl storage
3632 is reclaimed.
3633
3634 IN_DECL, if non-NULL, is the template declaration we are trying to
3635 instantiate.
3636
3637 If ENTERING_SCOPE is non-zero, we are about to enter the scope of
3638 the class we are looking up.
3639
3640 If the template class is really a local class in a template
3641 function, then the FUNCTION_CONTEXT is the function in which it is
3642 being instantiated. */
3643
3644 tree
3645 lookup_template_class (d1, arglist, in_decl, context, entering_scope)
3646 tree d1, arglist;
3647 tree in_decl;
3648 tree context;
3649 int entering_scope;
3650 {
3651 tree template = NULL_TREE, parmlist;
3652 tree t;
3653
3654 if (TREE_CODE (d1) == IDENTIFIER_NODE)
3655 {
3656 if (IDENTIFIER_VALUE (d1)
3657 && DECL_TEMPLATE_TEMPLATE_PARM_P (IDENTIFIER_VALUE (d1)))
3658 template = IDENTIFIER_VALUE (d1);
3659 else
3660 {
3661 if (context)
3662 push_decl_namespace (context);
3663 template = lookup_name (d1, /*prefer_type=*/0);
3664 template = maybe_get_template_decl_from_type_decl (template);
3665 if (context)
3666 pop_decl_namespace ();
3667 }
3668 if (template)
3669 context = DECL_CONTEXT (template);
3670 }
3671 else if (TREE_CODE (d1) == TYPE_DECL && IS_AGGR_TYPE (TREE_TYPE (d1)))
3672 {
3673 tree type = TREE_TYPE (d1);
3674
3675 /* If we are declaring a constructor, say A<T>::A<T>, we will get
3676 an implicit typename for the second A. Deal with it. */
3677 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
3678 type = TREE_TYPE (type);
3679
3680 if (CLASSTYPE_TEMPLATE_INFO (type))
3681 {
3682 template = CLASSTYPE_TI_TEMPLATE (type);
3683 d1 = DECL_NAME (template);
3684 }
3685 }
3686 else if (TREE_CODE (d1) == ENUMERAL_TYPE
3687 || (TREE_CODE_CLASS (TREE_CODE (d1)) == 't'
3688 && IS_AGGR_TYPE (d1)))
3689 {
3690 template = TYPE_TI_TEMPLATE (d1);
3691 d1 = DECL_NAME (template);
3692 }
3693 else if (TREE_CODE (d1) == TEMPLATE_DECL
3694 && TREE_CODE (DECL_RESULT (d1)) == TYPE_DECL)
3695 {
3696 template = d1;
3697 d1 = DECL_NAME (template);
3698 context = DECL_CONTEXT (template);
3699 }
3700 else
3701 my_friendly_abort (272);
3702
3703 /* With something like `template <class T> class X class X { ... };'
3704 we could end up with D1 having nothing but an IDENTIFIER_VALUE.
3705 We don't want to do that, but we have to deal with the situation,
3706 so let's give them some syntax errors to chew on instead of a
3707 crash. */
3708 if (! template)
3709 {
3710 cp_error ("`%T' is not a template", d1);
3711 return error_mark_node;
3712 }
3713
3714 if (context == NULL_TREE)
3715 context = global_namespace;
3716
3717 if (TREE_CODE (template) != TEMPLATE_DECL)
3718 {
3719 cp_error ("non-template type `%T' used as a template", d1);
3720 if (in_decl)
3721 cp_error_at ("for template declaration `%D'", in_decl);
3722 return error_mark_node;
3723 }
3724
3725 if (DECL_TEMPLATE_TEMPLATE_PARM_P (template))
3726 {
3727 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
3728 template arguments */
3729
3730 tree parm = copy_template_template_parm (TREE_TYPE (template));
3731 tree template2 = TYPE_STUB_DECL (parm);
3732 tree arglist2;
3733
3734 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (template);
3735
3736 arglist2 = coerce_template_parms (parmlist, arglist, template, 1, 1);
3737 if (arglist2 == error_mark_node)
3738 return error_mark_node;
3739
3740 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm)
3741 = tree_cons (template2, arglist2, NULL_TREE);
3742 TYPE_SIZE (parm) = 0;
3743 return parm;
3744 }
3745 else
3746 {
3747 tree template_type = TREE_TYPE (template);
3748 tree gen_tmpl;
3749 tree type_decl;
3750 tree found = NULL_TREE;
3751 int arg_depth;
3752 int parm_depth;
3753 int is_partial_instantiation;
3754
3755 gen_tmpl = most_general_template (template);
3756 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
3757 parm_depth = TMPL_PARMS_DEPTH (parmlist);
3758 arg_depth = TMPL_ARGS_DEPTH (arglist);
3759
3760 if (arg_depth == 1 && parm_depth > 1)
3761 {
3762 /* We've been given an incomplete set of template arguments.
3763 For example, given:
3764
3765 template <class T> struct S1 {
3766 template <class U> struct S2 {};
3767 template <class U> struct S2<U*> {};
3768 };
3769
3770 we will be called with an ARGLIST of `U*', but the
3771 TEMPLATE will be `template <class T> template
3772 <class U> struct S1<T>::S2'. We must fill in the missing
3773 arguments. */
3774 arglist
3775 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (template)),
3776 arglist);
3777 arg_depth = TMPL_ARGS_DEPTH (arglist);
3778 }
3779
3780 /* Now we should enough arguments. */
3781 my_friendly_assert (parm_depth == arg_depth, 0);
3782
3783 /* From here on, we're only interested in the most general
3784 template. */
3785 template = gen_tmpl;
3786
3787 /* Calculate the BOUND_ARGS. These will be the args that are
3788 actually tsubst'd into the definition to create the
3789 instantiation. */
3790 if (parm_depth > 1)
3791 {
3792 /* We have multiple levels of arguments to coerce, at once. */
3793 int i;
3794 int saved_depth = TMPL_ARGS_DEPTH (arglist);
3795
3796 tree bound_args = make_tree_vec (parm_depth);
3797
3798 for (i = saved_depth,
3799 t = DECL_TEMPLATE_PARMS (template);
3800 i > 0 && t != NULL_TREE;
3801 --i, t = TREE_CHAIN (t))
3802 {
3803 tree a = coerce_template_parms (TREE_VALUE (t),
3804 arglist, template, 1, 1);
3805 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
3806
3807 /* We temporarily reduce the length of the ARGLIST so
3808 that coerce_template_parms will see only the arguments
3809 corresponding to the template parameters it is
3810 examining. */
3811 TREE_VEC_LENGTH (arglist)--;
3812 }
3813
3814 /* Restore the ARGLIST to its full size. */
3815 TREE_VEC_LENGTH (arglist) = saved_depth;
3816
3817 arglist = bound_args;
3818 }
3819 else
3820 arglist
3821 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
3822 innermost_args (arglist),
3823 template, 1, 1);
3824
3825 if (arglist == error_mark_node)
3826 /* We were unable to bind the arguments. */
3827 return error_mark_node;
3828
3829 /* In the scope of a template class, explicit references to the
3830 template class refer to the type of the template, not any
3831 instantiation of it. For example, in:
3832
3833 template <class T> class C { void f(C<T>); }
3834
3835 the `C<T>' is just the same as `C'. Outside of the
3836 class, however, such a reference is an instantiation. */
3837 if (comp_template_args (TYPE_TI_ARGS (template_type),
3838 arglist))
3839 {
3840 found = template_type;
3841
3842 if (!entering_scope && PRIMARY_TEMPLATE_P (template))
3843 {
3844 tree ctx;
3845
3846 /* Note that we use DECL_CONTEXT, rather than
3847 CP_DECL_CONTEXT, so that the termination test is
3848 always just `ctx'. We're not interested in namepace
3849 scopes. */
3850 for (ctx = current_class_type;
3851 ctx;
3852 ctx = (TREE_CODE_CLASS (TREE_CODE (ctx)) == 't')
3853 ? TYPE_CONTEXT (ctx) : DECL_CONTEXT (ctx))
3854 if (same_type_p (ctx, template_type))
3855 break;
3856
3857 if (!ctx)
3858 /* We're not in the scope of the class, so the
3859 TEMPLATE_TYPE is not the type we want after
3860 all. */
3861 found = NULL_TREE;
3862 }
3863 }
3864
3865 if (!found)
3866 {
3867 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
3868 found; found = TREE_CHAIN (found))
3869 if (comp_template_args (TREE_PURPOSE (found), arglist))
3870 break;
3871
3872 if (found)
3873 found = TREE_VALUE (found);
3874 }
3875
3876 if (found)
3877 return found;
3878
3879 /* This type is a "partial instantiation" if any of the template
3880 arguments still inolve template parameters. Note that we set
3881 IS_PARTIAL_INSTANTIATION for partial specializations as
3882 well. */
3883 is_partial_instantiation = uses_template_parms (arglist);
3884
3885 if (!is_partial_instantiation
3886 && !PRIMARY_TEMPLATE_P (template)
3887 && TREE_CODE (CP_DECL_CONTEXT (template)) == NAMESPACE_DECL)
3888 {
3889 found = xref_tag_from_type (TREE_TYPE (template),
3890 DECL_NAME (template),
3891 /*globalize=*/1);
3892 return found;
3893 }
3894
3895 /* Create the type. */
3896 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
3897 {
3898 if (!is_partial_instantiation)
3899 t = start_enum (TYPE_IDENTIFIER (template_type));
3900 else
3901 /* We don't want to call start_enum for this type, since
3902 the values for the enumeration constants may involve
3903 template parameters. And, no one should be interested
3904 in the enumeration constants for such a type. */
3905 t = make_node (ENUMERAL_TYPE);
3906 }
3907 else
3908 {
3909 t = make_aggr_type (TREE_CODE (template_type));
3910 CLASSTYPE_DECLARED_CLASS (t)
3911 = CLASSTYPE_DECLARED_CLASS (template_type);
3912 CLASSTYPE_GOT_SEMICOLON (t) = 1;
3913 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
3914 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
3915
3916 /* A local class. Make sure the decl gets registered properly. */
3917 if (context == current_function_decl)
3918 pushtag (DECL_NAME (template), t, 0);
3919 }
3920
3921 /* If we called start_enum or pushtag above, this information
3922 will already be set up. */
3923 if (!TYPE_NAME (t))
3924 {
3925 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3926
3927 type_decl = create_implicit_typedef (DECL_NAME (template), t);
3928 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
3929 TYPE_STUB_DECL (t) = type_decl;
3930 DECL_SOURCE_FILE (type_decl)
3931 = DECL_SOURCE_FILE (TYPE_STUB_DECL (template_type));
3932 DECL_SOURCE_LINE (type_decl)
3933 = DECL_SOURCE_LINE (TYPE_STUB_DECL (template_type));
3934 }
3935 else
3936 type_decl = TYPE_NAME (t);
3937
3938 /* Set up the template information. We have to figure out which
3939 template is the immediate parent if this is a full
3940 instantiation. */
3941 if (parm_depth == 1 || is_partial_instantiation
3942 || !PRIMARY_TEMPLATE_P (template))
3943 /* This case is easy; there are no member templates involved. */
3944 found = template;
3945 else
3946 {
3947 /* This is a full instantiation of a member template. There
3948 should be some partial instantiation of which this is an
3949 instance. */
3950
3951 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
3952 found; found = TREE_CHAIN (found))
3953 {
3954 int success;
3955 tree tmpl = CLASSTYPE_TI_TEMPLATE (TREE_VALUE (found));
3956
3957 /* We only want partial instantiations, here, not
3958 specializations or full instantiations. */
3959 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_VALUE (found))
3960 || !uses_template_parms (TREE_VALUE (found)))
3961 continue;
3962
3963 /* Temporarily reduce by one the number of levels in the
3964 ARGLIST and in FOUND so as to avoid comparing the
3965 last set of arguments. */
3966 TREE_VEC_LENGTH (arglist)--;
3967 TREE_VEC_LENGTH (TREE_PURPOSE (found)) --;
3968
3969 /* See if the arguments match. If they do, then TMPL is
3970 the partial instantiation we want. */
3971 success = comp_template_args (TREE_PURPOSE (found), arglist);
3972
3973 /* Restore the argument vectors to their full size. */
3974 TREE_VEC_LENGTH (arglist)++;
3975 TREE_VEC_LENGTH (TREE_PURPOSE (found))++;
3976
3977 if (success)
3978 {
3979 found = tmpl;
3980 break;
3981 }
3982 }
3983
3984 if (!found)
3985 my_friendly_abort (0);
3986 }
3987
3988 SET_TYPE_TEMPLATE_INFO (t,
3989 tree_cons (found, arglist, NULL_TREE));
3990 DECL_TEMPLATE_INSTANTIATIONS (template)
3991 = tree_cons (arglist, t,
3992 DECL_TEMPLATE_INSTANTIATIONS (template));
3993
3994 if (TREE_CODE (t) == ENUMERAL_TYPE
3995 && !is_partial_instantiation)
3996 /* Now that the type has been registered on the instantiations
3997 list, we set up the enumerators. Because the enumeration
3998 constants may involve the enumeration type itself, we make
3999 sure to register the type first, and then create the
4000 constants. That way, doing tsubst_expr for the enumeration
4001 constants won't result in recursive calls here; we'll find
4002 the instantiation and exit above. */
4003 tsubst_enum (template_type, t, arglist);
4004
4005 /* Reset the name of the type, now that CLASSTYPE_TEMPLATE_INFO
4006 is set up. */
4007 if (TREE_CODE (t) != ENUMERAL_TYPE)
4008 DECL_NAME (type_decl) = classtype_mangled_name (t);
4009 DECL_ASSEMBLER_NAME (type_decl) = DECL_NAME (type_decl);
4010 if (!is_partial_instantiation)
4011 {
4012 DECL_ASSEMBLER_NAME (type_decl)
4013 = get_identifier (build_overload_name (t, 1, 1));
4014
4015 /* For backwards compatibility; code that uses
4016 -fexternal-templates expects looking up a template to
4017 instantiate it. I think DDD still relies on this.
4018 (jason 8/20/1998) */
4019 if (TREE_CODE (t) != ENUMERAL_TYPE
4020 && flag_external_templates
4021 && CLASSTYPE_INTERFACE_KNOWN (TREE_TYPE (template))
4022 && ! CLASSTYPE_INTERFACE_ONLY (TREE_TYPE (template)))
4023 add_pending_template (t);
4024 }
4025 else
4026 /* If the type makes use of template parameters, the
4027 code that generates debugging information will crash. */
4028 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
4029
4030 return t;
4031 }
4032 }
4033 \f
4034 struct pair_fn_data
4035 {
4036 tree_fn_t fn;
4037 void *data;
4038 };
4039
4040 /* Called from for_each_template_parm via walk_tree. */
4041
4042 static tree
4043 for_each_template_parm_r (tp, walk_subtrees, d)
4044 tree *tp;
4045 int *walk_subtrees;
4046 void *d;
4047 {
4048 tree t = *tp;
4049 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
4050 tree_fn_t fn = pfd->fn;
4051 void *data = pfd->data;
4052
4053 if (TREE_CODE_CLASS (TREE_CODE (t)) == 't'
4054 && for_each_template_parm (TYPE_CONTEXT (t), fn, data))
4055 return error_mark_node;
4056
4057 switch (TREE_CODE (t))
4058 {
4059 case RECORD_TYPE:
4060 if (TYPE_PTRMEMFUNC_FLAG (t))
4061 break;
4062 /* Fall through. */
4063
4064 case UNION_TYPE:
4065 case ENUMERAL_TYPE:
4066 if (!TYPE_TEMPLATE_INFO (t))
4067 *walk_subtrees = 0;
4068 else if (for_each_template_parm (TREE_VALUE (TYPE_TEMPLATE_INFO (t)),
4069 fn, data))
4070 return error_mark_node;
4071 break;
4072
4073 case METHOD_TYPE:
4074 /* Since we're not going to walk subtrees, we have to do this
4075 explicitly here. */
4076 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data))
4077 return error_mark_node;
4078
4079 case FUNCTION_TYPE:
4080 /* Check the return type. */
4081 if (for_each_template_parm (TREE_TYPE (t), fn, data))
4082 return error_mark_node;
4083
4084 /* Check the parameter types. Since default arguments are not
4085 instantiated until they are needed, the TYPE_ARG_TYPES may
4086 contain expressions that involve template parameters. But,
4087 no-one should be looking at them yet. And, once they're
4088 instantiated, they don't contain template parameters, so
4089 there's no point in looking at them then, either. */
4090 {
4091 tree parm;
4092
4093 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
4094 if (for_each_template_parm (TREE_VALUE (parm), fn, data))
4095 return error_mark_node;
4096
4097 /* Since we've already handled the TYPE_ARG_TYPES, we don't
4098 want walk_tree walking into them itself. */
4099 *walk_subtrees = 0;
4100 }
4101 break;
4102
4103 case FUNCTION_DECL:
4104 case VAR_DECL:
4105 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
4106 && for_each_template_parm (DECL_TI_ARGS (t), fn, data))
4107 return error_mark_node;
4108 /* Fall through. */
4109
4110 case CONST_DECL:
4111 case PARM_DECL:
4112 if (DECL_CONTEXT (t)
4113 && for_each_template_parm (DECL_CONTEXT (t), fn, data))
4114 return error_mark_node;
4115 break;
4116
4117 case TEMPLATE_TEMPLATE_PARM:
4118 /* Record template parameters such as `T' inside `TT<T>'. */
4119 if (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t)
4120 && for_each_template_parm (TYPE_TI_ARGS (t), fn, data))
4121 return error_mark_node;
4122 /* Fall through. */
4123
4124 case TEMPLATE_TYPE_PARM:
4125 case TEMPLATE_PARM_INDEX:
4126 if (fn && (*fn)(t, data))
4127 return error_mark_node;
4128 else if (!fn)
4129 return error_mark_node;
4130 break;
4131
4132 case TEMPLATE_DECL:
4133 /* A template template parameter is encountered */
4134 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
4135 && for_each_template_parm (TREE_TYPE (t), fn, data))
4136 return error_mark_node;
4137
4138 /* Already substituted template template parameter */
4139 *walk_subtrees = 0;
4140 break;
4141
4142 case TYPENAME_TYPE:
4143 if (!fn || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn, data))
4144 return error_mark_node;
4145 break;
4146
4147 case CONSTRUCTOR:
4148 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
4149 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
4150 (TREE_TYPE (t)), fn, data))
4151 return error_mark_node;
4152 break;
4153
4154 case INDIRECT_REF:
4155 case COMPONENT_REF:
4156 /* If there's no type, then this thing must be some expression
4157 involving template parameters. */
4158 if (!fn && !TREE_TYPE (t))
4159 return error_mark_node;
4160 break;
4161
4162 case MODOP_EXPR:
4163 case CAST_EXPR:
4164 case REINTERPRET_CAST_EXPR:
4165 case CONST_CAST_EXPR:
4166 case STATIC_CAST_EXPR:
4167 case DYNAMIC_CAST_EXPR:
4168 case ARROW_EXPR:
4169 case DOTSTAR_EXPR:
4170 case TYPEID_EXPR:
4171 case LOOKUP_EXPR:
4172 case PSEUDO_DTOR_EXPR:
4173 if (!fn)
4174 return error_mark_node;
4175 break;
4176
4177 default:
4178 break;
4179 }
4180
4181 /* We didn't find any template parameters we liked. */
4182 return NULL_TREE;
4183 }
4184
4185 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM, or
4186 TEMPLATE_PARM_INDEX in T, call FN with the parameter and the DATA.
4187 If FN returns non-zero, the iteration is terminated, and
4188 for_each_template_parm returns 1. Otherwise, the iteration
4189 continues. If FN never returns a non-zero value, the value
4190 returned by for_each_template_parm is 0. If FN is NULL, it is
4191 considered to be the function which always returns 1. */
4192
4193 static int
4194 for_each_template_parm (t, fn, data)
4195 tree t;
4196 tree_fn_t fn;
4197 void* data;
4198 {
4199 struct pair_fn_data pfd;
4200
4201 /* Set up. */
4202 pfd.fn = fn;
4203 pfd.data = data;
4204
4205 /* Walk the tree. */
4206 return walk_tree (&t, for_each_template_parm_r, &pfd) != NULL_TREE;
4207 }
4208
4209 int
4210 uses_template_parms (t)
4211 tree t;
4212 {
4213 return for_each_template_parm (t, 0, 0);
4214 }
4215
4216 static struct tinst_level *current_tinst_level;
4217 static struct tinst_level *free_tinst_level;
4218 static int tinst_depth;
4219 extern int max_tinst_depth;
4220 #ifdef GATHER_STATISTICS
4221 int depth_reached;
4222 #endif
4223 static int tinst_level_tick;
4224 static int last_template_error_tick;
4225
4226 /* Print out all the template instantiations that we are currently
4227 working on. If ERR, we are being called from cp_thing, so do
4228 the right thing for an error message. */
4229
4230 static void
4231 print_template_context (err)
4232 int err;
4233 {
4234 struct tinst_level *p = current_tinst_level;
4235 int line = lineno;
4236 char *file = input_filename;
4237
4238 if (err && p)
4239 {
4240 if (current_function_decl != p->decl
4241 && current_function_decl != NULL_TREE)
4242 /* We can get here during the processing of some synthesized
4243 method. Then, p->decl will be the function that's causing
4244 the synthesis. */
4245 ;
4246 else
4247 {
4248 if (current_function_decl == p->decl)
4249 /* Avoid redundancy with the the "In function" line. */;
4250 else
4251 fprintf (stderr, "%s: In instantiation of `%s':\n",
4252 file, decl_as_string (p->decl, TS_DECL_TYPE | TS_FUNC_NORETURN));
4253
4254 line = p->line;
4255 file = p->file;
4256 p = p->next;
4257 }
4258 }
4259
4260 for (; p; p = p->next)
4261 {
4262 fprintf (stderr, "%s:%d: instantiated from `%s'\n", file, line,
4263 decl_as_string (p->decl, TS_DECL_TYPE | TS_FUNC_NORETURN));
4264 line = p->line;
4265 file = p->file;
4266 }
4267 fprintf (stderr, "%s:%d: instantiated from here\n", file, line);
4268 }
4269
4270 /* Called from cp_thing to print the template context for an error. */
4271
4272 void
4273 maybe_print_template_context ()
4274 {
4275 if (last_template_error_tick == tinst_level_tick
4276 || current_tinst_level == 0)
4277 return;
4278
4279 last_template_error_tick = tinst_level_tick;
4280 print_template_context (1);
4281 }
4282
4283 static int
4284 push_tinst_level (d)
4285 tree d;
4286 {
4287 struct tinst_level *new;
4288
4289 if (tinst_depth >= max_tinst_depth)
4290 {
4291 /* If the instantiation in question still has unbound template parms,
4292 we don't really care if we can't instantiate it, so just return.
4293 This happens with base instantiation for implicit `typename'. */
4294 if (uses_template_parms (d))
4295 return 0;
4296
4297 last_template_error_tick = tinst_level_tick;
4298 error ("template instantiation depth exceeds maximum of %d",
4299 max_tinst_depth);
4300 error (" (use -ftemplate-depth-NN to increase the maximum)");
4301 cp_error (" instantiating `%D'", d);
4302
4303 print_template_context (0);
4304
4305 return 0;
4306 }
4307
4308 if (free_tinst_level)
4309 {
4310 new = free_tinst_level;
4311 free_tinst_level = new->next;
4312 }
4313 else
4314 new = (struct tinst_level *) xmalloc (sizeof (struct tinst_level));
4315
4316 new->decl = d;
4317 new->line = lineno;
4318 new->file = input_filename;
4319 new->next = current_tinst_level;
4320 current_tinst_level = new;
4321
4322 ++tinst_depth;
4323 #ifdef GATHER_STATISTICS
4324 if (tinst_depth > depth_reached)
4325 depth_reached = tinst_depth;
4326 #endif
4327
4328 ++tinst_level_tick;
4329 return 1;
4330 }
4331
4332 void
4333 pop_tinst_level ()
4334 {
4335 struct tinst_level *old = current_tinst_level;
4336
4337 /* Restore the filename and line number stashed away when we started
4338 this instantiation. */
4339 lineno = old->line;
4340 input_filename = old->file;
4341 extract_interface_info ();
4342
4343 current_tinst_level = old->next;
4344 old->next = free_tinst_level;
4345 free_tinst_level = old;
4346 --tinst_depth;
4347 ++tinst_level_tick;
4348 }
4349
4350 struct tinst_level *
4351 tinst_for_decl ()
4352 {
4353 struct tinst_level *p = current_tinst_level;
4354
4355 if (p)
4356 for (; p->next ; p = p->next )
4357 ;
4358 return p;
4359 }
4360
4361 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
4362 vector of template arguments, as for tsubst.
4363
4364 Returns an appropriate tsbust'd friend declaration. */
4365
4366 static tree
4367 tsubst_friend_function (decl, args)
4368 tree decl;
4369 tree args;
4370 {
4371 tree new_friend;
4372 int line = lineno;
4373 char *file = input_filename;
4374
4375 lineno = DECL_SOURCE_LINE (decl);
4376 input_filename = DECL_SOURCE_FILE (decl);
4377
4378 if (TREE_CODE (decl) == FUNCTION_DECL
4379 && DECL_TEMPLATE_INSTANTIATION (decl)
4380 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
4381 /* This was a friend declared with an explicit template
4382 argument list, e.g.:
4383
4384 friend void f<>(T);
4385
4386 to indicate that f was a template instantiation, not a new
4387 function declaration. Now, we have to figure out what
4388 instantiation of what template. */
4389 {
4390 tree template_id;
4391 tree new_args;
4392 tree tmpl;
4393
4394 template_id
4395 = lookup_template_function (tsubst_expr (DECL_TI_TEMPLATE (decl),
4396 args, /*complain=*/1,
4397 NULL_TREE),
4398 tsubst (DECL_TI_ARGS (decl),
4399 args, /*complain=*/1,
4400 NULL_TREE));
4401 new_friend = tsubst (decl, args, /*complain=*/1, NULL_TREE);
4402 tmpl = determine_specialization (template_id, new_friend,
4403 &new_args,
4404 /*need_member_template=*/0);
4405 new_friend = instantiate_template (tmpl, new_args);
4406 goto done;
4407 }
4408
4409 new_friend = tsubst (decl, args, /*complain=*/1, NULL_TREE);
4410
4411 /* The NEW_FRIEND will look like an instantiation, to the
4412 compiler, but is not an instantiation from the point of view of
4413 the language. For example, we might have had:
4414
4415 template <class T> struct S {
4416 template <class U> friend void f(T, U);
4417 };
4418
4419 Then, in S<int>, template <class U> void f(int, U) is not an
4420 instantiation of anything. */
4421 DECL_USE_TEMPLATE (new_friend) = 0;
4422 if (TREE_CODE (decl) == TEMPLATE_DECL)
4423 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
4424
4425 /* The mangled name for the NEW_FRIEND is incorrect. The call to
4426 tsubst will have resulted in a call to
4427 set_mangled_name_for_template_decl. But, the function is not a
4428 template instantiation and should not be mangled like one.
4429 Therefore, we remangle the function name. We don't have to do
4430 this if the NEW_FRIEND is a template since
4431 set_mangled_name_for_template_decl doesn't do anything if the
4432 function declaration still uses template arguments. */
4433 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
4434 {
4435 set_mangled_name_for_decl (new_friend);
4436 DECL_RTL (new_friend) = 0;
4437 make_decl_rtl (new_friend, NULL_PTR, 1);
4438 }
4439
4440 if (DECL_NAMESPACE_SCOPE_P (new_friend))
4441 {
4442 tree old_decl;
4443 tree new_friend_template_info;
4444 tree new_friend_result_template_info;
4445 tree ns;
4446 int new_friend_is_defn;
4447
4448 /* We must save some information from NEW_FRIEND before calling
4449 duplicate decls since that function will free NEW_FRIEND if
4450 possible. */
4451 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
4452 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
4453 {
4454 /* This declaration is a `primary' template. */
4455 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
4456
4457 new_friend_is_defn
4458 = DECL_INITIAL (DECL_RESULT (new_friend)) != NULL_TREE;
4459 new_friend_result_template_info
4460 = DECL_TEMPLATE_INFO (DECL_RESULT (new_friend));
4461 }
4462 else
4463 {
4464 new_friend_is_defn = DECL_INITIAL (new_friend) != NULL_TREE;
4465 new_friend_result_template_info = NULL_TREE;
4466 }
4467
4468 /* Inside pushdecl_namespace_level, we will push into the
4469 current namespace. However, the friend function should go
4470 into the namespace of the template. */
4471 ns = decl_namespace_context (new_friend);
4472 push_nested_namespace (ns);
4473 old_decl = pushdecl_namespace_level (new_friend);
4474 pop_nested_namespace (ns);
4475
4476 if (old_decl != new_friend)
4477 {
4478 /* This new friend declaration matched an existing
4479 declaration. For example, given:
4480
4481 template <class T> void f(T);
4482 template <class U> class C {
4483 template <class T> friend void f(T) {}
4484 };
4485
4486 the friend declaration actually provides the definition
4487 of `f', once C has been instantiated for some type. So,
4488 old_decl will be the out-of-class template declaration,
4489 while new_friend is the in-class definition.
4490
4491 But, if `f' was called before this point, the
4492 instantiation of `f' will have DECL_TI_ARGS corresponding
4493 to `T' but not to `U', references to which might appear
4494 in the definition of `f'. Previously, the most general
4495 template for an instantiation of `f' was the out-of-class
4496 version; now it is the in-class version. Therefore, we
4497 run through all specialization of `f', adding to their
4498 DECL_TI_ARGS appropriately. In particular, they need a
4499 new set of outer arguments, corresponding to the
4500 arguments for this class instantiation.
4501
4502 The same situation can arise with something like this:
4503
4504 friend void f(int);
4505 template <class T> class C {
4506 friend void f(T) {}
4507 };
4508
4509 when `C<int>' is instantiated. Now, `f(int)' is defined
4510 in the class. */
4511
4512 if (!new_friend_is_defn)
4513 /* On the other hand, if the in-class declaration does
4514 *not* provide a definition, then we don't want to alter
4515 existing definitions. We can just leave everything
4516 alone. */
4517 ;
4518 else
4519 {
4520 /* Overwrite whatever template info was there before, if
4521 any, with the new template information pertaining to
4522 the declaration. */
4523 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
4524
4525 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
4526 /* duplicate_decls will take care of this case. */
4527 ;
4528 else
4529 {
4530 tree t;
4531 tree new_friend_args;
4532
4533 DECL_TEMPLATE_INFO (DECL_RESULT (old_decl))
4534 = new_friend_result_template_info;
4535
4536 new_friend_args = TI_ARGS (new_friend_template_info);
4537 for (t = DECL_TEMPLATE_SPECIALIZATIONS (old_decl);
4538 t != NULL_TREE;
4539 t = TREE_CHAIN (t))
4540 {
4541 tree spec = TREE_VALUE (t);
4542
4543 DECL_TI_ARGS (spec)
4544 = add_outermost_template_args (new_friend_args,
4545 DECL_TI_ARGS (spec));
4546 }
4547
4548 /* Now, since specializations are always supposed to
4549 hang off of the most general template, we must move
4550 them. */
4551 t = most_general_template (old_decl);
4552 if (t != old_decl)
4553 {
4554 DECL_TEMPLATE_SPECIALIZATIONS (t)
4555 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (t),
4556 DECL_TEMPLATE_SPECIALIZATIONS (old_decl));
4557 DECL_TEMPLATE_SPECIALIZATIONS (old_decl) = NULL_TREE;
4558 }
4559 }
4560 }
4561
4562 /* The information from NEW_FRIEND has been merged into OLD_DECL
4563 by duplicate_decls. */
4564 new_friend = old_decl;
4565 }
4566 }
4567 else if (TYPE_SIZE (DECL_CONTEXT (new_friend)))
4568 {
4569 /* Check to see that the declaration is really present, and,
4570 possibly obtain an improved declaration. */
4571 tree fn = check_classfn (DECL_CONTEXT (new_friend),
4572 new_friend);
4573
4574 if (fn)
4575 new_friend = fn;
4576 }
4577
4578 done:
4579 lineno = line;
4580 input_filename = file;
4581 return new_friend;
4582 }
4583
4584 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
4585 template arguments, as for tsubst.
4586
4587 Returns an appropriate tsbust'd friend type. */
4588
4589 static tree
4590 tsubst_friend_class (friend_tmpl, args)
4591 tree friend_tmpl;
4592 tree args;
4593 {
4594 tree friend_type;
4595 tree tmpl;
4596
4597 /* First, we look for a class template. */
4598 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/0);
4599
4600 /* But, if we don't find one, it might be because we're in a
4601 situation like this:
4602
4603 template <class T>
4604 struct S {
4605 template <class U>
4606 friend struct S;
4607 };
4608
4609 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
4610 for `S<int>', not the TEMPLATE_DECL. */
4611 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
4612 {
4613 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/1);
4614 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
4615 }
4616
4617 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
4618 {
4619 /* The friend template has already been declared. Just
4620 check to see that the declarations match, and install any new
4621 default parameters. We must tsubst the default parameters,
4622 of course. We only need the innermost template parameters
4623 because that is all that redeclare_class_template will look
4624 at. */
4625 tree parms
4626 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
4627 args, /*complain=*/1);
4628 redeclare_class_template (TREE_TYPE (tmpl), parms);
4629 friend_type = TREE_TYPE (tmpl);
4630 }
4631 else
4632 {
4633 /* The friend template has not already been declared. In this
4634 case, the instantiation of the template class will cause the
4635 injection of this template into the global scope. */
4636 tmpl = tsubst (friend_tmpl, args, /*complain=*/1, NULL_TREE);
4637
4638 /* The new TMPL is not an instantiation of anything, so we
4639 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
4640 the new type because that is supposed to be the corresponding
4641 template decl, i.e., TMPL. */
4642 DECL_USE_TEMPLATE (tmpl) = 0;
4643 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
4644 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
4645
4646 /* Inject this template into the global scope. */
4647 friend_type = TREE_TYPE (pushdecl_top_level (tmpl));
4648 }
4649
4650 return friend_type;
4651 }
4652
4653 tree
4654 instantiate_class_template (type)
4655 tree type;
4656 {
4657 tree template, args, pattern, t;
4658 tree typedecl;
4659
4660 if (type == error_mark_node)
4661 return error_mark_node;
4662
4663 if (TYPE_BEING_DEFINED (type) || TYPE_SIZE (type))
4664 return type;
4665
4666 /* Figure out which template is being instantiated. */
4667 template = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
4668 my_friendly_assert (TREE_CODE (template) == TEMPLATE_DECL, 279);
4669
4670 /* Figure out which arguments are being used to do the
4671 instantiation. */
4672 args = CLASSTYPE_TI_ARGS (type);
4673 PARTIAL_INSTANTIATION_P (type) = uses_template_parms (args);
4674
4675 if (pedantic && PARTIAL_INSTANTIATION_P (type))
4676 /* If this is a partial instantiation, then we can't instantiate
4677 the type; there's no telling whether or not one of the
4678 template parameters might eventually be instantiated to some
4679 value that results in a specialization being used. For
4680 example, consider:
4681
4682 template <class T>
4683 struct S {};
4684
4685 template <class U>
4686 void f(S<U>);
4687
4688 template <>
4689 struct S<int> {};
4690
4691 Now, the `S<U>' in `f<int>' is the specialization, not an
4692 instantiation of the original template. */
4693 return type;
4694
4695 /* Determine what specialization of the original template to
4696 instantiate. */
4697 if (PARTIAL_INSTANTIATION_P (type))
4698 /* There's no telling which specialization is appropriate at this
4699 point. Since all peeking at the innards of this partial
4700 instantiation are extensions (like the "implicit typename"
4701 extension, which allows users to omit the keyword `typename' on
4702 names that are declared as types in template base classes), we
4703 are free to do what we please.
4704
4705 Trying to figure out which partial instantiation to use can
4706 cause a crash. (Some of the template arguments don't even have
4707 types.) So, we just use the most general version. */
4708 t = NULL_TREE;
4709 else
4710 {
4711 t = most_specialized_class (template, args);
4712
4713 if (t == error_mark_node)
4714 {
4715 const char *str = "candidates are:";
4716 cp_error ("ambiguous class template instantiation for `%#T'", type);
4717 for (t = DECL_TEMPLATE_SPECIALIZATIONS (template); t;
4718 t = TREE_CHAIN (t))
4719 {
4720 if (get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t),
4721 args))
4722 {
4723 cp_error_at ("%s %+#T", str, TREE_TYPE (t));
4724 str = " ";
4725 }
4726 }
4727 TYPE_BEING_DEFINED (type) = 1;
4728 return error_mark_node;
4729 }
4730 }
4731
4732 if (t)
4733 pattern = TREE_TYPE (t);
4734 else
4735 pattern = TREE_TYPE (template);
4736
4737 /* If the template we're instantiating is incomplete, then clearly
4738 there's nothing we can do. */
4739 if (TYPE_SIZE (pattern) == NULL_TREE)
4740 return type;
4741
4742 /* If this is a partial instantiation, don't tsubst anything. We will
4743 only use this type for implicit typename, so the actual contents don't
4744 matter. All that matters is whether a particular name is a type. */
4745 if (PARTIAL_INSTANTIATION_P (type))
4746 {
4747 /* The fields set here must be kept in sync with those cleared
4748 in begin_class_definition. */
4749 TYPE_BINFO_BASETYPES (type) = TYPE_BINFO_BASETYPES (pattern);
4750 TYPE_FIELDS (type) = TYPE_FIELDS (pattern);
4751 TYPE_METHODS (type) = TYPE_METHODS (pattern);
4752 CLASSTYPE_TAGS (type) = CLASSTYPE_TAGS (pattern);
4753 /* Pretend that the type is complete, so that we will look
4754 inside it during name lookup and such. */
4755 TYPE_SIZE (type) = integer_zero_node;
4756 return type;
4757 }
4758
4759 /* If we've recursively instantiated too many templates, stop. */
4760 if (! push_tinst_level (type))
4761 return type;
4762
4763 /* Now we're really doing the instantiation. Mark the type as in
4764 the process of being defined. */
4765 TYPE_BEING_DEFINED (type) = 1;
4766
4767 maybe_push_to_top_level (uses_template_parms (type));
4768
4769 if (t)
4770 {
4771 /* This TYPE is actually a instantiation of of a partial
4772 specialization. We replace the innermost set of ARGS with
4773 the arguments appropriate for substitution. For example,
4774 given:
4775
4776 template <class T> struct S {};
4777 template <class T> struct S<T*> {};
4778
4779 and supposing that we are instantiating S<int*>, ARGS will
4780 present be {int*} but we need {int}. */
4781 tree inner_args
4782 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t),
4783 args);
4784
4785 /* If there were multiple levels in ARGS, replacing the
4786 innermost level would alter CLASSTYPE_TI_ARGS, which we don't
4787 want, so we make a copy first. */
4788 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
4789 {
4790 args = copy_node (args);
4791 SET_TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args), inner_args);
4792 }
4793 else
4794 args = inner_args;
4795 }
4796
4797 if (flag_external_templates)
4798 {
4799 if (flag_alt_external_templates)
4800 {
4801 CLASSTYPE_INTERFACE_ONLY (type) = interface_only;
4802 SET_CLASSTYPE_INTERFACE_UNKNOWN_X (type, interface_unknown);
4803 CLASSTYPE_VTABLE_NEEDS_WRITING (type)
4804 = (! CLASSTYPE_INTERFACE_ONLY (type)
4805 && CLASSTYPE_INTERFACE_KNOWN (type));
4806 }
4807 else
4808 {
4809 CLASSTYPE_INTERFACE_ONLY (type) = CLASSTYPE_INTERFACE_ONLY (pattern);
4810 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
4811 (type, CLASSTYPE_INTERFACE_UNKNOWN (pattern));
4812 CLASSTYPE_VTABLE_NEEDS_WRITING (type)
4813 = (! CLASSTYPE_INTERFACE_ONLY (type)
4814 && CLASSTYPE_INTERFACE_KNOWN (type));
4815 }
4816 }
4817 else
4818 {
4819 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
4820 CLASSTYPE_VTABLE_NEEDS_WRITING (type) = 1;
4821 }
4822
4823 TYPE_HAS_CONSTRUCTOR (type) = TYPE_HAS_CONSTRUCTOR (pattern);
4824 TYPE_HAS_DESTRUCTOR (type) = TYPE_HAS_DESTRUCTOR (pattern);
4825 TYPE_OVERLOADS_CALL_EXPR (type) = TYPE_OVERLOADS_CALL_EXPR (pattern);
4826 TYPE_OVERLOADS_ARRAY_REF (type) = TYPE_OVERLOADS_ARRAY_REF (pattern);
4827 TYPE_OVERLOADS_ARROW (type) = TYPE_OVERLOADS_ARROW (pattern);
4828 TYPE_GETS_NEW (type) = TYPE_GETS_NEW (pattern);
4829 TYPE_GETS_DELETE (type) = TYPE_GETS_DELETE (pattern);
4830 TYPE_VEC_DELETE_TAKES_SIZE (type) = TYPE_VEC_DELETE_TAKES_SIZE (pattern);
4831 TYPE_HAS_ASSIGN_REF (type) = TYPE_HAS_ASSIGN_REF (pattern);
4832 TYPE_HAS_CONST_ASSIGN_REF (type) = TYPE_HAS_CONST_ASSIGN_REF (pattern);
4833 TYPE_HAS_ABSTRACT_ASSIGN_REF (type) = TYPE_HAS_ABSTRACT_ASSIGN_REF (pattern);
4834 TYPE_HAS_INIT_REF (type) = TYPE_HAS_INIT_REF (pattern);
4835 TYPE_HAS_CONST_INIT_REF (type) = TYPE_HAS_CONST_INIT_REF (pattern);
4836 TYPE_HAS_DEFAULT_CONSTRUCTOR (type) = TYPE_HAS_DEFAULT_CONSTRUCTOR (pattern);
4837 TYPE_HAS_CONVERSION (type) = TYPE_HAS_CONVERSION (pattern);
4838 TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type)
4839 = TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (pattern);
4840 TYPE_USES_MULTIPLE_INHERITANCE (type)
4841 = TYPE_USES_MULTIPLE_INHERITANCE (pattern);
4842 TYPE_USES_VIRTUAL_BASECLASSES (type)
4843 = TYPE_USES_VIRTUAL_BASECLASSES (pattern);
4844 TYPE_PACKED (type) = TYPE_PACKED (pattern);
4845 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
4846 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
4847 if (ANON_AGGR_TYPE_P (pattern))
4848 SET_ANON_AGGR_TYPE_P (type);
4849
4850 if (TYPE_BINFO_BASETYPES (pattern))
4851 {
4852 tree base_list = NULL_TREE;
4853 tree pbases = TYPE_BINFO_BASETYPES (pattern);
4854 int i;
4855
4856 /* Substitute into each of the bases to determine the actual
4857 basetypes. */
4858 for (i = 0; i < TREE_VEC_LENGTH (pbases); ++i)
4859 {
4860 tree base;
4861 tree access;
4862 tree pbase;
4863
4864 pbase = TREE_VEC_ELT (pbases, i);
4865
4866 /* Substitue to figure out the base class. */
4867 base = tsubst (BINFO_TYPE (pbase), args,
4868 /*complain=*/1, NULL_TREE);
4869 if (base == error_mark_node)
4870 continue;
4871
4872 /* Calculate the correct access node. */
4873 if (TREE_VIA_VIRTUAL (pbase))
4874 {
4875 if (TREE_VIA_PUBLIC (pbase))
4876 access = access_public_virtual_node;
4877 else if (TREE_VIA_PROTECTED (pbase))
4878 access = access_protected_virtual_node;
4879 else
4880 access = access_private_virtual_node;
4881 }
4882 else
4883 {
4884 if (TREE_VIA_PUBLIC (pbase))
4885 access = access_public_node;
4886 else if (TREE_VIA_PROTECTED (pbase))
4887 access = access_protected_node;
4888 else
4889 access = access_private_node;
4890 }
4891
4892 base_list = tree_cons (access, base, base_list);
4893 }
4894
4895 /* The list is now in reverse order; correct that. */
4896 base_list = nreverse (base_list);
4897
4898 /* Now call xref_basetypes to set up all the base-class
4899 information. */
4900 xref_basetypes (TREE_CODE (pattern) == RECORD_TYPE
4901 ? (CLASSTYPE_DECLARED_CLASS (pattern)
4902 ? class_type_node : record_type_node)
4903 : union_type_node,
4904 DECL_NAME (TYPE_NAME (pattern)),
4905 type,
4906 base_list);
4907 }
4908
4909 /* Now that our base classes are set up, enter the scope of the
4910 class, so that name lookups into base classes, etc. will work
4911 corectly. This is precisely analagous to what we do in
4912 begin_class_definition when defining an ordinary non-template
4913 class. */
4914 pushclass (type, 1);
4915
4916 for (t = CLASSTYPE_TAGS (pattern); t; t = TREE_CHAIN (t))
4917 {
4918 tree tag = TREE_VALUE (t);
4919 tree name = TYPE_IDENTIFIER (tag);
4920 tree newtag;
4921
4922 newtag = tsubst (tag, args, /*complain=*/1, NULL_TREE);
4923 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
4924 {
4925 if (TYPE_LANG_SPECIFIC (tag) && CLASSTYPE_IS_TEMPLATE (tag))
4926 /* Unfortunately, lookup_template_class sets
4927 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
4928 instantiation (i.e., for the type of a member template
4929 class nested within a template class.) This behavior is
4930 required for maybe_process_partial_specialization to work
4931 correctly, but is not accurate in this case; the TAG is not
4932 an instantiation of anything. (The corresponding
4933 TEMPLATE_DECL is an instantiation, but the TYPE is not.) */
4934 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
4935
4936 /* Now, we call pushtag to put this NEWTAG into the scope of
4937 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
4938 pushtag calling push_template_decl. We don't have to do
4939 this for enums because it will already have been done in
4940 tsubst_enum. */
4941 if (name)
4942 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
4943 pushtag (name, newtag, /*globalize=*/0);
4944 }
4945 }
4946
4947 /* Don't replace enum constants here. */
4948 for (t = TYPE_FIELDS (pattern); t; t = TREE_CHAIN (t))
4949 if (TREE_CODE (t) != CONST_DECL)
4950 {
4951 tree r;
4952
4953 /* The the file and line for this declaration, to assist in
4954 error message reporting. Since we called push_tinst_level
4955 above, we don't need to restore these. */
4956 lineno = DECL_SOURCE_LINE (t);
4957 input_filename = DECL_SOURCE_FILE (t);
4958
4959 r = tsubst (t, args, /*complain=*/1, NULL_TREE);
4960 if (TREE_CODE (r) == VAR_DECL)
4961 {
4962 tree init;
4963
4964 if (DECL_DEFINED_IN_CLASS_P (r))
4965 init = tsubst_expr (DECL_INITIAL (t), args,
4966 /*complain=*/1, NULL_TREE);
4967 else
4968 init = NULL_TREE;
4969
4970 finish_static_data_member_decl (r, init,
4971 /*asmspec_tree=*/NULL_TREE,
4972 /*flags=*/0);
4973
4974 if (DECL_DEFINED_IN_CLASS_P (r))
4975 check_static_variable_definition (r, TREE_TYPE (r));
4976 }
4977
4978 /* R will have a TREE_CHAIN if and only if it has already been
4979 processed by finish_member_declaration. This can happen
4980 if, for example, it is a TYPE_DECL for a class-scoped
4981 ENUMERAL_TYPE; such a thing will already have been added to
4982 the field list by tsubst_enum above. */
4983 if (!TREE_CHAIN (r))
4984 {
4985 set_current_access_from_decl (r);
4986 finish_member_declaration (r);
4987 }
4988 }
4989
4990 /* Set up the list (TYPE_METHODS) and vector (CLASSTYPE_METHOD_VEC)
4991 for this instantiation. */
4992 for (t = TYPE_METHODS (pattern); t; t = TREE_CHAIN (t))
4993 {
4994 tree r = tsubst (t, args, /*complain=*/1, NULL_TREE);
4995 set_current_access_from_decl (r);
4996 finish_member_declaration (r);
4997 }
4998
4999 /* Construct the DECL_FRIENDLIST for the new class type. */
5000 typedecl = TYPE_MAIN_DECL (type);
5001 for (t = DECL_FRIENDLIST (TYPE_MAIN_DECL (pattern));
5002 t != NULL_TREE;
5003 t = TREE_CHAIN (t))
5004 {
5005 tree friends;
5006
5007 for (friends = TREE_VALUE (t);
5008 friends != NULL_TREE;
5009 friends = TREE_CHAIN (friends))
5010 if (TREE_PURPOSE (friends) == error_mark_node)
5011 add_friend (type,
5012 tsubst_friend_function (TREE_VALUE (friends),
5013 args));
5014 else
5015 add_friends (type,
5016 tsubst_copy (TREE_PURPOSE (t), args,
5017 /*complain=*/1, NULL_TREE),
5018 tsubst (TREE_PURPOSE (friends), args,
5019 /*complain=*/1, NULL_TREE));
5020 }
5021
5022 for (t = CLASSTYPE_FRIEND_CLASSES (pattern);
5023 t != NULL_TREE;
5024 t = TREE_CHAIN (t))
5025 {
5026 tree friend_type = TREE_VALUE (t);
5027 tree new_friend_type;
5028
5029 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5030 new_friend_type = tsubst_friend_class (friend_type, args);
5031 else if (uses_template_parms (friend_type))
5032 new_friend_type = tsubst (friend_type, args, /*complain=*/1,
5033 NULL_TREE);
5034 else
5035 {
5036 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
5037
5038 /* The call to xref_tag_from_type does injection for friend
5039 classes. */
5040 push_nested_namespace (ns);
5041 new_friend_type =
5042 xref_tag_from_type (friend_type, NULL_TREE, 1);
5043 pop_nested_namespace (ns);
5044 }
5045
5046 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5047 /* Trick make_friend_class into realizing that the friend
5048 we're adding is a template, not an ordinary class. It's
5049 important that we use make_friend_class since it will
5050 perform some error-checking and output cross-reference
5051 information. */
5052 ++processing_template_decl;
5053
5054 make_friend_class (type, new_friend_type);
5055
5056 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5057 --processing_template_decl;
5058 }
5059
5060 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
5061 if (TREE_CODE (t) == FIELD_DECL)
5062 {
5063 TREE_TYPE (t) = complete_type (TREE_TYPE (t));
5064 require_complete_type (t);
5065 }
5066
5067 /* Set the file and line number information to whatever is given for
5068 the class itself. This puts error messages involving generated
5069 implicit functions at a predictable point, and the same point
5070 that would be used for non-template classes. */
5071 lineno = DECL_SOURCE_LINE (typedecl);
5072 input_filename = DECL_SOURCE_FILE (typedecl);
5073
5074 unreverse_member_declarations (type);
5075 finish_struct_1 (type);
5076 CLASSTYPE_GOT_SEMICOLON (type) = 1;
5077
5078 /* Clear this now so repo_template_used is happy. */
5079 TYPE_BEING_DEFINED (type) = 0;
5080 repo_template_used (type);
5081
5082 /* Now that the class is complete, instantiate default arguments for
5083 any member functions. We don't do this earlier because the
5084 default arguments may reference members of the class. */
5085 if (!PRIMARY_TEMPLATE_P (template))
5086 for (t = TYPE_METHODS (type); t; t = TREE_CHAIN (t))
5087 if (TREE_CODE (t) == FUNCTION_DECL
5088 /* Implicitly generated member functions will not have tmplate
5089 information; they are not instantiations, but instead are
5090 created "fresh" for each instantiation. */
5091 && DECL_TEMPLATE_INFO (t))
5092 tsubst_default_arguments (t);
5093
5094 popclass ();
5095 pop_from_top_level ();
5096 pop_tinst_level ();
5097
5098 return type;
5099 }
5100
5101 static int
5102 list_eq (t1, t2)
5103 tree t1, t2;
5104 {
5105 if (t1 == NULL_TREE)
5106 return t2 == NULL_TREE;
5107 if (t2 == NULL_TREE)
5108 return 0;
5109 /* Don't care if one declares its arg const and the other doesn't -- the
5110 main variant of the arg type is all that matters. */
5111 if (TYPE_MAIN_VARIANT (TREE_VALUE (t1))
5112 != TYPE_MAIN_VARIANT (TREE_VALUE (t2)))
5113 return 0;
5114 return list_eq (TREE_CHAIN (t1), TREE_CHAIN (t2));
5115 }
5116
5117 /* If arg is a non-type template parameter that does not depend on template
5118 arguments, fold it like we weren't in the body of a template. */
5119
5120 static tree
5121 maybe_fold_nontype_arg (arg)
5122 tree arg;
5123 {
5124 if (TREE_CODE_CLASS (TREE_CODE (arg)) != 't'
5125 && !uses_template_parms (arg))
5126 {
5127 /* Sometimes, one of the args was an expression involving a
5128 template constant parameter, like N - 1. Now that we've
5129 tsubst'd, we might have something like 2 - 1. This will
5130 confuse lookup_template_class, so we do constant folding
5131 here. We have to unset processing_template_decl, to
5132 fool build_expr_from_tree() into building an actual
5133 tree. */
5134
5135 int saved_processing_template_decl = processing_template_decl;
5136 processing_template_decl = 0;
5137 arg = fold (build_expr_from_tree (arg));
5138 processing_template_decl = saved_processing_template_decl;
5139 }
5140 return arg;
5141 }
5142
5143 /* Return the TREE_VEC with the arguments for the innermost template header,
5144 where ARGS is either that or the VEC of VECs for all the
5145 arguments. */
5146
5147 tree
5148 innermost_args (args)
5149 tree args;
5150 {
5151 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
5152 }
5153
5154 /* Substitute ARGS into the vector of template arguments T. */
5155
5156 static tree
5157 tsubst_template_arg_vector (t, args, complain)
5158 tree t;
5159 tree args;
5160 int complain;
5161 {
5162 int len = TREE_VEC_LENGTH (t), need_new = 0, i;
5163 tree *elts = (tree *) alloca (len * sizeof (tree));
5164
5165 bzero ((char *) elts, len * sizeof (tree));
5166
5167 for (i = 0; i < len; i++)
5168 {
5169 if (TREE_VEC_ELT (t, i) != NULL_TREE
5170 && TREE_CODE (TREE_VEC_ELT (t, i)) == TREE_VEC)
5171 elts[i] = tsubst_template_arg_vector (TREE_VEC_ELT (t, i),
5172 args, complain);
5173 else
5174 elts[i] = maybe_fold_nontype_arg
5175 (tsubst_expr (TREE_VEC_ELT (t, i), args, complain,
5176 NULL_TREE));
5177
5178 if (elts[i] != TREE_VEC_ELT (t, i))
5179 need_new = 1;
5180 }
5181
5182 if (!need_new)
5183 return t;
5184
5185 t = make_tree_vec (len);
5186 for (i = 0; i < len; i++)
5187 TREE_VEC_ELT (t, i) = elts[i];
5188
5189 return t;
5190 }
5191
5192 /* Return the result of substituting ARGS into the template parameters
5193 given by PARMS. If there are m levels of ARGS and m + n levels of
5194 PARMS, then the result will contain n levels of PARMS. For
5195 example, if PARMS is `template <class T> template <class U>
5196 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
5197 result will be `template <int*, double, class V>'. */
5198
5199 static tree
5200 tsubst_template_parms (parms, args, complain)
5201 tree parms;
5202 tree args;
5203 int complain;
5204 {
5205 tree r = NULL_TREE;
5206 tree* new_parms;
5207
5208 for (new_parms = &r;
5209 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
5210 new_parms = &(TREE_CHAIN (*new_parms)),
5211 parms = TREE_CHAIN (parms))
5212 {
5213 tree new_vec =
5214 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
5215 int i;
5216
5217 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
5218 {
5219 tree default_value =
5220 TREE_PURPOSE (TREE_VEC_ELT (TREE_VALUE (parms), i));
5221 tree parm_decl =
5222 TREE_VALUE (TREE_VEC_ELT (TREE_VALUE (parms), i));
5223
5224 TREE_VEC_ELT (new_vec, i)
5225 = build_tree_list (tsubst (default_value, args, complain,
5226 NULL_TREE),
5227 tsubst (parm_decl, args, complain,
5228 NULL_TREE));
5229 }
5230
5231 *new_parms =
5232 tree_cons (build_int_2 (0, (TMPL_PARMS_DEPTH (parms)
5233 - TMPL_ARGS_DEPTH (args))),
5234 new_vec, NULL_TREE);
5235 }
5236
5237 return r;
5238 }
5239
5240 /* Substitute the ARGS into the indicated aggregate (or enumeration)
5241 type T. If T is not an aggregate or enumeration type, it is
5242 handled as if by tsubst. IN_DECL is as for tsubst. If
5243 ENTERING_SCOPE is non-zero, T is the context for a template which
5244 we are presently tsubst'ing. Return the subsituted value. */
5245
5246 static tree
5247 tsubst_aggr_type (t, args, complain, in_decl, entering_scope)
5248 tree t;
5249 tree args;
5250 int complain;
5251 tree in_decl;
5252 int entering_scope;
5253 {
5254 if (t == NULL_TREE)
5255 return NULL_TREE;
5256
5257 switch (TREE_CODE (t))
5258 {
5259 case RECORD_TYPE:
5260 if (TYPE_PTRMEMFUNC_P (t))
5261 {
5262 tree r = build_ptrmemfunc_type
5263 (tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl));
5264 return cp_build_qualified_type_real (r, TYPE_QUALS (t),
5265 complain);
5266 }
5267
5268 /* else fall through */
5269 case ENUMERAL_TYPE:
5270 case UNION_TYPE:
5271 if (TYPE_TEMPLATE_INFO (t))
5272 {
5273 tree argvec;
5274 tree context;
5275 tree r;
5276
5277 /* First, determine the context for the type we are looking
5278 up. */
5279 if (TYPE_CONTEXT (t) != NULL_TREE)
5280 context = tsubst_aggr_type (TYPE_CONTEXT (t), args,
5281 complain,
5282 in_decl, /*entering_scope=*/1);
5283 else
5284 context = NULL_TREE;
5285
5286 /* Then, figure out what arguments are appropriate for the
5287 type we are trying to find. For example, given:
5288
5289 template <class T> struct S;
5290 template <class T, class U> void f(T, U) { S<U> su; }
5291
5292 and supposing that we are instantiating f<int, double>,
5293 then our ARGS will be {int, double}, but, when looking up
5294 S we only want {double}. */
5295 argvec = tsubst_template_arg_vector (TYPE_TI_ARGS (t), args,
5296 complain);
5297
5298 r = lookup_template_class (t, argvec, in_decl, context,
5299 entering_scope);
5300
5301 return cp_build_qualified_type_real (r, TYPE_QUALS (t),
5302 complain);
5303 }
5304 else
5305 /* This is not a template type, so there's nothing to do. */
5306 return t;
5307
5308 default:
5309 return tsubst (t, args, complain, in_decl);
5310 }
5311 }
5312
5313 /* Substitute into the default argument ARG (a default argument for
5314 FN), which has the indicated TYPE. */
5315
5316 tree
5317 tsubst_default_argument (fn, type, arg)
5318 tree fn;
5319 tree type;
5320 tree arg;
5321 {
5322 /* This default argument came from a template. Instantiate the
5323 default argument here, not in tsubst. In the case of
5324 something like:
5325
5326 template <class T>
5327 struct S {
5328 static T t();
5329 void f(T = t());
5330 };
5331
5332 we must be careful to do name lookup in the scope of S<T>,
5333 rather than in the current class. */
5334 if (DECL_CLASS_SCOPE_P (fn))
5335 pushclass (DECL_REAL_CONTEXT (fn), 2);
5336
5337 arg = tsubst_expr (arg, DECL_TI_ARGS (fn), /*complain=*/1, NULL_TREE);
5338
5339 if (DECL_CLASS_SCOPE_P (fn))
5340 popclass ();
5341
5342 /* Make sure the default argument is reasonable. */
5343 arg = check_default_argument (type, arg);
5344
5345 return arg;
5346 }
5347
5348 /* Substitute into all the default arguments for FN. */
5349
5350 static void
5351 tsubst_default_arguments (fn)
5352 tree fn;
5353 {
5354 tree arg;
5355 tree tmpl_args;
5356
5357 tmpl_args = DECL_TI_ARGS (fn);
5358
5359 /* If this function is not yet instantiated, we certainly don't need
5360 its default arguments. */
5361 if (uses_template_parms (tmpl_args))
5362 return;
5363
5364 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
5365 arg;
5366 arg = TREE_CHAIN (arg))
5367 if (TREE_PURPOSE (arg))
5368 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
5369 TREE_VALUE (arg),
5370 TREE_PURPOSE (arg));
5371 }
5372
5373 /* Substitute the ARGS into the T, which is a _DECL. TYPE is the
5374 (already computed) substitution of ARGS into TREE_TYPE (T), if
5375 appropriate. Return the result of the substitution. IN_DECL is as
5376 for tsubst. */
5377
5378 static tree
5379 tsubst_decl (t, args, type, in_decl)
5380 tree t;
5381 tree args;
5382 tree type;
5383 tree in_decl;
5384 {
5385 int saved_lineno;
5386 char* saved_filename;
5387 tree r = NULL_TREE;
5388
5389 /* Set the filename and linenumber to improve error-reporting. */
5390 saved_lineno = lineno;
5391 saved_filename = input_filename;
5392 lineno = DECL_SOURCE_LINE (t);
5393 input_filename = DECL_SOURCE_FILE (t);
5394
5395 switch (TREE_CODE (t))
5396 {
5397 case TEMPLATE_DECL:
5398 {
5399 /* We can get here when processing a member template function
5400 of a template class. */
5401 tree decl = DECL_TEMPLATE_RESULT (t);
5402 tree spec;
5403 int is_template_template_parm = DECL_TEMPLATE_TEMPLATE_PARM_P (t);
5404
5405 if (!is_template_template_parm)
5406 {
5407 /* We might already have an instance of this template.
5408 The ARGS are for the surrounding class type, so the
5409 full args contain the tsubst'd args for the context,
5410 plus the innermost args from the template decl. */
5411 tree tmpl_args = DECL_CLASS_TEMPLATE_P (t)
5412 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
5413 : DECL_TI_ARGS (DECL_RESULT (t));
5414 tree full_args;
5415
5416 full_args = tsubst_template_arg_vector (tmpl_args, args,
5417 /*complain=*/1);
5418
5419 /* tsubst_template_arg_vector doesn't copy the vector if
5420 nothing changed. But, *something* should have
5421 changed. */
5422 my_friendly_assert (full_args != tmpl_args, 0);
5423
5424 spec = retrieve_specialization (t, full_args);
5425 if (spec != NULL_TREE)
5426 {
5427 r = spec;
5428 break;
5429 }
5430 }
5431
5432 /* Make a new template decl. It will be similar to the
5433 original, but will record the current template arguments.
5434 We also create a new function declaration, which is just
5435 like the old one, but points to this new template, rather
5436 than the old one. */
5437 r = copy_node (t);
5438 copy_lang_decl (r);
5439 my_friendly_assert (DECL_LANG_SPECIFIC (r) != 0, 0);
5440 TREE_CHAIN (r) = NULL_TREE;
5441
5442 if (is_template_template_parm)
5443 {
5444 tree new_decl = tsubst (decl, args, /*complain=*/1, in_decl);
5445 DECL_RESULT (r) = new_decl;
5446 TREE_TYPE (r) = TREE_TYPE (new_decl);
5447 break;
5448 }
5449
5450 DECL_CONTEXT (r)
5451 = tsubst_aggr_type (DECL_CONTEXT (t), args, /*complain=*/1,
5452 in_decl, /*entering_scope=*/1);
5453 DECL_CLASS_CONTEXT (r)
5454 = tsubst_aggr_type (DECL_CLASS_CONTEXT (t), args,
5455 /*complain=*/1, in_decl,
5456 /*entering_scope=*/1);
5457 DECL_TEMPLATE_INFO (r) = build_tree_list (t, args);
5458
5459 if (TREE_CODE (decl) == TYPE_DECL)
5460 {
5461 tree new_type = tsubst (TREE_TYPE (t), args,
5462 /*complain=*/1, in_decl);
5463 TREE_TYPE (r) = new_type;
5464 CLASSTYPE_TI_TEMPLATE (new_type) = r;
5465 DECL_RESULT (r) = TYPE_MAIN_DECL (new_type);
5466 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
5467 }
5468 else
5469 {
5470 tree new_decl = tsubst (decl, args, /*complain=*/1, in_decl);
5471 DECL_RESULT (r) = new_decl;
5472 DECL_TI_TEMPLATE (new_decl) = r;
5473 TREE_TYPE (r) = TREE_TYPE (new_decl);
5474 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
5475 }
5476
5477 SET_DECL_IMPLICIT_INSTANTIATION (r);
5478 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
5479 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
5480
5481 /* The template parameters for this new template are all the
5482 template parameters for the old template, except the
5483 outermost level of parameters. */
5484 DECL_TEMPLATE_PARMS (r)
5485 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
5486 /*complain=*/1);
5487
5488 if (PRIMARY_TEMPLATE_P (t))
5489 DECL_PRIMARY_TEMPLATE (r) = r;
5490
5491 /* We don't partially instantiate partial specializations. */
5492 if (TREE_CODE (decl) == TYPE_DECL)
5493 break;
5494
5495 for (spec = DECL_TEMPLATE_SPECIALIZATIONS (t);
5496 spec != NULL_TREE;
5497 spec = TREE_CHAIN (spec))
5498 {
5499 /* It helps to consider example here. Consider:
5500
5501 template <class T>
5502 struct S {
5503 template <class U>
5504 void f(U u);
5505
5506 template <>
5507 void f(T* t) {}
5508 };
5509
5510 Now, for example, we are instantiating S<int>::f(U u).
5511 We want to make a template:
5512
5513 template <class U>
5514 void S<int>::f(U);
5515
5516 It will have a specialization, for the case U = int*, of
5517 the form:
5518
5519 template <>
5520 void S<int>::f<int*>(int*);
5521
5522 This specialization will be an instantiation of
5523 the specialization given in the declaration of S, with
5524 argument list int*. */
5525
5526 tree fn = TREE_VALUE (spec);
5527 tree spec_args;
5528 tree new_fn;
5529
5530 if (!DECL_TEMPLATE_SPECIALIZATION (fn))
5531 /* Instantiations are on the same list, but they're of
5532 no concern to us. */
5533 continue;
5534
5535 if (TREE_CODE (fn) != TEMPLATE_DECL)
5536 /* A full specialization. There's no need to record
5537 that here. */
5538 continue;
5539
5540 spec_args = tsubst (DECL_TI_ARGS (fn), args,
5541 /*complain=*/1, in_decl);
5542 new_fn = tsubst (DECL_RESULT (most_general_template (fn)),
5543 spec_args, /*complain=*/1, in_decl);
5544 DECL_TI_TEMPLATE (new_fn) = fn;
5545 register_specialization (new_fn, r,
5546 innermost_args (spec_args));
5547 }
5548
5549 /* Record this partial instantiation. */
5550 register_specialization (r, t,
5551 DECL_TI_ARGS (DECL_RESULT (r)));
5552
5553 }
5554 break;
5555
5556 case FUNCTION_DECL:
5557 {
5558 tree ctx;
5559 tree argvec = NULL_TREE;
5560 tree *friends;
5561 tree gen_tmpl;
5562 int member;
5563 int args_depth;
5564 int parms_depth;
5565
5566 /* Nobody should be tsubst'ing into non-template functions. */
5567 my_friendly_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE, 0);
5568
5569 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
5570 {
5571 tree spec;
5572
5573 /* Calculate the most general template of which R is a
5574 specialization, and the complete set of arguments used to
5575 specialize R. */
5576 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
5577 argvec
5578 = tsubst_template_arg_vector (DECL_TI_ARGS
5579 (DECL_TEMPLATE_RESULT (gen_tmpl)),
5580 args, /*complain=*/1);
5581
5582 /* Check to see if we already have this specialization. */
5583 spec = retrieve_specialization (gen_tmpl, argvec);
5584
5585 if (spec)
5586 {
5587 r = spec;
5588 break;
5589 }
5590
5591 /* Here, we deal with the peculiar case:
5592
5593 template <class T> struct S {
5594 template <class U> friend void f();
5595 };
5596 template <class U> friend void f() {}
5597 template S<int>;
5598 template void f<double>();
5599
5600 Here, the ARGS for the instantiation of will be {int,
5601 double}. But, we only need as many ARGS as there are
5602 levels of template parameters in CODE_PATTERN. We are
5603 careful not to get fooled into reducing the ARGS in
5604 situations like:
5605
5606 template <class T> struct S { template <class U> void f(U); }
5607 template <class T> template <> void S<T>::f(int) {}
5608
5609 which we can spot because the pattern will be a
5610 specialization in this case. */
5611 args_depth = TMPL_ARGS_DEPTH (args);
5612 parms_depth =
5613 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
5614 if (args_depth > parms_depth
5615 && !DECL_TEMPLATE_SPECIALIZATION (t))
5616 {
5617 my_friendly_assert (DECL_FRIEND_P (t), 0);
5618
5619 if (parms_depth > 1)
5620 {
5621 int i;
5622
5623 args = make_tree_vec (parms_depth);
5624 for (i = 0; i < parms_depth; ++i)
5625 TREE_VEC_ELT (args, i) =
5626 TREE_VEC_ELT (args, i + (args_depth - parms_depth));
5627 }
5628 else
5629 args = TREE_VEC_ELT (args, args_depth - parms_depth);
5630 }
5631 }
5632 else
5633 {
5634 /* This special case arises when we have something like this:
5635
5636 template <class T> struct S {
5637 friend void f<int>(int, double);
5638 };
5639
5640 Here, the DECL_TI_TEMPLATE for the friend declaration
5641 will be a LOOKUP_EXPR or an IDENTIFIER_NODE. We are
5642 being called from tsubst_friend_function, and we want
5643 only to create a new decl (R) with appropriate types so
5644 that we can call determine_specialization. */
5645 my_friendly_assert ((TREE_CODE (DECL_TI_TEMPLATE (t))
5646 == LOOKUP_EXPR)
5647 || (TREE_CODE (DECL_TI_TEMPLATE (t))
5648 == IDENTIFIER_NODE), 0);
5649 gen_tmpl = NULL_TREE;
5650 }
5651
5652 if (DECL_CLASS_SCOPE_P (t))
5653 {
5654 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
5655 member = 2;
5656 else
5657 member = 1;
5658 ctx = tsubst_aggr_type (DECL_CLASS_CONTEXT (t), args,
5659 /*complain=*/1, t,
5660 /*entering_scope=*/1);
5661 }
5662 else
5663 {
5664 member = 0;
5665 ctx = NULL_TREE;
5666 }
5667 type = tsubst (type, args, /*complain=*/1, in_decl);
5668 if (type == error_mark_node)
5669 return error_mark_node;
5670
5671 /* We do NOT check for matching decls pushed separately at this
5672 point, as they may not represent instantiations of this
5673 template, and in any case are considered separate under the
5674 discrete model. Instead, see add_maybe_template. */
5675
5676 r = copy_node (t);
5677 copy_lang_decl (r);
5678 DECL_USE_TEMPLATE (r) = 0;
5679 TREE_TYPE (r) = type;
5680
5681 DECL_CONTEXT (r)
5682 = tsubst_aggr_type (DECL_CONTEXT (t), args, /*complain=*/1, t,
5683 /*entering_scope=*/1);
5684 DECL_CLASS_CONTEXT (r) = ctx;
5685
5686 if (member && IDENTIFIER_TYPENAME_P (DECL_NAME (r)))
5687 /* Type-conversion operator. Reconstruct the name, in
5688 case it's the name of one of the template's parameters. */
5689 DECL_NAME (r) = build_typename_overload (TREE_TYPE (type));
5690
5691 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
5692 /*complain=*/1, t);
5693 DECL_MAIN_VARIANT (r) = r;
5694 DECL_RESULT (r) = NULL_TREE;
5695
5696 TREE_STATIC (r) = 0;
5697 TREE_PUBLIC (r) = TREE_PUBLIC (t);
5698 DECL_EXTERNAL (r) = 1;
5699 DECL_INTERFACE_KNOWN (r) = 0;
5700 DECL_DEFER_OUTPUT (r) = 0;
5701 TREE_CHAIN (r) = NULL_TREE;
5702 DECL_PENDING_INLINE_INFO (r) = 0;
5703 DECL_PENDING_INLINE_P (r) = 0;
5704 TREE_USED (r) = 0;
5705
5706 /* Set up the DECL_TEMPLATE_INFO for R and compute its mangled
5707 name. There's no need to do this in the special friend
5708 case mentioned above where GEN_TMPL is NULL. */
5709 if (gen_tmpl)
5710 {
5711 DECL_TEMPLATE_INFO (r)
5712 = tree_cons (gen_tmpl, argvec, NULL_TREE);
5713 SET_DECL_IMPLICIT_INSTANTIATION (r);
5714 register_specialization (r, gen_tmpl, argvec);
5715
5716 /* Set the mangled name for R. */
5717 if (DECL_DESTRUCTOR_P (t))
5718 DECL_ASSEMBLER_NAME (r) = build_destructor_name (ctx);
5719 else
5720 {
5721 /* Instantiations of template functions must be mangled
5722 specially, in order to conform to 14.5.5.1
5723 [temp.over.link]. */
5724 tree tmpl = DECL_TI_TEMPLATE (t);
5725
5726 /* TMPL will be NULL if this is a specialization of a
5727 member function of a template class. */
5728 if (name_mangling_version < 1
5729 || tmpl == NULL_TREE
5730 || (member && !is_member_template (tmpl)
5731 && !DECL_TEMPLATE_INFO (tmpl)))
5732 set_mangled_name_for_decl (r);
5733 else
5734 set_mangled_name_for_template_decl (r);
5735 }
5736
5737 DECL_RTL (r) = 0;
5738 make_decl_rtl (r, NULL_PTR, 1);
5739
5740 /* Like grokfndecl. If we don't do this, pushdecl will
5741 mess up our TREE_CHAIN because it doesn't find a
5742 previous decl. Sigh. */
5743 if (member
5744 && ! uses_template_parms (r)
5745 && (IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r))
5746 == NULL_TREE))
5747 SET_IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r), r);
5748
5749 /* We're not supposed to instantiate default arguments
5750 until they are called, for a template. But, for a
5751 declaration like:
5752
5753 template <class T> void f ()
5754 { extern void g(int i = T()); }
5755
5756 we should do the substitution when the template is
5757 instantiated. We handle the member function case in
5758 instantiate_class_template since the default arguments
5759 might refer to other members of the class. */
5760 if (!member
5761 && !PRIMARY_TEMPLATE_P (gen_tmpl)
5762 && !uses_template_parms (argvec))
5763 tsubst_default_arguments (r);
5764 }
5765
5766 /* Copy the list of befriending classes. */
5767 for (friends = &DECL_BEFRIENDING_CLASSES (r);
5768 *friends;
5769 friends = &TREE_CHAIN (*friends))
5770 {
5771 *friends = copy_node (*friends);
5772 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
5773 args, /*complain=*/1,
5774 in_decl);
5775 }
5776
5777 if (DECL_CONSTRUCTOR_P (r))
5778 {
5779 maybe_retrofit_in_chrg (r);
5780 grok_ctor_properties (ctx, r);
5781 }
5782 else if (DECL_OVERLOADED_OPERATOR_P (r))
5783 grok_op_properties (r, DECL_VIRTUAL_P (r), DECL_FRIEND_P (r));
5784 }
5785 break;
5786
5787 case PARM_DECL:
5788 {
5789 r = copy_node (t);
5790 TREE_TYPE (r) = type;
5791 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5792
5793 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
5794 DECL_INITIAL (r) = TREE_TYPE (r);
5795 else
5796 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
5797 /*complain=*/1, in_decl);
5798
5799 DECL_CONTEXT (r) = NULL_TREE;
5800 if (PROMOTE_PROTOTYPES
5801 && (TREE_CODE (type) == INTEGER_TYPE
5802 || TREE_CODE (type) == ENUMERAL_TYPE)
5803 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5804 DECL_ARG_TYPE (r) = integer_type_node;
5805 if (TREE_CHAIN (t))
5806 TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args,
5807 /*complain=*/1, TREE_CHAIN (t));
5808 }
5809 break;
5810
5811 case FIELD_DECL:
5812 {
5813 r = copy_node (t);
5814 copy_lang_decl (r);
5815 TREE_TYPE (r) = type;
5816 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5817
5818 /* We don't have to set DECL_CONTEXT here; it is set by
5819 finish_member_declaration. */
5820 DECL_INITIAL (r) = tsubst_expr (DECL_INITIAL (t), args,
5821 /*complain=*/1, in_decl);
5822 TREE_CHAIN (r) = NULL_TREE;
5823 if (TREE_CODE (type) == VOID_TYPE)
5824 cp_error_at ("instantiation of `%D' as type void", r);
5825 }
5826 break;
5827
5828 case USING_DECL:
5829 {
5830 r = copy_node (t);
5831 DECL_INITIAL (r)
5832 = tsubst_copy (DECL_INITIAL (t), args, /*complain=*/1, in_decl);
5833 TREE_CHAIN (r) = NULL_TREE;
5834 }
5835 break;
5836
5837 case TYPE_DECL:
5838 if (DECL_IMPLICIT_TYPEDEF_P (t))
5839 {
5840 /* For an implicit typedef, we just want the implicit
5841 typedef for the tsubst'd type. We've already got the
5842 tsubst'd type, as TYPE, so we just need it's associated
5843 declaration. */
5844 r = TYPE_NAME (type);
5845 break;
5846 }
5847 else if (!DECL_LANG_SPECIFIC (t))
5848 {
5849 /* For a template type parameter, we don't have to do
5850 anything special. */
5851 r= TYPE_NAME (type);
5852 break;
5853 }
5854
5855 /* Fall through. */
5856
5857 case VAR_DECL:
5858 {
5859 tree argvec;
5860 tree gen_tmpl;
5861 tree spec;
5862 tree tmpl;
5863 tree ctx;
5864
5865 /* Nobody should be tsubst'ing into non-template variables. */
5866 my_friendly_assert (DECL_LANG_SPECIFIC (t)
5867 && DECL_TEMPLATE_INFO (t) != NULL_TREE, 0);
5868
5869 if (TYPE_P (CP_DECL_CONTEXT (t)))
5870 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
5871 /*complain=*/1,
5872 in_decl, /*entering_scope=*/1);
5873 else
5874 /* Subsequent calls to pushdecl will fill this in. */
5875 ctx = NULL_TREE;
5876
5877 /* Check to see if we already have this specialization. */
5878 tmpl = DECL_TI_TEMPLATE (t);
5879 gen_tmpl = most_general_template (tmpl);
5880 argvec = tsubst (DECL_TI_ARGS (t), args, /*complain=*/1, in_decl);
5881 if (ctx)
5882 spec = retrieve_specialization (gen_tmpl, argvec);
5883 else
5884 spec = retrieve_local_specialization (gen_tmpl,
5885 current_function_decl);
5886
5887 if (spec)
5888 {
5889 r = spec;
5890 break;
5891 }
5892
5893 /* This declaration is going to have to be around for a while,
5894 so me make sure it is on a saveable obstack. */
5895 r = copy_node (t);
5896
5897 TREE_TYPE (r) = type;
5898 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5899 DECL_CONTEXT (r) = ctx;
5900
5901 /* Don't try to expand the initializer until someone tries to use
5902 this variable; otherwise we run into circular dependencies. */
5903 DECL_INITIAL (r) = NULL_TREE;
5904 DECL_RTL (r) = 0;
5905 DECL_SIZE (r) = 0;
5906 copy_lang_decl (r);
5907 DECL_CLASS_CONTEXT (r) = DECL_CONTEXT (r);
5908
5909 /* For __PRETTY_FUNCTION__ we have to adjust the initializer. */
5910 if (DECL_PRETTY_FUNCTION_P (r))
5911 {
5912 DECL_INITIAL (r) = tsubst (DECL_INITIAL (t),
5913 args,
5914 /*complain=*/1,
5915 NULL_TREE);
5916 TREE_TYPE (r) = TREE_TYPE (DECL_INITIAL (r));
5917 }
5918
5919 /* If the template variable was marked TREE_ASM_WRITTEN, that
5920 means we don't need to write out any of the instantiations
5921 either. (__FUNCTION__ and its ilk are marked thusly.) */
5922 TREE_ASM_WRITTEN (r) = TREE_ASM_WRITTEN (t);
5923
5924 /* Even if the original location is out of scope, the newly
5925 substituted one is not. */
5926 if (TREE_CODE (r) == VAR_DECL)
5927 DECL_DEAD_FOR_LOCAL (r) = 0;
5928
5929 /* A static data member declaration is always marked external
5930 when it is declared in-class, even if an initializer is
5931 present. We mimic the non-template processing here. */
5932 if (ctx)
5933 DECL_EXTERNAL (r) = 1;
5934
5935 DECL_TEMPLATE_INFO (r) = tree_cons (tmpl, argvec, NULL_TREE);
5936 SET_DECL_IMPLICIT_INSTANTIATION (r);
5937 if (ctx)
5938 register_specialization (r, gen_tmpl, argvec);
5939 else
5940 register_local_specialization (r, gen_tmpl,
5941 current_function_decl);
5942
5943 TREE_CHAIN (r) = NULL_TREE;
5944 if (TREE_CODE (r) == VAR_DECL && TREE_CODE (type) == VOID_TYPE)
5945 cp_error_at ("instantiation of `%D' as type void", r);
5946 }
5947 break;
5948
5949 default:
5950 my_friendly_abort (0);
5951 }
5952
5953 /* Restore the file and line information. */
5954 lineno = saved_lineno;
5955 input_filename = saved_filename;
5956
5957 return r;
5958 }
5959
5960 /* Substitue into the ARG_TYPES of a function type. */
5961
5962 static tree
5963 tsubst_arg_types (arg_types, args, complain, in_decl)
5964 tree arg_types;
5965 tree args;
5966 int complain;
5967 tree in_decl;
5968 {
5969 tree remaining_arg_types;
5970 tree type;
5971
5972 if (!arg_types || arg_types == void_list_node)
5973 return arg_types;
5974
5975 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
5976 args, complain, in_decl);
5977 if (remaining_arg_types == error_mark_node)
5978 return error_mark_node;
5979
5980 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
5981 if (type == error_mark_node)
5982 return error_mark_node;
5983
5984 /* Do array-to-pointer, function-to-pointer conversion, and ignore
5985 top-level qualifiers as required. */
5986 type = TYPE_MAIN_VARIANT (type_decays_to (type));
5987
5988 /* Note that we do not substitute into default arguments here. The
5989 standard mandates that they be instantiated only when needed,
5990 which is done in build_over_call. */
5991 return hash_tree_cons (TREE_PURPOSE (arg_types), type,
5992 remaining_arg_types);
5993
5994 }
5995
5996 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
5997 *not* handle the exception-specification for FNTYPE, because the
5998 initial substitution of explicitly provided template parameters
5999 during argument deduction forbids substitution into the
6000 exception-specification:
6001
6002 [temp.deduct]
6003
6004 All references in the function type of the function template to the
6005 corresponding template parameters are replaced by the specified tem-
6006 plate argument values. If a substitution in a template parameter or
6007 in the function type of the function template results in an invalid
6008 type, type deduction fails. [Note: The equivalent substitution in
6009 exception specifications is done only when the function is instanti-
6010 ated, at which point a program is ill-formed if the substitution
6011 results in an invalid type.] */
6012
6013 static tree
6014 tsubst_function_type (t, args, complain, in_decl)
6015 tree t;
6016 tree args;
6017 int complain;
6018 tree in_decl;
6019 {
6020 tree return_type;
6021 tree arg_types;
6022 tree fntype;
6023
6024 /* The TYPE_CONTEXT is not used for function/method types. */
6025 my_friendly_assert (TYPE_CONTEXT (t) == NULL_TREE, 0);
6026
6027 /* Substitue the return type. */
6028 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6029 if (return_type == error_mark_node)
6030 return error_mark_node;
6031
6032 /* Substitue the argument types. */
6033 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
6034 complain, in_decl);
6035 if (arg_types == error_mark_node)
6036 return error_mark_node;
6037
6038 /* Construct a new type node and return it. */
6039 if (TREE_CODE (t) == FUNCTION_TYPE)
6040 fntype = build_function_type (return_type, arg_types);
6041 else
6042 {
6043 tree r = TREE_TYPE (TREE_VALUE (arg_types));
6044 if (! IS_AGGR_TYPE (r))
6045 {
6046 /* [temp.deduct]
6047
6048 Type deduction may fail for any of the following
6049 reasons:
6050
6051 -- Attempting to create "pointer to member of T" when T
6052 is not a class type. */
6053 if (complain)
6054 cp_error ("creating pointer to member function of non-class type `%T'",
6055 r);
6056 return error_mark_node;
6057 }
6058
6059 fntype = build_cplus_method_type (r, return_type, TREE_CHAIN
6060 (arg_types));
6061 }
6062 fntype = build_qualified_type (fntype, TYPE_QUALS (t));
6063 fntype = build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
6064
6065 return fntype;
6066 }
6067
6068 /* Substitute into the PARMS of a call-declarator. */
6069
6070 static tree
6071 tsubst_call_declarator_parms (parms, args, complain, in_decl)
6072 tree parms;
6073 tree args;
6074 int complain;
6075 tree in_decl;
6076 {
6077 tree new_parms;
6078 tree type;
6079 tree defarg;
6080
6081 if (!parms || parms == void_list_node)
6082 return parms;
6083
6084 new_parms = tsubst_call_declarator_parms (TREE_CHAIN (parms),
6085 args, complain, in_decl);
6086
6087 /* Figure out the type of this parameter. */
6088 type = tsubst (TREE_VALUE (parms), args, complain, in_decl);
6089
6090 /* Figure out the default argument as well. Note that we use
6091 tsubst_expr since the default argument is really an expression. */
6092 defarg = tsubst_expr (TREE_PURPOSE (parms), args, complain, in_decl);
6093
6094 /* Chain this parameter on to the front of those we have already
6095 processed. We don't use hash_tree_cons because that function
6096 doesn't check TREE_PARMLIST. */
6097 new_parms = tree_cons (defarg, type, new_parms);
6098
6099 /* And note that these are parameters. */
6100 TREE_PARMLIST (new_parms) = 1;
6101
6102 return new_parms;
6103 }
6104
6105 /* Take the tree structure T and replace template parameters used
6106 therein with the argument vector ARGS. IN_DECL is an associated
6107 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
6108 An appropriate error message is issued only if COMPLAIN is
6109 non-zero. Note that we must be relatively non-tolerant of
6110 extensions here, in order to preserve conformance; if we allow
6111 substitutions that should not be allowed, we may allow argument
6112 deductions that should not succeed, and therefore report ambiguous
6113 overload situations where there are none. In theory, we could
6114 allow the substitution, but indicate that it should have failed,
6115 and allow our caller to make sure that the right thing happens, but
6116 we don't try to do this yet.
6117
6118 This function is used for dealing with types, decls and the like;
6119 for expressions, use tsubst_expr or tsubst_copy. */
6120
6121 tree
6122 tsubst (t, args, complain, in_decl)
6123 tree t, args;
6124 int complain;
6125 tree in_decl;
6126 {
6127 tree type, r;
6128
6129 if (t == NULL_TREE || t == error_mark_node
6130 || t == integer_type_node
6131 || t == void_type_node
6132 || t == char_type_node
6133 || TREE_CODE (t) == NAMESPACE_DECL)
6134 return t;
6135
6136 if (TREE_CODE (t) == IDENTIFIER_NODE)
6137 type = IDENTIFIER_TYPE_VALUE (t);
6138 else
6139 type = TREE_TYPE (t);
6140 if (type == unknown_type_node)
6141 my_friendly_abort (42);
6142
6143 if (type && TREE_CODE (t) != FUNCTION_DECL
6144 && TREE_CODE (t) != TYPENAME_TYPE
6145 && TREE_CODE (t) != TEMPLATE_DECL
6146 && TREE_CODE (t) != IDENTIFIER_NODE
6147 && TREE_CODE (t) != FUNCTION_TYPE
6148 && TREE_CODE (t) != METHOD_TYPE)
6149 type = tsubst (type, args, complain, in_decl);
6150 if (type == error_mark_node)
6151 return error_mark_node;
6152
6153 if (TREE_CODE_CLASS (TREE_CODE (t)) == 'd')
6154 return tsubst_decl (t, args, type, in_decl);
6155
6156 switch (TREE_CODE (t))
6157 {
6158 case RECORD_TYPE:
6159 case UNION_TYPE:
6160 case ENUMERAL_TYPE:
6161 return tsubst_aggr_type (t, args, complain, in_decl,
6162 /*entering_scope=*/0);
6163
6164 case ERROR_MARK:
6165 case IDENTIFIER_NODE:
6166 case OP_IDENTIFIER:
6167 case VOID_TYPE:
6168 case REAL_TYPE:
6169 case COMPLEX_TYPE:
6170 case BOOLEAN_TYPE:
6171 case INTEGER_CST:
6172 case REAL_CST:
6173 case STRING_CST:
6174 return t;
6175
6176 case INTEGER_TYPE:
6177 if (t == integer_type_node)
6178 return t;
6179
6180 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
6181 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
6182 return t;
6183
6184 {
6185 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
6186
6187 max = tsubst_expr (omax, args, complain, in_decl);
6188 if (max == error_mark_node)
6189 return error_mark_node;
6190
6191 /* See if we can reduce this expression to something simpler. */
6192 max = maybe_fold_nontype_arg (max);
6193 if (!processing_template_decl && TREE_READONLY_DECL_P (max))
6194 max = decl_constant_value (max);
6195
6196 if (processing_template_decl
6197 /* When providing explicit arguments to a template
6198 function, but leaving some arguments for subsequent
6199 deduction, MAX may be template-dependent even if we're
6200 not PROCESSING_TEMPLATE_DECL. We still need to check for
6201 template parms, though; MAX won't be an INTEGER_CST for
6202 dynamic arrays, either. */
6203 || (TREE_CODE (max) != INTEGER_CST
6204 && uses_template_parms (max)))
6205 {
6206 tree itype = make_node (INTEGER_TYPE);
6207 TYPE_MIN_VALUE (itype) = size_zero_node;
6208 TYPE_MAX_VALUE (itype) = build_min (MINUS_EXPR, sizetype, max,
6209 integer_one_node);
6210 return itype;
6211 }
6212
6213 if (integer_zerop (omax))
6214 {
6215 /* Still allow an explicit array of size zero. */
6216 if (pedantic)
6217 pedwarn ("creating array with size zero");
6218 }
6219 else if (integer_zerop (max)
6220 || (TREE_CODE (max) == INTEGER_CST
6221 && INT_CST_LT (max, integer_zero_node)))
6222 {
6223 /* [temp.deduct]
6224
6225 Type deduction may fail for any of the following
6226 reasons:
6227
6228 Attempting to create an array with a size that is
6229 zero or negative. */
6230 if (complain)
6231 cp_error ("creating array with size zero (`%E')", max);
6232
6233 return error_mark_node;
6234 }
6235
6236 return compute_array_index_type (NULL_TREE, max);
6237 }
6238
6239 case TEMPLATE_TYPE_PARM:
6240 case TEMPLATE_TEMPLATE_PARM:
6241 case TEMPLATE_PARM_INDEX:
6242 {
6243 int idx;
6244 int level;
6245 int levels;
6246
6247 r = NULL_TREE;
6248
6249 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
6250 || TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
6251 {
6252 idx = TEMPLATE_TYPE_IDX (t);
6253 level = TEMPLATE_TYPE_LEVEL (t);
6254 }
6255 else
6256 {
6257 idx = TEMPLATE_PARM_IDX (t);
6258 level = TEMPLATE_PARM_LEVEL (t);
6259 }
6260
6261 if (TREE_VEC_LENGTH (args) > 0)
6262 {
6263 tree arg = NULL_TREE;
6264
6265 levels = TMPL_ARGS_DEPTH (args);
6266 if (level <= levels)
6267 arg = TMPL_ARG (args, level, idx);
6268
6269 if (arg == error_mark_node)
6270 return error_mark_node;
6271 else if (arg != NULL_TREE)
6272 {
6273 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
6274 {
6275 my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (arg))
6276 == 't', 0);
6277 return cp_build_qualified_type_real
6278 (arg, CP_TYPE_QUALS (arg) | CP_TYPE_QUALS (t),
6279 complain);
6280 }
6281 else if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
6282 {
6283 if (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t))
6284 {
6285 /* We are processing a type constructed from
6286 a template template parameter */
6287 tree argvec = tsubst (TYPE_TI_ARGS (t),
6288 args, complain, in_decl);
6289 if (argvec == error_mark_node)
6290 return error_mark_node;
6291
6292 /* We can get a TEMPLATE_TEMPLATE_PARM here when
6293 we are resolving nested-types in the signature of
6294 a member function templates.
6295 Otherwise ARG is a TEMPLATE_DECL and is the real
6296 template to be instantiated. */
6297 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
6298 arg = TYPE_NAME (arg);
6299
6300 r = lookup_template_class (DECL_NAME (arg),
6301 argvec, in_decl,
6302 DECL_CONTEXT (arg),
6303 /*entering_scope=*/0);
6304 return cp_build_qualified_type_real (r,
6305 TYPE_QUALS (t),
6306 complain);
6307 }
6308 else
6309 /* We are processing a template argument list. */
6310 return arg;
6311 }
6312 else
6313 return arg;
6314 }
6315 }
6316 else
6317 my_friendly_abort (981018);
6318
6319 if (level == 1)
6320 /* This can happen during the attempted tsubst'ing in
6321 unify. This means that we don't yet have any information
6322 about the template parameter in question. */
6323 return t;
6324
6325 /* If we get here, we must have been looking at a parm for a
6326 more deeply nested template. Make a new version of this
6327 template parameter, but with a lower level. */
6328 switch (TREE_CODE (t))
6329 {
6330 case TEMPLATE_TYPE_PARM:
6331 case TEMPLATE_TEMPLATE_PARM:
6332 r = copy_node (t);
6333 TEMPLATE_TYPE_PARM_INDEX (r)
6334 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
6335 r, levels);
6336 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
6337 TYPE_MAIN_VARIANT (r) = r;
6338 TYPE_POINTER_TO (r) = NULL_TREE;
6339 TYPE_REFERENCE_TO (r) = NULL_TREE;
6340
6341 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
6342 && TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t))
6343 {
6344 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
6345 complain, in_decl);
6346 if (argvec == error_mark_node)
6347 return error_mark_node;
6348
6349 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
6350 = tree_cons (TYPE_NAME (t), argvec, NULL_TREE);
6351 }
6352 break;
6353
6354 case TEMPLATE_PARM_INDEX:
6355 r = reduce_template_parm_level (t, type, levels);
6356 break;
6357
6358 default:
6359 my_friendly_abort (0);
6360 }
6361
6362 return r;
6363 }
6364
6365 case TREE_LIST:
6366 {
6367 tree purpose, value, chain, result;
6368
6369 if (t == void_list_node)
6370 return t;
6371
6372 purpose = TREE_PURPOSE (t);
6373 if (purpose)
6374 {
6375 purpose = tsubst (purpose, args, complain, in_decl);
6376 if (purpose == error_mark_node)
6377 return error_mark_node;
6378 }
6379 value = TREE_VALUE (t);
6380 if (value)
6381 {
6382 value = tsubst (value, args, complain, in_decl);
6383 if (value == error_mark_node)
6384 return error_mark_node;
6385 }
6386 chain = TREE_CHAIN (t);
6387 if (chain && chain != void_type_node)
6388 {
6389 chain = tsubst (chain, args, complain, in_decl);
6390 if (chain == error_mark_node)
6391 return error_mark_node;
6392 }
6393 if (purpose == TREE_PURPOSE (t)
6394 && value == TREE_VALUE (t)
6395 && chain == TREE_CHAIN (t))
6396 return t;
6397 result = hash_tree_cons (purpose, value, chain);
6398 TREE_PARMLIST (result) = TREE_PARMLIST (t);
6399 return result;
6400 }
6401 case TREE_VEC:
6402 if (type != NULL_TREE)
6403 {
6404 /* A binfo node. We always need to make a copy, of the node
6405 itself and of its BINFO_BASETYPES. */
6406
6407 t = copy_node (t);
6408
6409 /* Make sure type isn't a typedef copy. */
6410 type = BINFO_TYPE (TYPE_BINFO (type));
6411
6412 TREE_TYPE (t) = complete_type (type);
6413 if (IS_AGGR_TYPE (type))
6414 {
6415 BINFO_VTABLE (t) = TYPE_BINFO_VTABLE (type);
6416 BINFO_VIRTUALS (t) = TYPE_BINFO_VIRTUALS (type);
6417 if (TYPE_BINFO_BASETYPES (type) != NULL_TREE)
6418 BINFO_BASETYPES (t) = copy_node (TYPE_BINFO_BASETYPES (type));
6419 }
6420 return t;
6421 }
6422
6423 /* Otherwise, a vector of template arguments. */
6424 return tsubst_template_arg_vector (t, args, complain);
6425
6426 case POINTER_TYPE:
6427 case REFERENCE_TYPE:
6428 {
6429 enum tree_code code;
6430
6431 if (type == TREE_TYPE (t))
6432 return t;
6433
6434 code = TREE_CODE (t);
6435
6436
6437 /* [temp.deduct]
6438
6439 Type deduction may fail for any of the following
6440 reasons:
6441
6442 -- Attempting to create a pointer to reference type.
6443 -- Attempting to create a reference to a reference type or
6444 a reference to void. */
6445 if (TREE_CODE (type) == REFERENCE_TYPE
6446 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
6447 {
6448 static int last_line = 0;
6449 static char* last_file = 0;
6450
6451 /* We keep track of the last time we issued this error
6452 message to avoid spewing a ton of messages during a
6453 single bad template instantiation. */
6454 if (complain && (last_line != lineno ||
6455 last_file != input_filename))
6456 {
6457 if (TREE_CODE (type) == VOID_TYPE)
6458 cp_error ("forming reference to void");
6459 else
6460 cp_error ("forming %s to reference type `%T'",
6461 (code == POINTER_TYPE) ? "pointer" : "reference",
6462 type);
6463 last_line = lineno;
6464 last_file = input_filename;
6465 }
6466
6467 return error_mark_node;
6468 }
6469 else if (code == POINTER_TYPE)
6470 r = build_pointer_type (type);
6471 else
6472 r = build_reference_type (type);
6473 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
6474
6475 /* Will this ever be needed for TYPE_..._TO values? */
6476 layout_type (r);
6477 return r;
6478 }
6479 case OFFSET_TYPE:
6480 {
6481 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
6482 if (r == error_mark_node || !IS_AGGR_TYPE (r))
6483 {
6484 /* [temp.deduct]
6485
6486 Type deduction may fail for any of the following
6487 reasons:
6488
6489 -- Attempting to create "pointer to member of T" when T
6490 is not a class type. */
6491 if (complain)
6492 cp_error ("creating pointer to member of non-class type `%T'",
6493 r);
6494 return error_mark_node;
6495 }
6496 return build_offset_type (r, type);
6497 }
6498 case FUNCTION_TYPE:
6499 case METHOD_TYPE:
6500 {
6501 tree fntype;
6502 tree raises;
6503
6504 fntype = tsubst_function_type (t, args, complain, in_decl);
6505 if (fntype == error_mark_node)
6506 return error_mark_node;
6507
6508 /* Substitue the exception specification. */
6509 raises = TYPE_RAISES_EXCEPTIONS (t);
6510 if (raises)
6511 {
6512 tree list = NULL_TREE;
6513
6514 if (! TREE_VALUE (raises))
6515 list = raises;
6516 else
6517 for (; raises != NULL_TREE; raises = TREE_CHAIN (raises))
6518 {
6519 tree spec = TREE_VALUE (raises);
6520
6521 spec = tsubst (spec, args, complain, in_decl);
6522 if (spec == error_mark_node)
6523 return spec;
6524 list = add_exception_specifier (list, spec, complain);
6525 }
6526 fntype = build_exception_variant (fntype, list);
6527 }
6528 return fntype;
6529 }
6530 case ARRAY_TYPE:
6531 {
6532 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
6533 if (domain == error_mark_node)
6534 return error_mark_node;
6535
6536 /* As an optimization, we avoid regenerating the array type if
6537 it will obviously be the same as T. */
6538 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
6539 return t;
6540
6541 /* These checks should match the ones in grokdeclarator.
6542
6543 [temp.deduct]
6544
6545 The deduction may fail for any of the following reasons:
6546
6547 -- Attempting to create an array with an element type that
6548 is void, a function type, or a reference type. */
6549 if (TREE_CODE (type) == VOID_TYPE
6550 || TREE_CODE (type) == FUNCTION_TYPE
6551 || TREE_CODE (type) == REFERENCE_TYPE)
6552 {
6553 if (complain)
6554 cp_error ("creating array of `%T'", type);
6555 return error_mark_node;
6556 }
6557
6558 r = build_cplus_array_type (type, domain);
6559 return r;
6560 }
6561
6562 case PLUS_EXPR:
6563 case MINUS_EXPR:
6564 {
6565 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6566 in_decl);
6567 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain,
6568 in_decl);
6569
6570 if (e1 == error_mark_node || e2 == error_mark_node)
6571 return error_mark_node;
6572
6573 return fold (build (TREE_CODE (t), TREE_TYPE (t), e1, e2));
6574 }
6575
6576 case NEGATE_EXPR:
6577 case NOP_EXPR:
6578 {
6579 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6580 in_decl);
6581 if (e == error_mark_node)
6582 return error_mark_node;
6583
6584 return fold (build (TREE_CODE (t), TREE_TYPE (t), e));
6585 }
6586
6587 case TYPENAME_TYPE:
6588 {
6589 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
6590 in_decl, /*entering_scope=*/1);
6591 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
6592 complain, in_decl);
6593
6594 if (ctx == error_mark_node || f == error_mark_node)
6595 return error_mark_node;
6596
6597 if (!IS_AGGR_TYPE (ctx))
6598 {
6599 if (complain)
6600 cp_error ("`%T' is not a class, struct, or union type",
6601 ctx);
6602 return error_mark_node;
6603 }
6604 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
6605 {
6606 /* Normally, make_typename_type does not require that the CTX
6607 have complete type in order to allow things like:
6608
6609 template <class T> struct S { typename S<T>::X Y; };
6610
6611 But, such constructs have already been resolved by this
6612 point, so here CTX really should have complete type, unless
6613 it's a partial instantiation. */
6614 ctx = complete_type (ctx);
6615 if (!TYPE_SIZE (ctx))
6616 {
6617 if (complain)
6618 incomplete_type_error (NULL_TREE, ctx);
6619 return error_mark_node;
6620 }
6621 }
6622
6623 f = make_typename_type (ctx, f, complain);
6624 if (f == error_mark_node)
6625 return f;
6626 return cp_build_qualified_type_real (f,
6627 CP_TYPE_QUALS (f)
6628 | CP_TYPE_QUALS (t),
6629 complain);
6630 }
6631
6632 case INDIRECT_REF:
6633 {
6634 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6635 in_decl);
6636 if (e == error_mark_node)
6637 return error_mark_node;
6638 return make_pointer_declarator (type, e);
6639 }
6640
6641 case ADDR_EXPR:
6642 {
6643 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6644 in_decl);
6645 if (e == error_mark_node)
6646 return error_mark_node;
6647 return make_reference_declarator (type, e);
6648 }
6649
6650 case ARRAY_REF:
6651 {
6652 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6653 in_decl);
6654 tree e2 = tsubst_expr (TREE_OPERAND (t, 1), args, complain,
6655 in_decl);
6656 if (e1 == error_mark_node || e2 == error_mark_node)
6657 return error_mark_node;
6658
6659 return build_parse_node (ARRAY_REF, e1, e2, tsubst_expr);
6660 }
6661
6662 case CALL_EXPR:
6663 {
6664 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6665 in_decl);
6666 tree e2 = (tsubst_call_declarator_parms
6667 (CALL_DECLARATOR_PARMS (t), args, complain, in_decl));
6668 tree e3 = tsubst (CALL_DECLARATOR_EXCEPTION_SPEC (t), args,
6669 complain, in_decl);
6670
6671 if (e1 == error_mark_node || e2 == error_mark_node
6672 || e3 == error_mark_node)
6673 return error_mark_node;
6674
6675 return make_call_declarator (e1, e2, CALL_DECLARATOR_QUALS (t), e3);
6676 }
6677
6678 case SCOPE_REF:
6679 {
6680 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6681 in_decl);
6682 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
6683 if (e1 == error_mark_node || e2 == error_mark_node)
6684 return error_mark_node;
6685
6686 return build_parse_node (TREE_CODE (t), e1, e2);
6687 }
6688
6689 case TYPEOF_TYPE:
6690 {
6691 tree e1 = tsubst_expr (TYPE_FIELDS (t), args, complain,
6692 in_decl);
6693 if (e1 == error_mark_node)
6694 return error_mark_node;
6695
6696 return TREE_TYPE (e1);
6697 }
6698
6699 case FUNCTION_NAME:
6700 {
6701 const char *name;
6702 int len;
6703 tree type;
6704 tree str;
6705
6706 /* This code should match declare_hidden_char_array in
6707 c-common.c. */
6708 name = (*decl_printable_name) (current_function_decl, 2);
6709 len = strlen (name) + 1;
6710 type = build_array_type (char_type_node,
6711 build_index_type (build_int_2 (len, 0)));
6712 str = build_string (len, name);
6713 TREE_TYPE (str) = type;
6714 return str;
6715 }
6716
6717 default:
6718 sorry ("use of `%s' in template",
6719 tree_code_name [(int) TREE_CODE (t)]);
6720 return error_mark_node;
6721 }
6722 }
6723
6724 /* Like tsubst, but deals with expressions. This function just replaces
6725 template parms; to finish processing the resultant expression, use
6726 tsubst_expr. */
6727
6728 tree
6729 tsubst_copy (t, args, complain, in_decl)
6730 tree t, args;
6731 int complain;
6732 tree in_decl;
6733 {
6734 enum tree_code code;
6735 tree r;
6736
6737 if (t == NULL_TREE || t == error_mark_node)
6738 return t;
6739
6740 code = TREE_CODE (t);
6741
6742 switch (code)
6743 {
6744 case PARM_DECL:
6745 return do_identifier (DECL_NAME (t), 0, NULL_TREE);
6746
6747 case CONST_DECL:
6748 {
6749 tree enum_type;
6750 tree v;
6751
6752 if (!DECL_CONTEXT (t))
6753 /* This is a global enumeration constant. */
6754 return t;
6755
6756 /* Unfortunately, we cannot just call lookup_name here.
6757 Consider:
6758
6759 template <int I> int f() {
6760 enum E { a = I };
6761 struct S { void g() { E e = a; } };
6762 };
6763
6764 When we instantiate f<7>::S::g(), say, lookup_name is not
6765 clever enough to find f<7>::a. */
6766 enum_type
6767 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
6768 /*entering_scope=*/0);
6769
6770 for (v = TYPE_VALUES (enum_type);
6771 v != NULL_TREE;
6772 v = TREE_CHAIN (v))
6773 if (TREE_PURPOSE (v) == DECL_NAME (t))
6774 return TREE_VALUE (v);
6775
6776 /* We didn't find the name. That should never happen; if
6777 name-lookup found it during preliminary parsing, we
6778 should find it again here during instantiation. */
6779 my_friendly_abort (0);
6780 }
6781 return t;
6782
6783 case FIELD_DECL:
6784 if (DECL_CONTEXT (t))
6785 {
6786 tree ctx;
6787
6788 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
6789 /*entering_scope=*/1);
6790 if (ctx != DECL_CONTEXT (t))
6791 return lookup_field (ctx, DECL_NAME (t), 0, 0);
6792 }
6793 return t;
6794
6795 case VAR_DECL:
6796 case FUNCTION_DECL:
6797 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
6798 t = tsubst (t, args, complain, in_decl);
6799 mark_used (t);
6800 return t;
6801
6802 case TEMPLATE_DECL:
6803 if (is_member_template (t))
6804 return tsubst (t, args, complain, in_decl);
6805 else
6806 return t;
6807
6808 case LOOKUP_EXPR:
6809 {
6810 /* We must tsbust into a LOOKUP_EXPR in case the names to
6811 which it refers is a conversion operator; in that case the
6812 name will change. We avoid making unnecessary copies,
6813 however. */
6814
6815 tree id = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
6816
6817 if (id != TREE_OPERAND (t, 0))
6818 {
6819 r = build_nt (LOOKUP_EXPR, id);
6820 LOOKUP_EXPR_GLOBAL (r) = LOOKUP_EXPR_GLOBAL (t);
6821 t = r;
6822 }
6823
6824 return t;
6825 }
6826
6827 case CAST_EXPR:
6828 case REINTERPRET_CAST_EXPR:
6829 case CONST_CAST_EXPR:
6830 case STATIC_CAST_EXPR:
6831 case DYNAMIC_CAST_EXPR:
6832 case NOP_EXPR:
6833 return build1
6834 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
6835 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
6836
6837 case INDIRECT_REF:
6838 case PREDECREMENT_EXPR:
6839 case PREINCREMENT_EXPR:
6840 case POSTDECREMENT_EXPR:
6841 case POSTINCREMENT_EXPR:
6842 case NEGATE_EXPR:
6843 case TRUTH_NOT_EXPR:
6844 case BIT_NOT_EXPR:
6845 case ADDR_EXPR:
6846 case CONVERT_EXPR: /* Unary + */
6847 case SIZEOF_EXPR:
6848 case ALIGNOF_EXPR:
6849 case ARROW_EXPR:
6850 case THROW_EXPR:
6851 case TYPEID_EXPR:
6852 case REALPART_EXPR:
6853 case IMAGPART_EXPR:
6854 return build1
6855 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
6856 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
6857
6858 case PLUS_EXPR:
6859 case MINUS_EXPR:
6860 case MULT_EXPR:
6861 case TRUNC_DIV_EXPR:
6862 case CEIL_DIV_EXPR:
6863 case FLOOR_DIV_EXPR:
6864 case ROUND_DIV_EXPR:
6865 case EXACT_DIV_EXPR:
6866 case BIT_AND_EXPR:
6867 case BIT_ANDTC_EXPR:
6868 case BIT_IOR_EXPR:
6869 case BIT_XOR_EXPR:
6870 case TRUNC_MOD_EXPR:
6871 case FLOOR_MOD_EXPR:
6872 case TRUTH_ANDIF_EXPR:
6873 case TRUTH_ORIF_EXPR:
6874 case TRUTH_AND_EXPR:
6875 case TRUTH_OR_EXPR:
6876 case RSHIFT_EXPR:
6877 case LSHIFT_EXPR:
6878 case RROTATE_EXPR:
6879 case LROTATE_EXPR:
6880 case EQ_EXPR:
6881 case NE_EXPR:
6882 case MAX_EXPR:
6883 case MIN_EXPR:
6884 case LE_EXPR:
6885 case GE_EXPR:
6886 case LT_EXPR:
6887 case GT_EXPR:
6888 case COMPONENT_REF:
6889 case ARRAY_REF:
6890 case COMPOUND_EXPR:
6891 case SCOPE_REF:
6892 case DOTSTAR_EXPR:
6893 case MEMBER_REF:
6894 return build_nt
6895 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
6896 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
6897
6898 case CALL_EXPR:
6899 {
6900 tree fn = TREE_OPERAND (t, 0);
6901 if (is_overloaded_fn (fn))
6902 fn = tsubst_copy (get_first_fn (fn), args, complain, in_decl);
6903 else
6904 /* Sometimes FN is a LOOKUP_EXPR. */
6905 fn = tsubst_copy (fn, args, complain, in_decl);
6906 return build_nt
6907 (code, fn, tsubst_copy (TREE_OPERAND (t, 1), args, complain,
6908 in_decl),
6909 NULL_TREE);
6910 }
6911
6912 case METHOD_CALL_EXPR:
6913 {
6914 tree name = TREE_OPERAND (t, 0);
6915 if (TREE_CODE (name) == BIT_NOT_EXPR)
6916 {
6917 name = tsubst_copy (TREE_OPERAND (name, 0), args,
6918 complain, in_decl);
6919 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
6920 }
6921 else if (TREE_CODE (name) == SCOPE_REF
6922 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
6923 {
6924 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
6925 complain, in_decl);
6926 name = TREE_OPERAND (name, 1);
6927 name = tsubst_copy (TREE_OPERAND (name, 0), args,
6928 complain, in_decl);
6929 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
6930 name = build_nt (SCOPE_REF, base, name);
6931 }
6932 else
6933 name = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
6934 return build_nt
6935 (code, name, tsubst_copy (TREE_OPERAND (t, 1), args,
6936 complain, in_decl),
6937 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl),
6938 NULL_TREE);
6939 }
6940
6941 case STMT_EXPR:
6942 /* This processing should really occur in tsubst_expr, However,
6943 tsubst_expr does not recurse into expressions, since it
6944 assumes that there aren't any statements inside them.
6945 Instead, it simply calls build_expr_from_tree. So, we need
6946 to expand the STMT_EXPR here. */
6947 if (!processing_template_decl)
6948 {
6949 tree stmt_expr = begin_stmt_expr ();
6950 tsubst_expr (STMT_EXPR_STMT (t), args,
6951 complain, in_decl);
6952 return finish_stmt_expr (stmt_expr);
6953 }
6954
6955 return t;
6956
6957 case COND_EXPR:
6958 case MODOP_EXPR:
6959 case PSEUDO_DTOR_EXPR:
6960 {
6961 r = build_nt
6962 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
6963 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
6964 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
6965 return r;
6966 }
6967
6968 case NEW_EXPR:
6969 {
6970 r = build_nt
6971 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
6972 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
6973 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
6974 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
6975 return r;
6976 }
6977
6978 case DELETE_EXPR:
6979 {
6980 r = build_nt
6981 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
6982 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
6983 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
6984 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
6985 return r;
6986 }
6987
6988 case TEMPLATE_ID_EXPR:
6989 {
6990 /* Substituted template arguments */
6991 tree targs = tsubst_copy (TREE_OPERAND (t, 1), args, complain,
6992 in_decl);
6993
6994 if (targs && TREE_CODE (targs) == TREE_LIST)
6995 {
6996 tree chain;
6997 for (chain = targs; chain; chain = TREE_CHAIN (chain))
6998 TREE_VALUE (chain) = maybe_fold_nontype_arg (TREE_VALUE (chain));
6999 }
7000 else if (targs)
7001 {
7002 int i;
7003 for (i = 0; i < TREE_VEC_LENGTH (targs); ++i)
7004 TREE_VEC_ELT (targs, i)
7005 = maybe_fold_nontype_arg (TREE_VEC_ELT (targs, i));
7006 }
7007
7008 return lookup_template_function
7009 (tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl), targs);
7010 }
7011
7012 case TREE_LIST:
7013 {
7014 tree purpose, value, chain;
7015
7016 if (t == void_list_node)
7017 return t;
7018
7019 purpose = TREE_PURPOSE (t);
7020 if (purpose)
7021 purpose = tsubst_copy (purpose, args, complain, in_decl);
7022 value = TREE_VALUE (t);
7023 if (value)
7024 value = tsubst_copy (value, args, complain, in_decl);
7025 chain = TREE_CHAIN (t);
7026 if (chain && chain != void_type_node)
7027 chain = tsubst_copy (chain, args, complain, in_decl);
7028 if (purpose == TREE_PURPOSE (t)
7029 && value == TREE_VALUE (t)
7030 && chain == TREE_CHAIN (t))
7031 return t;
7032 return tree_cons (purpose, value, chain);
7033 }
7034
7035 case RECORD_TYPE:
7036 case UNION_TYPE:
7037 case ENUMERAL_TYPE:
7038 case INTEGER_TYPE:
7039 case TEMPLATE_TYPE_PARM:
7040 case TEMPLATE_TEMPLATE_PARM:
7041 case TEMPLATE_PARM_INDEX:
7042 case POINTER_TYPE:
7043 case REFERENCE_TYPE:
7044 case OFFSET_TYPE:
7045 case FUNCTION_TYPE:
7046 case METHOD_TYPE:
7047 case ARRAY_TYPE:
7048 case TYPENAME_TYPE:
7049 case TYPE_DECL:
7050 return tsubst (t, args, complain, in_decl);
7051
7052 case IDENTIFIER_NODE:
7053 if (IDENTIFIER_TYPENAME_P (t)
7054 /* Make sure it's not just a variable named `__opr', for instance,
7055 which can occur in some existing code. */
7056 && TREE_TYPE (t))
7057 return build_typename_overload
7058 (tsubst (TREE_TYPE (t), args, complain, in_decl));
7059 else
7060 return t;
7061
7062 case CONSTRUCTOR:
7063 {
7064 r = build
7065 (CONSTRUCTOR, tsubst (TREE_TYPE (t), args, complain, in_decl),
7066 NULL_TREE, tsubst_copy (CONSTRUCTOR_ELTS (t), args,
7067 complain, in_decl));
7068 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
7069 return r;
7070 }
7071
7072 case VA_ARG_EXPR:
7073 return build_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
7074 in_decl),
7075 tsubst (TREE_TYPE (t), args, complain, in_decl));
7076
7077 case FUNCTION_NAME:
7078 return tsubst (t, args, complain, in_decl);
7079
7080 default:
7081 return t;
7082 }
7083 }
7084
7085 /* Like tsubst_copy, but also does semantic processing. */
7086
7087 tree
7088 tsubst_expr (t, args, complain, in_decl)
7089 tree t, args;
7090 int complain;
7091 tree in_decl;
7092 {
7093 tree stmt;
7094
7095 if (t == NULL_TREE || t == error_mark_node)
7096 return t;
7097
7098 if (processing_template_decl)
7099 return tsubst_copy (t, args, complain, in_decl);
7100
7101 switch (TREE_CODE (t))
7102 {
7103 case RETURN_INIT:
7104 prep_stmt (t);
7105 finish_named_return_value
7106 (TREE_OPERAND (t, 0),
7107 tsubst_expr (TREE_OPERAND (t, 1), args, /*complain=*/1, in_decl));
7108 tsubst_expr (TREE_CHAIN (t), args, complain, in_decl);
7109 break;
7110
7111 case CTOR_INITIALIZER:
7112 prep_stmt (t);
7113 current_member_init_list
7114 = tsubst_expr_values (TREE_OPERAND (t, 0), args);
7115 current_base_init_list
7116 = tsubst_expr_values (TREE_OPERAND (t, 1), args);
7117 setup_vtbl_ptr ();
7118 tsubst_expr (TREE_CHAIN (t), args, complain, in_decl);
7119 break;
7120
7121 case RETURN_STMT:
7122 prep_stmt (t);
7123 finish_return_stmt (tsubst_expr (RETURN_EXPR (t),
7124 args, complain, in_decl));
7125 break;
7126
7127 case EXPR_STMT:
7128 prep_stmt (t);
7129 finish_expr_stmt (tsubst_expr (EXPR_STMT_EXPR (t),
7130 args, complain, in_decl));
7131 break;
7132
7133 case DECL_STMT:
7134 {
7135 tree decl;
7136 tree init;
7137
7138 prep_stmt (t);
7139 decl = DECL_STMT_DECL (t);
7140 if (TREE_CODE (decl) == LABEL_DECL)
7141 finish_label_decl (DECL_NAME (decl));
7142 else
7143 {
7144 init = DECL_INITIAL (decl);
7145 decl = tsubst (decl, args, complain, in_decl);
7146 init = tsubst_expr (init, args, complain, in_decl);
7147 if (init)
7148 DECL_INITIAL (decl) = error_mark_node;
7149 /* By marking the declaration as instantiated, we avoid
7150 trying to instantiate it. Since instantiate_decl can't
7151 handle local variables, and since we've already done
7152 all that needs to be done, that's the right thing to
7153 do. */
7154 if (TREE_CODE (decl) == VAR_DECL)
7155 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
7156 maybe_push_decl (decl);
7157 cp_finish_decl (decl, init, NULL_TREE, 0);
7158 }
7159 return decl;
7160 }
7161
7162 case FOR_STMT:
7163 {
7164 tree tmp;
7165 prep_stmt (t);
7166
7167 stmt = begin_for_stmt ();
7168 for (tmp = FOR_INIT_STMT (t); tmp; tmp = TREE_CHAIN (tmp))
7169 tsubst_expr (tmp, args, complain, in_decl);
7170 finish_for_init_stmt (stmt);
7171 finish_for_cond (tsubst_expr (FOR_COND (t), args,
7172 complain, in_decl),
7173 stmt);
7174 tmp = tsubst_expr (FOR_EXPR (t), args, complain, in_decl);
7175 finish_for_expr (tmp, stmt);
7176 tsubst_expr (FOR_BODY (t), args, complain, in_decl);
7177 finish_for_stmt (tmp, stmt);
7178 }
7179 break;
7180
7181 case WHILE_STMT:
7182 {
7183 prep_stmt (t);
7184 stmt = begin_while_stmt ();
7185 finish_while_stmt_cond (tsubst_expr (WHILE_COND (t),
7186 args, complain, in_decl),
7187 stmt);
7188 tsubst_expr (WHILE_BODY (t), args, complain, in_decl);
7189 finish_while_stmt (stmt);
7190 }
7191 break;
7192
7193 case DO_STMT:
7194 {
7195 prep_stmt (t);
7196 stmt = begin_do_stmt ();
7197 tsubst_expr (DO_BODY (t), args, complain, in_decl);
7198 finish_do_body (stmt);
7199 finish_do_stmt (tsubst_expr (DO_COND (t), args,
7200 complain, in_decl),
7201 stmt);
7202 }
7203 break;
7204
7205 case IF_STMT:
7206 {
7207 tree tmp;
7208
7209 prep_stmt (t);
7210 stmt = begin_if_stmt ();
7211 finish_if_stmt_cond (tsubst_expr (IF_COND (t),
7212 args, complain, in_decl),
7213 stmt);
7214
7215 if (tmp = THEN_CLAUSE (t), tmp)
7216 {
7217 tsubst_expr (tmp, args, complain, in_decl);
7218 finish_then_clause (stmt);
7219 }
7220
7221 if (tmp = ELSE_CLAUSE (t), tmp)
7222 {
7223 begin_else_clause ();
7224 tsubst_expr (tmp, args, complain, in_decl);
7225 finish_else_clause (stmt);
7226 }
7227
7228 finish_if_stmt ();
7229 }
7230 break;
7231
7232 case COMPOUND_STMT:
7233 {
7234 tree substmt;
7235
7236 prep_stmt (t);
7237 stmt = begin_compound_stmt (COMPOUND_STMT_NO_SCOPE (t));
7238 for (substmt = COMPOUND_BODY (t);
7239 substmt != NULL_TREE;
7240 substmt = TREE_CHAIN (substmt))
7241 tsubst_expr (substmt, args, complain, in_decl);
7242 return finish_compound_stmt (COMPOUND_STMT_NO_SCOPE (t), stmt);
7243 }
7244 break;
7245
7246 case BREAK_STMT:
7247 prep_stmt (t);
7248 finish_break_stmt ();
7249 break;
7250
7251 case CONTINUE_STMT:
7252 prep_stmt (t);
7253 finish_continue_stmt ();
7254 break;
7255
7256 case SWITCH_STMT:
7257 {
7258 tree val;
7259
7260 prep_stmt (t);
7261 stmt = begin_switch_stmt ();
7262 val = tsubst_expr (SWITCH_COND (t), args, complain, in_decl);
7263 finish_switch_cond (val, stmt);
7264 tsubst_expr (SWITCH_BODY (t), args, complain, in_decl);
7265 finish_switch_stmt (val, stmt);
7266 }
7267 break;
7268
7269 case CASE_LABEL:
7270 prep_stmt (t);
7271 finish_case_label (tsubst_expr (CASE_LOW (t), args, complain, in_decl),
7272 tsubst_expr (CASE_HIGH (t), args, complain, in_decl));
7273 break;
7274
7275 case LABEL_STMT:
7276 lineno = STMT_LINENO (t);
7277 finish_label_stmt (DECL_NAME (LABEL_STMT_LABEL (t)));
7278 break;
7279
7280 case GOTO_STMT:
7281 prep_stmt (t);
7282 t = GOTO_DESTINATION (t);
7283 if (TREE_CODE (t) != LABEL_DECL)
7284 /* Computed goto's must be tsubst'd into. On the other hand,
7285 non-computed gotos must not be; the identifier in question
7286 will have no binding. */
7287 t = tsubst_expr (t, args, complain, in_decl);
7288 else
7289 t = DECL_NAME (t);
7290 finish_goto_stmt (t);
7291 break;
7292
7293 case ASM_STMT:
7294 prep_stmt (t);
7295 finish_asm_stmt (ASM_CV_QUAL (t),
7296 tsubst_expr (ASM_STRING (t), args, complain, in_decl),
7297 tsubst_expr (ASM_OUTPUTS (t), args, complain, in_decl),
7298 tsubst_expr (ASM_INPUTS (t), args, complain, in_decl),
7299 tsubst_expr (ASM_CLOBBERS (t), args, complain,
7300 in_decl));
7301 break;
7302
7303 case TRY_BLOCK:
7304 prep_stmt (t);
7305 if (CLEANUP_P (t))
7306 {
7307 stmt = begin_try_block ();
7308 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
7309 finish_cleanup_try_block (stmt);
7310 finish_cleanup (tsubst_expr (TRY_HANDLERS (t), args,
7311 complain, in_decl),
7312 stmt);
7313 }
7314 else
7315 {
7316 tree handler;
7317
7318 if (FN_TRY_BLOCK_P (t))
7319 stmt = begin_function_try_block ();
7320 else
7321 stmt = begin_try_block ();
7322
7323 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
7324
7325 if (FN_TRY_BLOCK_P (t))
7326 finish_function_try_block (stmt);
7327 else
7328 finish_try_block (stmt);
7329
7330 handler = TRY_HANDLERS (t);
7331 for (; handler; handler = TREE_CHAIN (handler))
7332 tsubst_expr (handler, args, complain, in_decl);
7333 if (FN_TRY_BLOCK_P (t))
7334 finish_function_handler_sequence (stmt);
7335 else
7336 finish_handler_sequence (stmt);
7337 }
7338 break;
7339
7340 case HANDLER:
7341 {
7342 tree decl;
7343 tree blocks;
7344
7345 prep_stmt (t);
7346 stmt = begin_handler ();
7347 if (HANDLER_PARMS (t))
7348 {
7349 decl = DECL_STMT_DECL (HANDLER_PARMS (t));
7350 decl = tsubst (decl, args, complain, in_decl);
7351 /* Prevent instantiate_decl from trying to instantiate
7352 this variable. We've already done all that needs to be
7353 done. */
7354 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
7355 }
7356 else
7357 decl = NULL_TREE;
7358 blocks = finish_handler_parms (decl, stmt);
7359 tsubst_expr (HANDLER_BODY (t), args, complain, in_decl);
7360 finish_handler (blocks, stmt);
7361 }
7362 break;
7363
7364 case TAG_DEFN:
7365 prep_stmt (t);
7366 t = TREE_TYPE (t);
7367 tsubst (t, args, complain, NULL_TREE);
7368 break;
7369
7370 default:
7371 return build_expr_from_tree (tsubst_copy (t, args, complain, in_decl));
7372 }
7373 return NULL_TREE;
7374 }
7375
7376 /* Instantiate the indicated variable or function template TMPL with
7377 the template arguments in TARG_PTR. */
7378
7379 tree
7380 instantiate_template (tmpl, targ_ptr)
7381 tree tmpl, targ_ptr;
7382 {
7383 tree fndecl;
7384 tree gen_tmpl;
7385 tree spec;
7386 int i, len;
7387 tree inner_args;
7388
7389 if (tmpl == error_mark_node)
7390 return error_mark_node;
7391
7392 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 283);
7393
7394 /* Check to see if we already have this specialization. */
7395 spec = retrieve_specialization (tmpl, targ_ptr);
7396 if (spec != NULL_TREE)
7397 return spec;
7398
7399 if (DECL_TEMPLATE_INFO (tmpl))
7400 {
7401 /* The TMPL is a partial instantiation. To get a full set of
7402 arguments we must add the arguments used to perform the
7403 partial instantiation. */
7404 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
7405 targ_ptr);
7406 gen_tmpl = most_general_template (tmpl);
7407
7408 /* Check to see if we already have this specialization. */
7409 spec = retrieve_specialization (gen_tmpl, targ_ptr);
7410 if (spec != NULL_TREE)
7411 return spec;
7412 }
7413 else
7414 gen_tmpl = tmpl;
7415
7416 len = DECL_NTPARMS (gen_tmpl);
7417 inner_args = innermost_args (targ_ptr);
7418 i = len;
7419 while (i--)
7420 {
7421 tree t = TREE_VEC_ELT (inner_args, i);
7422 if (TREE_CODE_CLASS (TREE_CODE (t)) == 't')
7423 {
7424 tree nt = target_type (t);
7425 if (IS_AGGR_TYPE (nt) && decl_function_context (TYPE_MAIN_DECL (nt)))
7426 {
7427 cp_error ("type `%T' composed from a local class is not a valid template-argument", t);
7428 cp_error (" trying to instantiate `%D'", gen_tmpl);
7429 fndecl = error_mark_node;
7430 goto out;
7431 }
7432 }
7433 }
7434
7435 /* substitute template parameters */
7436 fndecl = tsubst (DECL_RESULT (gen_tmpl), targ_ptr, /*complain=*/1, gen_tmpl);
7437 /* The DECL_TI_TEMPLATE should always be the immediate parent
7438 template, not the most general template. */
7439 DECL_TI_TEMPLATE (fndecl) = tmpl;
7440
7441 if (flag_external_templates)
7442 add_pending_template (fndecl);
7443
7444 out:
7445 return fndecl;
7446 }
7447
7448 /* Push the name of the class template into the scope of the instantiation. */
7449
7450 void
7451 overload_template_name (type)
7452 tree type;
7453 {
7454 tree id = DECL_NAME (CLASSTYPE_TI_TEMPLATE (type));
7455 tree decl;
7456
7457 if (IDENTIFIER_CLASS_VALUE (id)
7458 && TREE_TYPE (IDENTIFIER_CLASS_VALUE (id)) == type)
7459 return;
7460
7461 decl = build_decl (TYPE_DECL, id, type);
7462 SET_DECL_ARTIFICIAL (decl);
7463 pushdecl_class_level (decl);
7464 }
7465
7466 /* The FN is a TEMPLATE_DECL for a function. The ARGS are the
7467 arguments that are being used when calling it. TARGS is a vector
7468 into which the deduced template arguments are placed.
7469
7470 Return zero for success, 2 for an incomplete match that doesn't resolve
7471 all the types, and 1 for complete failure. An error message will be
7472 printed only for an incomplete match.
7473
7474 If FN is a conversion operator, RETURN_TYPE is the type desired as
7475 the result of the conversion operator.
7476
7477 TPARMS is a vector of template parameters.
7478
7479 The EXPLICIT_TARGS are explicit template arguments provided via a
7480 template-id.
7481
7482 The parameter STRICT is one of:
7483
7484 DEDUCE_CALL:
7485 We are deducing arguments for a function call, as in
7486 [temp.deduct.call].
7487
7488 DEDUCE_CONV:
7489 We are deducing arguments for a conversion function, as in
7490 [temp.deduct.conv].
7491
7492 DEDUCE_EXACT:
7493 We are deducing arguments when calculating the partial
7494 ordering between specializations of function or class
7495 templates, as in [temp.func.order] and [temp.class.order],
7496 when doing an explicit instantiation as in [temp.explicit],
7497 when determining an explicit specialization as in
7498 [temp.expl.spec], or when taking the address of a function
7499 template, as in [temp.deduct.funcaddr].
7500
7501 The other arguments are as for type_unification. */
7502
7503 int
7504 fn_type_unification (fn, explicit_targs, targs, args, return_type,
7505 strict)
7506 tree fn, explicit_targs, targs, args, return_type;
7507 unification_kind_t strict;
7508 {
7509 tree parms;
7510 tree fntype;
7511 int result;
7512
7513 my_friendly_assert (TREE_CODE (fn) == TEMPLATE_DECL, 0);
7514
7515 fntype = TREE_TYPE (fn);
7516 if (explicit_targs)
7517 {
7518 /* [temp.deduct]
7519
7520 The specified template arguments must match the template
7521 parameters in kind (i.e., type, nontype, template), and there
7522 must not be more arguments than there are parameters;
7523 otherwise type deduction fails.
7524
7525 Nontype arguments must match the types of the corresponding
7526 nontype template parameters, or must be convertible to the
7527 types of the corresponding nontype parameters as specified in
7528 _temp.arg.nontype_, otherwise type deduction fails.
7529
7530 All references in the function type of the function template
7531 to the corresponding template parameters are replaced by the
7532 specified template argument values. If a substitution in a
7533 template parameter or in the function type of the function
7534 template results in an invalid type, type deduction fails. */
7535 int i;
7536 tree converted_args;
7537
7538 converted_args
7539 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
7540 explicit_targs, NULL_TREE, /*complain=*/0,
7541 /*require_all_arguments=*/0));
7542 if (converted_args == error_mark_node)
7543 return 1;
7544
7545 fntype = tsubst (fntype, converted_args, /*complain=*/0, NULL_TREE);
7546 if (fntype == error_mark_node)
7547 return 1;
7548
7549 /* Place the explicitly specified arguments in TARGS. */
7550 for (i = 0; i < TREE_VEC_LENGTH (targs); i++)
7551 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
7552 }
7553
7554 parms = TYPE_ARG_TYPES (fntype);
7555
7556 if (DECL_CONV_FN_P (fn))
7557 {
7558 /* This is a template conversion operator. Use the return types
7559 as well as the argument types. We use it instead of 'this', since
7560 we could be comparing conversions from different classes. */
7561 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype),
7562 TREE_CHAIN (parms));
7563 args = tree_cons (NULL_TREE, return_type, TREE_CHAIN (args));
7564 }
7565
7566 /* We allow incomplete unification without an error message here
7567 because the standard doesn't seem to explicitly prohibit it. Our
7568 callers must be ready to deal with unification failures in any
7569 event. */
7570 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
7571 targs, parms, args, /*subr=*/0,
7572 strict, /*allow_incomplete*/1);
7573
7574 if (result == 0)
7575 /* All is well so far. Now, check:
7576
7577 [temp.deduct]
7578
7579 When all template arguments have been deduced, all uses of
7580 template parameters in nondeduced contexts are replaced with
7581 the corresponding deduced argument values. If the
7582 substitution results in an invalid type, as described above,
7583 type deduction fails. */
7584 if (tsubst (TREE_TYPE (fn), targs, /*complain=*/0, NULL_TREE)
7585 == error_mark_node)
7586 return 1;
7587
7588 return result;
7589 }
7590
7591 /* Adjust types before performing type deduction, as described in
7592 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
7593 sections are symmetric. PARM is the type of a function parameter
7594 or the return type of the conversion function. ARG is the type of
7595 the argument passed to the call, or the type of the value
7596 intialized with the result of the conversion function. */
7597
7598 static void
7599 maybe_adjust_types_for_deduction (strict, parm, arg)
7600 unification_kind_t strict;
7601 tree* parm;
7602 tree* arg;
7603 {
7604 switch (strict)
7605 {
7606 case DEDUCE_CALL:
7607 break;
7608
7609 case DEDUCE_CONV:
7610 {
7611 /* Swap PARM and ARG throughout the remainder of this
7612 function; the handling is precisely symmetric since PARM
7613 will initialize ARG rather than vice versa. */
7614 tree* temp = parm;
7615 parm = arg;
7616 arg = temp;
7617 break;
7618 }
7619
7620 case DEDUCE_EXACT:
7621 /* There is nothing to do in this case. */
7622 return;
7623
7624 default:
7625 my_friendly_abort (0);
7626 }
7627
7628 if (TREE_CODE (*parm) != REFERENCE_TYPE)
7629 {
7630 /* [temp.deduct.call]
7631
7632 If P is not a reference type:
7633
7634 --If A is an array type, the pointer type produced by the
7635 array-to-pointer standard conversion (_conv.array_) is
7636 used in place of A for type deduction; otherwise,
7637
7638 --If A is a function type, the pointer type produced by
7639 the function-to-pointer standard conversion
7640 (_conv.func_) is used in place of A for type deduction;
7641 otherwise,
7642
7643 --If A is a cv-qualified type, the top level
7644 cv-qualifiers of A's type are ignored for type
7645 deduction. */
7646 if (TREE_CODE (*arg) == ARRAY_TYPE)
7647 *arg = build_pointer_type (TREE_TYPE (*arg));
7648 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
7649 *arg = build_pointer_type (*arg);
7650 else
7651 *arg = TYPE_MAIN_VARIANT (*arg);
7652 }
7653
7654 /* [temp.deduct.call]
7655
7656 If P is a cv-qualified type, the top level cv-qualifiers
7657 of P's type are ignored for type deduction. If P is a
7658 reference type, the type referred to by P is used for
7659 type deduction. */
7660 *parm = TYPE_MAIN_VARIANT (*parm);
7661 if (TREE_CODE (*parm) == REFERENCE_TYPE)
7662 *parm = TREE_TYPE (*parm);
7663 }
7664
7665 /* Like type_unfication.
7666
7667 If SUBR is 1, we're being called recursively (to unify the
7668 arguments of a function or method parameter of a function
7669 template). */
7670
7671 static int
7672 type_unification_real (tparms, targs, parms, args, subr,
7673 strict, allow_incomplete)
7674 tree tparms, targs, parms, args;
7675 int subr;
7676 unification_kind_t strict;
7677 int allow_incomplete;
7678 {
7679 tree parm, arg;
7680 int i;
7681 int ntparms = TREE_VEC_LENGTH (tparms);
7682 int sub_strict;
7683
7684 my_friendly_assert (TREE_CODE (tparms) == TREE_VEC, 289);
7685 my_friendly_assert (parms == NULL_TREE
7686 || TREE_CODE (parms) == TREE_LIST, 290);
7687 /* ARGS could be NULL (via a call from parse.y to
7688 build_x_function_call). */
7689 if (args)
7690 my_friendly_assert (TREE_CODE (args) == TREE_LIST, 291);
7691 my_friendly_assert (ntparms > 0, 292);
7692
7693 switch (strict)
7694 {
7695 case DEDUCE_CALL:
7696 sub_strict = UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_DERIVED;
7697 break;
7698
7699 case DEDUCE_CONV:
7700 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
7701 break;
7702
7703 case DEDUCE_EXACT:
7704 sub_strict = UNIFY_ALLOW_NONE;
7705 break;
7706
7707 default:
7708 my_friendly_abort (0);
7709 }
7710
7711 while (parms
7712 && parms != void_list_node
7713 && args
7714 && args != void_list_node)
7715 {
7716 parm = TREE_VALUE (parms);
7717 parms = TREE_CHAIN (parms);
7718 arg = TREE_VALUE (args);
7719 args = TREE_CHAIN (args);
7720
7721 if (arg == error_mark_node)
7722 return 1;
7723 if (arg == unknown_type_node)
7724 /* We can't deduce anything from this, but we might get all the
7725 template args from other function args. */
7726 continue;
7727
7728 /* Conversions will be performed on a function argument that
7729 corresponds with a function parameter that contains only
7730 non-deducible template parameters and explicitly specified
7731 template parameters. */
7732 if (! uses_template_parms (parm))
7733 {
7734 tree type;
7735
7736 if (TREE_CODE_CLASS (TREE_CODE (arg)) != 't')
7737 type = TREE_TYPE (arg);
7738 else
7739 {
7740 type = arg;
7741 arg = NULL_TREE;
7742 }
7743
7744 if (strict == DEDUCE_EXACT)
7745 {
7746 if (same_type_p (parm, type))
7747 continue;
7748 }
7749 else
7750 /* It might work; we shouldn't check now, because we might
7751 get into infinite recursion. Overload resolution will
7752 handle it. */
7753 continue;
7754
7755 return 1;
7756 }
7757
7758 if (TREE_CODE_CLASS (TREE_CODE (arg)) != 't')
7759 {
7760 my_friendly_assert (TREE_TYPE (arg) != NULL_TREE, 293);
7761 if (type_unknown_p (arg))
7762 {
7763 /* [temp.deduct.type] A template-argument can be deduced from
7764 a pointer to function or pointer to member function
7765 argument if the set of overloaded functions does not
7766 contain function templates and at most one of a set of
7767 overloaded functions provides a unique match. */
7768
7769 if (resolve_overloaded_unification
7770 (tparms, targs, parm, arg, strict, sub_strict)
7771 != 0)
7772 return 1;
7773 continue;
7774 }
7775 arg = TREE_TYPE (arg);
7776 }
7777
7778 if (!subr)
7779 maybe_adjust_types_for_deduction (strict, &parm, &arg);
7780
7781 switch (unify (tparms, targs, parm, arg, sub_strict))
7782 {
7783 case 0:
7784 break;
7785 case 1:
7786 return 1;
7787 }
7788 }
7789 /* Fail if we've reached the end of the parm list, and more args
7790 are present, and the parm list isn't variadic. */
7791 if (args && args != void_list_node && parms == void_list_node)
7792 return 1;
7793 /* Fail if parms are left and they don't have default values. */
7794 if (parms
7795 && parms != void_list_node
7796 && TREE_PURPOSE (parms) == NULL_TREE)
7797 return 1;
7798 if (!subr)
7799 for (i = 0; i < ntparms; i++)
7800 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
7801 {
7802 if (!allow_incomplete)
7803 error ("incomplete type unification");
7804 return 2;
7805 }
7806 return 0;
7807 }
7808
7809 /* Subroutine of type_unification_real. Args are like the variables at the
7810 call site. ARG is an overloaded function (or template-id); we try
7811 deducing template args from each of the overloads, and if only one
7812 succeeds, we go with that. Modifies TARGS and returns 0 on success. */
7813
7814 static int
7815 resolve_overloaded_unification (tparms, targs, parm, arg, strict,
7816 sub_strict)
7817 tree tparms, targs, parm, arg;
7818 unification_kind_t strict;
7819 int sub_strict;
7820 {
7821 tree tempargs = copy_node (targs);
7822 int good = 0;
7823
7824 if (TREE_CODE (arg) == ADDR_EXPR)
7825 arg = TREE_OPERAND (arg, 0);
7826
7827 if (TREE_CODE (arg) == COMPONENT_REF)
7828 /* Handle `&x' where `x' is some static or non-static member
7829 function name. */
7830 arg = TREE_OPERAND (arg, 1);
7831
7832 if (TREE_CODE (arg) == OFFSET_REF)
7833 arg = TREE_OPERAND (arg, 1);
7834
7835 /* Strip baselink information. */
7836 while (TREE_CODE (arg) == TREE_LIST)
7837 arg = TREE_VALUE (arg);
7838
7839 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
7840 {
7841 /* If we got some explicit template args, we need to plug them into
7842 the affected templates before we try to unify, in case the
7843 explicit args will completely resolve the templates in question. */
7844
7845 tree expl_subargs = TREE_OPERAND (arg, 1);
7846 arg = TREE_OPERAND (arg, 0);
7847
7848 for (; arg; arg = OVL_NEXT (arg))
7849 {
7850 tree fn = OVL_CURRENT (arg);
7851 tree subargs, elem;
7852
7853 if (TREE_CODE (fn) != TEMPLATE_DECL)
7854 continue;
7855
7856 subargs = get_bindings_overload (fn, DECL_RESULT (fn), expl_subargs);
7857 if (subargs)
7858 {
7859 elem = tsubst (TREE_TYPE (fn), subargs, /*complain=*/0,
7860 NULL_TREE);
7861 if (TREE_CODE (elem) == METHOD_TYPE)
7862 elem = build_ptrmemfunc_type (build_pointer_type (elem));
7863 good += try_one_overload (tparms, targs, tempargs, parm, elem,
7864 strict, sub_strict);
7865 }
7866 }
7867 }
7868 else if (TREE_CODE (arg) == OVERLOAD)
7869 {
7870 for (; arg; arg = OVL_NEXT (arg))
7871 {
7872 tree type = TREE_TYPE (OVL_CURRENT (arg));
7873 if (TREE_CODE (type) == METHOD_TYPE)
7874 type = build_ptrmemfunc_type (build_pointer_type (type));
7875 good += try_one_overload (tparms, targs, tempargs, parm,
7876 type,
7877 strict, sub_strict);
7878 }
7879 }
7880 else
7881 my_friendly_abort (981006);
7882
7883 /* [temp.deduct.type] A template-argument can be deduced from a pointer
7884 to function or pointer to member function argument if the set of
7885 overloaded functions does not contain function templates and at most
7886 one of a set of overloaded functions provides a unique match.
7887
7888 So if we found multiple possibilities, we return success but don't
7889 deduce anything. */
7890
7891 if (good == 1)
7892 {
7893 int i = TREE_VEC_LENGTH (targs);
7894 for (; i--; )
7895 if (TREE_VEC_ELT (tempargs, i))
7896 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
7897 }
7898 if (good)
7899 return 0;
7900
7901 return 1;
7902 }
7903
7904 /* Subroutine of resolve_overloaded_unification; does deduction for a single
7905 overload. Fills TARGS with any deduced arguments, or error_mark_node if
7906 different overloads deduce different arguments for a given parm.
7907 Returns 1 on success. */
7908
7909 static int
7910 try_one_overload (tparms, orig_targs, targs, parm, arg, strict,
7911 sub_strict)
7912 tree tparms, orig_targs, targs, parm, arg;
7913 unification_kind_t strict;
7914 int sub_strict;
7915 {
7916 int nargs;
7917 tree tempargs;
7918 int i;
7919
7920 /* [temp.deduct.type] A template-argument can be deduced from a pointer
7921 to function or pointer to member function argument if the set of
7922 overloaded functions does not contain function templates and at most
7923 one of a set of overloaded functions provides a unique match.
7924
7925 So if this is a template, just return success. */
7926
7927 if (uses_template_parms (arg))
7928 return 1;
7929
7930 maybe_adjust_types_for_deduction (strict, &parm, &arg);
7931
7932 /* We don't copy orig_targs for this because if we have already deduced
7933 some template args from previous args, unify would complain when we
7934 try to deduce a template parameter for the same argument, even though
7935 there isn't really a conflict. */
7936 nargs = TREE_VEC_LENGTH (targs);
7937 tempargs = make_tree_vec (nargs);
7938
7939 if (unify (tparms, tempargs, parm, arg, sub_strict) != 0)
7940 return 0;
7941
7942 /* First make sure we didn't deduce anything that conflicts with
7943 explicitly specified args. */
7944 for (i = nargs; i--; )
7945 {
7946 tree elt = TREE_VEC_ELT (tempargs, i);
7947 tree oldelt = TREE_VEC_ELT (orig_targs, i);
7948
7949 if (elt == NULL_TREE)
7950 continue;
7951 else if (uses_template_parms (elt))
7952 {
7953 /* Since we're unifying against ourselves, we will fill in template
7954 args used in the function parm list with our own template parms.
7955 Discard them. */
7956 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
7957 continue;
7958 }
7959 else if (oldelt && ! template_args_equal (oldelt, elt))
7960 return 0;
7961 }
7962
7963 for (i = nargs; i--; )
7964 {
7965 tree elt = TREE_VEC_ELT (tempargs, i);
7966
7967 if (elt)
7968 TREE_VEC_ELT (targs, i) = elt;
7969 }
7970
7971 return 1;
7972 }
7973
7974 /* PARM is a template class (perhaps with unbound template
7975 parameters). ARG is a fully instantiated type. If ARG can be
7976 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
7977 TARGS are as for unify. */
7978
7979 static tree
7980 try_class_unification (tparms, targs, parm, arg)
7981 tree tparms;
7982 tree targs;
7983 tree parm;
7984 tree arg;
7985 {
7986 int i;
7987 tree copy_of_targs;
7988
7989 if (!CLASSTYPE_TEMPLATE_INFO (arg)
7990 || CLASSTYPE_TI_TEMPLATE (arg) != CLASSTYPE_TI_TEMPLATE (parm))
7991 return NULL_TREE;
7992
7993 /* We need to make a new template argument vector for the call to
7994 unify. If we used TARGS, we'd clutter it up with the result of
7995 the attempted unification, even if this class didn't work out.
7996 We also don't want to commit ourselves to all the unifications
7997 we've already done, since unification is supposed to be done on
7998 an argument-by-argument basis. In other words, consider the
7999 following pathological case:
8000
8001 template <int I, int J, int K>
8002 struct S {};
8003
8004 template <int I, int J>
8005 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
8006
8007 template <int I, int J, int K>
8008 void f(S<I, J, K>, S<I, I, I>);
8009
8010 void g() {
8011 S<0, 0, 0> s0;
8012 S<0, 1, 2> s2;
8013
8014 f(s0, s2);
8015 }
8016
8017 Now, by the time we consider the unification involving `s2', we
8018 already know that we must have `f<0, 0, 0>'. But, even though
8019 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is not legal
8020 because there are two ways to unify base classes of S<0, 1, 2>
8021 with S<I, I, I>. If we kept the already deduced knowledge, we
8022 would reject the possibility I=1. */
8023 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
8024 i = unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
8025 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE);
8026
8027 /* If unification failed, we're done. */
8028 if (i != 0)
8029 return NULL_TREE;
8030 else
8031 return arg;
8032 }
8033
8034 /* Subroutine of get_template_base. RVAL, if non-NULL, is a base we
8035 have alreay discovered to be satisfactory. ARG_BINFO is the binfo
8036 for the base class of ARG that we are currently examining. */
8037
8038 static tree
8039 get_template_base_recursive (tparms, targs, parm,
8040 arg_binfo, rval, flags)
8041 tree tparms;
8042 tree targs;
8043 tree arg_binfo;
8044 tree rval;
8045 tree parm;
8046 int flags;
8047 {
8048 tree binfos;
8049 int i, n_baselinks;
8050 tree arg = BINFO_TYPE (arg_binfo);
8051
8052 if (!(flags & GTB_IGNORE_TYPE))
8053 {
8054 tree r = try_class_unification (tparms, targs,
8055 parm, arg);
8056
8057 /* If there is more than one satisfactory baseclass, then:
8058
8059 [temp.deduct.call]
8060
8061 If they yield more than one possible deduced A, the type
8062 deduction fails.
8063
8064 applies. */
8065 if (r && rval && !same_type_p (r, rval))
8066 return error_mark_node;
8067 else if (r)
8068 rval = r;
8069 }
8070
8071 binfos = BINFO_BASETYPES (arg_binfo);
8072 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
8073
8074 /* Process base types. */
8075 for (i = 0; i < n_baselinks; i++)
8076 {
8077 tree base_binfo = TREE_VEC_ELT (binfos, i);
8078 int this_virtual;
8079
8080 /* Skip this base, if we've already seen it. */
8081 if (BINFO_MARKED (base_binfo))
8082 continue;
8083
8084 this_virtual =
8085 (flags & GTB_VIA_VIRTUAL) || TREE_VIA_VIRTUAL (base_binfo);
8086
8087 /* When searching for a non-virtual, we cannot mark virtually
8088 found binfos. */
8089 if (! this_virtual)
8090 SET_BINFO_MARKED (base_binfo);
8091
8092 rval = get_template_base_recursive (tparms, targs,
8093 parm,
8094 base_binfo,
8095 rval,
8096 GTB_VIA_VIRTUAL * this_virtual);
8097
8098 /* If we discovered more than one matching base class, we can
8099 stop now. */
8100 if (rval == error_mark_node)
8101 return error_mark_node;
8102 }
8103
8104 return rval;
8105 }
8106
8107 /* Given a template type PARM and a class type ARG, find the unique
8108 base type in ARG that is an instance of PARM. We do not examine
8109 ARG itself; only its base-classes. If there is no appropriate base
8110 class, return NULL_TREE. If there is more than one, return
8111 error_mark_node. PARM may be the type of a partial specialization,
8112 as well as a plain template type. Used by unify. */
8113
8114 static tree
8115 get_template_base (tparms, targs, parm, arg)
8116 tree tparms;
8117 tree targs;
8118 tree parm;
8119 tree arg;
8120 {
8121 tree rval;
8122 tree arg_binfo;
8123
8124 my_friendly_assert (IS_AGGR_TYPE_CODE (TREE_CODE (arg)), 92);
8125
8126 arg_binfo = TYPE_BINFO (complete_type (arg));
8127 rval = get_template_base_recursive (tparms, targs,
8128 parm, arg_binfo,
8129 NULL_TREE,
8130 GTB_IGNORE_TYPE);
8131
8132 /* Since get_template_base_recursive marks the bases classes, we
8133 must unmark them here. */
8134 dfs_walk (arg_binfo, dfs_unmark, markedp, 0);
8135
8136 return rval;
8137 }
8138
8139 /* Returns the level of DECL, which declares a template parameter. */
8140
8141 static int
8142 template_decl_level (decl)
8143 tree decl;
8144 {
8145 switch (TREE_CODE (decl))
8146 {
8147 case TYPE_DECL:
8148 case TEMPLATE_DECL:
8149 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
8150
8151 case PARM_DECL:
8152 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
8153
8154 default:
8155 my_friendly_abort (0);
8156 return 0;
8157 }
8158 }
8159
8160 /* Decide whether ARG can be unified with PARM, considering only the
8161 cv-qualifiers of each type, given STRICT as documented for unify.
8162 Returns non-zero iff the unification is OK on that basis.*/
8163
8164 static int
8165 check_cv_quals_for_unify (strict, arg, parm)
8166 int strict;
8167 tree arg;
8168 tree parm;
8169 {
8170 if (!(strict & UNIFY_ALLOW_MORE_CV_QUAL)
8171 && !at_least_as_qualified_p (arg, parm))
8172 return 0;
8173
8174 if (!(strict & UNIFY_ALLOW_LESS_CV_QUAL)
8175 && !at_least_as_qualified_p (parm, arg))
8176 return 0;
8177
8178 return 1;
8179 }
8180
8181 /* Takes parameters as for type_unification. Returns 0 if the
8182 type deduction suceeds, 1 otherwise. The parameter STRICT is a
8183 bitwise or of the following flags:
8184
8185 UNIFY_ALLOW_NONE:
8186 Require an exact match between PARM and ARG.
8187 UNIFY_ALLOW_MORE_CV_QUAL:
8188 Allow the deduced ARG to be more cv-qualified than ARG.
8189 UNIFY_ALLOW_LESS_CV_QUAL:
8190 Allow the deduced ARG to be less cv-qualified than ARG.
8191 UNIFY_ALLOW_DERIVED:
8192 Allow the deduced ARG to be a template base class of ARG,
8193 or a pointer to a template base class of the type pointed to by
8194 ARG.
8195 UNIFY_ALLOW_INTEGER:
8196 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
8197 case for more information. */
8198
8199 static int
8200 unify (tparms, targs, parm, arg, strict)
8201 tree tparms, targs, parm, arg;
8202 int strict;
8203 {
8204 int idx;
8205 tree targ;
8206 tree tparm;
8207
8208 /* I don't think this will do the right thing with respect to types.
8209 But the only case I've seen it in so far has been array bounds, where
8210 signedness is the only information lost, and I think that will be
8211 okay. */
8212 while (TREE_CODE (parm) == NOP_EXPR)
8213 parm = TREE_OPERAND (parm, 0);
8214
8215 if (arg == error_mark_node)
8216 return 1;
8217 if (arg == unknown_type_node)
8218 /* We can't deduce anything from this, but we might get all the
8219 template args from other function args. */
8220 return 0;
8221
8222 /* If PARM uses template parameters, then we can't bail out here,
8223 even if ARG == PARM, since we won't record unifications for the
8224 template parameters. We might need them if we're trying to
8225 figure out which of two things is more specialized. */
8226 if (arg == parm && !uses_template_parms (parm))
8227 return 0;
8228
8229 /* Immediately reject some pairs that won't unify because of
8230 cv-qualification mismatches. */
8231 if (TREE_CODE (arg) == TREE_CODE (parm)
8232 && TREE_CODE_CLASS (TREE_CODE (arg)) == 't'
8233 /* We check the cv-qualifiers when unifying with template type
8234 parameters below. We want to allow ARG `const T' to unify with
8235 PARM `T' for example, when computing which of two templates
8236 is more specialized, for example. */
8237 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
8238 && !check_cv_quals_for_unify (strict, arg, parm))
8239 return 1;
8240
8241 switch (TREE_CODE (parm))
8242 {
8243 case TYPENAME_TYPE:
8244 /* In a type which contains a nested-name-specifier, template
8245 argument values cannot be deduced for template parameters used
8246 within the nested-name-specifier. */
8247 return 0;
8248
8249 case TEMPLATE_TYPE_PARM:
8250 case TEMPLATE_TEMPLATE_PARM:
8251 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
8252
8253 if (TEMPLATE_TYPE_LEVEL (parm)
8254 != template_decl_level (tparm))
8255 /* The PARM is not one we're trying to unify. Just check
8256 to see if it matches ARG. */
8257 return (TREE_CODE (arg) == TREE_CODE (parm)
8258 && same_type_p (parm, arg)) ? 0 : 1;
8259 idx = TEMPLATE_TYPE_IDX (parm);
8260 targ = TREE_VEC_ELT (targs, idx);
8261 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
8262
8263 /* Check for mixed types and values. */
8264 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
8265 && TREE_CODE (tparm) != TYPE_DECL)
8266 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
8267 && TREE_CODE (tparm) != TEMPLATE_DECL))
8268 return 1;
8269
8270 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
8271 {
8272 if (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm))
8273 {
8274 /* We arrive here when PARM does not involve template
8275 specialization. */
8276
8277 /* ARG must be constructed from a template class. */
8278 if (TREE_CODE (arg) != RECORD_TYPE || !CLASSTYPE_TEMPLATE_INFO (arg))
8279 return 1;
8280
8281 {
8282 tree parmtmpl = TYPE_TI_TEMPLATE (parm);
8283 tree parmvec = TYPE_TI_ARGS (parm);
8284 tree argvec = CLASSTYPE_TI_ARGS (arg);
8285 tree argtmplvec
8286 = DECL_INNERMOST_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (arg));
8287 int i;
8288
8289 /* The parameter and argument roles have to be switched here
8290 in order to handle default arguments properly. For example,
8291 template<template <class> class TT> void f(TT<int>)
8292 should be able to accept vector<int> which comes from
8293 template <class T, class Allocator = allocator>
8294 class vector. */
8295
8296 if (coerce_template_parms (argtmplvec, parmvec, parmtmpl, 0, 1)
8297 == error_mark_node)
8298 return 1;
8299
8300 /* Deduce arguments T, i from TT<T> or TT<i>.
8301 We check each element of PARMVEC and ARGVEC individually
8302 rather than the whole TREE_VEC since they can have
8303 different number of elements. */
8304
8305 for (i = 0; i < TREE_VEC_LENGTH (parmvec); ++i)
8306 {
8307 tree t = TREE_VEC_ELT (parmvec, i);
8308
8309 if (unify (tparms, targs, t,
8310 TREE_VEC_ELT (argvec, i),
8311 UNIFY_ALLOW_NONE))
8312 return 1;
8313 }
8314 }
8315 arg = CLASSTYPE_TI_TEMPLATE (arg);
8316 }
8317 }
8318 else
8319 {
8320 /* If PARM is `const T' and ARG is only `int', we don't have
8321 a match unless we are allowing additional qualification.
8322 If ARG is `const int' and PARM is just `T' that's OK;
8323 that binds `const int' to `T'. */
8324 if (!check_cv_quals_for_unify (strict | UNIFY_ALLOW_LESS_CV_QUAL,
8325 arg, parm))
8326 return 1;
8327
8328 /* Consider the case where ARG is `const volatile int' and
8329 PARM is `const T'. Then, T should be `volatile int'. */
8330 arg =
8331 cp_build_qualified_type_real (arg,
8332 CP_TYPE_QUALS (arg)
8333 & ~CP_TYPE_QUALS (parm),
8334 /*complain=*/0);
8335 if (arg == error_mark_node)
8336 return 1;
8337 }
8338
8339 /* Simple cases: Value already set, does match or doesn't. */
8340 if (targ != NULL_TREE && same_type_p (targ, arg))
8341 return 0;
8342 else if (targ)
8343 return 1;
8344
8345 /* Make sure that ARG is not a variable-sized array. (Note that
8346 were talking about variable-sized arrays (like `int[n]'),
8347 rather than arrays of unknown size (like `int[]').) We'll
8348 get very confused by such a type since the bound of the array
8349 will not be computable in an instantiation. Besides, such
8350 types are not allowed in ISO C++, so we can do as we please
8351 here. */
8352 if (TREE_CODE (arg) == ARRAY_TYPE
8353 && !uses_template_parms (arg)
8354 && (TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (arg)))
8355 != INTEGER_CST))
8356 return 1;
8357
8358 TREE_VEC_ELT (targs, idx) = arg;
8359 return 0;
8360
8361 case TEMPLATE_PARM_INDEX:
8362 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
8363
8364 if (TEMPLATE_PARM_LEVEL (parm)
8365 != template_decl_level (tparm))
8366 /* The PARM is not one we're trying to unify. Just check
8367 to see if it matches ARG. */
8368 return (TREE_CODE (arg) == TREE_CODE (parm)
8369 && cp_tree_equal (parm, arg) > 0) ? 0 : 1;
8370
8371 idx = TEMPLATE_PARM_IDX (parm);
8372 targ = TREE_VEC_ELT (targs, idx);
8373
8374 if (targ)
8375 {
8376 int i = (cp_tree_equal (targ, arg) > 0);
8377 if (i == 1)
8378 return 0;
8379 else if (i == 0)
8380 return 1;
8381 else
8382 my_friendly_abort (42);
8383 }
8384
8385 /* [temp.deduct.type] If, in the declaration of a function template
8386 with a non-type template-parameter, the non-type
8387 template-parameter is used in an expression in the function
8388 parameter-list and, if the corresponding template-argument is
8389 deduced, the template-argument type shall match the type of the
8390 template-parameter exactly, except that a template-argument
8391 deduced from an array bound may be of any integral type. */
8392 if (same_type_p (TREE_TYPE (arg), TREE_TYPE (parm)))
8393 /* OK */;
8394 else if ((strict & UNIFY_ALLOW_INTEGER)
8395 && (TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
8396 || TREE_CODE (TREE_TYPE (parm)) == BOOLEAN_TYPE))
8397 /* OK */;
8398 else
8399 return 1;
8400
8401 TREE_VEC_ELT (targs, idx) = arg;
8402 return 0;
8403
8404 case POINTER_TYPE:
8405 {
8406 int sub_strict;
8407
8408 if (TREE_CODE (arg) != POINTER_TYPE)
8409 return 1;
8410
8411 /* [temp.deduct.call]
8412
8413 A can be another pointer or pointer to member type that can
8414 be converted to the deduced A via a qualification
8415 conversion (_conv.qual_).
8416
8417 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
8418 This will allow for additional cv-qualification of the
8419 pointed-to types if appropriate. In general, this is a bit
8420 too generous; we are only supposed to allow qualification
8421 conversions and this method will allow an ARG of char** and
8422 a deduced ARG of const char**. However, overload
8423 resolution will subsequently invalidate the candidate, so
8424 this is probably OK. */
8425 sub_strict = strict;
8426
8427 if (TREE_CODE (TREE_TYPE (arg)) != RECORD_TYPE)
8428 /* The derived-to-base conversion only persists through one
8429 level of pointers. */
8430 sub_strict &= ~UNIFY_ALLOW_DERIVED;
8431
8432 return unify (tparms, targs, TREE_TYPE (parm),
8433 TREE_TYPE (arg), sub_strict);
8434 }
8435
8436 case REFERENCE_TYPE:
8437 if (TREE_CODE (arg) != REFERENCE_TYPE)
8438 return 1;
8439 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
8440 UNIFY_ALLOW_NONE);
8441
8442 case ARRAY_TYPE:
8443 if (TREE_CODE (arg) != ARRAY_TYPE)
8444 return 1;
8445 if ((TYPE_DOMAIN (parm) == NULL_TREE)
8446 != (TYPE_DOMAIN (arg) == NULL_TREE))
8447 return 1;
8448 if (TYPE_DOMAIN (parm) != NULL_TREE
8449 && unify (tparms, targs, TYPE_DOMAIN (parm),
8450 TYPE_DOMAIN (arg), UNIFY_ALLOW_NONE) != 0)
8451 return 1;
8452 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
8453 UNIFY_ALLOW_NONE);
8454
8455 case REAL_TYPE:
8456 case COMPLEX_TYPE:
8457 case INTEGER_TYPE:
8458 case BOOLEAN_TYPE:
8459 case VOID_TYPE:
8460 if (TREE_CODE (arg) != TREE_CODE (parm))
8461 return 1;
8462
8463 if (TREE_CODE (parm) == INTEGER_TYPE
8464 && TREE_CODE (TYPE_MAX_VALUE (parm)) != INTEGER_CST)
8465 {
8466 if (TYPE_MIN_VALUE (parm) && TYPE_MIN_VALUE (arg)
8467 && unify (tparms, targs, TYPE_MIN_VALUE (parm),
8468 TYPE_MIN_VALUE (arg), UNIFY_ALLOW_INTEGER))
8469 return 1;
8470 if (TYPE_MAX_VALUE (parm) && TYPE_MAX_VALUE (arg)
8471 && unify (tparms, targs, TYPE_MAX_VALUE (parm),
8472 TYPE_MAX_VALUE (arg), UNIFY_ALLOW_INTEGER))
8473 return 1;
8474 }
8475 /* We use the TYPE_MAIN_VARIANT since we have already
8476 checked cv-qualification at the top of the
8477 function. */
8478 else if (!same_type_p (TYPE_MAIN_VARIANT (arg),
8479 TYPE_MAIN_VARIANT (parm)))
8480 return 1;
8481
8482 /* As far as unification is concerned, this wins. Later checks
8483 will invalidate it if necessary. */
8484 return 0;
8485
8486 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
8487 /* Type INTEGER_CST can come from ordinary constant template args. */
8488 case INTEGER_CST:
8489 while (TREE_CODE (arg) == NOP_EXPR)
8490 arg = TREE_OPERAND (arg, 0);
8491
8492 if (TREE_CODE (arg) != INTEGER_CST)
8493 return 1;
8494 return !tree_int_cst_equal (parm, arg);
8495
8496 case TREE_VEC:
8497 {
8498 int i;
8499 if (TREE_CODE (arg) != TREE_VEC)
8500 return 1;
8501 if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
8502 return 1;
8503 for (i = TREE_VEC_LENGTH (parm) - 1; i >= 0; i--)
8504 if (unify (tparms, targs,
8505 TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
8506 UNIFY_ALLOW_NONE))
8507 return 1;
8508 return 0;
8509 }
8510
8511 case RECORD_TYPE:
8512 case UNION_TYPE:
8513 if (TREE_CODE (arg) != TREE_CODE (parm))
8514 return 1;
8515
8516 if (TYPE_PTRMEMFUNC_P (parm))
8517 {
8518 if (!TYPE_PTRMEMFUNC_P (arg))
8519 return 1;
8520
8521 return unify (tparms, targs,
8522 TYPE_PTRMEMFUNC_FN_TYPE (parm),
8523 TYPE_PTRMEMFUNC_FN_TYPE (arg),
8524 strict);
8525 }
8526
8527 if (CLASSTYPE_TEMPLATE_INFO (parm))
8528 {
8529 tree t = NULL_TREE;
8530
8531 if (strict & UNIFY_ALLOW_DERIVED)
8532 {
8533 /* First, we try to unify the PARM and ARG directly. */
8534 t = try_class_unification (tparms, targs,
8535 parm, arg);
8536
8537 if (!t)
8538 {
8539 /* Fallback to the special case allowed in
8540 [temp.deduct.call]:
8541
8542 If P is a class, and P has the form
8543 template-id, then A can be a derived class of
8544 the deduced A. Likewise, if P is a pointer to
8545 a class of the form template-id, A can be a
8546 pointer to a derived class pointed to by the
8547 deduced A. */
8548 t = get_template_base (tparms, targs,
8549 parm, arg);
8550
8551 if (! t || t == error_mark_node)
8552 return 1;
8553 }
8554 }
8555 else if (CLASSTYPE_TEMPLATE_INFO (arg)
8556 && (CLASSTYPE_TI_TEMPLATE (parm)
8557 == CLASSTYPE_TI_TEMPLATE (arg)))
8558 /* Perhaps PARM is something like S<U> and ARG is S<int>.
8559 Then, we should unify `int' and `U'. */
8560 t = arg;
8561 else
8562 /* There's no chance of unication succeeding. */
8563 return 1;
8564
8565 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
8566 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE);
8567 }
8568 else if (!same_type_p (TYPE_MAIN_VARIANT (parm),
8569 TYPE_MAIN_VARIANT (arg)))
8570 return 1;
8571 return 0;
8572
8573 case METHOD_TYPE:
8574 case FUNCTION_TYPE:
8575 if (TREE_CODE (arg) != TREE_CODE (parm))
8576 return 1;
8577
8578 if (unify (tparms, targs, TREE_TYPE (parm),
8579 TREE_TYPE (arg), UNIFY_ALLOW_NONE))
8580 return 1;
8581 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
8582 TYPE_ARG_TYPES (arg), 1,
8583 DEDUCE_EXACT, 0);
8584
8585 case OFFSET_TYPE:
8586 if (TREE_CODE (arg) != OFFSET_TYPE)
8587 return 1;
8588 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
8589 TYPE_OFFSET_BASETYPE (arg), UNIFY_ALLOW_NONE))
8590 return 1;
8591 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
8592 strict);
8593
8594 case CONST_DECL:
8595 if (arg != decl_constant_value (parm))
8596 return 1;
8597 return 0;
8598
8599 case TEMPLATE_DECL:
8600 /* Matched cases are handled by the ARG == PARM test above. */
8601 return 1;
8602
8603 case MINUS_EXPR:
8604 if (TREE_CODE (TREE_OPERAND (parm, 1)) == INTEGER_CST)
8605 {
8606 /* We handle this case specially, since it comes up with
8607 arrays. In particular, something like:
8608
8609 template <int N> void f(int (&x)[N]);
8610
8611 Here, we are trying to unify the range type, which
8612 looks like [0 ... (N - 1)]. */
8613 tree t, t1, t2;
8614 t1 = TREE_OPERAND (parm, 0);
8615 t2 = TREE_OPERAND (parm, 1);
8616
8617 /* Should this be a regular fold? */
8618 t = maybe_fold_nontype_arg (build (PLUS_EXPR,
8619 integer_type_node,
8620 arg, t2));
8621
8622 return unify (tparms, targs, t1, t, strict);
8623 }
8624 /* else fall through */
8625
8626 default:
8627 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (parm))))
8628 /* We're looking at an expression. This can happen with
8629 something like:
8630
8631 template <int I>
8632 void foo(S<I>, S<I + 2>);
8633
8634 This is a "nondeduced context":
8635
8636 [deduct.type]
8637
8638 The nondeduced contexts are:
8639
8640 --A type that is a template-id in which one or more of
8641 the template-arguments is an expression that references
8642 a template-parameter.
8643
8644 In these cases, we assume deduction succeeded, but don't
8645 actually infer any unifications. */
8646 return 0;
8647 else
8648 sorry ("use of `%s' in template type unification",
8649 tree_code_name [(int) TREE_CODE (parm)]);
8650
8651 return 1;
8652 }
8653 }
8654 \f
8655 /* Called if RESULT is explicitly instantiated, or is a member of an
8656 explicitly instantiated class, or if using -frepo and the
8657 instantiation of RESULT has been assigned to this file. */
8658
8659 void
8660 mark_decl_instantiated (result, extern_p)
8661 tree result;
8662 int extern_p;
8663 {
8664 if (TREE_CODE (result) != FUNCTION_DECL)
8665 /* The TREE_PUBLIC flag for function declarations will have been
8666 set correctly by tsubst. */
8667 TREE_PUBLIC (result) = 1;
8668
8669 if (! extern_p)
8670 {
8671 DECL_INTERFACE_KNOWN (result) = 1;
8672 DECL_NOT_REALLY_EXTERN (result) = 1;
8673
8674 /* Always make artificials weak. */
8675 if (DECL_ARTIFICIAL (result) && flag_weak)
8676 comdat_linkage (result);
8677 /* For WIN32 we also want to put explicit instantiations in
8678 linkonce sections. */
8679 else if (TREE_PUBLIC (result))
8680 maybe_make_one_only (result);
8681 }
8682 else if (TREE_CODE (result) == FUNCTION_DECL)
8683 mark_inline_for_output (result);
8684 }
8685
8686 /* Given two function templates PAT1 and PAT2, and explicit template
8687 arguments EXPLICIT_ARGS return:
8688
8689 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
8690 -1 if PAT2 is more specialized than PAT1.
8691 0 if neither is more specialized. */
8692
8693 int
8694 more_specialized (pat1, pat2, explicit_args)
8695 tree pat1, pat2, explicit_args;
8696 {
8697 tree targs;
8698 int winner = 0;
8699
8700 targs = get_bindings_overload (pat1, DECL_RESULT (pat2), explicit_args);
8701 if (targs)
8702 --winner;
8703
8704 targs = get_bindings_overload (pat2, DECL_RESULT (pat1), explicit_args);
8705 if (targs)
8706 ++winner;
8707
8708 return winner;
8709 }
8710
8711 /* Given two class template specialization list nodes PAT1 and PAT2, return:
8712
8713 1 if PAT1 is more specialized than PAT2 as described in [temp.class.order].
8714 -1 if PAT2 is more specialized than PAT1.
8715 0 if neither is more specialized. */
8716
8717 int
8718 more_specialized_class (pat1, pat2)
8719 tree pat1, pat2;
8720 {
8721 tree targs;
8722 int winner = 0;
8723
8724 targs = get_class_bindings (TREE_VALUE (pat1), TREE_PURPOSE (pat1),
8725 TREE_PURPOSE (pat2));
8726 if (targs)
8727 --winner;
8728
8729 targs = get_class_bindings (TREE_VALUE (pat2), TREE_PURPOSE (pat2),
8730 TREE_PURPOSE (pat1));
8731 if (targs)
8732 ++winner;
8733
8734 return winner;
8735 }
8736
8737 /* Return the template arguments that will produce the function signature
8738 DECL from the function template FN, with the explicit template
8739 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is 1, the return type must
8740 also match. Return NULL_TREE if no satisfactory arguments could be
8741 found. */
8742
8743 static tree
8744 get_bindings_real (fn, decl, explicit_args, check_rettype)
8745 tree fn, decl, explicit_args;
8746 int check_rettype;
8747 {
8748 int ntparms = DECL_NTPARMS (fn);
8749 tree targs = make_tree_vec (ntparms);
8750 tree decl_type;
8751 tree decl_arg_types;
8752 int i;
8753
8754 /* Substitute the explicit template arguments into the type of DECL.
8755 The call to fn_type_unification will handle substitution into the
8756 FN. */
8757 decl_type = TREE_TYPE (decl);
8758 if (explicit_args && uses_template_parms (decl_type))
8759 {
8760 tree tmpl;
8761 tree converted_args;
8762
8763 if (DECL_TEMPLATE_INFO (decl))
8764 tmpl = DECL_TI_TEMPLATE (decl);
8765 else
8766 /* We can get here for some illegal specializations. */
8767 return NULL_TREE;
8768
8769 converted_args
8770 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
8771 explicit_args, NULL_TREE,
8772 /*complain=*/0,
8773 /*require_all_arguments=*/0));
8774 if (converted_args == error_mark_node)
8775 return NULL_TREE;
8776
8777 decl_type = tsubst (decl_type, converted_args, /*complain=*/0,
8778 NULL_TREE);
8779 if (decl_type == error_mark_node)
8780 return NULL_TREE;
8781 }
8782
8783 /* If FN is a static member function, adjust the type of DECL
8784 appropriately. */
8785 decl_arg_types = TYPE_ARG_TYPES (decl_type);
8786 if (DECL_STATIC_FUNCTION_P (fn)
8787 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
8788 decl_arg_types = TREE_CHAIN (decl_arg_types);
8789
8790 i = fn_type_unification (fn, explicit_args, targs,
8791 decl_arg_types,
8792 TREE_TYPE (decl_type),
8793 DEDUCE_EXACT);
8794
8795 if (i != 0)
8796 return NULL_TREE;
8797
8798 if (check_rettype)
8799 {
8800 /* Check to see that the resulting return type is also OK. */
8801 tree t = tsubst (TREE_TYPE (TREE_TYPE (fn)), targs,
8802 /*complain=*/0, NULL_TREE);
8803
8804 if (!same_type_p (t, TREE_TYPE (TREE_TYPE (decl))))
8805 return NULL_TREE;
8806 }
8807
8808 return targs;
8809 }
8810
8811 /* For most uses, we want to check the return type. */
8812
8813 tree
8814 get_bindings (fn, decl, explicit_args)
8815 tree fn, decl, explicit_args;
8816 {
8817 return get_bindings_real (fn, decl, explicit_args, 1);
8818 }
8819
8820 /* But for more_specialized, we only care about the parameter types. */
8821
8822 static tree
8823 get_bindings_overload (fn, decl, explicit_args)
8824 tree fn, decl, explicit_args;
8825 {
8826 return get_bindings_real (fn, decl, explicit_args, 0);
8827 }
8828
8829 /* Return the innermost template arguments that, when applied to a
8830 template specialization whose innermost template parameters are
8831 TPARMS, and whose specialization arguments are ARGS, yield the
8832 ARGS.
8833
8834 For example, suppose we have:
8835
8836 template <class T, class U> struct S {};
8837 template <class T> struct S<T*, int> {};
8838
8839 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
8840 {T}, the PARMS will be {T*, int} and the ARGS will be {double*,
8841 int}. The resulting vector will be {double}, indicating that `T'
8842 is bound to `double'. */
8843
8844 static tree
8845 get_class_bindings (tparms, parms, args)
8846 tree tparms, parms, args;
8847 {
8848 int i, ntparms = TREE_VEC_LENGTH (tparms);
8849 tree vec = make_tree_vec (ntparms);
8850
8851 args = innermost_args (args);
8852
8853 if (unify (tparms, vec, parms, args, UNIFY_ALLOW_NONE))
8854 return NULL_TREE;
8855
8856 for (i = 0; i < ntparms; ++i)
8857 if (! TREE_VEC_ELT (vec, i))
8858 return NULL_TREE;
8859
8860 return vec;
8861 }
8862
8863 /* In INSTANTIATIONS is a list of <INSTANTIATION, TEMPLATE> pairs.
8864 Pick the most specialized template, and return the corresponding
8865 instantiation, or if there is no corresponding instantiation, the
8866 template itself. EXPLICIT_ARGS is any template arguments explicity
8867 mentioned in a template-id. If there is no most specialized
8868 tempalte, error_mark_node is returned. If there are no templates
8869 at all, NULL_TREE is returned. */
8870
8871 tree
8872 most_specialized_instantiation (instantiations, explicit_args)
8873 tree instantiations;
8874 tree explicit_args;
8875 {
8876 tree fn, champ;
8877 int fate;
8878
8879 if (!instantiations)
8880 return NULL_TREE;
8881
8882 champ = instantiations;
8883 for (fn = TREE_CHAIN (instantiations); fn; fn = TREE_CHAIN (fn))
8884 {
8885 fate = more_specialized (TREE_VALUE (champ),
8886 TREE_VALUE (fn), explicit_args);
8887 if (fate == 1)
8888 ;
8889 else
8890 {
8891 if (fate == 0)
8892 {
8893 fn = TREE_CHAIN (fn);
8894 if (! fn)
8895 return error_mark_node;
8896 }
8897 champ = fn;
8898 }
8899 }
8900
8901 for (fn = instantiations; fn && fn != champ; fn = TREE_CHAIN (fn))
8902 {
8903 fate = more_specialized (TREE_VALUE (champ),
8904 TREE_VALUE (fn), explicit_args);
8905 if (fate != 1)
8906 return error_mark_node;
8907 }
8908
8909 return TREE_PURPOSE (champ) ? TREE_PURPOSE (champ) : TREE_VALUE (champ);
8910 }
8911
8912 /* Return the most specialized of the list of templates in FNS that can
8913 produce an instantiation matching DECL, given the explicit template
8914 arguments EXPLICIT_ARGS. */
8915
8916 static tree
8917 most_specialized (fns, decl, explicit_args)
8918 tree fns, decl, explicit_args;
8919 {
8920 tree candidates = NULL_TREE;
8921 tree fn, args;
8922
8923 for (fn = fns; fn; fn = TREE_CHAIN (fn))
8924 {
8925 tree candidate = TREE_VALUE (fn);
8926
8927 args = get_bindings (candidate, decl, explicit_args);
8928 if (args)
8929 candidates = tree_cons (NULL_TREE, candidate, candidates);
8930 }
8931
8932 return most_specialized_instantiation (candidates, explicit_args);
8933 }
8934
8935 /* If DECL is a specialization of some template, return the most
8936 general such template. For example, given:
8937
8938 template <class T> struct S { template <class U> void f(U); };
8939
8940 if TMPL is `template <class U> void S<int>::f(U)' this will return
8941 the full template. This function will not trace past partial
8942 specializations, however. For example, given in addition:
8943
8944 template <class T> struct S<T*> { template <class U> void f(U); };
8945
8946 if TMPL is `template <class U> void S<int*>::f(U)' this will return
8947 `template <class T> template <class U> S<T*>::f(U)'. */
8948
8949 tree
8950 most_general_template (decl)
8951 tree decl;
8952 {
8953 while (DECL_TEMPLATE_INFO (decl)
8954 /* The DECL_TI_TEMPLATE can be a LOOKUP_EXPR or
8955 IDENTIFIER_NODE in some cases. (See cp-tree.h for
8956 details.) */
8957 && TREE_CODE (DECL_TI_TEMPLATE (decl)) == TEMPLATE_DECL)
8958 decl = DECL_TI_TEMPLATE (decl);
8959
8960 return decl;
8961 }
8962
8963 /* Return the most specialized of the class template specializations
8964 of TMPL which can produce an instantiation matching ARGS, or
8965 error_mark_node if the choice is ambiguous. */
8966
8967 static tree
8968 most_specialized_class (tmpl, args)
8969 tree tmpl;
8970 tree args;
8971 {
8972 tree list = NULL_TREE;
8973 tree t;
8974 tree champ;
8975 int fate;
8976
8977 tmpl = most_general_template (tmpl);
8978 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
8979 {
8980 tree spec_args
8981 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args);
8982 if (spec_args)
8983 {
8984 list = decl_tree_cons (TREE_PURPOSE (t), TREE_VALUE (t), list);
8985 TREE_TYPE (list) = TREE_TYPE (t);
8986 }
8987 }
8988
8989 if (! list)
8990 return NULL_TREE;
8991
8992 t = list;
8993 champ = t;
8994 t = TREE_CHAIN (t);
8995 for (; t; t = TREE_CHAIN (t))
8996 {
8997 fate = more_specialized_class (champ, t);
8998 if (fate == 1)
8999 ;
9000 else
9001 {
9002 if (fate == 0)
9003 {
9004 t = TREE_CHAIN (t);
9005 if (! t)
9006 return error_mark_node;
9007 }
9008 champ = t;
9009 }
9010 }
9011
9012 for (t = list; t && t != champ; t = TREE_CHAIN (t))
9013 {
9014 fate = more_specialized_class (champ, t);
9015 if (fate != 1)
9016 return error_mark_node;
9017 }
9018
9019 return champ;
9020 }
9021
9022 /* called from the parser. */
9023
9024 void
9025 do_decl_instantiation (declspecs, declarator, storage)
9026 tree declspecs, declarator, storage;
9027 {
9028 tree decl = grokdeclarator (declarator, declspecs, NORMAL, 0, NULL_TREE);
9029 tree result = NULL_TREE;
9030 int extern_p = 0;
9031
9032 if (!decl)
9033 /* An error ocurred, for which grokdeclarator has already issued
9034 an appropriate message. */
9035 return;
9036 else if (! DECL_LANG_SPECIFIC (decl))
9037 {
9038 cp_error ("explicit instantiation of non-template `%#D'", decl);
9039 return;
9040 }
9041 else if (TREE_CODE (decl) == VAR_DECL)
9042 {
9043 /* There is an asymmetry here in the way VAR_DECLs and
9044 FUNCTION_DECLs are handled by grokdeclarator. In the case of
9045 the latter, the DECL we get back will be marked as a
9046 template instantiation, and the appropriate
9047 DECL_TEMPLATE_INFO will be set up. This does not happen for
9048 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
9049 should handle VAR_DECLs as it currently handles
9050 FUNCTION_DECLs. */
9051 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, 0);
9052 if (result && TREE_CODE (result) != VAR_DECL)
9053 {
9054 cp_error ("no matching template for `%D' found", result);
9055 return;
9056 }
9057 }
9058 else if (TREE_CODE (decl) != FUNCTION_DECL)
9059 {
9060 cp_error ("explicit instantiation of `%#D'", decl);
9061 return;
9062 }
9063 else
9064 result = decl;
9065
9066 /* Check for various error cases. Note that if the explicit
9067 instantiation is legal the RESULT will currently be marked as an
9068 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
9069 until we get here. */
9070
9071 if (DECL_TEMPLATE_SPECIALIZATION (result))
9072 {
9073 /* [temp.spec]
9074
9075 No program shall both explicitly instantiate and explicitly
9076 specialize a template. */
9077 cp_pedwarn ("explicit instantiation of `%#D' after", result);
9078 cp_pedwarn_at ("explicit specialization here", result);
9079 return;
9080 }
9081 else if (DECL_EXPLICIT_INSTANTIATION (result))
9082 {
9083 /* [temp.spec]
9084
9085 No program shall explicitly instantiate any template more
9086 than once.
9087
9088 We check DECL_INTERFACE_KNOWN so as not to complain when the first
9089 instantiation was `extern' and the second is not, and EXTERN_P for
9090 the opposite case. If -frepo, chances are we already got marked
9091 as an explicit instantion because of the repo file. */
9092 if (DECL_INTERFACE_KNOWN (result) && !extern_p && !flag_use_repository)
9093 cp_pedwarn ("duplicate explicit instantiation of `%#D'", result);
9094
9095 /* If we've already instantiated the template, just return now. */
9096 if (DECL_INTERFACE_KNOWN (result))
9097 return;
9098 }
9099 else if (!DECL_IMPLICIT_INSTANTIATION (result))
9100 {
9101 cp_error ("no matching template for `%D' found", result);
9102 return;
9103 }
9104 else if (!DECL_TEMPLATE_INFO (result))
9105 {
9106 cp_pedwarn ("explicit instantiation of non-template `%#D'", result);
9107 return;
9108 }
9109
9110 if (flag_external_templates)
9111 return;
9112
9113 if (storage == NULL_TREE)
9114 ;
9115 else if (storage == ridpointers[(int) RID_EXTERN])
9116 {
9117 if (pedantic)
9118 cp_pedwarn ("ANSI C++ forbids the use of `extern' on explicit instantiations");
9119 extern_p = 1;
9120 }
9121 else
9122 cp_error ("storage class `%D' applied to template instantiation",
9123 storage);
9124
9125 SET_DECL_EXPLICIT_INSTANTIATION (result);
9126 mark_decl_instantiated (result, extern_p);
9127 repo_template_instantiated (result, extern_p);
9128 if (! extern_p)
9129 instantiate_decl (result);
9130 }
9131
9132 void
9133 mark_class_instantiated (t, extern_p)
9134 tree t;
9135 int extern_p;
9136 {
9137 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
9138 SET_CLASSTYPE_INTERFACE_KNOWN (t);
9139 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
9140 CLASSTYPE_VTABLE_NEEDS_WRITING (t) = ! extern_p;
9141 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
9142 if (! extern_p)
9143 {
9144 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
9145 rest_of_type_compilation (t, 1);
9146 }
9147 }
9148
9149 void
9150 do_type_instantiation (t, storage)
9151 tree t, storage;
9152 {
9153 int extern_p = 0;
9154 int nomem_p = 0;
9155 int static_p = 0;
9156
9157 if (TREE_CODE (t) == TYPE_DECL)
9158 t = TREE_TYPE (t);
9159
9160 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
9161 {
9162 cp_error ("explicit instantiation of non-template type `%T'", t);
9163 return;
9164 }
9165
9166 complete_type (t);
9167
9168 /* With -fexternal-templates, explicit instantiations are treated the same
9169 as implicit ones. */
9170 if (flag_external_templates)
9171 return;
9172
9173 if (TYPE_SIZE (t) == NULL_TREE)
9174 {
9175 cp_error ("explicit instantiation of `%#T' before definition of template",
9176 t);
9177 return;
9178 }
9179
9180 if (storage != NULL_TREE)
9181 {
9182 if (pedantic)
9183 cp_pedwarn("ANSI C++ forbids the use of `%s' on explicit instantiations",
9184 IDENTIFIER_POINTER (storage));
9185
9186 if (storage == ridpointers[(int) RID_INLINE])
9187 nomem_p = 1;
9188 else if (storage == ridpointers[(int) RID_EXTERN])
9189 extern_p = 1;
9190 else if (storage == ridpointers[(int) RID_STATIC])
9191 static_p = 1;
9192 else
9193 {
9194 cp_error ("storage class `%D' applied to template instantiation",
9195 storage);
9196 extern_p = 0;
9197 }
9198 }
9199
9200 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
9201 {
9202 /* [temp.spec]
9203
9204 No program shall both explicitly instantiate and explicitly
9205 specialize a template. */
9206 cp_error ("explicit instantiation of `%#T' after", t);
9207 cp_error_at ("explicit specialization here", t);
9208 return;
9209 }
9210 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
9211 {
9212 /* [temp.spec]
9213
9214 No program shall explicitly instantiate any template more
9215 than once.
9216
9217 If CLASSTYPE_INTERFACE_ONLY, then the first explicit instantiation
9218 was `extern'. If EXTERN_P then the second is. If -frepo, chances
9219 are we already got marked as an explicit instantion because of the
9220 repo file. All these cases are OK. */
9221 if (!CLASSTYPE_INTERFACE_ONLY (t) && !extern_p && !flag_use_repository)
9222 cp_pedwarn ("duplicate explicit instantiation of `%#T'", t);
9223
9224 /* If we've already instantiated the template, just return now. */
9225 if (!CLASSTYPE_INTERFACE_ONLY (t))
9226 return;
9227 }
9228
9229 mark_class_instantiated (t, extern_p);
9230 repo_template_instantiated (t, extern_p);
9231
9232 if (nomem_p)
9233 return;
9234
9235 {
9236 tree tmp;
9237
9238 /* In contrast to implicit instantiation, where only the
9239 declarations, and not the definitions, of members are
9240 instantiated, we have here:
9241
9242 [temp.explicit]
9243
9244 The explicit instantiation of a class template specialization
9245 implies the instantiation of all of its members not
9246 previously explicitly specialized in the translation unit
9247 containing the explicit instantiation.
9248
9249 Of course, we can't instantiate member template classes, since
9250 we don't have any arguments for them. Note that the standard
9251 is unclear on whether the instatiation of the members are
9252 *explicit* instantiations or not. We choose to be generous,
9253 and not set DECL_EXPLICIT_INSTANTIATION. Therefore, we allow
9254 the explicit instantiation of a class where some of the members
9255 have no definition in the current translation unit. */
9256
9257 if (! static_p)
9258 for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
9259 if (TREE_CODE (tmp) == FUNCTION_DECL
9260 && DECL_TEMPLATE_INSTANTIATION (tmp))
9261 {
9262 mark_decl_instantiated (tmp, extern_p);
9263 repo_template_instantiated (tmp, extern_p);
9264 if (! extern_p)
9265 instantiate_decl (tmp);
9266 }
9267
9268 for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
9269 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
9270 {
9271 mark_decl_instantiated (tmp, extern_p);
9272 repo_template_instantiated (tmp, extern_p);
9273 if (! extern_p)
9274 instantiate_decl (tmp);
9275 }
9276
9277 for (tmp = CLASSTYPE_TAGS (t); tmp; tmp = TREE_CHAIN (tmp))
9278 if (IS_AGGR_TYPE (TREE_VALUE (tmp))
9279 && !uses_template_parms (CLASSTYPE_TI_ARGS (TREE_VALUE (tmp))))
9280 do_type_instantiation (TYPE_MAIN_DECL (TREE_VALUE (tmp)), storage);
9281 }
9282 }
9283
9284 /* Given a function DECL, which is a specialization of TMPL, modify
9285 DECL to be a re-instantiation of TMPL with the same template
9286 arguments. TMPL should be the template into which tsubst'ing
9287 should occur for DECL, not the most general template.
9288
9289 One reason for doing this is a scenario like this:
9290
9291 template <class T>
9292 void f(const T&, int i);
9293
9294 void g() { f(3, 7); }
9295
9296 template <class T>
9297 void f(const T& t, const int i) { }
9298
9299 Note that when the template is first instantiated, with
9300 instantiate_template, the resulting DECL will have no name for the
9301 first parameter, and the wrong type for the second. So, when we go
9302 to instantiate the DECL, we regenerate it. */
9303
9304 static void
9305 regenerate_decl_from_template (decl, tmpl)
9306 tree decl;
9307 tree tmpl;
9308 {
9309 tree args;
9310 tree code_pattern;
9311 tree new_decl;
9312 tree gen_tmpl;
9313 int unregistered;
9314
9315 args = DECL_TI_ARGS (decl);
9316 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
9317
9318 /* Unregister the specialization so that when we tsubst we will not
9319 just return DECL. We don't have to unregister DECL from TMPL
9320 because if would only be registered there if it were a partial
9321 instantiation of a specialization, which it isn't: it's a full
9322 instantiation. */
9323 gen_tmpl = most_general_template (tmpl);
9324 unregistered = unregister_specialization (decl, gen_tmpl);
9325
9326 /* If the DECL was not unregistered then something peculiar is
9327 happening: we created a specialization but did not call
9328 register_specialization for it. */
9329 my_friendly_assert (unregistered, 0);
9330
9331 if (TREE_CODE (decl) == VAR_DECL)
9332 /* Make sure that we can see identifiers, and compute access
9333 correctly, for the class members used in the declaration of
9334 this static variable. */
9335 pushclass (DECL_CONTEXT (decl), 2);
9336
9337 /* Do the substitution to get the new declaration. */
9338 new_decl = tsubst (code_pattern, args, /*complain=*/1, NULL_TREE);
9339
9340 if (TREE_CODE (decl) == VAR_DECL)
9341 {
9342 /* Set up DECL_INITIAL, since tsubst doesn't. */
9343 DECL_INITIAL (new_decl) =
9344 tsubst_expr (DECL_INITIAL (code_pattern), args,
9345 /*complain=*/1, DECL_TI_TEMPLATE (decl));
9346 /* Pop the class context we pushed above. */
9347 popclass ();
9348 }
9349 else if (TREE_CODE (decl) == FUNCTION_DECL)
9350 {
9351 /* Convince duplicate_decls to use the DECL_ARGUMENTS from the
9352 new decl. */
9353 DECL_INITIAL (new_decl) = error_mark_node;
9354 /* And don't complain about a duplicate definition. */
9355 DECL_INITIAL (decl) = NULL_TREE;
9356 }
9357
9358 /* The immediate parent of the new template is still whatever it was
9359 before, even though tsubst sets DECL_TI_TEMPLATE up as the most
9360 general template. We also reset the DECL_ASSEMBLER_NAME since
9361 tsubst always calculates the name as if the function in question
9362 were really a template instance, and sometimes, with friend
9363 functions, this is not so. See tsubst_friend_function for
9364 details. */
9365 DECL_TI_TEMPLATE (new_decl) = DECL_TI_TEMPLATE (decl);
9366 DECL_ASSEMBLER_NAME (new_decl) = DECL_ASSEMBLER_NAME (decl);
9367 DECL_RTL (new_decl) = DECL_RTL (decl);
9368
9369 /* Call duplicate decls to merge the old and new declarations. */
9370 duplicate_decls (new_decl, decl);
9371
9372 /* Now, re-register the specialization. */
9373 register_specialization (decl, gen_tmpl, args);
9374 }
9375
9376 /* Produce the definition of D, a _DECL generated from a template. */
9377
9378 tree
9379 instantiate_decl (d)
9380 tree d;
9381 {
9382 tree tmpl = DECL_TI_TEMPLATE (d);
9383 tree args = DECL_TI_ARGS (d);
9384 tree td;
9385 tree code_pattern;
9386 tree spec;
9387 tree gen_tmpl;
9388 int nested = in_function_p ();
9389 int pattern_defined;
9390 int line = lineno;
9391 char *file = input_filename;
9392 tree old_fn = current_function_decl;
9393
9394 /* This function should only be used to instantiate templates for
9395 functions and static member variables. */
9396 my_friendly_assert (TREE_CODE (d) == FUNCTION_DECL
9397 || TREE_CODE (d) == VAR_DECL, 0);
9398
9399 if (DECL_TEMPLATE_INSTANTIATED (d))
9400 /* D has already been instantiated. It might seem reasonable to
9401 check whether or not D is an explict instantiation, and, if so,
9402 stop here. But when an explicit instantiation is deferred
9403 until the end of the compilation, DECL_EXPLICIT_INSTANTIATION
9404 is set, even though we still need to do the instantiation. */
9405 return d;
9406
9407 /* If we already have a specialization of this declaration, then
9408 there's no reason to instantiate it. Note that
9409 retrieve_specialization gives us both instantiations and
9410 specializations, so we must explicitly check
9411 DECL_TEMPLATE_SPECIALIZATION. */
9412 gen_tmpl = most_general_template (tmpl);
9413 spec = retrieve_specialization (gen_tmpl, args);
9414 if (spec != NULL_TREE && DECL_TEMPLATE_SPECIALIZATION (spec))
9415 return spec;
9416
9417 /* This needs to happen before any tsubsting. */
9418 if (! push_tinst_level (d))
9419 return d;
9420
9421 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
9422 for the instantiation. This is not always the most general
9423 template. Consider, for example:
9424
9425 template <class T>
9426 struct S { template <class U> void f();
9427 template <> void f<int>(); };
9428
9429 and an instantiation of S<double>::f<int>. We want TD to be the
9430 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
9431 td = tmpl;
9432 for (td = tmpl;
9433 /* An instantiation cannot have a definition, so we need a
9434 more general template. */
9435 DECL_TEMPLATE_INSTANTIATION (td)
9436 /* We must also deal with friend templates. Given:
9437
9438 template <class T> struct S {
9439 template <class U> friend void f() {};
9440 };
9441
9442 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
9443 so far as the language is concerned, but that's still
9444 where we get the pattern for the instantiation from. On
9445 ther hand, if the definition comes outside the class, say:
9446
9447 template <class T> struct S {
9448 template <class U> friend void f();
9449 };
9450 template <class U> friend void f() {}
9451
9452 we don't need to look any further. That's what the check for
9453 DECL_INITIAL is for. */
9454 || (TREE_CODE (d) == FUNCTION_DECL
9455 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (td)
9456 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (td)));
9457 )
9458 {
9459 /* The present template, TD, should not be a definition. If it
9460 were a definition, we should be using it! Note that we
9461 cannot restructure the loop to just keep going until we find
9462 a template with a definition, since that might go too far if
9463 a specialization was declared, but not defined. */
9464 my_friendly_assert (!(TREE_CODE (d) == VAR_DECL
9465 && !DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (td))),
9466 0);
9467
9468 /* Fetch the more general template. */
9469 td = DECL_TI_TEMPLATE (td);
9470 }
9471
9472 code_pattern = DECL_TEMPLATE_RESULT (td);
9473
9474 if (TREE_CODE (d) == FUNCTION_DECL)
9475 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE);
9476 else
9477 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
9478
9479 push_to_top_level ();
9480 lineno = DECL_SOURCE_LINE (d);
9481 input_filename = DECL_SOURCE_FILE (d);
9482
9483 if (pattern_defined)
9484 {
9485 repo_template_used (d);
9486
9487 if (flag_external_templates && ! DECL_INTERFACE_KNOWN (d))
9488 {
9489 if (flag_alt_external_templates)
9490 {
9491 if (interface_unknown)
9492 warn_if_unknown_interface (d);
9493 }
9494 else if (DECL_INTERFACE_KNOWN (code_pattern))
9495 {
9496 DECL_INTERFACE_KNOWN (d) = 1;
9497 DECL_NOT_REALLY_EXTERN (d) = ! DECL_EXTERNAL (code_pattern);
9498 }
9499 else
9500 warn_if_unknown_interface (code_pattern);
9501 }
9502
9503 if (at_eof)
9504 import_export_decl (d);
9505 }
9506
9507 /* Reject all external templates except inline functions. */
9508 if (DECL_INTERFACE_KNOWN (d)
9509 && ! DECL_NOT_REALLY_EXTERN (d)
9510 && ! (TREE_CODE (d) == FUNCTION_DECL && DECL_INLINE (d)))
9511 goto out;
9512
9513 if (TREE_CODE (d) == VAR_DECL
9514 && TREE_READONLY (d)
9515 && DECL_INITIAL (d) == NULL_TREE
9516 && DECL_INITIAL (code_pattern) != NULL_TREE)
9517 /* We need to set up DECL_INITIAL regardless of pattern_defined if
9518 the variable is a static const initialized in the class body. */;
9519 else if (pattern_defined && nested
9520 && TREE_CODE (d) == FUNCTION_DECL && DECL_INLINE (d))
9521 /* An inline function used in another function; instantiate it now so
9522 we can inline it. */;
9523 else if (! pattern_defined || ! at_eof)
9524 {
9525 /* Defer all other templates. We restore the source position
9526 here because it's used by add_pending_template. */
9527 lineno = line;
9528 input_filename = file;
9529
9530 if (at_eof && !pattern_defined
9531 && DECL_EXPLICIT_INSTANTIATION (d))
9532 /* [temp.explicit]
9533
9534 The definition of a non-exported function template, a
9535 non-exported member function template, or a non-exported
9536 member function or static data member of a class template
9537 shall be present in every translation unit in which it is
9538 explicitly instantiated. */
9539 cp_error ("explicit instantiation of `%D' but no definition available",
9540 d);
9541
9542 add_pending_template (d);
9543 goto out;
9544 }
9545
9546 /* If this instantiation is COMDAT, we don't know whether or not we
9547 will really need to write it out. If we can't be sure, mark it
9548 DECL_DEFER_OUTPUT. NOTE: This increases memory consumption,
9549 since we keep some instantiations in memory rather than write
9550 them out immediately and forget them. A better approach would be
9551 to wait until we know we need them to do the instantiation, but
9552 that would break templates with static locals, because we
9553 generate the functions to destroy statics before we determine
9554 which functions are needed. A better solution would be to
9555 generate the ctor and dtor functions as we go. */
9556
9557 if (TREE_CODE (d) == FUNCTION_DECL
9558 && DECL_COMDAT (d)
9559 && ! DECL_NEEDED_P (d)
9560 /* If the function that caused us to be instantiated is needed, we
9561 will be needed, too. */
9562 && (! nested || (old_fn && ! DECL_NEEDED_P (old_fn))))
9563 DECL_DEFER_OUTPUT (d) = 1;
9564
9565 /* We're now committed to instantiating this template. Mark it as
9566 instantiated so that recursive calls to instantiate_decl do not
9567 try to instantiate it again. */
9568 DECL_TEMPLATE_INSTANTIATED (d) = 1;
9569
9570 /* Regenerate the declaration in case the template has been modified
9571 by a subsequent redeclaration. */
9572 regenerate_decl_from_template (d, td);
9573
9574 /* We already set the file and line above. Reset them now in case
9575 they changed as a result of calling regenerate_decl_from_template. */
9576 lineno = DECL_SOURCE_LINE (d);
9577 input_filename = DECL_SOURCE_FILE (d);
9578
9579 if (TREE_CODE (d) == VAR_DECL)
9580 {
9581 DECL_IN_AGGR_P (d) = 0;
9582 if (DECL_INTERFACE_KNOWN (d))
9583 DECL_EXTERNAL (d) = ! DECL_NOT_REALLY_EXTERN (d);
9584 else
9585 {
9586 DECL_EXTERNAL (d) = 1;
9587 DECL_NOT_REALLY_EXTERN (d) = 1;
9588 }
9589 cp_finish_decl (d, DECL_INITIAL (d), NULL_TREE, 0);
9590 }
9591 else if (TREE_CODE (d) == FUNCTION_DECL)
9592 {
9593 /* Set up context. */
9594 start_function (NULL_TREE, d, NULL_TREE, SF_PRE_PARSED);
9595 store_parm_decls ();
9596
9597 /* We already set up __FUNCTION__, etc., so we don't want to do
9598 it again now. */
9599 current_function_name_declared = 1;
9600
9601 /* Substitute into the body of the function. */
9602 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
9603 /*complain=*/1, tmpl);
9604
9605 /* Finish the function. */
9606 expand_body (finish_function (lineno, 0));
9607 }
9608
9609 out:
9610 lineno = line;
9611 input_filename = file;
9612
9613 pop_from_top_level ();
9614 pop_tinst_level ();
9615
9616 return d;
9617 }
9618
9619 /* Run through the list of templates that we wish we could
9620 instantiate, and instantiate any we can. */
9621
9622 int
9623 instantiate_pending_templates ()
9624 {
9625 tree *t;
9626 int instantiated_something = 0;
9627 int reconsider;
9628
9629 do
9630 {
9631 reconsider = 0;
9632
9633 t = &pending_templates;
9634 while (*t)
9635 {
9636 tree srcloc = TREE_PURPOSE (*t);
9637 tree instantiation = TREE_VALUE (*t);
9638
9639 input_filename = SRCLOC_FILE (srcloc);
9640 lineno = SRCLOC_LINE (srcloc);
9641
9642 if (TREE_CODE_CLASS (TREE_CODE (instantiation)) == 't')
9643 {
9644 tree fn;
9645
9646 if (!TYPE_SIZE (instantiation))
9647 {
9648 instantiate_class_template (instantiation);
9649 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
9650 for (fn = TYPE_METHODS (instantiation);
9651 fn;
9652 fn = TREE_CHAIN (fn))
9653 if (! DECL_ARTIFICIAL (fn))
9654 instantiate_decl (fn);
9655 if (TYPE_SIZE (instantiation))
9656 {
9657 instantiated_something = 1;
9658 reconsider = 1;
9659 }
9660 }
9661
9662 if (TYPE_SIZE (instantiation))
9663 /* If INSTANTIATION has been instantiated, then we don't
9664 need to consider it again in the future. */
9665 *t = TREE_CHAIN (*t);
9666 else
9667 t = &TREE_CHAIN (*t);
9668 }
9669 else
9670 {
9671 if (DECL_TEMPLATE_INSTANTIATION (instantiation)
9672 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
9673 {
9674 instantiation = instantiate_decl (instantiation);
9675 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
9676 {
9677 instantiated_something = 1;
9678 reconsider = 1;
9679 }
9680 }
9681
9682 if (!DECL_TEMPLATE_INSTANTIATION (instantiation)
9683 || DECL_TEMPLATE_INSTANTIATED (instantiation))
9684 /* If INSTANTIATION has been instantiated, then we don't
9685 need to consider it again in the future. */
9686 *t = TREE_CHAIN (*t);
9687 else
9688 t = &TREE_CHAIN (*t);
9689 }
9690 }
9691 template_tail = t;
9692
9693 /* Go through the things that are template instantiations if we are
9694 using guiding declarations. */
9695 t = &maybe_templates;
9696 while (*t)
9697 {
9698 tree template;
9699 tree fn;
9700 tree args;
9701
9702 fn = TREE_VALUE (*t);
9703
9704 if (DECL_INITIAL (fn))
9705 /* If the FN is already defined, then it was either already
9706 instantiated or, even though guiding declarations were
9707 allowed, a non-template definition was provided. */
9708 ;
9709 else
9710 {
9711 template = TREE_PURPOSE (*t);
9712 args = get_bindings (template, fn, NULL_TREE);
9713 fn = instantiate_template (template, args);
9714 instantiate_decl (fn);
9715 reconsider = 1;
9716 }
9717
9718 /* Remove this entry from the chain. */
9719 *t = TREE_CHAIN (*t);
9720 }
9721 maybe_template_tail = t;
9722 }
9723 while (reconsider);
9724
9725 return instantiated_something;
9726 }
9727
9728 /* Substitute ARGVEC into T, which is a TREE_LIST. In particular, it
9729 is an initializer list: the TREE_PURPOSEs are DECLs, and the
9730 TREE_VALUEs are initializer values. Used by instantiate_decl. */
9731
9732 static tree
9733 tsubst_expr_values (t, argvec)
9734 tree t, argvec;
9735 {
9736 tree first = NULL_TREE;
9737 tree *p = &first;
9738
9739 for (; t; t = TREE_CHAIN (t))
9740 {
9741 tree pur = tsubst_copy (TREE_PURPOSE (t), argvec,
9742 /*complain=*/1, NULL_TREE);
9743 tree val = tsubst_expr (TREE_VALUE (t), argvec, /*complain=*/1,
9744 NULL_TREE);
9745 *p = build_tree_list (pur, val);
9746 p = &TREE_CHAIN (*p);
9747 }
9748 return first;
9749 }
9750
9751 /* D is an undefined function declaration in the presence of templates with
9752 the same name, listed in FNS. If one of them can produce D as an
9753 instantiation, remember this so we can instantiate it at EOF if D has
9754 not been defined by that time. */
9755
9756 void
9757 add_maybe_template (d, fns)
9758 tree d, fns;
9759 {
9760 tree t;
9761
9762 if (DECL_MAYBE_TEMPLATE (d))
9763 return;
9764
9765 t = most_specialized (fns, d, NULL_TREE);
9766 if (! t)
9767 return;
9768 if (t == error_mark_node)
9769 {
9770 cp_error ("ambiguous template instantiation for `%D'", d);
9771 return;
9772 }
9773
9774 *maybe_template_tail = tree_cons (t, d, NULL_TREE);
9775 maybe_template_tail = &TREE_CHAIN (*maybe_template_tail);
9776 DECL_MAYBE_TEMPLATE (d) = 1;
9777 }
9778
9779 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
9780
9781 static void
9782 set_current_access_from_decl (decl)
9783 tree decl;
9784 {
9785 if (TREE_PRIVATE (decl))
9786 current_access_specifier = access_private_node;
9787 else if (TREE_PROTECTED (decl))
9788 current_access_specifier = access_protected_node;
9789 else
9790 current_access_specifier = access_public_node;
9791 }
9792
9793 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
9794 is the instantiation (which should have been created with
9795 start_enum) and ARGS are the template arguments to use. */
9796
9797 static void
9798 tsubst_enum (tag, newtag, args)
9799 tree tag;
9800 tree newtag;
9801 tree args;
9802 {
9803 tree e;
9804
9805 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
9806 {
9807 tree value;
9808
9809 /* Note that in a template enum, the TREE_VALUE is the
9810 CONST_DECL, not the corresponding INTEGER_CST. */
9811 value = tsubst_expr (DECL_INITIAL (TREE_VALUE (e)),
9812 args, /*complain=*/1,
9813 NULL_TREE);
9814
9815 /* Give this enumeration constant the correct access. */
9816 set_current_access_from_decl (TREE_VALUE (e));
9817
9818 /* Actually build the enumerator itself. */
9819 build_enumerator (TREE_PURPOSE (e), value, newtag);
9820 }
9821
9822 finish_enum (newtag);
9823 }
9824
9825 /* Set the DECL_ASSEMBLER_NAME for DECL, which is a FUNCTION_DECL that
9826 is either an instantiation or specialization of a template
9827 function. */
9828
9829 static void
9830 set_mangled_name_for_template_decl (decl)
9831 tree decl;
9832 {
9833 tree saved_namespace;
9834 tree context = NULL_TREE;
9835 tree fn_type;
9836 tree ret_type;
9837 tree parm_types;
9838 tree tparms;
9839 tree targs;
9840 tree tmpl;
9841 int parm_depth;
9842
9843 my_friendly_assert (TREE_CODE (decl) == FUNCTION_DECL, 0);
9844 my_friendly_assert (DECL_TEMPLATE_INFO (decl) != NULL_TREE, 0);
9845
9846 /* The names of template functions must be mangled so as to indicate
9847 what template is being specialized with what template arguments.
9848 For example, each of the following three functions must get
9849 different mangled names:
9850
9851 void f(int);
9852 template <> void f<7>(int);
9853 template <> void f<8>(int); */
9854
9855 targs = DECL_TI_ARGS (decl);
9856 if (uses_template_parms (targs))
9857 /* This DECL is for a partial instantiation. There's no need to
9858 mangle the name of such an entity. */
9859 return;
9860
9861 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
9862 tparms = DECL_TEMPLATE_PARMS (tmpl);
9863 parm_depth = TMPL_PARMS_DEPTH (tparms);
9864
9865 /* There should be as many levels of arguments as there are levels
9866 of parameters. */
9867 my_friendly_assert (parm_depth == TMPL_ARGS_DEPTH (targs), 0);
9868
9869 /* We now compute the PARMS and RET_TYPE to give to
9870 build_decl_overload_real. The PARMS and RET_TYPE are the
9871 parameter and return types of the template, after all but the
9872 innermost template arguments have been substituted, not the
9873 parameter and return types of the function DECL. For example,
9874 given:
9875
9876 template <class T> T f(T);
9877
9878 both PARMS and RET_TYPE should be `T' even if DECL is `int f(int)'.
9879 A more subtle example is:
9880
9881 template <class T> struct S { template <class U> void f(T, U); }
9882
9883 Here, if DECL is `void S<int>::f(int, double)', PARMS should be
9884 {int, U}. Thus, the args that we want to subsitute into the
9885 return and parameter type for the function are those in TARGS,
9886 with the innermost level omitted. */
9887 fn_type = TREE_TYPE (tmpl);
9888 if (DECL_STATIC_FUNCTION_P (decl))
9889 context = DECL_CLASS_CONTEXT (decl);
9890
9891 if (parm_depth == 1)
9892 /* No substitution is necessary. */
9893 ;
9894 else
9895 {
9896 int i;
9897 tree partial_args;
9898
9899 /* Replace the innermost level of the TARGS with NULL_TREEs to
9900 let tsubst know not to subsitute for those parameters. */
9901 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
9902 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
9903 SET_TMPL_ARGS_LEVEL (partial_args, i,
9904 TMPL_ARGS_LEVEL (targs, i));
9905 SET_TMPL_ARGS_LEVEL (partial_args,
9906 TMPL_ARGS_DEPTH (targs),
9907 make_tree_vec (DECL_NTPARMS (tmpl)));
9908
9909 /* Now, do the (partial) substitution to figure out the
9910 appropriate function type. */
9911 fn_type = tsubst (fn_type, partial_args, /*complain=*/1, NULL_TREE);
9912 if (DECL_STATIC_FUNCTION_P (decl))
9913 context = tsubst (context, partial_args, /*complain=*/1, NULL_TREE);
9914
9915 /* Substitute into the template parameters to obtain the real
9916 innermost set of parameters. This step is important if the
9917 innermost set of template parameters contains value
9918 parameters whose types depend on outer template parameters. */
9919 TREE_VEC_LENGTH (partial_args)--;
9920 tparms = tsubst_template_parms (tparms, partial_args, /*complain=*/1);
9921 }
9922
9923 /* Now, get the innermost parameters and arguments, and figure out
9924 the parameter and return types. */
9925 tparms = INNERMOST_TEMPLATE_PARMS (tparms);
9926 targs = innermost_args (targs);
9927 ret_type = TREE_TYPE (fn_type);
9928 parm_types = TYPE_ARG_TYPES (fn_type);
9929
9930 /* For a static member function, we generate a fake `this' pointer,
9931 for the purposes of mangling. This indicates of which class the
9932 function is a member. Because of:
9933
9934 [class.static]
9935
9936 There shall not be a static and a nonstatic member function
9937 with the same name and the same parameter types
9938
9939 we don't have to worry that this will result in a clash with a
9940 non-static member function. */
9941 if (DECL_STATIC_FUNCTION_P (decl))
9942 parm_types = hash_tree_chain (build_pointer_type (context), parm_types);
9943
9944 /* There should be the same number of template parameters as
9945 template arguments. */
9946 my_friendly_assert (TREE_VEC_LENGTH (tparms) == TREE_VEC_LENGTH (targs),
9947 0);
9948
9949 /* If the template is in a namespace, we need to put that into the
9950 mangled name. Unfortunately, build_decl_overload_real does not
9951 get the decl to mangle, so it relies on the current
9952 namespace. Therefore, we set that here temporarily. */
9953 my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (decl)) == 'd', 980702);
9954 saved_namespace = current_namespace;
9955 current_namespace = CP_DECL_CONTEXT (decl);
9956
9957 /* Actually set the DCL_ASSEMBLER_NAME. */
9958 DECL_ASSEMBLER_NAME (decl)
9959 = build_decl_overload_real (DECL_NAME (decl), parm_types, ret_type,
9960 tparms, targs,
9961 DECL_FUNCTION_MEMBER_P (decl)
9962 + DECL_CONSTRUCTOR_P (decl));
9963
9964 /* Restore the previously active namespace. */
9965 current_namespace = saved_namespace;
9966 }