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