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