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