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