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